pulumiverse-scaleway 1.30.0a1752168858__py3-none-any.whl → 1.31.0a1752171288__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.0a1752171288.dist-info}/METADATA +1 -1
- {pulumiverse_scaleway-1.30.0a1752168858.dist-info → pulumiverse_scaleway-1.31.0a1752171288.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.0a1752171288.dist-info}/WHEEL +0 -0
- {pulumiverse_scaleway-1.30.0a1752168858.dist-info → pulumiverse_scaleway-1.31.0a1752171288.dist-info}/top_level.txt +0 -0
pulumiverse_scaleway/outputs.py
CHANGED
@@ -5275,6 +5275,8 @@ class LoadbalancerAclMatch(dict):
|
|
5275
5275
|
suggest = "http_filter_values"
|
5276
5276
|
elif key == "ipSubnets":
|
5277
5277
|
suggest = "ip_subnets"
|
5278
|
+
elif key == "ipsEdgeServices":
|
5279
|
+
suggest = "ips_edge_services"
|
5278
5280
|
|
5279
5281
|
if suggest:
|
5280
5282
|
pulumi.log.warn(f"Key '{key}' not found in LoadbalancerAclMatch. Access the value via the '{suggest}' property getter instead.")
|
@@ -5292,7 +5294,8 @@ class LoadbalancerAclMatch(dict):
|
|
5292
5294
|
http_filter_option: Optional[builtins.str] = None,
|
5293
5295
|
http_filter_values: Optional[Sequence[builtins.str]] = None,
|
5294
5296
|
invert: Optional[builtins.bool] = None,
|
5295
|
-
ip_subnets: Optional[Sequence[builtins.str]] = None
|
5297
|
+
ip_subnets: Optional[Sequence[builtins.str]] = None,
|
5298
|
+
ips_edge_services: Optional[builtins.bool] = None):
|
5296
5299
|
"""
|
5297
5300
|
:param builtins.str http_filter: The HTTP filter to match. This filter is supported only if your backend protocol has an HTTP forward protocol.
|
5298
5301
|
It extracts the request's URL path, which starts at the first slash and ends before the question mark (without the host part).
|
@@ -5301,7 +5304,8 @@ class LoadbalancerAclMatch(dict):
|
|
5301
5304
|
:param Sequence[builtins.str] http_filter_values: A list of possible values to match for the given HTTP filter.
|
5302
5305
|
Keep in mind that in the case of `http_header_match` the HTTP header field name is case insensitive.
|
5303
5306
|
:param builtins.bool invert: If set to `true`, the condition will be of type "unless".
|
5304
|
-
:param Sequence[builtins.str] ip_subnets: A list of IPs, or CIDR v4/v6 addresses of the session client, to match.
|
5307
|
+
:param Sequence[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.
|
5308
|
+
:param 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.
|
5305
5309
|
"""
|
5306
5310
|
if http_filter is not None:
|
5307
5311
|
pulumi.set(__self__, "http_filter", http_filter)
|
@@ -5313,6 +5317,8 @@ class LoadbalancerAclMatch(dict):
|
|
5313
5317
|
pulumi.set(__self__, "invert", invert)
|
5314
5318
|
if ip_subnets is not None:
|
5315
5319
|
pulumi.set(__self__, "ip_subnets", ip_subnets)
|
5320
|
+
if ips_edge_services is not None:
|
5321
|
+
pulumi.set(__self__, "ips_edge_services", ips_edge_services)
|
5316
5322
|
|
5317
5323
|
@property
|
5318
5324
|
@pulumi.getter(name="httpFilter")
|
@@ -5353,10 +5359,18 @@ class LoadbalancerAclMatch(dict):
|
|
5353
5359
|
@pulumi.getter(name="ipSubnets")
|
5354
5360
|
def ip_subnets(self) -> Optional[Sequence[builtins.str]]:
|
5355
5361
|
"""
|
5356
|
-
A list of IPs, or CIDR v4/v6 addresses of the session client, to match.
|
5362
|
+
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.
|
5357
5363
|
"""
|
5358
5364
|
return pulumi.get(self, "ip_subnets")
|
5359
5365
|
|
5366
|
+
@property
|
5367
|
+
@pulumi.getter(name="ipsEdgeServices")
|
5368
|
+
def ips_edge_services(self) -> Optional[builtins.bool]:
|
5369
|
+
"""
|
5370
|
+
Defines whether Edge Services IPs should be matched. Only one of `ip_subnet` and `ips_edge_services` should be specified.
|
5371
|
+
"""
|
5372
|
+
return pulumi.get(self, "ips_edge_services")
|
5373
|
+
|
5360
5374
|
|
5361
5375
|
@pulumi.output_type
|
5362
5376
|
class LoadbalancerBackendHealthCheckHttp(dict):
|
@@ -5632,7 +5646,7 @@ class LoadbalancerFrontendAcl(dict):
|
|
5632
5646
|
updated_at: Optional[builtins.str] = None):
|
5633
5647
|
"""
|
5634
5648
|
:param 'LoadbalancerFrontendAclActionArgs' action: Action to undertake when an ACL filter matches.
|
5635
|
-
:param 'LoadbalancerFrontendAclMatchArgs' match: The ACL match rule. At least `ip_subnet` or `http_filter` and `http_filter_value` are required.
|
5649
|
+
:param 'LoadbalancerFrontendAclMatchArgs' match: The ACL match rule. At least `ip_subnet` or `ips_edge_services` or `http_filter` and `http_filter_value` are required.
|
5636
5650
|
:param builtins.str created_at: IsDate and time of ACL's creation (RFC 3339 format)
|
5637
5651
|
:param builtins.str description: Description of the ACL
|
5638
5652
|
:param builtins.str name: The ACL name. If not provided it will be randomly generated.
|
@@ -5661,7 +5675,7 @@ class LoadbalancerFrontendAcl(dict):
|
|
5661
5675
|
@pulumi.getter
|
5662
5676
|
def match(self) -> 'outputs.LoadbalancerFrontendAclMatch':
|
5663
5677
|
"""
|
5664
|
-
The ACL match rule. At least `ip_subnet` or `http_filter` and `http_filter_value` are required.
|
5678
|
+
The ACL match rule. At least `ip_subnet` or `ips_edge_services` or `http_filter` and `http_filter_value` are required.
|
5665
5679
|
"""
|
5666
5680
|
return pulumi.get(self, "match")
|
5667
5681
|
|
@@ -5784,6 +5798,8 @@ class LoadbalancerFrontendAclMatch(dict):
|
|
5784
5798
|
suggest = "http_filter_values"
|
5785
5799
|
elif key == "ipSubnets":
|
5786
5800
|
suggest = "ip_subnets"
|
5801
|
+
elif key == "ipsEdgeServices":
|
5802
|
+
suggest = "ips_edge_services"
|
5787
5803
|
|
5788
5804
|
if suggest:
|
5789
5805
|
pulumi.log.warn(f"Key '{key}' not found in LoadbalancerFrontendAclMatch. Access the value via the '{suggest}' property getter instead.")
|
@@ -5801,7 +5817,8 @@ class LoadbalancerFrontendAclMatch(dict):
|
|
5801
5817
|
http_filter_option: Optional[builtins.str] = None,
|
5802
5818
|
http_filter_values: Optional[Sequence[builtins.str]] = None,
|
5803
5819
|
invert: Optional[builtins.bool] = None,
|
5804
|
-
ip_subnets: Optional[Sequence[builtins.str]] = None
|
5820
|
+
ip_subnets: Optional[Sequence[builtins.str]] = None,
|
5821
|
+
ips_edge_services: Optional[builtins.bool] = None):
|
5805
5822
|
"""
|
5806
5823
|
:param builtins.str http_filter: The HTTP filter to match. This filter is supported only if your backend protocol has an HTTP forward protocol.
|
5807
5824
|
It extracts the request's URL path, which starts at the first slash and ends before the question mark (without the host part).
|
@@ -5810,7 +5827,8 @@ class LoadbalancerFrontendAclMatch(dict):
|
|
5810
5827
|
:param Sequence[builtins.str] http_filter_values: A list of possible values to match for the given HTTP filter.
|
5811
5828
|
Keep in mind that in the case of `http_header_match` the HTTP header field name is case insensitive.
|
5812
5829
|
:param builtins.bool invert: If set to `true`, the condition will be of type "unless".
|
5813
|
-
:param Sequence[builtins.str] ip_subnets: A list of IPs, or CIDR v4/v6 addresses of the session client, to match.
|
5830
|
+
:param Sequence[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.
|
5831
|
+
:param 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.
|
5814
5832
|
"""
|
5815
5833
|
if http_filter is not None:
|
5816
5834
|
pulumi.set(__self__, "http_filter", http_filter)
|
@@ -5822,6 +5840,8 @@ class LoadbalancerFrontendAclMatch(dict):
|
|
5822
5840
|
pulumi.set(__self__, "invert", invert)
|
5823
5841
|
if ip_subnets is not None:
|
5824
5842
|
pulumi.set(__self__, "ip_subnets", ip_subnets)
|
5843
|
+
if ips_edge_services is not None:
|
5844
|
+
pulumi.set(__self__, "ips_edge_services", ips_edge_services)
|
5825
5845
|
|
5826
5846
|
@property
|
5827
5847
|
@pulumi.getter(name="httpFilter")
|
@@ -5862,10 +5882,18 @@ class LoadbalancerFrontendAclMatch(dict):
|
|
5862
5882
|
@pulumi.getter(name="ipSubnets")
|
5863
5883
|
def ip_subnets(self) -> Optional[Sequence[builtins.str]]:
|
5864
5884
|
"""
|
5865
|
-
A list of IPs, or CIDR v4/v6 addresses of the session client, to match.
|
5885
|
+
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.
|
5866
5886
|
"""
|
5867
5887
|
return pulumi.get(self, "ip_subnets")
|
5868
5888
|
|
5889
|
+
@property
|
5890
|
+
@pulumi.getter(name="ipsEdgeServices")
|
5891
|
+
def ips_edge_services(self) -> Optional[builtins.bool]:
|
5892
|
+
"""
|
5893
|
+
Defines whether Edge Services IPs should be matched. Only one of `ip_subnet` and `ips_edge_services` should be specified.
|
5894
|
+
"""
|
5895
|
+
return pulumi.get(self, "ips_edge_services")
|
5896
|
+
|
5869
5897
|
|
5870
5898
|
@pulumi.output_type
|
5871
5899
|
class LoadbalancerPrivateIp(dict):
|
@@ -6383,21 +6411,32 @@ class ObjectBucketAclAccessControlPolicyGrantGrantee(dict):
|
|
6383
6411
|
return super().get(key, default)
|
6384
6412
|
|
6385
6413
|
def __init__(__self__, *,
|
6386
|
-
|
6387
|
-
|
6388
|
-
|
6414
|
+
display_name: Optional[builtins.str] = None,
|
6415
|
+
id: Optional[builtins.str] = None,
|
6416
|
+
type: Optional[builtins.str] = None,
|
6417
|
+
uri: Optional[builtins.str] = None):
|
6389
6418
|
"""
|
6390
6419
|
:param builtins.str id: The `region`, `bucket` and `acl` separated by (`/`).
|
6391
|
-
:param builtins.str type: Type of grantee. Valid values: `CanonicalUser`
|
6420
|
+
:param builtins.str type: Type of grantee. Valid values: `CanonicalUser`, `Group`
|
6421
|
+
:param builtins.str uri: The uri of the grantee if you are granting permissions to a predefined group.
|
6392
6422
|
"""
|
6393
|
-
pulumi.set(__self__, "id", id)
|
6394
|
-
pulumi.set(__self__, "type", type)
|
6395
6423
|
if display_name is not None:
|
6396
6424
|
pulumi.set(__self__, "display_name", display_name)
|
6425
|
+
if id is not None:
|
6426
|
+
pulumi.set(__self__, "id", id)
|
6427
|
+
if type is not None:
|
6428
|
+
pulumi.set(__self__, "type", type)
|
6429
|
+
if uri is not None:
|
6430
|
+
pulumi.set(__self__, "uri", uri)
|
6431
|
+
|
6432
|
+
@property
|
6433
|
+
@pulumi.getter(name="displayName")
|
6434
|
+
def display_name(self) -> Optional[builtins.str]:
|
6435
|
+
return pulumi.get(self, "display_name")
|
6397
6436
|
|
6398
6437
|
@property
|
6399
6438
|
@pulumi.getter
|
6400
|
-
def id(self) -> builtins.str:
|
6439
|
+
def id(self) -> Optional[builtins.str]:
|
6401
6440
|
"""
|
6402
6441
|
The `region`, `bucket` and `acl` separated by (`/`).
|
6403
6442
|
"""
|
@@ -6405,16 +6444,19 @@ class ObjectBucketAclAccessControlPolicyGrantGrantee(dict):
|
|
6405
6444
|
|
6406
6445
|
@property
|
6407
6446
|
@pulumi.getter
|
6408
|
-
def type(self) -> builtins.str:
|
6447
|
+
def type(self) -> Optional[builtins.str]:
|
6409
6448
|
"""
|
6410
|
-
Type of grantee. Valid values: `CanonicalUser`
|
6449
|
+
Type of grantee. Valid values: `CanonicalUser`, `Group`
|
6411
6450
|
"""
|
6412
6451
|
return pulumi.get(self, "type")
|
6413
6452
|
|
6414
6453
|
@property
|
6415
|
-
@pulumi.getter
|
6416
|
-
def
|
6417
|
-
|
6454
|
+
@pulumi.getter
|
6455
|
+
def uri(self) -> Optional[builtins.str]:
|
6456
|
+
"""
|
6457
|
+
The uri of the grantee if you are granting permissions to a predefined group.
|
6458
|
+
"""
|
6459
|
+
return pulumi.get(self, "uri")
|
6418
6460
|
|
6419
6461
|
|
6420
6462
|
@pulumi.output_type
|
@@ -11130,19 +11172,22 @@ class GetLbAclsAclMatchResult(dict):
|
|
11130
11172
|
http_filter_option: builtins.str,
|
11131
11173
|
http_filter_values: Sequence[builtins.str],
|
11132
11174
|
invert: builtins.bool,
|
11133
|
-
ip_subnets: Sequence[builtins.str]
|
11175
|
+
ip_subnets: Sequence[builtins.str],
|
11176
|
+
ips_edge_services: builtins.bool):
|
11134
11177
|
"""
|
11135
11178
|
:param builtins.str http_filter: The HTTP filter to match.
|
11136
11179
|
:param builtins.str http_filter_option: A list of possible values for the HTTP filter based on the HTTP header.
|
11137
11180
|
:param Sequence[builtins.str] http_filter_values: The possible values to match for a given HTTP filter.
|
11138
11181
|
:param builtins.bool invert: The condition will be of type "unless" if invert is set to `true`
|
11139
11182
|
:param Sequence[builtins.str] ip_subnets: A list of IPs, or CIDR v4/v6 addresses of the session client, to match.
|
11183
|
+
:param builtins.bool ips_edge_services: Defines whether Edge Services IPs should be matched.
|
11140
11184
|
"""
|
11141
11185
|
pulumi.set(__self__, "http_filter", http_filter)
|
11142
11186
|
pulumi.set(__self__, "http_filter_option", http_filter_option)
|
11143
11187
|
pulumi.set(__self__, "http_filter_values", http_filter_values)
|
11144
11188
|
pulumi.set(__self__, "invert", invert)
|
11145
11189
|
pulumi.set(__self__, "ip_subnets", ip_subnets)
|
11190
|
+
pulumi.set(__self__, "ips_edge_services", ips_edge_services)
|
11146
11191
|
|
11147
11192
|
@property
|
11148
11193
|
@pulumi.getter(name="httpFilter")
|
@@ -11184,6 +11229,14 @@ class GetLbAclsAclMatchResult(dict):
|
|
11184
11229
|
"""
|
11185
11230
|
return pulumi.get(self, "ip_subnets")
|
11186
11231
|
|
11232
|
+
@property
|
11233
|
+
@pulumi.getter(name="ipsEdgeServices")
|
11234
|
+
def ips_edge_services(self) -> builtins.bool:
|
11235
|
+
"""
|
11236
|
+
Defines whether Edge Services IPs should be matched.
|
11237
|
+
"""
|
11238
|
+
return pulumi.get(self, "ips_edge_services")
|
11239
|
+
|
11187
11240
|
|
11188
11241
|
@pulumi.output_type
|
11189
11242
|
class GetLbBackendHealthCheckHttpResult(dict):
|
@@ -11765,19 +11818,22 @@ class GetLbFrontendAclMatchResult(dict):
|
|
11765
11818
|
http_filter_option: builtins.str,
|
11766
11819
|
http_filter_values: Sequence[builtins.str],
|
11767
11820
|
invert: builtins.bool,
|
11768
|
-
ip_subnets: Sequence[builtins.str]
|
11821
|
+
ip_subnets: Sequence[builtins.str],
|
11822
|
+
ips_edge_services: builtins.bool):
|
11769
11823
|
"""
|
11770
11824
|
:param builtins.str http_filter: The HTTP filter to match
|
11771
11825
|
:param builtins.str http_filter_option: You can use this field with http_header_match acl type to set the header name to filter
|
11772
11826
|
:param Sequence[builtins.str] http_filter_values: A list of possible values to match for the given HTTP filter
|
11773
11827
|
:param builtins.bool invert: If set to true, the condition will be of type "unless"
|
11774
11828
|
:param Sequence[builtins.str] ip_subnets: A list of IPs or CIDR v4/v6 addresses of the client of the session to match
|
11829
|
+
:param builtins.bool ips_edge_services: Defines whether Edge Services IPs should be matched
|
11775
11830
|
"""
|
11776
11831
|
pulumi.set(__self__, "http_filter", http_filter)
|
11777
11832
|
pulumi.set(__self__, "http_filter_option", http_filter_option)
|
11778
11833
|
pulumi.set(__self__, "http_filter_values", http_filter_values)
|
11779
11834
|
pulumi.set(__self__, "invert", invert)
|
11780
11835
|
pulumi.set(__self__, "ip_subnets", ip_subnets)
|
11836
|
+
pulumi.set(__self__, "ips_edge_services", ips_edge_services)
|
11781
11837
|
|
11782
11838
|
@property
|
11783
11839
|
@pulumi.getter(name="httpFilter")
|
@@ -11819,6 +11875,14 @@ class GetLbFrontendAclMatchResult(dict):
|
|
11819
11875
|
"""
|
11820
11876
|
return pulumi.get(self, "ip_subnets")
|
11821
11877
|
|
11878
|
+
@property
|
11879
|
+
@pulumi.getter(name="ipsEdgeServices")
|
11880
|
+
def ips_edge_services(self) -> builtins.bool:
|
11881
|
+
"""
|
11882
|
+
Defines whether Edge Services IPs should be matched
|
11883
|
+
"""
|
11884
|
+
return pulumi.get(self, "ips_edge_services")
|
11885
|
+
|
11822
11886
|
|
11823
11887
|
@pulumi.output_type
|
11824
11888
|
class GetLbFrontendsFrontendResult(dict):
|
pulumiverse_scaleway/vpc.py
CHANGED
@@ -20,6 +20,7 @@ __all__ = ['VpcArgs', 'Vpc']
|
|
20
20
|
@pulumi.input_type
|
21
21
|
class VpcArgs:
|
22
22
|
def __init__(__self__, *,
|
23
|
+
enable_custom_routes_propagation: Optional[pulumi.Input[builtins.bool]] = None,
|
23
24
|
enable_routing: Optional[pulumi.Input[builtins.bool]] = None,
|
24
25
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
25
26
|
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -27,12 +28,15 @@ class VpcArgs:
|
|
27
28
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None):
|
28
29
|
"""
|
29
30
|
The set of arguments for constructing a Vpc resource.
|
31
|
+
:param pulumi.Input[builtins.bool] enable_custom_routes_propagation: Defines whether the VPC advertises custom routes between its Private Networks. Note that you will not be able to deactivate it afterwards.
|
30
32
|
:param pulumi.Input[builtins.bool] enable_routing: Enable routing between Private Networks in the VPC. Note that you will not be able to deactivate it afterwards.
|
31
33
|
:param pulumi.Input[builtins.str] name: The name for the VPC. If not provided it will be randomly generated.
|
32
34
|
:param pulumi.Input[builtins.str] project_id: `project_id`) The ID of the Project the VPC is associated with.
|
33
35
|
:param pulumi.Input[builtins.str] region: `region`) The region of the VPC.
|
34
36
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] tags: The tags to associate with the VPC.
|
35
37
|
"""
|
38
|
+
if enable_custom_routes_propagation is not None:
|
39
|
+
pulumi.set(__self__, "enable_custom_routes_propagation", enable_custom_routes_propagation)
|
36
40
|
if enable_routing is not None:
|
37
41
|
pulumi.set(__self__, "enable_routing", enable_routing)
|
38
42
|
if name is not None:
|
@@ -44,6 +48,18 @@ class VpcArgs:
|
|
44
48
|
if tags is not None:
|
45
49
|
pulumi.set(__self__, "tags", tags)
|
46
50
|
|
51
|
+
@property
|
52
|
+
@pulumi.getter(name="enableCustomRoutesPropagation")
|
53
|
+
def enable_custom_routes_propagation(self) -> Optional[pulumi.Input[builtins.bool]]:
|
54
|
+
"""
|
55
|
+
Defines whether the VPC advertises custom routes between its Private Networks. Note that you will not be able to deactivate it afterwards.
|
56
|
+
"""
|
57
|
+
return pulumi.get(self, "enable_custom_routes_propagation")
|
58
|
+
|
59
|
+
@enable_custom_routes_propagation.setter
|
60
|
+
def enable_custom_routes_propagation(self, value: Optional[pulumi.Input[builtins.bool]]):
|
61
|
+
pulumi.set(self, "enable_custom_routes_propagation", value)
|
62
|
+
|
47
63
|
@property
|
48
64
|
@pulumi.getter(name="enableRouting")
|
49
65
|
def enable_routing(self) -> Optional[pulumi.Input[builtins.bool]]:
|
@@ -109,6 +125,7 @@ class VpcArgs:
|
|
109
125
|
class _VpcState:
|
110
126
|
def __init__(__self__, *,
|
111
127
|
created_at: Optional[pulumi.Input[builtins.str]] = None,
|
128
|
+
enable_custom_routes_propagation: Optional[pulumi.Input[builtins.bool]] = None,
|
112
129
|
enable_routing: Optional[pulumi.Input[builtins.bool]] = None,
|
113
130
|
is_default: Optional[pulumi.Input[builtins.bool]] = None,
|
114
131
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -120,6 +137,7 @@ class _VpcState:
|
|
120
137
|
"""
|
121
138
|
Input properties used for looking up and filtering Vpc resources.
|
122
139
|
:param pulumi.Input[builtins.str] created_at: Date and time of VPC's creation (RFC 3339 format).
|
140
|
+
:param pulumi.Input[builtins.bool] enable_custom_routes_propagation: Defines whether the VPC advertises custom routes between its Private Networks. Note that you will not be able to deactivate it afterwards.
|
123
141
|
:param pulumi.Input[builtins.bool] enable_routing: Enable routing between Private Networks in the VPC. Note that you will not be able to deactivate it afterwards.
|
124
142
|
:param pulumi.Input[builtins.bool] is_default: Defines whether the VPC is the default one for its Project.
|
125
143
|
:param pulumi.Input[builtins.str] name: The name for the VPC. If not provided it will be randomly generated.
|
@@ -131,6 +149,8 @@ class _VpcState:
|
|
131
149
|
"""
|
132
150
|
if created_at is not None:
|
133
151
|
pulumi.set(__self__, "created_at", created_at)
|
152
|
+
if enable_custom_routes_propagation is not None:
|
153
|
+
pulumi.set(__self__, "enable_custom_routes_propagation", enable_custom_routes_propagation)
|
134
154
|
if enable_routing is not None:
|
135
155
|
pulumi.set(__self__, "enable_routing", enable_routing)
|
136
156
|
if is_default is not None:
|
@@ -160,6 +180,18 @@ class _VpcState:
|
|
160
180
|
def created_at(self, value: Optional[pulumi.Input[builtins.str]]):
|
161
181
|
pulumi.set(self, "created_at", value)
|
162
182
|
|
183
|
+
@property
|
184
|
+
@pulumi.getter(name="enableCustomRoutesPropagation")
|
185
|
+
def enable_custom_routes_propagation(self) -> Optional[pulumi.Input[builtins.bool]]:
|
186
|
+
"""
|
187
|
+
Defines whether the VPC advertises custom routes between its Private Networks. Note that you will not be able to deactivate it afterwards.
|
188
|
+
"""
|
189
|
+
return pulumi.get(self, "enable_custom_routes_propagation")
|
190
|
+
|
191
|
+
@enable_custom_routes_propagation.setter
|
192
|
+
def enable_custom_routes_propagation(self, value: Optional[pulumi.Input[builtins.bool]]):
|
193
|
+
pulumi.set(self, "enable_custom_routes_propagation", value)
|
194
|
+
|
163
195
|
@property
|
164
196
|
@pulumi.getter(name="enableRouting")
|
165
197
|
def enable_routing(self) -> Optional[pulumi.Input[builtins.bool]]:
|
@@ -268,6 +300,7 @@ class Vpc(pulumi.CustomResource):
|
|
268
300
|
def __init__(__self__,
|
269
301
|
resource_name: str,
|
270
302
|
opts: Optional[pulumi.ResourceOptions] = None,
|
303
|
+
enable_custom_routes_propagation: Optional[pulumi.Input[builtins.bool]] = None,
|
271
304
|
enable_routing: Optional[pulumi.Input[builtins.bool]] = None,
|
272
305
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
273
306
|
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -322,6 +355,7 @@ class Vpc(pulumi.CustomResource):
|
|
322
355
|
|
323
356
|
:param str resource_name: The name of the resource.
|
324
357
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
358
|
+
:param pulumi.Input[builtins.bool] enable_custom_routes_propagation: Defines whether the VPC advertises custom routes between its Private Networks. Note that you will not be able to deactivate it afterwards.
|
325
359
|
:param pulumi.Input[builtins.bool] enable_routing: Enable routing between Private Networks in the VPC. Note that you will not be able to deactivate it afterwards.
|
326
360
|
:param pulumi.Input[builtins.str] name: The name for the VPC. If not provided it will be randomly generated.
|
327
361
|
:param pulumi.Input[builtins.str] project_id: `project_id`) The ID of the Project the VPC is associated with.
|
@@ -395,6 +429,7 @@ class Vpc(pulumi.CustomResource):
|
|
395
429
|
def _internal_init(__self__,
|
396
430
|
resource_name: str,
|
397
431
|
opts: Optional[pulumi.ResourceOptions] = None,
|
432
|
+
enable_custom_routes_propagation: Optional[pulumi.Input[builtins.bool]] = None,
|
398
433
|
enable_routing: Optional[pulumi.Input[builtins.bool]] = None,
|
399
434
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
400
435
|
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -410,6 +445,7 @@ class Vpc(pulumi.CustomResource):
|
|
410
445
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
411
446
|
__props__ = VpcArgs.__new__(VpcArgs)
|
412
447
|
|
448
|
+
__props__.__dict__["enable_custom_routes_propagation"] = enable_custom_routes_propagation
|
413
449
|
__props__.__dict__["enable_routing"] = enable_routing
|
414
450
|
__props__.__dict__["name"] = name
|
415
451
|
__props__.__dict__["project_id"] = project_id
|
@@ -430,6 +466,7 @@ class Vpc(pulumi.CustomResource):
|
|
430
466
|
id: pulumi.Input[str],
|
431
467
|
opts: Optional[pulumi.ResourceOptions] = None,
|
432
468
|
created_at: Optional[pulumi.Input[builtins.str]] = None,
|
469
|
+
enable_custom_routes_propagation: Optional[pulumi.Input[builtins.bool]] = None,
|
433
470
|
enable_routing: Optional[pulumi.Input[builtins.bool]] = None,
|
434
471
|
is_default: Optional[pulumi.Input[builtins.bool]] = None,
|
435
472
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -446,6 +483,7 @@ class Vpc(pulumi.CustomResource):
|
|
446
483
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
447
484
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
448
485
|
:param pulumi.Input[builtins.str] created_at: Date and time of VPC's creation (RFC 3339 format).
|
486
|
+
:param pulumi.Input[builtins.bool] enable_custom_routes_propagation: Defines whether the VPC advertises custom routes between its Private Networks. Note that you will not be able to deactivate it afterwards.
|
449
487
|
:param pulumi.Input[builtins.bool] enable_routing: Enable routing between Private Networks in the VPC. Note that you will not be able to deactivate it afterwards.
|
450
488
|
:param pulumi.Input[builtins.bool] is_default: Defines whether the VPC is the default one for its Project.
|
451
489
|
:param pulumi.Input[builtins.str] name: The name for the VPC. If not provided it will be randomly generated.
|
@@ -460,6 +498,7 @@ class Vpc(pulumi.CustomResource):
|
|
460
498
|
__props__ = _VpcState.__new__(_VpcState)
|
461
499
|
|
462
500
|
__props__.__dict__["created_at"] = created_at
|
501
|
+
__props__.__dict__["enable_custom_routes_propagation"] = enable_custom_routes_propagation
|
463
502
|
__props__.__dict__["enable_routing"] = enable_routing
|
464
503
|
__props__.__dict__["is_default"] = is_default
|
465
504
|
__props__.__dict__["name"] = name
|
@@ -478,6 +517,14 @@ class Vpc(pulumi.CustomResource):
|
|
478
517
|
"""
|
479
518
|
return pulumi.get(self, "created_at")
|
480
519
|
|
520
|
+
@property
|
521
|
+
@pulumi.getter(name="enableCustomRoutesPropagation")
|
522
|
+
def enable_custom_routes_propagation(self) -> pulumi.Output[Optional[builtins.bool]]:
|
523
|
+
"""
|
524
|
+
Defines whether the VPC advertises custom routes between its Private Networks. Note that you will not be able to deactivate it afterwards.
|
525
|
+
"""
|
526
|
+
return pulumi.get(self, "enable_custom_routes_propagation")
|
527
|
+
|
481
528
|
@property
|
482
529
|
@pulumi.getter(name="enableRouting")
|
483
530
|
def enable_routing(self) -> pulumi.Output[builtins.bool]:
|
@@ -22,6 +22,7 @@ __all__ = ['VpcPrivateNetworkArgs', 'VpcPrivateNetwork']
|
|
22
22
|
@pulumi.input_type
|
23
23
|
class VpcPrivateNetworkArgs:
|
24
24
|
def __init__(__self__, *,
|
25
|
+
enable_default_route_propagation: Optional[pulumi.Input[builtins.bool]] = None,
|
25
26
|
ipv4_subnet: Optional[pulumi.Input['VpcPrivateNetworkIpv4SubnetArgs']] = None,
|
26
27
|
ipv6_subnets: Optional[pulumi.Input[Sequence[pulumi.Input['VpcPrivateNetworkIpv6SubnetArgs']]]] = None,
|
27
28
|
is_regional: Optional[pulumi.Input[builtins.bool]] = None,
|
@@ -33,6 +34,7 @@ class VpcPrivateNetworkArgs:
|
|
33
34
|
zone: Optional[pulumi.Input[builtins.str]] = None):
|
34
35
|
"""
|
35
36
|
The set of arguments for constructing a VpcPrivateNetwork resource.
|
37
|
+
:param pulumi.Input[builtins.bool] enable_default_route_propagation: Defines whether default v4 and v6 routes are propagated for this Private Network.
|
36
38
|
:param pulumi.Input['VpcPrivateNetworkIpv4SubnetArgs'] ipv4_subnet: The IPv4 subnet to associate with the Private Network.
|
37
39
|
:param pulumi.Input[Sequence[pulumi.Input['VpcPrivateNetworkIpv6SubnetArgs']]] ipv6_subnets: The IPv6 subnets to associate with the private network.
|
38
40
|
:param pulumi.Input[builtins.bool] is_regional: Private Networks are now all necessarily regional.
|
@@ -43,6 +45,8 @@ class VpcPrivateNetworkArgs:
|
|
43
45
|
:param pulumi.Input[builtins.str] vpc_id: The VPC in which to create the Private Network.
|
44
46
|
:param pulumi.Input[builtins.str] zone: Use `region` instead.
|
45
47
|
"""
|
48
|
+
if enable_default_route_propagation is not None:
|
49
|
+
pulumi.set(__self__, "enable_default_route_propagation", enable_default_route_propagation)
|
46
50
|
if ipv4_subnet is not None:
|
47
51
|
pulumi.set(__self__, "ipv4_subnet", ipv4_subnet)
|
48
52
|
if ipv6_subnets is not None:
|
@@ -68,6 +72,18 @@ class VpcPrivateNetworkArgs:
|
|
68
72
|
if zone is not None:
|
69
73
|
pulumi.set(__self__, "zone", zone)
|
70
74
|
|
75
|
+
@property
|
76
|
+
@pulumi.getter(name="enableDefaultRoutePropagation")
|
77
|
+
def enable_default_route_propagation(self) -> Optional[pulumi.Input[builtins.bool]]:
|
78
|
+
"""
|
79
|
+
Defines whether default v4 and v6 routes are propagated for this Private Network.
|
80
|
+
"""
|
81
|
+
return pulumi.get(self, "enable_default_route_propagation")
|
82
|
+
|
83
|
+
@enable_default_route_propagation.setter
|
84
|
+
def enable_default_route_propagation(self, value: Optional[pulumi.Input[builtins.bool]]):
|
85
|
+
pulumi.set(self, "enable_default_route_propagation", value)
|
86
|
+
|
71
87
|
@property
|
72
88
|
@pulumi.getter(name="ipv4Subnet")
|
73
89
|
def ipv4_subnet(self) -> Optional[pulumi.Input['VpcPrivateNetworkIpv4SubnetArgs']]:
|
@@ -183,6 +199,7 @@ class VpcPrivateNetworkArgs:
|
|
183
199
|
class _VpcPrivateNetworkState:
|
184
200
|
def __init__(__self__, *,
|
185
201
|
created_at: Optional[pulumi.Input[builtins.str]] = None,
|
202
|
+
enable_default_route_propagation: Optional[pulumi.Input[builtins.bool]] = None,
|
186
203
|
ipv4_subnet: Optional[pulumi.Input['VpcPrivateNetworkIpv4SubnetArgs']] = None,
|
187
204
|
ipv6_subnets: Optional[pulumi.Input[Sequence[pulumi.Input['VpcPrivateNetworkIpv6SubnetArgs']]]] = None,
|
188
205
|
is_regional: Optional[pulumi.Input[builtins.bool]] = None,
|
@@ -197,6 +214,7 @@ class _VpcPrivateNetworkState:
|
|
197
214
|
"""
|
198
215
|
Input properties used for looking up and filtering VpcPrivateNetwork resources.
|
199
216
|
:param pulumi.Input[builtins.str] created_at: The date and time of the creation of the subnet.
|
217
|
+
:param pulumi.Input[builtins.bool] enable_default_route_propagation: Defines whether default v4 and v6 routes are propagated for this Private Network.
|
200
218
|
:param pulumi.Input['VpcPrivateNetworkIpv4SubnetArgs'] ipv4_subnet: The IPv4 subnet to associate with the Private Network.
|
201
219
|
:param pulumi.Input[Sequence[pulumi.Input['VpcPrivateNetworkIpv6SubnetArgs']]] ipv6_subnets: The IPv6 subnets to associate with the private network.
|
202
220
|
:param pulumi.Input[builtins.bool] is_regional: Private Networks are now all necessarily regional.
|
@@ -211,6 +229,8 @@ class _VpcPrivateNetworkState:
|
|
211
229
|
"""
|
212
230
|
if created_at is not None:
|
213
231
|
pulumi.set(__self__, "created_at", created_at)
|
232
|
+
if enable_default_route_propagation is not None:
|
233
|
+
pulumi.set(__self__, "enable_default_route_propagation", enable_default_route_propagation)
|
214
234
|
if ipv4_subnet is not None:
|
215
235
|
pulumi.set(__self__, "ipv4_subnet", ipv4_subnet)
|
216
236
|
if ipv6_subnets is not None:
|
@@ -252,6 +272,18 @@ class _VpcPrivateNetworkState:
|
|
252
272
|
def created_at(self, value: Optional[pulumi.Input[builtins.str]]):
|
253
273
|
pulumi.set(self, "created_at", value)
|
254
274
|
|
275
|
+
@property
|
276
|
+
@pulumi.getter(name="enableDefaultRoutePropagation")
|
277
|
+
def enable_default_route_propagation(self) -> Optional[pulumi.Input[builtins.bool]]:
|
278
|
+
"""
|
279
|
+
Defines whether default v4 and v6 routes are propagated for this Private Network.
|
280
|
+
"""
|
281
|
+
return pulumi.get(self, "enable_default_route_propagation")
|
282
|
+
|
283
|
+
@enable_default_route_propagation.setter
|
284
|
+
def enable_default_route_propagation(self, value: Optional[pulumi.Input[builtins.bool]]):
|
285
|
+
pulumi.set(self, "enable_default_route_propagation", value)
|
286
|
+
|
255
287
|
@property
|
256
288
|
@pulumi.getter(name="ipv4Subnet")
|
257
289
|
def ipv4_subnet(self) -> Optional[pulumi.Input['VpcPrivateNetworkIpv4SubnetArgs']]:
|
@@ -398,6 +430,7 @@ class VpcPrivateNetwork(pulumi.CustomResource):
|
|
398
430
|
def __init__(__self__,
|
399
431
|
resource_name: str,
|
400
432
|
opts: Optional[pulumi.ResourceOptions] = None,
|
433
|
+
enable_default_route_propagation: Optional[pulumi.Input[builtins.bool]] = None,
|
401
434
|
ipv4_subnet: Optional[pulumi.Input[Union['VpcPrivateNetworkIpv4SubnetArgs', 'VpcPrivateNetworkIpv4SubnetArgsDict']]] = None,
|
402
435
|
ipv6_subnets: Optional[pulumi.Input[Sequence[pulumi.Input[Union['VpcPrivateNetworkIpv6SubnetArgs', 'VpcPrivateNetworkIpv6SubnetArgsDict']]]]] = None,
|
403
436
|
is_regional: Optional[pulumi.Input[builtins.bool]] = None,
|
@@ -465,6 +498,7 @@ class VpcPrivateNetwork(pulumi.CustomResource):
|
|
465
498
|
|
466
499
|
:param str resource_name: The name of the resource.
|
467
500
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
501
|
+
:param pulumi.Input[builtins.bool] enable_default_route_propagation: Defines whether default v4 and v6 routes are propagated for this Private Network.
|
468
502
|
:param pulumi.Input[Union['VpcPrivateNetworkIpv4SubnetArgs', 'VpcPrivateNetworkIpv4SubnetArgsDict']] ipv4_subnet: The IPv4 subnet to associate with the Private Network.
|
469
503
|
:param pulumi.Input[Sequence[pulumi.Input[Union['VpcPrivateNetworkIpv6SubnetArgs', 'VpcPrivateNetworkIpv6SubnetArgsDict']]]] ipv6_subnets: The IPv6 subnets to associate with the private network.
|
470
504
|
:param pulumi.Input[builtins.bool] is_regional: Private Networks are now all necessarily regional.
|
@@ -551,6 +585,7 @@ class VpcPrivateNetwork(pulumi.CustomResource):
|
|
551
585
|
def _internal_init(__self__,
|
552
586
|
resource_name: str,
|
553
587
|
opts: Optional[pulumi.ResourceOptions] = None,
|
588
|
+
enable_default_route_propagation: Optional[pulumi.Input[builtins.bool]] = None,
|
554
589
|
ipv4_subnet: Optional[pulumi.Input[Union['VpcPrivateNetworkIpv4SubnetArgs', 'VpcPrivateNetworkIpv4SubnetArgsDict']]] = None,
|
555
590
|
ipv6_subnets: Optional[pulumi.Input[Sequence[pulumi.Input[Union['VpcPrivateNetworkIpv6SubnetArgs', 'VpcPrivateNetworkIpv6SubnetArgsDict']]]]] = None,
|
556
591
|
is_regional: Optional[pulumi.Input[builtins.bool]] = None,
|
@@ -570,6 +605,7 @@ class VpcPrivateNetwork(pulumi.CustomResource):
|
|
570
605
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
571
606
|
__props__ = VpcPrivateNetworkArgs.__new__(VpcPrivateNetworkArgs)
|
572
607
|
|
608
|
+
__props__.__dict__["enable_default_route_propagation"] = enable_default_route_propagation
|
573
609
|
__props__.__dict__["ipv4_subnet"] = ipv4_subnet
|
574
610
|
__props__.__dict__["ipv6_subnets"] = ipv6_subnets
|
575
611
|
__props__.__dict__["is_regional"] = is_regional
|
@@ -593,6 +629,7 @@ class VpcPrivateNetwork(pulumi.CustomResource):
|
|
593
629
|
id: pulumi.Input[str],
|
594
630
|
opts: Optional[pulumi.ResourceOptions] = None,
|
595
631
|
created_at: Optional[pulumi.Input[builtins.str]] = None,
|
632
|
+
enable_default_route_propagation: Optional[pulumi.Input[builtins.bool]] = None,
|
596
633
|
ipv4_subnet: Optional[pulumi.Input[Union['VpcPrivateNetworkIpv4SubnetArgs', 'VpcPrivateNetworkIpv4SubnetArgsDict']]] = None,
|
597
634
|
ipv6_subnets: Optional[pulumi.Input[Sequence[pulumi.Input[Union['VpcPrivateNetworkIpv6SubnetArgs', 'VpcPrivateNetworkIpv6SubnetArgsDict']]]]] = None,
|
598
635
|
is_regional: Optional[pulumi.Input[builtins.bool]] = None,
|
@@ -612,6 +649,7 @@ class VpcPrivateNetwork(pulumi.CustomResource):
|
|
612
649
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
613
650
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
614
651
|
:param pulumi.Input[builtins.str] created_at: The date and time of the creation of the subnet.
|
652
|
+
:param pulumi.Input[builtins.bool] enable_default_route_propagation: Defines whether default v4 and v6 routes are propagated for this Private Network.
|
615
653
|
:param pulumi.Input[Union['VpcPrivateNetworkIpv4SubnetArgs', 'VpcPrivateNetworkIpv4SubnetArgsDict']] ipv4_subnet: The IPv4 subnet to associate with the Private Network.
|
616
654
|
:param pulumi.Input[Sequence[pulumi.Input[Union['VpcPrivateNetworkIpv6SubnetArgs', 'VpcPrivateNetworkIpv6SubnetArgsDict']]]] ipv6_subnets: The IPv6 subnets to associate with the private network.
|
617
655
|
:param pulumi.Input[builtins.bool] is_regional: Private Networks are now all necessarily regional.
|
@@ -629,6 +667,7 @@ class VpcPrivateNetwork(pulumi.CustomResource):
|
|
629
667
|
__props__ = _VpcPrivateNetworkState.__new__(_VpcPrivateNetworkState)
|
630
668
|
|
631
669
|
__props__.__dict__["created_at"] = created_at
|
670
|
+
__props__.__dict__["enable_default_route_propagation"] = enable_default_route_propagation
|
632
671
|
__props__.__dict__["ipv4_subnet"] = ipv4_subnet
|
633
672
|
__props__.__dict__["ipv6_subnets"] = ipv6_subnets
|
634
673
|
__props__.__dict__["is_regional"] = is_regional
|
@@ -650,6 +689,14 @@ class VpcPrivateNetwork(pulumi.CustomResource):
|
|
650
689
|
"""
|
651
690
|
return pulumi.get(self, "created_at")
|
652
691
|
|
692
|
+
@property
|
693
|
+
@pulumi.getter(name="enableDefaultRoutePropagation")
|
694
|
+
def enable_default_route_propagation(self) -> pulumi.Output[builtins.bool]:
|
695
|
+
"""
|
696
|
+
Defines whether default v4 and v6 routes are propagated for this Private Network.
|
697
|
+
"""
|
698
|
+
return pulumi.get(self, "enable_default_route_propagation")
|
699
|
+
|
653
700
|
@property
|
654
701
|
@pulumi.getter(name="ipv4Subnet")
|
655
702
|
def ipv4_subnet(self) -> pulumi.Output['outputs.VpcPrivateNetworkIpv4Subnet']:
|