pulumiverse-scaleway 1.34.0a1756885226__py3-none-any.whl → 1.34.0a1757663268__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 +8 -0
- pulumiverse_scaleway/_inputs.py +235 -34
- pulumiverse_scaleway/cockpit.py +14 -0
- pulumiverse_scaleway/container_namespace.py +16 -7
- pulumiverse_scaleway/containers/namespace.py +16 -7
- pulumiverse_scaleway/database_user.py +83 -11
- pulumiverse_scaleway/databases/user.py +83 -11
- pulumiverse_scaleway/elasticmetal/outputs.py +4 -0
- pulumiverse_scaleway/function_namespace.py +16 -7
- pulumiverse_scaleway/functions/namespace.py +16 -7
- pulumiverse_scaleway/get_mongo_db_instance.py +34 -1
- pulumiverse_scaleway/hosting/_inputs.py +42 -0
- pulumiverse_scaleway/hosting/outputs.py +84 -0
- pulumiverse_scaleway/instance/_inputs.py +107 -13
- pulumiverse_scaleway/instance/outputs.py +187 -10
- pulumiverse_scaleway/instance/security_group_rules.py +16 -16
- pulumiverse_scaleway/instance/snapshot.py +26 -27
- pulumiverse_scaleway/instance_security_group_rules.py +16 -16
- pulumiverse_scaleway/instance_snapshot.py +26 -27
- pulumiverse_scaleway/loadbalancer_backend.py +39 -0
- pulumiverse_scaleway/loadbalancers/backend.py +39 -0
- pulumiverse_scaleway/loadbalancers/outputs.py +16 -0
- pulumiverse_scaleway/mnq/_inputs.py +52 -0
- pulumiverse_scaleway/mnq/outputs.py +47 -0
- pulumiverse_scaleway/mnq/sqs_queue.py +159 -0
- pulumiverse_scaleway/mnq_sqs_queue.py +159 -0
- pulumiverse_scaleway/mongo_db_instance.py +171 -23
- pulumiverse_scaleway/mongo_db_snapshot.py +2 -2
- pulumiverse_scaleway/mongodb/__init__.py +1 -0
- pulumiverse_scaleway/mongodb/_inputs.py +73 -0
- pulumiverse_scaleway/mongodb/get_instance.py +34 -1
- pulumiverse_scaleway/mongodb/instance.py +171 -23
- pulumiverse_scaleway/mongodb/outputs.py +62 -0
- pulumiverse_scaleway/mongodb/snapshot.py +2 -2
- pulumiverse_scaleway/mongodb/user.py +508 -0
- pulumiverse_scaleway/network/outputs.py +4 -0
- pulumiverse_scaleway/object/_inputs.py +14 -0
- pulumiverse_scaleway/object/bucket.py +13 -0
- pulumiverse_scaleway/object/outputs.py +30 -0
- pulumiverse_scaleway/object_bucket.py +13 -0
- pulumiverse_scaleway/observability/__init__.py +1 -0
- pulumiverse_scaleway/observability/cockpit.py +14 -0
- pulumiverse_scaleway/observability/get_sources.py +376 -0
- pulumiverse_scaleway/observability/outputs.py +140 -0
- pulumiverse_scaleway/outputs.py +387 -26
- pulumiverse_scaleway/pulumi-plugin.json +1 -1
- pulumiverse_scaleway/secret.py +8 -0
- pulumiverse_scaleway/secrets/secret.py +8 -0
- {pulumiverse_scaleway-1.34.0a1756885226.dist-info → pulumiverse_scaleway-1.34.0a1757663268.dist-info}/METADATA +1 -1
- {pulumiverse_scaleway-1.34.0a1756885226.dist-info → pulumiverse_scaleway-1.34.0a1757663268.dist-info}/RECORD +52 -50
- {pulumiverse_scaleway-1.34.0a1756885226.dist-info → pulumiverse_scaleway-1.34.0a1757663268.dist-info}/WHEEL +0 -0
- {pulumiverse_scaleway-1.34.0a1756885226.dist-info → pulumiverse_scaleway-1.34.0a1757663268.dist-info}/top_level.txt +0 -0
pulumiverse_scaleway/__init__.py
CHANGED
@@ -1914,6 +1914,14 @@ _utilities.register(
|
|
1914
1914
|
"scaleway:mongodb/snapshot:Snapshot": "Snapshot"
|
1915
1915
|
}
|
1916
1916
|
},
|
1917
|
+
{
|
1918
|
+
"pkg": "scaleway",
|
1919
|
+
"mod": "mongodb/user",
|
1920
|
+
"fqn": "pulumiverse_scaleway.mongodb",
|
1921
|
+
"classes": {
|
1922
|
+
"scaleway:mongodb/user:User": "User"
|
1923
|
+
}
|
1924
|
+
},
|
1917
1925
|
{
|
1918
1926
|
"pkg": "scaleway",
|
1919
1927
|
"mod": "network/acl",
|
pulumiverse_scaleway/_inputs.py
CHANGED
@@ -204,6 +204,8 @@ __all__ = [
|
|
204
204
|
'MnqSnsCredentialsPermissionsArgsDict',
|
205
205
|
'MnqSqsCredentialsPermissionsArgs',
|
206
206
|
'MnqSqsCredentialsPermissionsArgsDict',
|
207
|
+
'MnqSqsQueueDeadLetterQueueArgs',
|
208
|
+
'MnqSqsQueueDeadLetterQueueArgsDict',
|
207
209
|
'MongoDbInstancePrivateIpArgs',
|
208
210
|
'MongoDbInstancePrivateIpArgsDict',
|
209
211
|
'MongoDbInstancePrivateNetworkArgs',
|
@@ -5063,11 +5065,31 @@ if not MYPY:
|
|
5063
5065
|
class InstanceServerPublicIpArgsDict(TypedDict):
|
5064
5066
|
address: NotRequired[pulumi.Input[builtins.str]]
|
5065
5067
|
"""
|
5066
|
-
The address of the IP
|
5068
|
+
The address of the IP.
|
5069
|
+
"""
|
5070
|
+
dynamic: NotRequired[pulumi.Input[builtins.bool]]
|
5071
|
+
"""
|
5072
|
+
Whether the IP is dynamic.
|
5073
|
+
"""
|
5074
|
+
family: NotRequired[pulumi.Input[builtins.str]]
|
5075
|
+
"""
|
5076
|
+
The IP address' family.
|
5077
|
+
"""
|
5078
|
+
gateway: NotRequired[pulumi.Input[builtins.str]]
|
5079
|
+
"""
|
5080
|
+
The IP of the Gateway associated with the IP.
|
5067
5081
|
"""
|
5068
5082
|
id: NotRequired[pulumi.Input[builtins.str]]
|
5069
5083
|
"""
|
5070
|
-
The ID of the IP
|
5084
|
+
The ID of the IP.
|
5085
|
+
"""
|
5086
|
+
netmask: NotRequired[pulumi.Input[builtins.str]]
|
5087
|
+
"""
|
5088
|
+
The CIDR netmask of the IP.
|
5089
|
+
"""
|
5090
|
+
provisioning_mode: NotRequired[pulumi.Input[builtins.str]]
|
5091
|
+
"""
|
5092
|
+
The provisioning mode of the IP
|
5071
5093
|
"""
|
5072
5094
|
elif False:
|
5073
5095
|
InstanceServerPublicIpArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -5076,21 +5098,41 @@ elif False:
|
|
5076
5098
|
class InstanceServerPublicIpArgs:
|
5077
5099
|
def __init__(__self__, *,
|
5078
5100
|
address: Optional[pulumi.Input[builtins.str]] = None,
|
5079
|
-
|
5101
|
+
dynamic: Optional[pulumi.Input[builtins.bool]] = None,
|
5102
|
+
family: Optional[pulumi.Input[builtins.str]] = None,
|
5103
|
+
gateway: Optional[pulumi.Input[builtins.str]] = None,
|
5104
|
+
id: Optional[pulumi.Input[builtins.str]] = None,
|
5105
|
+
netmask: Optional[pulumi.Input[builtins.str]] = None,
|
5106
|
+
provisioning_mode: Optional[pulumi.Input[builtins.str]] = None):
|
5080
5107
|
"""
|
5081
|
-
:param pulumi.Input[builtins.str] address: The address of the IP
|
5082
|
-
:param pulumi.Input[builtins.
|
5108
|
+
:param pulumi.Input[builtins.str] address: The address of the IP.
|
5109
|
+
:param pulumi.Input[builtins.bool] dynamic: Whether the IP is dynamic.
|
5110
|
+
:param pulumi.Input[builtins.str] family: The IP address' family.
|
5111
|
+
:param pulumi.Input[builtins.str] gateway: The IP of the Gateway associated with the IP.
|
5112
|
+
:param pulumi.Input[builtins.str] id: The ID of the IP.
|
5113
|
+
:param pulumi.Input[builtins.str] netmask: The CIDR netmask of the IP.
|
5114
|
+
:param pulumi.Input[builtins.str] provisioning_mode: The provisioning mode of the IP
|
5083
5115
|
"""
|
5084
5116
|
if address is not None:
|
5085
5117
|
pulumi.set(__self__, "address", address)
|
5118
|
+
if dynamic is not None:
|
5119
|
+
pulumi.set(__self__, "dynamic", dynamic)
|
5120
|
+
if family is not None:
|
5121
|
+
pulumi.set(__self__, "family", family)
|
5122
|
+
if gateway is not None:
|
5123
|
+
pulumi.set(__self__, "gateway", gateway)
|
5086
5124
|
if id is not None:
|
5087
5125
|
pulumi.set(__self__, "id", id)
|
5126
|
+
if netmask is not None:
|
5127
|
+
pulumi.set(__self__, "netmask", netmask)
|
5128
|
+
if provisioning_mode is not None:
|
5129
|
+
pulumi.set(__self__, "provisioning_mode", provisioning_mode)
|
5088
5130
|
|
5089
5131
|
@property
|
5090
5132
|
@pulumi.getter
|
5091
5133
|
def address(self) -> Optional[pulumi.Input[builtins.str]]:
|
5092
5134
|
"""
|
5093
|
-
The address of the IP
|
5135
|
+
The address of the IP.
|
5094
5136
|
"""
|
5095
5137
|
return pulumi.get(self, "address")
|
5096
5138
|
|
@@ -5098,11 +5140,47 @@ class InstanceServerPublicIpArgs:
|
|
5098
5140
|
def address(self, value: Optional[pulumi.Input[builtins.str]]):
|
5099
5141
|
pulumi.set(self, "address", value)
|
5100
5142
|
|
5143
|
+
@property
|
5144
|
+
@pulumi.getter
|
5145
|
+
def dynamic(self) -> Optional[pulumi.Input[builtins.bool]]:
|
5146
|
+
"""
|
5147
|
+
Whether the IP is dynamic.
|
5148
|
+
"""
|
5149
|
+
return pulumi.get(self, "dynamic")
|
5150
|
+
|
5151
|
+
@dynamic.setter
|
5152
|
+
def dynamic(self, value: Optional[pulumi.Input[builtins.bool]]):
|
5153
|
+
pulumi.set(self, "dynamic", value)
|
5154
|
+
|
5155
|
+
@property
|
5156
|
+
@pulumi.getter
|
5157
|
+
def family(self) -> Optional[pulumi.Input[builtins.str]]:
|
5158
|
+
"""
|
5159
|
+
The IP address' family.
|
5160
|
+
"""
|
5161
|
+
return pulumi.get(self, "family")
|
5162
|
+
|
5163
|
+
@family.setter
|
5164
|
+
def family(self, value: Optional[pulumi.Input[builtins.str]]):
|
5165
|
+
pulumi.set(self, "family", value)
|
5166
|
+
|
5167
|
+
@property
|
5168
|
+
@pulumi.getter
|
5169
|
+
def gateway(self) -> Optional[pulumi.Input[builtins.str]]:
|
5170
|
+
"""
|
5171
|
+
The IP of the Gateway associated with the IP.
|
5172
|
+
"""
|
5173
|
+
return pulumi.get(self, "gateway")
|
5174
|
+
|
5175
|
+
@gateway.setter
|
5176
|
+
def gateway(self, value: Optional[pulumi.Input[builtins.str]]):
|
5177
|
+
pulumi.set(self, "gateway", value)
|
5178
|
+
|
5101
5179
|
@property
|
5102
5180
|
@pulumi.getter
|
5103
5181
|
def id(self) -> Optional[pulumi.Input[builtins.str]]:
|
5104
5182
|
"""
|
5105
|
-
The ID of the IP
|
5183
|
+
The ID of the IP.
|
5106
5184
|
"""
|
5107
5185
|
return pulumi.get(self, "id")
|
5108
5186
|
|
@@ -5110,6 +5188,30 @@ class InstanceServerPublicIpArgs:
|
|
5110
5188
|
def id(self, value: Optional[pulumi.Input[builtins.str]]):
|
5111
5189
|
pulumi.set(self, "id", value)
|
5112
5190
|
|
5191
|
+
@property
|
5192
|
+
@pulumi.getter
|
5193
|
+
def netmask(self) -> Optional[pulumi.Input[builtins.str]]:
|
5194
|
+
"""
|
5195
|
+
The CIDR netmask of the IP.
|
5196
|
+
"""
|
5197
|
+
return pulumi.get(self, "netmask")
|
5198
|
+
|
5199
|
+
@netmask.setter
|
5200
|
+
def netmask(self, value: Optional[pulumi.Input[builtins.str]]):
|
5201
|
+
pulumi.set(self, "netmask", value)
|
5202
|
+
|
5203
|
+
@property
|
5204
|
+
@pulumi.getter(name="provisioningMode")
|
5205
|
+
def provisioning_mode(self) -> Optional[pulumi.Input[builtins.str]]:
|
5206
|
+
"""
|
5207
|
+
The provisioning mode of the IP
|
5208
|
+
"""
|
5209
|
+
return pulumi.get(self, "provisioning_mode")
|
5210
|
+
|
5211
|
+
@provisioning_mode.setter
|
5212
|
+
def provisioning_mode(self, value: Optional[pulumi.Input[builtins.str]]):
|
5213
|
+
pulumi.set(self, "provisioning_mode", value)
|
5214
|
+
|
5113
5215
|
|
5114
5216
|
if not MYPY:
|
5115
5217
|
class InstanceServerRootVolumeArgsDict(TypedDict):
|
@@ -5287,8 +5389,6 @@ if not MYPY:
|
|
5287
5389
|
key: pulumi.Input[builtins.str]
|
5288
5390
|
"""
|
5289
5391
|
Key of the object to import
|
5290
|
-
|
5291
|
-
> **Note:** The type `unified` could be instantiated on both `l_ssd` and `b_ssd` volumes.
|
5292
5392
|
"""
|
5293
5393
|
elif False:
|
5294
5394
|
InstanceSnapshotImportArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -5301,8 +5401,6 @@ class InstanceSnapshotImportArgs:
|
|
5301
5401
|
"""
|
5302
5402
|
:param pulumi.Input[builtins.str] bucket: Bucket name containing [qcow2](https://en.wikipedia.org/wiki/Qcow) to import
|
5303
5403
|
:param pulumi.Input[builtins.str] key: Key of the object to import
|
5304
|
-
|
5305
|
-
> **Note:** The type `unified` could be instantiated on both `l_ssd` and `b_ssd` volumes.
|
5306
5404
|
"""
|
5307
5405
|
pulumi.set(__self__, "bucket", bucket)
|
5308
5406
|
pulumi.set(__self__, "key", key)
|
@@ -5324,8 +5422,6 @@ class InstanceSnapshotImportArgs:
|
|
5324
5422
|
def key(self) -> pulumi.Input[builtins.str]:
|
5325
5423
|
"""
|
5326
5424
|
Key of the object to import
|
5327
|
-
|
5328
|
-
> **Note:** The type `unified` could be instantiated on both `l_ssd` and `b_ssd` volumes.
|
5329
5425
|
"""
|
5330
5426
|
return pulumi.get(self, "key")
|
5331
5427
|
|
@@ -6268,13 +6364,13 @@ class JobDefinitionSecretReferenceArgs:
|
|
6268
6364
|
|
6269
6365
|
if not MYPY:
|
6270
6366
|
class KeyManagerKeyRotationPolicyArgsDict(TypedDict):
|
6271
|
-
|
6367
|
+
rotation_period: pulumi.Input[builtins.str]
|
6272
6368
|
"""
|
6273
|
-
The
|
6369
|
+
– The period between key rotations (e.g., `"720h"` for 30 days).
|
6274
6370
|
"""
|
6275
|
-
|
6371
|
+
next_rotation_at: NotRequired[pulumi.Input[builtins.str]]
|
6276
6372
|
"""
|
6277
|
-
|
6373
|
+
The date and time of the next scheduled rotation.
|
6278
6374
|
"""
|
6279
6375
|
elif False:
|
6280
6376
|
KeyManagerKeyRotationPolicyArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -6282,16 +6378,27 @@ elif False:
|
|
6282
6378
|
@pulumi.input_type
|
6283
6379
|
class KeyManagerKeyRotationPolicyArgs:
|
6284
6380
|
def __init__(__self__, *,
|
6285
|
-
|
6286
|
-
|
6381
|
+
rotation_period: pulumi.Input[builtins.str],
|
6382
|
+
next_rotation_at: Optional[pulumi.Input[builtins.str]] = None):
|
6287
6383
|
"""
|
6288
|
-
:param pulumi.Input[builtins.str] next_rotation_at: The date and time of the next scheduled rotation.
|
6289
6384
|
:param pulumi.Input[builtins.str] rotation_period: – The period between key rotations (e.g., `"720h"` for 30 days).
|
6385
|
+
:param pulumi.Input[builtins.str] next_rotation_at: The date and time of the next scheduled rotation.
|
6290
6386
|
"""
|
6387
|
+
pulumi.set(__self__, "rotation_period", rotation_period)
|
6291
6388
|
if next_rotation_at is not None:
|
6292
6389
|
pulumi.set(__self__, "next_rotation_at", next_rotation_at)
|
6293
|
-
|
6294
|
-
|
6390
|
+
|
6391
|
+
@property
|
6392
|
+
@pulumi.getter(name="rotationPeriod")
|
6393
|
+
def rotation_period(self) -> pulumi.Input[builtins.str]:
|
6394
|
+
"""
|
6395
|
+
– The period between key rotations (e.g., `"720h"` for 30 days).
|
6396
|
+
"""
|
6397
|
+
return pulumi.get(self, "rotation_period")
|
6398
|
+
|
6399
|
+
@rotation_period.setter
|
6400
|
+
def rotation_period(self, value: pulumi.Input[builtins.str]):
|
6401
|
+
pulumi.set(self, "rotation_period", value)
|
6295
6402
|
|
6296
6403
|
@property
|
6297
6404
|
@pulumi.getter(name="nextRotationAt")
|
@@ -6305,18 +6412,6 @@ class KeyManagerKeyRotationPolicyArgs:
|
|
6305
6412
|
def next_rotation_at(self, value: Optional[pulumi.Input[builtins.str]]):
|
6306
6413
|
pulumi.set(self, "next_rotation_at", value)
|
6307
6414
|
|
6308
|
-
@property
|
6309
|
-
@pulumi.getter(name="rotationPeriod")
|
6310
|
-
def rotation_period(self) -> Optional[pulumi.Input[builtins.str]]:
|
6311
|
-
"""
|
6312
|
-
– The period between key rotations (e.g., `"720h"` for 30 days).
|
6313
|
-
"""
|
6314
|
-
return pulumi.get(self, "rotation_period")
|
6315
|
-
|
6316
|
-
@rotation_period.setter
|
6317
|
-
def rotation_period(self, value: Optional[pulumi.Input[builtins.str]]):
|
6318
|
-
pulumi.set(self, "rotation_period", value)
|
6319
|
-
|
6320
6415
|
|
6321
6416
|
if not MYPY:
|
6322
6417
|
class KubernetesClusterAutoUpgradeArgsDict(TypedDict):
|
@@ -8386,6 +8481,56 @@ class MnqSqsCredentialsPermissionsArgs:
|
|
8386
8481
|
pulumi.set(self, "can_receive", value)
|
8387
8482
|
|
8388
8483
|
|
8484
|
+
if not MYPY:
|
8485
|
+
class MnqSqsQueueDeadLetterQueueArgsDict(TypedDict):
|
8486
|
+
id: pulumi.Input[builtins.str]
|
8487
|
+
"""
|
8488
|
+
The ID of the queue with format `{region/{project-id}/{queue-name}`
|
8489
|
+
"""
|
8490
|
+
max_receive_count: pulumi.Input[builtins.int]
|
8491
|
+
"""
|
8492
|
+
The number of times a message is delivered to the source queue before being sent to the dead-letter queue. Must be between 1 and 1,000.
|
8493
|
+
"""
|
8494
|
+
elif False:
|
8495
|
+
MnqSqsQueueDeadLetterQueueArgsDict: TypeAlias = Mapping[str, Any]
|
8496
|
+
|
8497
|
+
@pulumi.input_type
|
8498
|
+
class MnqSqsQueueDeadLetterQueueArgs:
|
8499
|
+
def __init__(__self__, *,
|
8500
|
+
id: pulumi.Input[builtins.str],
|
8501
|
+
max_receive_count: pulumi.Input[builtins.int]):
|
8502
|
+
"""
|
8503
|
+
:param pulumi.Input[builtins.str] id: The ID of the queue with format `{region/{project-id}/{queue-name}`
|
8504
|
+
:param pulumi.Input[builtins.int] max_receive_count: The number of times a message is delivered to the source queue before being sent to the dead-letter queue. Must be between 1 and 1,000.
|
8505
|
+
"""
|
8506
|
+
pulumi.set(__self__, "id", id)
|
8507
|
+
pulumi.set(__self__, "max_receive_count", max_receive_count)
|
8508
|
+
|
8509
|
+
@property
|
8510
|
+
@pulumi.getter
|
8511
|
+
def id(self) -> pulumi.Input[builtins.str]:
|
8512
|
+
"""
|
8513
|
+
The ID of the queue with format `{region/{project-id}/{queue-name}`
|
8514
|
+
"""
|
8515
|
+
return pulumi.get(self, "id")
|
8516
|
+
|
8517
|
+
@id.setter
|
8518
|
+
def id(self, value: pulumi.Input[builtins.str]):
|
8519
|
+
pulumi.set(self, "id", value)
|
8520
|
+
|
8521
|
+
@property
|
8522
|
+
@pulumi.getter(name="maxReceiveCount")
|
8523
|
+
def max_receive_count(self) -> pulumi.Input[builtins.int]:
|
8524
|
+
"""
|
8525
|
+
The number of times a message is delivered to the source queue before being sent to the dead-letter queue. Must be between 1 and 1,000.
|
8526
|
+
"""
|
8527
|
+
return pulumi.get(self, "max_receive_count")
|
8528
|
+
|
8529
|
+
@max_receive_count.setter
|
8530
|
+
def max_receive_count(self, value: pulumi.Input[builtins.int]):
|
8531
|
+
pulumi.set(self, "max_receive_count", value)
|
8532
|
+
|
8533
|
+
|
8389
8534
|
if not MYPY:
|
8390
8535
|
class MongoDbInstancePrivateIpArgsDict(TypedDict):
|
8391
8536
|
address: NotRequired[pulumi.Input[builtins.str]]
|
@@ -8628,6 +8773,9 @@ if not MYPY:
|
|
8628
8773
|
Configuration block of the bucket project owner's display organization ID.
|
8629
8774
|
"""
|
8630
8775
|
grants: NotRequired[pulumi.Input[Sequence[pulumi.Input['ObjectBucketAclAccessControlPolicyGrantArgsDict']]]]
|
8776
|
+
"""
|
8777
|
+
Grant
|
8778
|
+
"""
|
8631
8779
|
elif False:
|
8632
8780
|
ObjectBucketAclAccessControlPolicyArgsDict: TypeAlias = Mapping[str, Any]
|
8633
8781
|
|
@@ -8638,6 +8786,7 @@ class ObjectBucketAclAccessControlPolicyArgs:
|
|
8638
8786
|
grants: Optional[pulumi.Input[Sequence[pulumi.Input['ObjectBucketAclAccessControlPolicyGrantArgs']]]] = None):
|
8639
8787
|
"""
|
8640
8788
|
:param pulumi.Input['ObjectBucketAclAccessControlPolicyOwnerArgs'] owner: Configuration block of the bucket project owner's display organization ID.
|
8789
|
+
:param pulumi.Input[Sequence[pulumi.Input['ObjectBucketAclAccessControlPolicyGrantArgs']]] grants: Grant
|
8641
8790
|
"""
|
8642
8791
|
pulumi.set(__self__, "owner", owner)
|
8643
8792
|
if grants is not None:
|
@@ -8658,6 +8807,9 @@ class ObjectBucketAclAccessControlPolicyArgs:
|
|
8658
8807
|
@property
|
8659
8808
|
@pulumi.getter
|
8660
8809
|
def grants(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ObjectBucketAclAccessControlPolicyGrantArgs']]]]:
|
8810
|
+
"""
|
8811
|
+
Grant
|
8812
|
+
"""
|
8661
8813
|
return pulumi.get(self, "grants")
|
8662
8814
|
|
8663
8815
|
@grants.setter
|
@@ -8719,6 +8871,9 @@ class ObjectBucketAclAccessControlPolicyGrantArgs:
|
|
8719
8871
|
if not MYPY:
|
8720
8872
|
class ObjectBucketAclAccessControlPolicyGrantGranteeArgsDict(TypedDict):
|
8721
8873
|
display_name: NotRequired[pulumi.Input[builtins.str]]
|
8874
|
+
"""
|
8875
|
+
Display name of the grantee to grant access to.
|
8876
|
+
"""
|
8722
8877
|
id: NotRequired[pulumi.Input[builtins.str]]
|
8723
8878
|
"""
|
8724
8879
|
The `region`, `bucket` and `acl` separated by (`/`).
|
@@ -8742,6 +8897,7 @@ class ObjectBucketAclAccessControlPolicyGrantGranteeArgs:
|
|
8742
8897
|
type: Optional[pulumi.Input[builtins.str]] = None,
|
8743
8898
|
uri: Optional[pulumi.Input[builtins.str]] = None):
|
8744
8899
|
"""
|
8900
|
+
:param pulumi.Input[builtins.str] display_name: Display name of the grantee to grant access to.
|
8745
8901
|
:param pulumi.Input[builtins.str] id: The `region`, `bucket` and `acl` separated by (`/`).
|
8746
8902
|
:param pulumi.Input[builtins.str] type: Type of grantee. Valid values: `CanonicalUser`, `Group`
|
8747
8903
|
:param pulumi.Input[builtins.str] uri: The uri of the grantee if you are granting permissions to a predefined group.
|
@@ -8758,6 +8914,9 @@ class ObjectBucketAclAccessControlPolicyGrantGranteeArgs:
|
|
8758
8914
|
@property
|
8759
8915
|
@pulumi.getter(name="displayName")
|
8760
8916
|
def display_name(self) -> Optional[pulumi.Input[builtins.str]]:
|
8917
|
+
"""
|
8918
|
+
Display name of the grantee to grant access to.
|
8919
|
+
"""
|
8761
8920
|
return pulumi.get(self, "display_name")
|
8762
8921
|
|
8763
8922
|
@display_name.setter
|
@@ -10620,7 +10779,13 @@ class WebhostingCpanelUrlArgs:
|
|
10620
10779
|
if not MYPY:
|
10621
10780
|
class WebhostingNameServerArgsDict(TypedDict):
|
10622
10781
|
hostname: NotRequired[pulumi.Input[builtins.str]]
|
10782
|
+
"""
|
10783
|
+
Hostname of the server
|
10784
|
+
"""
|
10623
10785
|
is_default: NotRequired[pulumi.Input[builtins.bool]]
|
10786
|
+
"""
|
10787
|
+
Whether or not the webhosting is the default one
|
10788
|
+
"""
|
10624
10789
|
status: NotRequired[pulumi.Input[builtins.str]]
|
10625
10790
|
"""
|
10626
10791
|
The hosting status.
|
@@ -10635,6 +10800,8 @@ class WebhostingNameServerArgs:
|
|
10635
10800
|
is_default: Optional[pulumi.Input[builtins.bool]] = None,
|
10636
10801
|
status: Optional[pulumi.Input[builtins.str]] = None):
|
10637
10802
|
"""
|
10803
|
+
:param pulumi.Input[builtins.str] hostname: Hostname of the server
|
10804
|
+
:param pulumi.Input[builtins.bool] is_default: Whether or not the webhosting is the default one
|
10638
10805
|
:param pulumi.Input[builtins.str] status: The hosting status.
|
10639
10806
|
"""
|
10640
10807
|
if hostname is not None:
|
@@ -10647,6 +10814,9 @@ class WebhostingNameServerArgs:
|
|
10647
10814
|
@property
|
10648
10815
|
@pulumi.getter
|
10649
10816
|
def hostname(self) -> Optional[pulumi.Input[builtins.str]]:
|
10817
|
+
"""
|
10818
|
+
Hostname of the server
|
10819
|
+
"""
|
10650
10820
|
return pulumi.get(self, "hostname")
|
10651
10821
|
|
10652
10822
|
@hostname.setter
|
@@ -10656,6 +10826,9 @@ class WebhostingNameServerArgs:
|
|
10656
10826
|
@property
|
10657
10827
|
@pulumi.getter(name="isDefault")
|
10658
10828
|
def is_default(self) -> Optional[pulumi.Input[builtins.bool]]:
|
10829
|
+
"""
|
10830
|
+
Whether or not the webhosting is the default one
|
10831
|
+
"""
|
10659
10832
|
return pulumi.get(self, "is_default")
|
10660
10833
|
|
10661
10834
|
@is_default.setter
|
@@ -10734,13 +10907,25 @@ if not MYPY:
|
|
10734
10907
|
The option name.
|
10735
10908
|
"""
|
10736
10909
|
priority: NotRequired[pulumi.Input[builtins.int]]
|
10910
|
+
"""
|
10911
|
+
Priority of DNS records associated with the webhosting.
|
10912
|
+
"""
|
10737
10913
|
status: NotRequired[pulumi.Input[builtins.str]]
|
10738
10914
|
"""
|
10739
10915
|
The hosting status.
|
10740
10916
|
"""
|
10741
10917
|
ttl: NotRequired[pulumi.Input[builtins.int]]
|
10918
|
+
"""
|
10919
|
+
Time to live in seconds of the record
|
10920
|
+
"""
|
10742
10921
|
type: NotRequired[pulumi.Input[builtins.str]]
|
10922
|
+
"""
|
10923
|
+
Type of the DNS record
|
10924
|
+
"""
|
10743
10925
|
value: NotRequired[pulumi.Input[builtins.str]]
|
10926
|
+
"""
|
10927
|
+
Value of the DNS record
|
10928
|
+
"""
|
10744
10929
|
elif False:
|
10745
10930
|
WebhostingRecordArgsDict: TypeAlias = Mapping[str, Any]
|
10746
10931
|
|
@@ -10755,7 +10940,11 @@ class WebhostingRecordArgs:
|
|
10755
10940
|
value: Optional[pulumi.Input[builtins.str]] = None):
|
10756
10941
|
"""
|
10757
10942
|
:param pulumi.Input[builtins.str] name: The option name.
|
10943
|
+
:param pulumi.Input[builtins.int] priority: Priority of DNS records associated with the webhosting.
|
10758
10944
|
:param pulumi.Input[builtins.str] status: The hosting status.
|
10945
|
+
:param pulumi.Input[builtins.int] ttl: Time to live in seconds of the record
|
10946
|
+
:param pulumi.Input[builtins.str] type: Type of the DNS record
|
10947
|
+
:param pulumi.Input[builtins.str] value: Value of the DNS record
|
10759
10948
|
"""
|
10760
10949
|
if name is not None:
|
10761
10950
|
pulumi.set(__self__, "name", name)
|
@@ -10785,6 +10974,9 @@ class WebhostingRecordArgs:
|
|
10785
10974
|
@property
|
10786
10975
|
@pulumi.getter
|
10787
10976
|
def priority(self) -> Optional[pulumi.Input[builtins.int]]:
|
10977
|
+
"""
|
10978
|
+
Priority of DNS records associated with the webhosting.
|
10979
|
+
"""
|
10788
10980
|
return pulumi.get(self, "priority")
|
10789
10981
|
|
10790
10982
|
@priority.setter
|
@@ -10806,6 +10998,9 @@ class WebhostingRecordArgs:
|
|
10806
10998
|
@property
|
10807
10999
|
@pulumi.getter
|
10808
11000
|
def ttl(self) -> Optional[pulumi.Input[builtins.int]]:
|
11001
|
+
"""
|
11002
|
+
Time to live in seconds of the record
|
11003
|
+
"""
|
10809
11004
|
return pulumi.get(self, "ttl")
|
10810
11005
|
|
10811
11006
|
@ttl.setter
|
@@ -10815,6 +11010,9 @@ class WebhostingRecordArgs:
|
|
10815
11010
|
@property
|
10816
11011
|
@pulumi.getter
|
10817
11012
|
def type(self) -> Optional[pulumi.Input[builtins.str]]:
|
11013
|
+
"""
|
11014
|
+
Type of the DNS record
|
11015
|
+
"""
|
10818
11016
|
return pulumi.get(self, "type")
|
10819
11017
|
|
10820
11018
|
@type.setter
|
@@ -10824,6 +11022,9 @@ class WebhostingRecordArgs:
|
|
10824
11022
|
@property
|
10825
11023
|
@pulumi.getter
|
10826
11024
|
def value(self) -> Optional[pulumi.Input[builtins.str]]:
|
11025
|
+
"""
|
11026
|
+
Value of the DNS record
|
11027
|
+
"""
|
10827
11028
|
return pulumi.get(self, "value")
|
10828
11029
|
|
10829
11030
|
@value.setter
|
pulumiverse_scaleway/cockpit.py
CHANGED
@@ -28,6 +28,8 @@ class CockpitArgs:
|
|
28
28
|
The set of arguments for constructing a Cockpit resource.
|
29
29
|
:param pulumi.Input[builtins.str] plan: Name of the plan to use. Available plans are: free, premium, and custom.
|
30
30
|
> **Important:** The plan field is deprecated. Any modification or selection will have no effect.
|
31
|
+
|
32
|
+
> **Warning:** This entire resource is deprecated and will be removed after January 1st, 2025. Please migrate to the new specialized resources as described in the Cockpit Migration Guide.
|
31
33
|
:param pulumi.Input[builtins.str] project_id: ) The ID of the Project the Cockpit is associated with.
|
32
34
|
"""
|
33
35
|
if plan is not None:
|
@@ -45,6 +47,8 @@ class CockpitArgs:
|
|
45
47
|
"""
|
46
48
|
Name of the plan to use. Available plans are: free, premium, and custom.
|
47
49
|
> **Important:** The plan field is deprecated. Any modification or selection will have no effect.
|
50
|
+
|
51
|
+
> **Warning:** This entire resource is deprecated and will be removed after January 1st, 2025. Please migrate to the new specialized resources as described in the Cockpit Migration Guide.
|
48
52
|
"""
|
49
53
|
return pulumi.get(self, "plan")
|
50
54
|
|
@@ -78,6 +82,8 @@ class _CockpitState:
|
|
78
82
|
:param pulumi.Input[Sequence[pulumi.Input['CockpitEndpointArgs']]] endpoints: (Deprecated) A list of [endpoints](https://www.scaleway.com/en/docs/observability/cockpit/concepts/#endpoints) related to Cockpit, each with specific URLs:
|
79
83
|
:param pulumi.Input[builtins.str] plan: Name of the plan to use. Available plans are: free, premium, and custom.
|
80
84
|
> **Important:** The plan field is deprecated. Any modification or selection will have no effect.
|
85
|
+
|
86
|
+
> **Warning:** This entire resource is deprecated and will be removed after January 1st, 2025. Please migrate to the new specialized resources as described in the Cockpit Migration Guide.
|
81
87
|
:param pulumi.Input[builtins.str] plan_id: (Deprecated) The ID of the current pricing plan.
|
82
88
|
:param pulumi.Input[builtins.str] project_id: ) The ID of the Project the Cockpit is associated with.
|
83
89
|
:param pulumi.Input[Sequence[pulumi.Input['CockpitPushUrlArgs']]] push_urls: [DEPRECATED] Push_url
|
@@ -125,6 +131,8 @@ class _CockpitState:
|
|
125
131
|
"""
|
126
132
|
Name of the plan to use. Available plans are: free, premium, and custom.
|
127
133
|
> **Important:** The plan field is deprecated. Any modification or selection will have no effect.
|
134
|
+
|
135
|
+
> **Warning:** This entire resource is deprecated and will be removed after January 1st, 2025. Please migrate to the new specialized resources as described in the Cockpit Migration Guide.
|
128
136
|
"""
|
129
137
|
return pulumi.get(self, "plan")
|
130
138
|
|
@@ -200,6 +208,8 @@ class Cockpit(pulumi.CustomResource):
|
|
200
208
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
201
209
|
:param pulumi.Input[builtins.str] plan: Name of the plan to use. Available plans are: free, premium, and custom.
|
202
210
|
> **Important:** The plan field is deprecated. Any modification or selection will have no effect.
|
211
|
+
|
212
|
+
> **Warning:** This entire resource is deprecated and will be removed after January 1st, 2025. Please migrate to the new specialized resources as described in the Cockpit Migration Guide.
|
203
213
|
:param pulumi.Input[builtins.str] project_id: ) The ID of the Project the Cockpit is associated with.
|
204
214
|
"""
|
205
215
|
...
|
@@ -276,6 +286,8 @@ class Cockpit(pulumi.CustomResource):
|
|
276
286
|
:param pulumi.Input[Sequence[pulumi.Input[Union['CockpitEndpointArgs', 'CockpitEndpointArgsDict']]]] endpoints: (Deprecated) A list of [endpoints](https://www.scaleway.com/en/docs/observability/cockpit/concepts/#endpoints) related to Cockpit, each with specific URLs:
|
277
287
|
:param pulumi.Input[builtins.str] plan: Name of the plan to use. Available plans are: free, premium, and custom.
|
278
288
|
> **Important:** The plan field is deprecated. Any modification or selection will have no effect.
|
289
|
+
|
290
|
+
> **Warning:** This entire resource is deprecated and will be removed after January 1st, 2025. Please migrate to the new specialized resources as described in the Cockpit Migration Guide.
|
279
291
|
:param pulumi.Input[builtins.str] plan_id: (Deprecated) The ID of the current pricing plan.
|
280
292
|
:param pulumi.Input[builtins.str] project_id: ) The ID of the Project the Cockpit is associated with.
|
281
293
|
:param pulumi.Input[Sequence[pulumi.Input[Union['CockpitPushUrlArgs', 'CockpitPushUrlArgsDict']]]] push_urls: [DEPRECATED] Push_url
|
@@ -307,6 +319,8 @@ class Cockpit(pulumi.CustomResource):
|
|
307
319
|
"""
|
308
320
|
Name of the plan to use. Available plans are: free, premium, and custom.
|
309
321
|
> **Important:** The plan field is deprecated. Any modification or selection will have no effect.
|
322
|
+
|
323
|
+
> **Warning:** This entire resource is deprecated and will be removed after January 1st, 2025. Please migrate to the new specialized resources as described in the Cockpit Migration Guide.
|
310
324
|
"""
|
311
325
|
return pulumi.get(self, "plan")
|
312
326
|
|
@@ -33,7 +33,7 @@ class ContainerNamespaceArgs:
|
|
33
33
|
The set of arguments for constructing a ContainerNamespace resource.
|
34
34
|
:param pulumi.Input[builtins.bool] activate_vpc_integration: Activates VPC integration for the namespace. Containers of a namespace with VPC integration activated will be able to connect to a Private Network.
|
35
35
|
|
36
|
-
> **Important
|
36
|
+
> **Important:** VPC integration is now available on all namespaces, so this field is not configurable anymore and its value will always be "true".
|
37
37
|
:param pulumi.Input[builtins.str] description: The description of the namespace.
|
38
38
|
:param pulumi.Input[builtins.bool] destroy_registry: Destroy registry on deletion
|
39
39
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] environment_variables: The environment variables of the namespace.
|
@@ -45,6 +45,9 @@ class ContainerNamespaceArgs:
|
|
45
45
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] secret_environment_variables: The secret environment variables of the namespace.
|
46
46
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] tags: The list of tags associated with the namespace.
|
47
47
|
"""
|
48
|
+
if activate_vpc_integration is not None:
|
49
|
+
warnings.warn("""VPC integration is now available on all namespaces, so this field is not configurable anymore and its value will always be \"true\".""", DeprecationWarning)
|
50
|
+
pulumi.log.warn("""activate_vpc_integration is deprecated: VPC integration is now available on all namespaces, so this field is not configurable anymore and its value will always be \"true\".""")
|
48
51
|
if activate_vpc_integration is not None:
|
49
52
|
pulumi.set(__self__, "activate_vpc_integration", activate_vpc_integration)
|
50
53
|
if description is not None:
|
@@ -69,11 +72,12 @@ class ContainerNamespaceArgs:
|
|
69
72
|
|
70
73
|
@property
|
71
74
|
@pulumi.getter(name="activateVpcIntegration")
|
75
|
+
@_utilities.deprecated("""VPC integration is now available on all namespaces, so this field is not configurable anymore and its value will always be \"true\".""")
|
72
76
|
def activate_vpc_integration(self) -> Optional[pulumi.Input[builtins.bool]]:
|
73
77
|
"""
|
74
78
|
Activates VPC integration for the namespace. Containers of a namespace with VPC integration activated will be able to connect to a Private Network.
|
75
79
|
|
76
|
-
> **Important
|
80
|
+
> **Important:** VPC integration is now available on all namespaces, so this field is not configurable anymore and its value will always be "true".
|
77
81
|
"""
|
78
82
|
return pulumi.get(self, "activate_vpc_integration")
|
79
83
|
|
@@ -200,7 +204,7 @@ class _ContainerNamespaceState:
|
|
200
204
|
Input properties used for looking up and filtering ContainerNamespace resources.
|
201
205
|
:param pulumi.Input[builtins.bool] activate_vpc_integration: Activates VPC integration for the namespace. Containers of a namespace with VPC integration activated will be able to connect to a Private Network.
|
202
206
|
|
203
|
-
> **Important
|
207
|
+
> **Important:** VPC integration is now available on all namespaces, so this field is not configurable anymore and its value will always be "true".
|
204
208
|
:param pulumi.Input[builtins.str] description: The description of the namespace.
|
205
209
|
:param pulumi.Input[builtins.bool] destroy_registry: Destroy registry on deletion
|
206
210
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] environment_variables: The environment variables of the namespace.
|
@@ -215,6 +219,9 @@ class _ContainerNamespaceState:
|
|
215
219
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] secret_environment_variables: The secret environment variables of the namespace.
|
216
220
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] tags: The list of tags associated with the namespace.
|
217
221
|
"""
|
222
|
+
if activate_vpc_integration is not None:
|
223
|
+
warnings.warn("""VPC integration is now available on all namespaces, so this field is not configurable anymore and its value will always be \"true\".""", DeprecationWarning)
|
224
|
+
pulumi.log.warn("""activate_vpc_integration is deprecated: VPC integration is now available on all namespaces, so this field is not configurable anymore and its value will always be \"true\".""")
|
218
225
|
if activate_vpc_integration is not None:
|
219
226
|
pulumi.set(__self__, "activate_vpc_integration", activate_vpc_integration)
|
220
227
|
if description is not None:
|
@@ -245,11 +252,12 @@ class _ContainerNamespaceState:
|
|
245
252
|
|
246
253
|
@property
|
247
254
|
@pulumi.getter(name="activateVpcIntegration")
|
255
|
+
@_utilities.deprecated("""VPC integration is now available on all namespaces, so this field is not configurable anymore and its value will always be \"true\".""")
|
248
256
|
def activate_vpc_integration(self) -> Optional[pulumi.Input[builtins.bool]]:
|
249
257
|
"""
|
250
258
|
Activates VPC integration for the namespace. Containers of a namespace with VPC integration activated will be able to connect to a Private Network.
|
251
259
|
|
252
|
-
> **Important
|
260
|
+
> **Important:** VPC integration is now available on all namespaces, so this field is not configurable anymore and its value will always be "true".
|
253
261
|
"""
|
254
262
|
return pulumi.get(self, "activate_vpc_integration")
|
255
263
|
|
@@ -449,7 +457,7 @@ class ContainerNamespace(pulumi.CustomResource):
|
|
449
457
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
450
458
|
:param pulumi.Input[builtins.bool] activate_vpc_integration: Activates VPC integration for the namespace. Containers of a namespace with VPC integration activated will be able to connect to a Private Network.
|
451
459
|
|
452
|
-
> **Important
|
460
|
+
> **Important:** VPC integration is now available on all namespaces, so this field is not configurable anymore and its value will always be "true".
|
453
461
|
:param pulumi.Input[builtins.str] description: The description of the namespace.
|
454
462
|
:param pulumi.Input[builtins.bool] destroy_registry: Destroy registry on deletion
|
455
463
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] environment_variables: The environment variables of the namespace.
|
@@ -577,7 +585,7 @@ class ContainerNamespace(pulumi.CustomResource):
|
|
577
585
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
578
586
|
:param pulumi.Input[builtins.bool] activate_vpc_integration: Activates VPC integration for the namespace. Containers of a namespace with VPC integration activated will be able to connect to a Private Network.
|
579
587
|
|
580
|
-
> **Important
|
588
|
+
> **Important:** VPC integration is now available on all namespaces, so this field is not configurable anymore and its value will always be "true".
|
581
589
|
:param pulumi.Input[builtins.str] description: The description of the namespace.
|
582
590
|
:param pulumi.Input[builtins.bool] destroy_registry: Destroy registry on deletion
|
583
591
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] environment_variables: The environment variables of the namespace.
|
@@ -612,11 +620,12 @@ class ContainerNamespace(pulumi.CustomResource):
|
|
612
620
|
|
613
621
|
@property
|
614
622
|
@pulumi.getter(name="activateVpcIntegration")
|
623
|
+
@_utilities.deprecated("""VPC integration is now available on all namespaces, so this field is not configurable anymore and its value will always be \"true\".""")
|
615
624
|
def activate_vpc_integration(self) -> pulumi.Output[Optional[builtins.bool]]:
|
616
625
|
"""
|
617
626
|
Activates VPC integration for the namespace. Containers of a namespace with VPC integration activated will be able to connect to a Private Network.
|
618
627
|
|
619
|
-
> **Important
|
628
|
+
> **Important:** VPC integration is now available on all namespaces, so this field is not configurable anymore and its value will always be "true".
|
620
629
|
"""
|
621
630
|
return pulumi.get(self, "activate_vpc_integration")
|
622
631
|
|