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/__init__.py
CHANGED
@@ -217,6 +217,8 @@ if typing.TYPE_CHECKING:
|
|
217
217
|
account = __account
|
218
218
|
import pulumiverse_scaleway.applesilicon as __applesilicon
|
219
219
|
applesilicon = __applesilicon
|
220
|
+
import pulumiverse_scaleway.autoscaling as __autoscaling
|
221
|
+
autoscaling = __autoscaling
|
220
222
|
import pulumiverse_scaleway.billing as __billing
|
221
223
|
billing = __billing
|
222
224
|
import pulumiverse_scaleway.block as __block
|
@@ -272,6 +274,7 @@ if typing.TYPE_CHECKING:
|
|
272
274
|
else:
|
273
275
|
account = _utilities.lazy_import('pulumiverse_scaleway.account')
|
274
276
|
applesilicon = _utilities.lazy_import('pulumiverse_scaleway.applesilicon')
|
277
|
+
autoscaling = _utilities.lazy_import('pulumiverse_scaleway.autoscaling')
|
275
278
|
billing = _utilities.lazy_import('pulumiverse_scaleway.billing')
|
276
279
|
block = _utilities.lazy_import('pulumiverse_scaleway.block')
|
277
280
|
config = _utilities.lazy_import('pulumiverse_scaleway.config')
|
@@ -326,6 +329,30 @@ _utilities.register(
|
|
326
329
|
"scaleway:applesilicon/server:Server": "Server"
|
327
330
|
}
|
328
331
|
},
|
332
|
+
{
|
333
|
+
"pkg": "scaleway",
|
334
|
+
"mod": "autoscaling/instanceGroup",
|
335
|
+
"fqn": "pulumiverse_scaleway.autoscaling",
|
336
|
+
"classes": {
|
337
|
+
"scaleway:autoscaling/instanceGroup:InstanceGroup": "InstanceGroup"
|
338
|
+
}
|
339
|
+
},
|
340
|
+
{
|
341
|
+
"pkg": "scaleway",
|
342
|
+
"mod": "autoscaling/instancePolicy",
|
343
|
+
"fqn": "pulumiverse_scaleway.autoscaling",
|
344
|
+
"classes": {
|
345
|
+
"scaleway:autoscaling/instancePolicy:InstancePolicy": "InstancePolicy"
|
346
|
+
}
|
347
|
+
},
|
348
|
+
{
|
349
|
+
"pkg": "scaleway",
|
350
|
+
"mod": "autoscaling/instanceTemplate",
|
351
|
+
"fqn": "pulumiverse_scaleway.autoscaling",
|
352
|
+
"classes": {
|
353
|
+
"scaleway:autoscaling/instanceTemplate:InstanceTemplate": "InstanceTemplate"
|
354
|
+
}
|
355
|
+
},
|
329
356
|
{
|
330
357
|
"pkg": "scaleway",
|
331
358
|
"mod": "block/snapshot",
|
pulumiverse_scaleway/_inputs.py
CHANGED
@@ -7134,7 +7134,11 @@ if not MYPY:
|
|
7134
7134
|
"""
|
7135
7135
|
ip_subnets: NotRequired[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]
|
7136
7136
|
"""
|
7137
|
-
A list of IPs, or CIDR v4/v6 addresses of the session client, to match.
|
7137
|
+
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.
|
7138
|
+
"""
|
7139
|
+
ips_edge_services: NotRequired[pulumi.Input[builtins.bool]]
|
7140
|
+
"""
|
7141
|
+
Defines whether Edge Services IPs should be matched. Only one of `ip_subnet` and `ips_edge_services` should be specified.
|
7138
7142
|
"""
|
7139
7143
|
elif False:
|
7140
7144
|
LoadbalancerAclMatchArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -7146,7 +7150,8 @@ class LoadbalancerAclMatchArgs:
|
|
7146
7150
|
http_filter_option: Optional[pulumi.Input[builtins.str]] = None,
|
7147
7151
|
http_filter_values: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
7148
7152
|
invert: Optional[pulumi.Input[builtins.bool]] = None,
|
7149
|
-
ip_subnets: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None
|
7153
|
+
ip_subnets: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
7154
|
+
ips_edge_services: Optional[pulumi.Input[builtins.bool]] = None):
|
7150
7155
|
"""
|
7151
7156
|
: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.
|
7152
7157
|
It extracts the request's URL path, which starts at the first slash and ends before the question mark (without the host part).
|
@@ -7155,7 +7160,8 @@ class LoadbalancerAclMatchArgs:
|
|
7155
7160
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] http_filter_values: A list of possible values to match for the given HTTP filter.
|
7156
7161
|
Keep in mind that in the case of `http_header_match` the HTTP header field name is case insensitive.
|
7157
7162
|
:param pulumi.Input[builtins.bool] invert: If set to `true`, the condition will be of type "unless".
|
7158
|
-
: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.
|
7163
|
+
: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.
|
7164
|
+
: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.
|
7159
7165
|
"""
|
7160
7166
|
if http_filter is not None:
|
7161
7167
|
pulumi.set(__self__, "http_filter", http_filter)
|
@@ -7167,6 +7173,8 @@ class LoadbalancerAclMatchArgs:
|
|
7167
7173
|
pulumi.set(__self__, "invert", invert)
|
7168
7174
|
if ip_subnets is not None:
|
7169
7175
|
pulumi.set(__self__, "ip_subnets", ip_subnets)
|
7176
|
+
if ips_edge_services is not None:
|
7177
|
+
pulumi.set(__self__, "ips_edge_services", ips_edge_services)
|
7170
7178
|
|
7171
7179
|
@property
|
7172
7180
|
@pulumi.getter(name="httpFilter")
|
@@ -7223,7 +7231,7 @@ class LoadbalancerAclMatchArgs:
|
|
7223
7231
|
@pulumi.getter(name="ipSubnets")
|
7224
7232
|
def ip_subnets(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
|
7225
7233
|
"""
|
7226
|
-
A list of IPs, or CIDR v4/v6 addresses of the session client, to match.
|
7234
|
+
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.
|
7227
7235
|
"""
|
7228
7236
|
return pulumi.get(self, "ip_subnets")
|
7229
7237
|
|
@@ -7231,6 +7239,18 @@ class LoadbalancerAclMatchArgs:
|
|
7231
7239
|
def ip_subnets(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
|
7232
7240
|
pulumi.set(self, "ip_subnets", value)
|
7233
7241
|
|
7242
|
+
@property
|
7243
|
+
@pulumi.getter(name="ipsEdgeServices")
|
7244
|
+
def ips_edge_services(self) -> Optional[pulumi.Input[builtins.bool]]:
|
7245
|
+
"""
|
7246
|
+
Defines whether Edge Services IPs should be matched. Only one of `ip_subnet` and `ips_edge_services` should be specified.
|
7247
|
+
"""
|
7248
|
+
return pulumi.get(self, "ips_edge_services")
|
7249
|
+
|
7250
|
+
@ips_edge_services.setter
|
7251
|
+
def ips_edge_services(self, value: Optional[pulumi.Input[builtins.bool]]):
|
7252
|
+
pulumi.set(self, "ips_edge_services", value)
|
7253
|
+
|
7234
7254
|
|
7235
7255
|
if not MYPY:
|
7236
7256
|
class LoadbalancerBackendHealthCheckHttpArgsDict(TypedDict):
|
@@ -7536,7 +7556,7 @@ if not MYPY:
|
|
7536
7556
|
"""
|
7537
7557
|
match: pulumi.Input['LoadbalancerFrontendAclMatchArgsDict']
|
7538
7558
|
"""
|
7539
|
-
The ACL match rule. At least `ip_subnet` or `http_filter` and `http_filter_value` are required.
|
7559
|
+
The ACL match rule. At least `ip_subnet` or `ips_edge_services` or `http_filter` and `http_filter_value` are required.
|
7540
7560
|
"""
|
7541
7561
|
created_at: NotRequired[pulumi.Input[builtins.str]]
|
7542
7562
|
"""
|
@@ -7568,7 +7588,7 @@ class LoadbalancerFrontendAclArgs:
|
|
7568
7588
|
updated_at: Optional[pulumi.Input[builtins.str]] = None):
|
7569
7589
|
"""
|
7570
7590
|
:param pulumi.Input['LoadbalancerFrontendAclActionArgs'] action: Action to undertake when an ACL filter matches.
|
7571
|
-
:param pulumi.Input['LoadbalancerFrontendAclMatchArgs'] match: The ACL match rule. At least `ip_subnet` or `http_filter` and `http_filter_value` are required.
|
7591
|
+
:param pulumi.Input['LoadbalancerFrontendAclMatchArgs'] match: The ACL match rule. At least `ip_subnet` or `ips_edge_services` or `http_filter` and `http_filter_value` are required.
|
7572
7592
|
:param pulumi.Input[builtins.str] created_at: IsDate and time of ACL's creation (RFC 3339 format)
|
7573
7593
|
:param pulumi.Input[builtins.str] description: Description of the ACL
|
7574
7594
|
:param pulumi.Input[builtins.str] name: The ACL name. If not provided it will be randomly generated.
|
@@ -7601,7 +7621,7 @@ class LoadbalancerFrontendAclArgs:
|
|
7601
7621
|
@pulumi.getter
|
7602
7622
|
def match(self) -> pulumi.Input['LoadbalancerFrontendAclMatchArgs']:
|
7603
7623
|
"""
|
7604
|
-
The ACL match rule. At least `ip_subnet` or `http_filter` and `http_filter_value` are required.
|
7624
|
+
The ACL match rule. At least `ip_subnet` or `ips_edge_services` or `http_filter` and `http_filter_value` are required.
|
7605
7625
|
"""
|
7606
7626
|
return pulumi.get(self, "match")
|
7607
7627
|
|
@@ -7804,7 +7824,11 @@ if not MYPY:
|
|
7804
7824
|
"""
|
7805
7825
|
ip_subnets: NotRequired[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]
|
7806
7826
|
"""
|
7807
|
-
A list of IPs, or CIDR v4/v6 addresses of the session client, to match.
|
7827
|
+
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.
|
7828
|
+
"""
|
7829
|
+
ips_edge_services: NotRequired[pulumi.Input[builtins.bool]]
|
7830
|
+
"""
|
7831
|
+
Defines whether Edge Services IPs should be matched. Only one of `ip_subnet` and `ips_edge_services` should be specified.
|
7808
7832
|
"""
|
7809
7833
|
elif False:
|
7810
7834
|
LoadbalancerFrontendAclMatchArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -7816,7 +7840,8 @@ class LoadbalancerFrontendAclMatchArgs:
|
|
7816
7840
|
http_filter_option: Optional[pulumi.Input[builtins.str]] = None,
|
7817
7841
|
http_filter_values: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
7818
7842
|
invert: Optional[pulumi.Input[builtins.bool]] = None,
|
7819
|
-
ip_subnets: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None
|
7843
|
+
ip_subnets: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
7844
|
+
ips_edge_services: Optional[pulumi.Input[builtins.bool]] = None):
|
7820
7845
|
"""
|
7821
7846
|
: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.
|
7822
7847
|
It extracts the request's URL path, which starts at the first slash and ends before the question mark (without the host part).
|
@@ -7825,7 +7850,8 @@ class LoadbalancerFrontendAclMatchArgs:
|
|
7825
7850
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] http_filter_values: A list of possible values to match for the given HTTP filter.
|
7826
7851
|
Keep in mind that in the case of `http_header_match` the HTTP header field name is case insensitive.
|
7827
7852
|
:param pulumi.Input[builtins.bool] invert: If set to `true`, the condition will be of type "unless".
|
7828
|
-
: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.
|
7853
|
+
: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.
|
7854
|
+
: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.
|
7829
7855
|
"""
|
7830
7856
|
if http_filter is not None:
|
7831
7857
|
pulumi.set(__self__, "http_filter", http_filter)
|
@@ -7837,6 +7863,8 @@ class LoadbalancerFrontendAclMatchArgs:
|
|
7837
7863
|
pulumi.set(__self__, "invert", invert)
|
7838
7864
|
if ip_subnets is not None:
|
7839
7865
|
pulumi.set(__self__, "ip_subnets", ip_subnets)
|
7866
|
+
if ips_edge_services is not None:
|
7867
|
+
pulumi.set(__self__, "ips_edge_services", ips_edge_services)
|
7840
7868
|
|
7841
7869
|
@property
|
7842
7870
|
@pulumi.getter(name="httpFilter")
|
@@ -7893,7 +7921,7 @@ class LoadbalancerFrontendAclMatchArgs:
|
|
7893
7921
|
@pulumi.getter(name="ipSubnets")
|
7894
7922
|
def ip_subnets(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
|
7895
7923
|
"""
|
7896
|
-
A list of IPs, or CIDR v4/v6 addresses of the session client, to match.
|
7924
|
+
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.
|
7897
7925
|
"""
|
7898
7926
|
return pulumi.get(self, "ip_subnets")
|
7899
7927
|
|
@@ -7901,6 +7929,18 @@ class LoadbalancerFrontendAclMatchArgs:
|
|
7901
7929
|
def ip_subnets(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
|
7902
7930
|
pulumi.set(self, "ip_subnets", value)
|
7903
7931
|
|
7932
|
+
@property
|
7933
|
+
@pulumi.getter(name="ipsEdgeServices")
|
7934
|
+
def ips_edge_services(self) -> Optional[pulumi.Input[builtins.bool]]:
|
7935
|
+
"""
|
7936
|
+
Defines whether Edge Services IPs should be matched. Only one of `ip_subnet` and `ips_edge_services` should be specified.
|
7937
|
+
"""
|
7938
|
+
return pulumi.get(self, "ips_edge_services")
|
7939
|
+
|
7940
|
+
@ips_edge_services.setter
|
7941
|
+
def ips_edge_services(self, value: Optional[pulumi.Input[builtins.bool]]):
|
7942
|
+
pulumi.set(self, "ips_edge_services", value)
|
7943
|
+
|
7904
7944
|
|
7905
7945
|
if not MYPY:
|
7906
7946
|
class LoadbalancerPrivateIpArgsDict(TypedDict):
|
@@ -8572,65 +8612,87 @@ class ObjectBucketAclAccessControlPolicyGrantArgs:
|
|
8572
8612
|
|
8573
8613
|
if not MYPY:
|
8574
8614
|
class ObjectBucketAclAccessControlPolicyGrantGranteeArgsDict(TypedDict):
|
8575
|
-
|
8615
|
+
display_name: NotRequired[pulumi.Input[builtins.str]]
|
8616
|
+
id: NotRequired[pulumi.Input[builtins.str]]
|
8576
8617
|
"""
|
8577
8618
|
The `region`, `bucket` and `acl` separated by (`/`).
|
8578
8619
|
"""
|
8579
|
-
type: pulumi.Input[builtins.str]
|
8620
|
+
type: NotRequired[pulumi.Input[builtins.str]]
|
8580
8621
|
"""
|
8581
|
-
Type of grantee. Valid values: `CanonicalUser`
|
8622
|
+
Type of grantee. Valid values: `CanonicalUser`, `Group`
|
8623
|
+
"""
|
8624
|
+
uri: NotRequired[pulumi.Input[builtins.str]]
|
8625
|
+
"""
|
8626
|
+
The uri of the grantee if you are granting permissions to a predefined group.
|
8582
8627
|
"""
|
8583
|
-
display_name: NotRequired[pulumi.Input[builtins.str]]
|
8584
8628
|
elif False:
|
8585
8629
|
ObjectBucketAclAccessControlPolicyGrantGranteeArgsDict: TypeAlias = Mapping[str, Any]
|
8586
8630
|
|
8587
8631
|
@pulumi.input_type
|
8588
8632
|
class ObjectBucketAclAccessControlPolicyGrantGranteeArgs:
|
8589
8633
|
def __init__(__self__, *,
|
8590
|
-
|
8591
|
-
|
8592
|
-
|
8634
|
+
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
8635
|
+
id: Optional[pulumi.Input[builtins.str]] = None,
|
8636
|
+
type: Optional[pulumi.Input[builtins.str]] = None,
|
8637
|
+
uri: Optional[pulumi.Input[builtins.str]] = None):
|
8593
8638
|
"""
|
8594
8639
|
:param pulumi.Input[builtins.str] id: The `region`, `bucket` and `acl` separated by (`/`).
|
8595
|
-
:param pulumi.Input[builtins.str] type: Type of grantee. Valid values: `CanonicalUser`
|
8640
|
+
:param pulumi.Input[builtins.str] type: Type of grantee. Valid values: `CanonicalUser`, `Group`
|
8641
|
+
:param pulumi.Input[builtins.str] uri: The uri of the grantee if you are granting permissions to a predefined group.
|
8596
8642
|
"""
|
8597
|
-
pulumi.set(__self__, "id", id)
|
8598
|
-
pulumi.set(__self__, "type", type)
|
8599
8643
|
if display_name is not None:
|
8600
8644
|
pulumi.set(__self__, "display_name", display_name)
|
8645
|
+
if id is not None:
|
8646
|
+
pulumi.set(__self__, "id", id)
|
8647
|
+
if type is not None:
|
8648
|
+
pulumi.set(__self__, "type", type)
|
8649
|
+
if uri is not None:
|
8650
|
+
pulumi.set(__self__, "uri", uri)
|
8651
|
+
|
8652
|
+
@property
|
8653
|
+
@pulumi.getter(name="displayName")
|
8654
|
+
def display_name(self) -> Optional[pulumi.Input[builtins.str]]:
|
8655
|
+
return pulumi.get(self, "display_name")
|
8656
|
+
|
8657
|
+
@display_name.setter
|
8658
|
+
def display_name(self, value: Optional[pulumi.Input[builtins.str]]):
|
8659
|
+
pulumi.set(self, "display_name", value)
|
8601
8660
|
|
8602
8661
|
@property
|
8603
8662
|
@pulumi.getter
|
8604
|
-
def id(self) -> pulumi.Input[builtins.str]:
|
8663
|
+
def id(self) -> Optional[pulumi.Input[builtins.str]]:
|
8605
8664
|
"""
|
8606
8665
|
The `region`, `bucket` and `acl` separated by (`/`).
|
8607
8666
|
"""
|
8608
8667
|
return pulumi.get(self, "id")
|
8609
8668
|
|
8610
8669
|
@id.setter
|
8611
|
-
def id(self, value: pulumi.Input[builtins.str]):
|
8670
|
+
def id(self, value: Optional[pulumi.Input[builtins.str]]):
|
8612
8671
|
pulumi.set(self, "id", value)
|
8613
8672
|
|
8614
8673
|
@property
|
8615
8674
|
@pulumi.getter
|
8616
|
-
def type(self) -> pulumi.Input[builtins.str]:
|
8675
|
+
def type(self) -> Optional[pulumi.Input[builtins.str]]:
|
8617
8676
|
"""
|
8618
|
-
Type of grantee. Valid values: `CanonicalUser`
|
8677
|
+
Type of grantee. Valid values: `CanonicalUser`, `Group`
|
8619
8678
|
"""
|
8620
8679
|
return pulumi.get(self, "type")
|
8621
8680
|
|
8622
8681
|
@type.setter
|
8623
|
-
def type(self, value: pulumi.Input[builtins.str]):
|
8682
|
+
def type(self, value: Optional[pulumi.Input[builtins.str]]):
|
8624
8683
|
pulumi.set(self, "type", value)
|
8625
8684
|
|
8626
8685
|
@property
|
8627
|
-
@pulumi.getter
|
8628
|
-
def
|
8629
|
-
|
8686
|
+
@pulumi.getter
|
8687
|
+
def uri(self) -> Optional[pulumi.Input[builtins.str]]:
|
8688
|
+
"""
|
8689
|
+
The uri of the grantee if you are granting permissions to a predefined group.
|
8690
|
+
"""
|
8691
|
+
return pulumi.get(self, "uri")
|
8630
8692
|
|
8631
|
-
@
|
8632
|
-
def
|
8633
|
-
pulumi.set(self, "
|
8693
|
+
@uri.setter
|
8694
|
+
def uri(self, value: Optional[pulumi.Input[builtins.str]]):
|
8695
|
+
pulumi.set(self, "uri", value)
|
8634
8696
|
|
8635
8697
|
|
8636
8698
|
if not MYPY:
|
@@ -29,6 +29,7 @@ class AppleSiliconServerArgs:
|
|
29
29
|
private_ips: Optional[pulumi.Input[Sequence[pulumi.Input['AppleSiliconServerPrivateIpArgs']]]] = None,
|
30
30
|
private_networks: Optional[pulumi.Input[Sequence[pulumi.Input['AppleSiliconServerPrivateNetworkArgs']]]] = None,
|
31
31
|
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
32
|
+
public_bandwidth: Optional[pulumi.Input[builtins.int]] = None,
|
32
33
|
zone: Optional[pulumi.Input[builtins.str]] = None):
|
33
34
|
"""
|
34
35
|
The set of arguments for constructing a AppleSiliconServer resource.
|
@@ -42,6 +43,7 @@ class AppleSiliconServerArgs:
|
|
42
43
|
:param pulumi.Input[Sequence[pulumi.Input['AppleSiliconServerPrivateNetworkArgs']]] private_networks: The private networks to attach to the server
|
43
44
|
:param pulumi.Input[builtins.str] project_id: `project_id`) The ID of the project the server is
|
44
45
|
associated with.
|
46
|
+
:param pulumi.Input[builtins.int] public_bandwidth: Configure the available public bandwidth for your server in bits per second. This option may not be available for all offers.
|
45
47
|
:param pulumi.Input[builtins.str] zone: `zone`) The zone in which
|
46
48
|
the server should be created.
|
47
49
|
"""
|
@@ -58,6 +60,8 @@ class AppleSiliconServerArgs:
|
|
58
60
|
pulumi.set(__self__, "private_networks", private_networks)
|
59
61
|
if project_id is not None:
|
60
62
|
pulumi.set(__self__, "project_id", project_id)
|
63
|
+
if public_bandwidth is not None:
|
64
|
+
pulumi.set(__self__, "public_bandwidth", public_bandwidth)
|
61
65
|
if zone is not None:
|
62
66
|
pulumi.set(__self__, "zone", zone)
|
63
67
|
|
@@ -148,6 +152,18 @@ class AppleSiliconServerArgs:
|
|
148
152
|
def project_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
149
153
|
pulumi.set(self, "project_id", value)
|
150
154
|
|
155
|
+
@property
|
156
|
+
@pulumi.getter(name="publicBandwidth")
|
157
|
+
def public_bandwidth(self) -> Optional[pulumi.Input[builtins.int]]:
|
158
|
+
"""
|
159
|
+
Configure the available public bandwidth for your server in bits per second. This option may not be available for all offers.
|
160
|
+
"""
|
161
|
+
return pulumi.get(self, "public_bandwidth")
|
162
|
+
|
163
|
+
@public_bandwidth.setter
|
164
|
+
def public_bandwidth(self, value: Optional[pulumi.Input[builtins.int]]):
|
165
|
+
pulumi.set(self, "public_bandwidth", value)
|
166
|
+
|
151
167
|
@property
|
152
168
|
@pulumi.getter
|
153
169
|
def zone(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -176,6 +192,7 @@ class _AppleSiliconServerState:
|
|
176
192
|
private_ips: Optional[pulumi.Input[Sequence[pulumi.Input['AppleSiliconServerPrivateIpArgs']]]] = None,
|
177
193
|
private_networks: Optional[pulumi.Input[Sequence[pulumi.Input['AppleSiliconServerPrivateNetworkArgs']]]] = None,
|
178
194
|
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
195
|
+
public_bandwidth: Optional[pulumi.Input[builtins.int]] = None,
|
179
196
|
state: Optional[pulumi.Input[builtins.str]] = None,
|
180
197
|
type: Optional[pulumi.Input[builtins.str]] = None,
|
181
198
|
updated_at: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -197,6 +214,7 @@ class _AppleSiliconServerState:
|
|
197
214
|
:param pulumi.Input[Sequence[pulumi.Input['AppleSiliconServerPrivateNetworkArgs']]] private_networks: The private networks to attach to the server
|
198
215
|
:param pulumi.Input[builtins.str] project_id: `project_id`) The ID of the project the server is
|
199
216
|
associated with.
|
217
|
+
:param pulumi.Input[builtins.int] public_bandwidth: Configure the available public bandwidth for your server in bits per second. This option may not be available for all offers.
|
200
218
|
:param pulumi.Input[builtins.str] state: The state of the server.
|
201
219
|
:param pulumi.Input[builtins.str] type: The commercial type of the server. You find all the available types on
|
202
220
|
the [pricing page](https://www.scaleway.com/en/pricing/apple-silicon/). Updates to this field will recreate a new
|
@@ -230,6 +248,8 @@ class _AppleSiliconServerState:
|
|
230
248
|
pulumi.set(__self__, "private_networks", private_networks)
|
231
249
|
if project_id is not None:
|
232
250
|
pulumi.set(__self__, "project_id", project_id)
|
251
|
+
if public_bandwidth is not None:
|
252
|
+
pulumi.set(__self__, "public_bandwidth", public_bandwidth)
|
233
253
|
if state is not None:
|
234
254
|
pulumi.set(__self__, "state", state)
|
235
255
|
if type is not None:
|
@@ -378,6 +398,18 @@ class _AppleSiliconServerState:
|
|
378
398
|
def project_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
379
399
|
pulumi.set(self, "project_id", value)
|
380
400
|
|
401
|
+
@property
|
402
|
+
@pulumi.getter(name="publicBandwidth")
|
403
|
+
def public_bandwidth(self) -> Optional[pulumi.Input[builtins.int]]:
|
404
|
+
"""
|
405
|
+
Configure the available public bandwidth for your server in bits per second. This option may not be available for all offers.
|
406
|
+
"""
|
407
|
+
return pulumi.get(self, "public_bandwidth")
|
408
|
+
|
409
|
+
@public_bandwidth.setter
|
410
|
+
def public_bandwidth(self, value: Optional[pulumi.Input[builtins.int]]):
|
411
|
+
pulumi.set(self, "public_bandwidth", value)
|
412
|
+
|
381
413
|
@property
|
382
414
|
@pulumi.getter
|
383
415
|
def state(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -483,6 +515,7 @@ class AppleSiliconServer(pulumi.CustomResource):
|
|
483
515
|
private_ips: Optional[pulumi.Input[Sequence[pulumi.Input[Union['AppleSiliconServerPrivateIpArgs', 'AppleSiliconServerPrivateIpArgsDict']]]]] = None,
|
484
516
|
private_networks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['AppleSiliconServerPrivateNetworkArgs', 'AppleSiliconServerPrivateNetworkArgsDict']]]]] = None,
|
485
517
|
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
518
|
+
public_bandwidth: Optional[pulumi.Input[builtins.int]] = None,
|
486
519
|
type: Optional[pulumi.Input[builtins.str]] = None,
|
487
520
|
zone: Optional[pulumi.Input[builtins.str]] = None,
|
488
521
|
__props__=None):
|
@@ -522,6 +555,7 @@ class AppleSiliconServer(pulumi.CustomResource):
|
|
522
555
|
:param pulumi.Input[Sequence[pulumi.Input[Union['AppleSiliconServerPrivateNetworkArgs', 'AppleSiliconServerPrivateNetworkArgsDict']]]] private_networks: The private networks to attach to the server
|
523
556
|
:param pulumi.Input[builtins.str] project_id: `project_id`) The ID of the project the server is
|
524
557
|
associated with.
|
558
|
+
:param pulumi.Input[builtins.int] public_bandwidth: Configure the available public bandwidth for your server in bits per second. This option may not be available for all offers.
|
525
559
|
:param pulumi.Input[builtins.str] type: The commercial type of the server. You find all the available types on
|
526
560
|
the [pricing page](https://www.scaleway.com/en/pricing/apple-silicon/). Updates to this field will recreate a new
|
527
561
|
resource.
|
@@ -582,6 +616,7 @@ class AppleSiliconServer(pulumi.CustomResource):
|
|
582
616
|
private_ips: Optional[pulumi.Input[Sequence[pulumi.Input[Union['AppleSiliconServerPrivateIpArgs', 'AppleSiliconServerPrivateIpArgsDict']]]]] = None,
|
583
617
|
private_networks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['AppleSiliconServerPrivateNetworkArgs', 'AppleSiliconServerPrivateNetworkArgsDict']]]]] = None,
|
584
618
|
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
619
|
+
public_bandwidth: Optional[pulumi.Input[builtins.int]] = None,
|
585
620
|
type: Optional[pulumi.Input[builtins.str]] = None,
|
586
621
|
zone: Optional[pulumi.Input[builtins.str]] = None,
|
587
622
|
__props__=None):
|
@@ -600,6 +635,7 @@ class AppleSiliconServer(pulumi.CustomResource):
|
|
600
635
|
__props__.__dict__["private_ips"] = private_ips
|
601
636
|
__props__.__dict__["private_networks"] = private_networks
|
602
637
|
__props__.__dict__["project_id"] = project_id
|
638
|
+
__props__.__dict__["public_bandwidth"] = public_bandwidth
|
603
639
|
if type is None and not opts.urn:
|
604
640
|
raise TypeError("Missing required property 'type'")
|
605
641
|
__props__.__dict__["type"] = type
|
@@ -637,6 +673,7 @@ class AppleSiliconServer(pulumi.CustomResource):
|
|
637
673
|
private_ips: Optional[pulumi.Input[Sequence[pulumi.Input[Union['AppleSiliconServerPrivateIpArgs', 'AppleSiliconServerPrivateIpArgsDict']]]]] = None,
|
638
674
|
private_networks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['AppleSiliconServerPrivateNetworkArgs', 'AppleSiliconServerPrivateNetworkArgsDict']]]]] = None,
|
639
675
|
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
676
|
+
public_bandwidth: Optional[pulumi.Input[builtins.int]] = None,
|
640
677
|
state: Optional[pulumi.Input[builtins.str]] = None,
|
641
678
|
type: Optional[pulumi.Input[builtins.str]] = None,
|
642
679
|
updated_at: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -663,6 +700,7 @@ class AppleSiliconServer(pulumi.CustomResource):
|
|
663
700
|
:param pulumi.Input[Sequence[pulumi.Input[Union['AppleSiliconServerPrivateNetworkArgs', 'AppleSiliconServerPrivateNetworkArgsDict']]]] private_networks: The private networks to attach to the server
|
664
701
|
:param pulumi.Input[builtins.str] project_id: `project_id`) The ID of the project the server is
|
665
702
|
associated with.
|
703
|
+
:param pulumi.Input[builtins.int] public_bandwidth: Configure the available public bandwidth for your server in bits per second. This option may not be available for all offers.
|
666
704
|
:param pulumi.Input[builtins.str] state: The state of the server.
|
667
705
|
:param pulumi.Input[builtins.str] type: The commercial type of the server. You find all the available types on
|
668
706
|
the [pricing page](https://www.scaleway.com/en/pricing/apple-silicon/). Updates to this field will recreate a new
|
@@ -689,6 +727,7 @@ class AppleSiliconServer(pulumi.CustomResource):
|
|
689
727
|
__props__.__dict__["private_ips"] = private_ips
|
690
728
|
__props__.__dict__["private_networks"] = private_networks
|
691
729
|
__props__.__dict__["project_id"] = project_id
|
730
|
+
__props__.__dict__["public_bandwidth"] = public_bandwidth
|
692
731
|
__props__.__dict__["state"] = state
|
693
732
|
__props__.__dict__["type"] = type
|
694
733
|
__props__.__dict__["updated_at"] = updated_at
|
@@ -787,6 +826,14 @@ class AppleSiliconServer(pulumi.CustomResource):
|
|
787
826
|
"""
|
788
827
|
return pulumi.get(self, "project_id")
|
789
828
|
|
829
|
+
@property
|
830
|
+
@pulumi.getter(name="publicBandwidth")
|
831
|
+
def public_bandwidth(self) -> pulumi.Output[builtins.int]:
|
832
|
+
"""
|
833
|
+
Configure the available public bandwidth for your server in bits per second. This option may not be available for all offers.
|
834
|
+
"""
|
835
|
+
return pulumi.get(self, "public_bandwidth")
|
836
|
+
|
790
837
|
@property
|
791
838
|
@pulumi.getter
|
792
839
|
def state(self) -> pulumi.Output[builtins.str]:
|
@@ -29,6 +29,7 @@ class ServerArgs:
|
|
29
29
|
private_ips: Optional[pulumi.Input[Sequence[pulumi.Input['ServerPrivateIpArgs']]]] = None,
|
30
30
|
private_networks: Optional[pulumi.Input[Sequence[pulumi.Input['ServerPrivateNetworkArgs']]]] = None,
|
31
31
|
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
32
|
+
public_bandwidth: Optional[pulumi.Input[builtins.int]] = None,
|
32
33
|
zone: Optional[pulumi.Input[builtins.str]] = None):
|
33
34
|
"""
|
34
35
|
The set of arguments for constructing a Server resource.
|
@@ -42,6 +43,7 @@ class ServerArgs:
|
|
42
43
|
:param pulumi.Input[Sequence[pulumi.Input['ServerPrivateNetworkArgs']]] private_networks: The private networks to attach to the server
|
43
44
|
:param pulumi.Input[builtins.str] project_id: `project_id`) The ID of the project the server is
|
44
45
|
associated with.
|
46
|
+
:param pulumi.Input[builtins.int] public_bandwidth: Configure the available public bandwidth for your server in bits per second. This option may not be available for all offers.
|
45
47
|
:param pulumi.Input[builtins.str] zone: `zone`) The zone in which
|
46
48
|
the server should be created.
|
47
49
|
"""
|
@@ -58,6 +60,8 @@ class ServerArgs:
|
|
58
60
|
pulumi.set(__self__, "private_networks", private_networks)
|
59
61
|
if project_id is not None:
|
60
62
|
pulumi.set(__self__, "project_id", project_id)
|
63
|
+
if public_bandwidth is not None:
|
64
|
+
pulumi.set(__self__, "public_bandwidth", public_bandwidth)
|
61
65
|
if zone is not None:
|
62
66
|
pulumi.set(__self__, "zone", zone)
|
63
67
|
|
@@ -148,6 +152,18 @@ class ServerArgs:
|
|
148
152
|
def project_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
149
153
|
pulumi.set(self, "project_id", value)
|
150
154
|
|
155
|
+
@property
|
156
|
+
@pulumi.getter(name="publicBandwidth")
|
157
|
+
def public_bandwidth(self) -> Optional[pulumi.Input[builtins.int]]:
|
158
|
+
"""
|
159
|
+
Configure the available public bandwidth for your server in bits per second. This option may not be available for all offers.
|
160
|
+
"""
|
161
|
+
return pulumi.get(self, "public_bandwidth")
|
162
|
+
|
163
|
+
@public_bandwidth.setter
|
164
|
+
def public_bandwidth(self, value: Optional[pulumi.Input[builtins.int]]):
|
165
|
+
pulumi.set(self, "public_bandwidth", value)
|
166
|
+
|
151
167
|
@property
|
152
168
|
@pulumi.getter
|
153
169
|
def zone(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -176,6 +192,7 @@ class _ServerState:
|
|
176
192
|
private_ips: Optional[pulumi.Input[Sequence[pulumi.Input['ServerPrivateIpArgs']]]] = None,
|
177
193
|
private_networks: Optional[pulumi.Input[Sequence[pulumi.Input['ServerPrivateNetworkArgs']]]] = None,
|
178
194
|
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
195
|
+
public_bandwidth: Optional[pulumi.Input[builtins.int]] = None,
|
179
196
|
state: Optional[pulumi.Input[builtins.str]] = None,
|
180
197
|
type: Optional[pulumi.Input[builtins.str]] = None,
|
181
198
|
updated_at: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -197,6 +214,7 @@ class _ServerState:
|
|
197
214
|
:param pulumi.Input[Sequence[pulumi.Input['ServerPrivateNetworkArgs']]] private_networks: The private networks to attach to the server
|
198
215
|
:param pulumi.Input[builtins.str] project_id: `project_id`) The ID of the project the server is
|
199
216
|
associated with.
|
217
|
+
:param pulumi.Input[builtins.int] public_bandwidth: Configure the available public bandwidth for your server in bits per second. This option may not be available for all offers.
|
200
218
|
:param pulumi.Input[builtins.str] state: The state of the server.
|
201
219
|
:param pulumi.Input[builtins.str] type: The commercial type of the server. You find all the available types on
|
202
220
|
the [pricing page](https://www.scaleway.com/en/pricing/apple-silicon/). Updates to this field will recreate a new
|
@@ -230,6 +248,8 @@ class _ServerState:
|
|
230
248
|
pulumi.set(__self__, "private_networks", private_networks)
|
231
249
|
if project_id is not None:
|
232
250
|
pulumi.set(__self__, "project_id", project_id)
|
251
|
+
if public_bandwidth is not None:
|
252
|
+
pulumi.set(__self__, "public_bandwidth", public_bandwidth)
|
233
253
|
if state is not None:
|
234
254
|
pulumi.set(__self__, "state", state)
|
235
255
|
if type is not None:
|
@@ -378,6 +398,18 @@ class _ServerState:
|
|
378
398
|
def project_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
379
399
|
pulumi.set(self, "project_id", value)
|
380
400
|
|
401
|
+
@property
|
402
|
+
@pulumi.getter(name="publicBandwidth")
|
403
|
+
def public_bandwidth(self) -> Optional[pulumi.Input[builtins.int]]:
|
404
|
+
"""
|
405
|
+
Configure the available public bandwidth for your server in bits per second. This option may not be available for all offers.
|
406
|
+
"""
|
407
|
+
return pulumi.get(self, "public_bandwidth")
|
408
|
+
|
409
|
+
@public_bandwidth.setter
|
410
|
+
def public_bandwidth(self, value: Optional[pulumi.Input[builtins.int]]):
|
411
|
+
pulumi.set(self, "public_bandwidth", value)
|
412
|
+
|
381
413
|
@property
|
382
414
|
@pulumi.getter
|
383
415
|
def state(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -478,6 +510,7 @@ class Server(pulumi.CustomResource):
|
|
478
510
|
private_ips: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ServerPrivateIpArgs', 'ServerPrivateIpArgsDict']]]]] = None,
|
479
511
|
private_networks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ServerPrivateNetworkArgs', 'ServerPrivateNetworkArgsDict']]]]] = None,
|
480
512
|
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
513
|
+
public_bandwidth: Optional[pulumi.Input[builtins.int]] = None,
|
481
514
|
type: Optional[pulumi.Input[builtins.str]] = None,
|
482
515
|
zone: Optional[pulumi.Input[builtins.str]] = None,
|
483
516
|
__props__=None):
|
@@ -517,6 +550,7 @@ class Server(pulumi.CustomResource):
|
|
517
550
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ServerPrivateNetworkArgs', 'ServerPrivateNetworkArgsDict']]]] private_networks: The private networks to attach to the server
|
518
551
|
:param pulumi.Input[builtins.str] project_id: `project_id`) The ID of the project the server is
|
519
552
|
associated with.
|
553
|
+
:param pulumi.Input[builtins.int] public_bandwidth: Configure the available public bandwidth for your server in bits per second. This option may not be available for all offers.
|
520
554
|
:param pulumi.Input[builtins.str] type: The commercial type of the server. You find all the available types on
|
521
555
|
the [pricing page](https://www.scaleway.com/en/pricing/apple-silicon/). Updates to this field will recreate a new
|
522
556
|
resource.
|
@@ -577,6 +611,7 @@ class Server(pulumi.CustomResource):
|
|
577
611
|
private_ips: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ServerPrivateIpArgs', 'ServerPrivateIpArgsDict']]]]] = None,
|
578
612
|
private_networks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ServerPrivateNetworkArgs', 'ServerPrivateNetworkArgsDict']]]]] = None,
|
579
613
|
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
614
|
+
public_bandwidth: Optional[pulumi.Input[builtins.int]] = None,
|
580
615
|
type: Optional[pulumi.Input[builtins.str]] = None,
|
581
616
|
zone: Optional[pulumi.Input[builtins.str]] = None,
|
582
617
|
__props__=None):
|
@@ -594,6 +629,7 @@ class Server(pulumi.CustomResource):
|
|
594
629
|
__props__.__dict__["private_ips"] = private_ips
|
595
630
|
__props__.__dict__["private_networks"] = private_networks
|
596
631
|
__props__.__dict__["project_id"] = project_id
|
632
|
+
__props__.__dict__["public_bandwidth"] = public_bandwidth
|
597
633
|
if type is None and not opts.urn:
|
598
634
|
raise TypeError("Missing required property 'type'")
|
599
635
|
__props__.__dict__["type"] = type
|
@@ -633,6 +669,7 @@ class Server(pulumi.CustomResource):
|
|
633
669
|
private_ips: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ServerPrivateIpArgs', 'ServerPrivateIpArgsDict']]]]] = None,
|
634
670
|
private_networks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ServerPrivateNetworkArgs', 'ServerPrivateNetworkArgsDict']]]]] = None,
|
635
671
|
project_id: Optional[pulumi.Input[builtins.str]] = None,
|
672
|
+
public_bandwidth: Optional[pulumi.Input[builtins.int]] = None,
|
636
673
|
state: Optional[pulumi.Input[builtins.str]] = None,
|
637
674
|
type: Optional[pulumi.Input[builtins.str]] = None,
|
638
675
|
updated_at: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -659,6 +696,7 @@ class Server(pulumi.CustomResource):
|
|
659
696
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ServerPrivateNetworkArgs', 'ServerPrivateNetworkArgsDict']]]] private_networks: The private networks to attach to the server
|
660
697
|
:param pulumi.Input[builtins.str] project_id: `project_id`) The ID of the project the server is
|
661
698
|
associated with.
|
699
|
+
:param pulumi.Input[builtins.int] public_bandwidth: Configure the available public bandwidth for your server in bits per second. This option may not be available for all offers.
|
662
700
|
:param pulumi.Input[builtins.str] state: The state of the server.
|
663
701
|
:param pulumi.Input[builtins.str] type: The commercial type of the server. You find all the available types on
|
664
702
|
the [pricing page](https://www.scaleway.com/en/pricing/apple-silicon/). Updates to this field will recreate a new
|
@@ -685,6 +723,7 @@ class Server(pulumi.CustomResource):
|
|
685
723
|
__props__.__dict__["private_ips"] = private_ips
|
686
724
|
__props__.__dict__["private_networks"] = private_networks
|
687
725
|
__props__.__dict__["project_id"] = project_id
|
726
|
+
__props__.__dict__["public_bandwidth"] = public_bandwidth
|
688
727
|
__props__.__dict__["state"] = state
|
689
728
|
__props__.__dict__["type"] = type
|
690
729
|
__props__.__dict__["updated_at"] = updated_at
|
@@ -783,6 +822,14 @@ class Server(pulumi.CustomResource):
|
|
783
822
|
"""
|
784
823
|
return pulumi.get(self, "project_id")
|
785
824
|
|
825
|
+
@property
|
826
|
+
@pulumi.getter(name="publicBandwidth")
|
827
|
+
def public_bandwidth(self) -> pulumi.Output[builtins.int]:
|
828
|
+
"""
|
829
|
+
Configure the available public bandwidth for your server in bits per second. This option may not be available for all offers.
|
830
|
+
"""
|
831
|
+
return pulumi.get(self, "public_bandwidth")
|
832
|
+
|
786
833
|
@property
|
787
834
|
@pulumi.getter
|
788
835
|
def state(self) -> pulumi.Output[builtins.str]:
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import builtins
|
6
|
+
from .. import _utilities
|
7
|
+
import typing
|
8
|
+
# Export this package's modules as members:
|
9
|
+
from .instance_group import *
|
10
|
+
from .instance_policy import *
|
11
|
+
from .instance_template import *
|
12
|
+
from ._inputs import *
|
13
|
+
from . import outputs
|