pulumiverse-scaleway 1.26.0a1743166124__py3-none-any.whl → 1.27.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumiverse_scaleway/_inputs.py +113 -0
- pulumiverse_scaleway/baremetal_server.py +82 -0
- pulumiverse_scaleway/cockpit.py +7 -0
- pulumiverse_scaleway/edge_services_cache_stage.py +104 -10
- pulumiverse_scaleway/edge_services_dns_stage.py +21 -21
- pulumiverse_scaleway/edge_services_pipeline.py +44 -2
- pulumiverse_scaleway/edge_services_tls_stage.py +111 -17
- pulumiverse_scaleway/elasticmetal/__init__.py +1 -0
- pulumiverse_scaleway/elasticmetal/get_easy_partitioning.py +177 -0
- pulumiverse_scaleway/elasticmetal/server.py +82 -0
- pulumiverse_scaleway/get_cockpit_plan.py +1 -0
- pulumiverse_scaleway/get_instance_server.py +12 -1
- pulumiverse_scaleway/hosting/hosting.py +2 -2
- pulumiverse_scaleway/instance/get_server.py +12 -1
- pulumiverse_scaleway/instance/outputs.py +0 -11
- pulumiverse_scaleway/instance/server.py +54 -7
- pulumiverse_scaleway/instance_server.py +54 -7
- pulumiverse_scaleway/job/_inputs.py +113 -0
- pulumiverse_scaleway/job/definition.py +107 -0
- pulumiverse_scaleway/job/outputs.py +88 -0
- pulumiverse_scaleway/job_definition.py +107 -0
- pulumiverse_scaleway/observability/cockpit.py +7 -0
- pulumiverse_scaleway/observability/get_plan.py +1 -0
- pulumiverse_scaleway/outputs.py +88 -11
- pulumiverse_scaleway/pulumi-plugin.json +1 -1
- pulumiverse_scaleway/webhosting.py +2 -2
- {pulumiverse_scaleway-1.26.0a1743166124.dist-info → pulumiverse_scaleway-1.27.0.dist-info}/METADATA +1 -1
- {pulumiverse_scaleway-1.26.0a1743166124.dist-info → pulumiverse_scaleway-1.27.0.dist-info}/RECORD +30 -29
- {pulumiverse_scaleway-1.26.0a1743166124.dist-info → pulumiverse_scaleway-1.27.0.dist-info}/WHEEL +1 -1
- {pulumiverse_scaleway-1.26.0a1743166124.dist-info → pulumiverse_scaleway-1.27.0.dist-info}/top_level.txt +0 -0
pulumiverse_scaleway/outputs.py
CHANGED
@@ -77,6 +77,7 @@ __all__ = [
|
|
77
77
|
'IpamIpReverse',
|
78
78
|
'IpamIpSource',
|
79
79
|
'JobDefinitionCron',
|
80
|
+
'JobDefinitionSecretReference',
|
80
81
|
'KubernetesClusterAutoUpgrade',
|
81
82
|
'KubernetesClusterAutoscalerConfig',
|
82
83
|
'KubernetesClusterKubeconfig',
|
@@ -4251,6 +4252,93 @@ class JobDefinitionCron(dict):
|
|
4251
4252
|
return pulumi.get(self, "timezone")
|
4252
4253
|
|
4253
4254
|
|
4255
|
+
@pulumi.output_type
|
4256
|
+
class JobDefinitionSecretReference(dict):
|
4257
|
+
@staticmethod
|
4258
|
+
def __key_warning(key: str):
|
4259
|
+
suggest = None
|
4260
|
+
if key == "secretId":
|
4261
|
+
suggest = "secret_id"
|
4262
|
+
elif key == "secretReferenceId":
|
4263
|
+
suggest = "secret_reference_id"
|
4264
|
+
elif key == "secretVersion":
|
4265
|
+
suggest = "secret_version"
|
4266
|
+
|
4267
|
+
if suggest:
|
4268
|
+
pulumi.log.warn(f"Key '{key}' not found in JobDefinitionSecretReference. Access the value via the '{suggest}' property getter instead.")
|
4269
|
+
|
4270
|
+
def __getitem__(self, key: str) -> Any:
|
4271
|
+
JobDefinitionSecretReference.__key_warning(key)
|
4272
|
+
return super().__getitem__(key)
|
4273
|
+
|
4274
|
+
def get(self, key: str, default = None) -> Any:
|
4275
|
+
JobDefinitionSecretReference.__key_warning(key)
|
4276
|
+
return super().get(key, default)
|
4277
|
+
|
4278
|
+
def __init__(__self__, *,
|
4279
|
+
secret_id: str,
|
4280
|
+
environment: Optional[str] = None,
|
4281
|
+
file: Optional[str] = None,
|
4282
|
+
secret_reference_id: Optional[str] = None,
|
4283
|
+
secret_version: Optional[str] = None):
|
4284
|
+
"""
|
4285
|
+
:param str secret_id: The secret unique identifier, it could be formatted as region/UUID or UUID. In case the region is passed, it must be the same as the job definition. You could reference the same secret multiple times in the same job definition.
|
4286
|
+
:param str environment: An environment variable containing the secret value. Must be specified if `file` is not specified.
|
4287
|
+
:param str file: The absolute file path where the secret will be mounted. Must be specified if `environment` is not specified.
|
4288
|
+
:param str secret_reference_id: The secret reference UUID that is automatically generated by the provider.
|
4289
|
+
:param str secret_version: The secret version.
|
4290
|
+
"""
|
4291
|
+
pulumi.set(__self__, "secret_id", secret_id)
|
4292
|
+
if environment is not None:
|
4293
|
+
pulumi.set(__self__, "environment", environment)
|
4294
|
+
if file is not None:
|
4295
|
+
pulumi.set(__self__, "file", file)
|
4296
|
+
if secret_reference_id is not None:
|
4297
|
+
pulumi.set(__self__, "secret_reference_id", secret_reference_id)
|
4298
|
+
if secret_version is not None:
|
4299
|
+
pulumi.set(__self__, "secret_version", secret_version)
|
4300
|
+
|
4301
|
+
@property
|
4302
|
+
@pulumi.getter(name="secretId")
|
4303
|
+
def secret_id(self) -> str:
|
4304
|
+
"""
|
4305
|
+
The secret unique identifier, it could be formatted as region/UUID or UUID. In case the region is passed, it must be the same as the job definition. You could reference the same secret multiple times in the same job definition.
|
4306
|
+
"""
|
4307
|
+
return pulumi.get(self, "secret_id")
|
4308
|
+
|
4309
|
+
@property
|
4310
|
+
@pulumi.getter
|
4311
|
+
def environment(self) -> Optional[str]:
|
4312
|
+
"""
|
4313
|
+
An environment variable containing the secret value. Must be specified if `file` is not specified.
|
4314
|
+
"""
|
4315
|
+
return pulumi.get(self, "environment")
|
4316
|
+
|
4317
|
+
@property
|
4318
|
+
@pulumi.getter
|
4319
|
+
def file(self) -> Optional[str]:
|
4320
|
+
"""
|
4321
|
+
The absolute file path where the secret will be mounted. Must be specified if `environment` is not specified.
|
4322
|
+
"""
|
4323
|
+
return pulumi.get(self, "file")
|
4324
|
+
|
4325
|
+
@property
|
4326
|
+
@pulumi.getter(name="secretReferenceId")
|
4327
|
+
def secret_reference_id(self) -> Optional[str]:
|
4328
|
+
"""
|
4329
|
+
The secret reference UUID that is automatically generated by the provider.
|
4330
|
+
"""
|
4331
|
+
return pulumi.get(self, "secret_reference_id")
|
4332
|
+
|
4333
|
+
@property
|
4334
|
+
@pulumi.getter(name="secretVersion")
|
4335
|
+
def secret_version(self) -> Optional[str]:
|
4336
|
+
"""
|
4337
|
+
The secret version.
|
4338
|
+
"""
|
4339
|
+
return pulumi.get(self, "secret_version")
|
4340
|
+
|
4341
|
+
|
4254
4342
|
@pulumi.output_type
|
4255
4343
|
class KubernetesClusterAutoUpgrade(dict):
|
4256
4344
|
@staticmethod
|
@@ -9206,7 +9294,6 @@ class GetInstanceServersServerResult(dict):
|
|
9206
9294
|
project_id: str,
|
9207
9295
|
public_ip: str,
|
9208
9296
|
public_ips: Sequence['outputs.GetInstanceServersServerPublicIpResult'],
|
9209
|
-
routed_ip_enabled: bool,
|
9210
9297
|
security_group_id: str,
|
9211
9298
|
state: str,
|
9212
9299
|
tags: Sequence[str],
|
@@ -9228,7 +9315,6 @@ class GetInstanceServersServerResult(dict):
|
|
9228
9315
|
:param str project_id: The ID of the project the server is associated with.
|
9229
9316
|
:param str public_ip: The public IP address of the server.
|
9230
9317
|
:param Sequence['GetInstanceServersServerPublicIpArgs'] public_ips: The list of public IPs of the server
|
9231
|
-
:param bool routed_ip_enabled: True if the server support routed ip only.
|
9232
9318
|
:param str security_group_id: The [security group](https://developers.scaleway.com/en/products/instance/api/#security-groups-8d7f89) the server is attached to.
|
9233
9319
|
:param str state: The state of the server. Possible values are: `started`, `stopped` or `standby`.
|
9234
9320
|
:param Sequence[str] tags: List of tags used as filter. Servers with these exact tags are listed.
|
@@ -9252,7 +9338,6 @@ class GetInstanceServersServerResult(dict):
|
|
9252
9338
|
pulumi.set(__self__, "project_id", project_id)
|
9253
9339
|
pulumi.set(__self__, "public_ip", public_ip)
|
9254
9340
|
pulumi.set(__self__, "public_ips", public_ips)
|
9255
|
-
pulumi.set(__self__, "routed_ip_enabled", routed_ip_enabled)
|
9256
9341
|
pulumi.set(__self__, "security_group_id", security_group_id)
|
9257
9342
|
pulumi.set(__self__, "state", state)
|
9258
9343
|
pulumi.set(__self__, "tags", tags)
|
@@ -9391,14 +9476,6 @@ class GetInstanceServersServerResult(dict):
|
|
9391
9476
|
"""
|
9392
9477
|
return pulumi.get(self, "public_ips")
|
9393
9478
|
|
9394
|
-
@property
|
9395
|
-
@pulumi.getter(name="routedIpEnabled")
|
9396
|
-
def routed_ip_enabled(self) -> bool:
|
9397
|
-
"""
|
9398
|
-
True if the server support routed ip only.
|
9399
|
-
"""
|
9400
|
-
return pulumi.get(self, "routed_ip_enabled")
|
9401
|
-
|
9402
9479
|
@property
|
9403
9480
|
@pulumi.getter(name="securityGroupId")
|
9404
9481
|
def security_group_id(self) -> str:
|
@@ -487,7 +487,7 @@ class Webhosting(pulumi.CustomResource):
|
|
487
487
|
__props__=None):
|
488
488
|
"""
|
489
489
|
Creates and manages Scaleway Web Hostings.
|
490
|
-
For more information, see the [API documentation](https://www.scaleway.com/en/developers/api/webhosting/).
|
490
|
+
For more information, see the [API documentation](https://www.scaleway.com/en/developers/api/webhosting/hosting-api/).
|
491
491
|
|
492
492
|
## Example Usage
|
493
493
|
|
@@ -537,7 +537,7 @@ class Webhosting(pulumi.CustomResource):
|
|
537
537
|
opts: Optional[pulumi.ResourceOptions] = None):
|
538
538
|
"""
|
539
539
|
Creates and manages Scaleway Web Hostings.
|
540
|
-
For more information, see the [API documentation](https://www.scaleway.com/en/developers/api/webhosting/).
|
540
|
+
For more information, see the [API documentation](https://www.scaleway.com/en/developers/api/webhosting/hosting-api/).
|
541
541
|
|
542
542
|
## Example Usage
|
543
543
|
|
{pulumiverse_scaleway-1.26.0a1743166124.dist-info → pulumiverse_scaleway-1.27.0.dist-info}/RECORD
RENAMED
@@ -1,13 +1,13 @@
|
|
1
1
|
pulumiverse_scaleway/__init__.py,sha256=ihAGy4tzLYq404HeJZbxd9gOD-7EkvzoJJcBk44ilIg,51578
|
2
|
-
pulumiverse_scaleway/_inputs.py,sha256=
|
2
|
+
pulumiverse_scaleway/_inputs.py,sha256=3AlHQuUYZR949cWgSR4nvSyaSieiyTsUcRKHnP310jQ,378103
|
3
3
|
pulumiverse_scaleway/_utilities.py,sha256=hHbTMGRmyjc8AeP2V6WYcyfgdTAoZRSNt5pQxxhY_5Q,10840
|
4
4
|
pulumiverse_scaleway/account_project.py,sha256=kLO3a7iaEyZ4xk079TBhcOSv9eEjF7N_-r79S9V1paM,13069
|
5
5
|
pulumiverse_scaleway/account_ssh_key.py,sha256=8bvl-zp2B2iPgkGO0ewjNbf6HUoEX2yIdqSmxCki6m4,17894
|
6
6
|
pulumiverse_scaleway/apple_silicon_server.py,sha256=groAHCJvBSNiJDSiINT0pYEt6df08fu-NLUlyxVMd74,32011
|
7
|
-
pulumiverse_scaleway/baremetal_server.py,sha256=
|
7
|
+
pulumiverse_scaleway/baremetal_server.py,sha256=kOeiW9z8FD7fLJ8nbEuMvFcu5J3f7lJfQ4Lb1olY89E,75880
|
8
8
|
pulumiverse_scaleway/block_snapshot.py,sha256=cQ_0iyp3dl2K5ncP7acF9oyiMDLTaYdi3vXVidrlFd0,16440
|
9
9
|
pulumiverse_scaleway/block_volume.py,sha256=CX3zneF-JixAU7ve7NB_TqmVItvmivRxcew2Pc_5hWo,24446
|
10
|
-
pulumiverse_scaleway/cockpit.py,sha256=
|
10
|
+
pulumiverse_scaleway/cockpit.py,sha256=PsN-Dyvd3ik_FcN6NSgjTay3KJBeaIjfo3iIoEoiFcI,16285
|
11
11
|
pulumiverse_scaleway/cockpit_alert_manager.py,sha256=mjSGCeA-yNBfLDMseYUNmF5uhrDjMX8wSC6Nz0Uos4c,19789
|
12
12
|
pulumiverse_scaleway/cockpit_grafana_user.py,sha256=oSnH5ouFCW0qTOWwQ7cHOHUxJ9An67FJwrtDKdrc2mc,15717
|
13
13
|
pulumiverse_scaleway/cockpit_source.py,sha256=uJCVqWghU0q_FbNPnyyM0jHjBDdmeoNJD6aQIdbZj14,25758
|
@@ -28,13 +28,13 @@ pulumiverse_scaleway/database_user.py,sha256=LNTJU22rkUDr4Ckvoz_IjZxLWWxHLge4Wwi
|
|
28
28
|
pulumiverse_scaleway/domain_record.py,sha256=n4DpIWE3_mvSjoI8myit6kwKkLc8Z2LIzhDZIWWnjFQ,46174
|
29
29
|
pulumiverse_scaleway/domain_zone.py,sha256=Cbw53SSVYR6Q_KA8sgVg46ALHCgTnJXUnLt8tc0khWQ,17145
|
30
30
|
pulumiverse_scaleway/edge_services_backend_stage.py,sha256=f_YnjGeH2vpvzPouNGHvfgnJqESxV1onWWrWwcFitxU,21183
|
31
|
-
pulumiverse_scaleway/edge_services_cache_stage.py,sha256=
|
32
|
-
pulumiverse_scaleway/edge_services_dns_stage.py,sha256=
|
31
|
+
pulumiverse_scaleway/edge_services_cache_stage.py,sha256=5AN3YUjFcYuV5qnNo1yYJXfTkCSL0zociP9ZN9leI98,27630
|
32
|
+
pulumiverse_scaleway/edge_services_dns_stage.py,sha256=oJRBOsE1Wb8MviYuNBh0IlwhmVn1GAHqwt5U2NipvOI,22849
|
33
33
|
pulumiverse_scaleway/edge_services_head_stage.py,sha256=0aH9bn0rN5zl9ceyn8jj7gdGi6sbo3t5WsCI-Vj-Sng,9829
|
34
|
-
pulumiverse_scaleway/edge_services_pipeline.py,sha256=
|
34
|
+
pulumiverse_scaleway/edge_services_pipeline.py,sha256=ElXYiAgVAJBiW4O0-iUXx7hzPh6MDQFju-pLTfNnuXQ,18087
|
35
35
|
pulumiverse_scaleway/edge_services_plan.py,sha256=e-nOrlG1lTZS04gQyw_BtH1c8h0IdT7aEdmGG43yhdg,8535
|
36
36
|
pulumiverse_scaleway/edge_services_route_stage.py,sha256=yjc2XiTuvkuXWipQNqZKelUwNwdbtdp5jA0vwRHMqdo,18703
|
37
|
-
pulumiverse_scaleway/edge_services_tls_stage.py,sha256=
|
37
|
+
pulumiverse_scaleway/edge_services_tls_stage.py,sha256=IZDockk8pChfI6hHt4WmYdZyIsFzMJj5s6Rrq6jr954,30321
|
38
38
|
pulumiverse_scaleway/edge_services_waf_stage.py,sha256=QAFEpjf_RJdeDwmFdR7iecuH39ehCbxvTN96k1W_oV4,19232
|
39
39
|
pulumiverse_scaleway/flexible_ip.py,sha256=sSDR95tMEA6BFbUzfl8gbe4dFjyrWUG1fAWJILGFz2I,26830
|
40
40
|
pulumiverse_scaleway/flexible_ip_mac_address.py,sha256=qOGMMEM7mbuJXBVLFdA_peL4VR1zThINb9mWGc-hNyw,21503
|
@@ -56,7 +56,7 @@ pulumiverse_scaleway/get_billing_invoices.py,sha256=uQG495a2z2UJv3IFXrGcbL4YtoBQ
|
|
56
56
|
pulumiverse_scaleway/get_block_snapshot.py,sha256=LeJcu4ANmU18TR6cT9jWf971kfx_NwbzvlEz2PqWw4I,8242
|
57
57
|
pulumiverse_scaleway/get_block_volume.py,sha256=8ZwZbLn1Op7da2MqM0GAfpd4NCk5ivrcsnnqbixKwVw,9162
|
58
58
|
pulumiverse_scaleway/get_cockpit.py,sha256=Gbz1TunTwgGKsS4c_pGMLsksHHf2KhFcF7341FinLmk,9359
|
59
|
-
pulumiverse_scaleway/get_cockpit_plan.py,sha256=
|
59
|
+
pulumiverse_scaleway/get_cockpit_plan.py,sha256=MKo9fyacpBaR1Syg2pf-NWcjeF8L9cW0rCpBlydhNxo,5770
|
60
60
|
pulumiverse_scaleway/get_cockpit_source.py,sha256=na_Xr5nckemXrfS6h57Gvc32vPC9G-G11GgF-tPNZTU,11862
|
61
61
|
pulumiverse_scaleway/get_config.py,sha256=vIMVQTYjEA5_PnT9Z134UOCUNS6Ip-68xyGxJHpGumY,7834
|
62
62
|
pulumiverse_scaleway/get_container.py,sha256=FPHIw6w-K-PLPJcmZWoUz0y3egqSuTD1-Z605Oh4AkQ,24858
|
@@ -82,7 +82,7 @@ pulumiverse_scaleway/get_instance_ip.py,sha256=-N_JqKdXZZjikfPK47f44CBCQTtYIgNXn
|
|
82
82
|
pulumiverse_scaleway/get_instance_placement_group.py,sha256=C93EFkHxjEo2XVWL8Zzpe-seTJe54_RX4ZG1FiXJmJs,10101
|
83
83
|
pulumiverse_scaleway/get_instance_private_nic.py,sha256=Bsp91CdmCnECYh_62fCcrg7Fk_6038dVGhI4L8trPnM,10602
|
84
84
|
pulumiverse_scaleway/get_instance_security_group.py,sha256=iriiMJoVrXZ18LilIvNccKQvNeT4mMrwQ8MzFCd49iI,13166
|
85
|
-
pulumiverse_scaleway/get_instance_server.py,sha256=
|
85
|
+
pulumiverse_scaleway/get_instance_server.py,sha256=YGjoI8c7IU5JEJO3xk1LXJB8WMXfHVuC185YE2jbCg8,22613
|
86
86
|
pulumiverse_scaleway/get_instance_servers.py,sha256=eSnVwv8OjlmWMeCJSJC-kV8EpM2Q49PQG7Y4ZfDQPtY,7772
|
87
87
|
pulumiverse_scaleway/get_instance_snapshot.py,sha256=Z0dxLH7Vmi52ZUhMs0gFT-b9QAYS6nkct3yrRUJmMPQ,10502
|
88
88
|
pulumiverse_scaleway/get_instance_volume.py,sha256=kNaQFkE6vOyQpOhNuPeO_RB5WlcabZB3Uf6iWH0uOJE,9883
|
@@ -145,7 +145,7 @@ pulumiverse_scaleway/instance_placement_group.py,sha256=LLpNMefDIoDeCHZHeOKIRtla
|
|
145
145
|
pulumiverse_scaleway/instance_private_nic.py,sha256=ER1JuxNs8OVpRgcCTNtWLYJ0vsZOe07Zoz7tqaM7zjo,22813
|
146
146
|
pulumiverse_scaleway/instance_security_group.py,sha256=TBkKj9z6wIKzPJ8TLYo5wOGtyDvwlfeiJDcKO6J55IQ,37031
|
147
147
|
pulumiverse_scaleway/instance_security_group_rules.py,sha256=Lf1_FzmjW9D7VzyhWZztV8zT82Is0vgfsRqfflsB2cE,21219
|
148
|
-
pulumiverse_scaleway/instance_server.py,sha256=
|
148
|
+
pulumiverse_scaleway/instance_server.py,sha256=lB9cahKgH1yn50sNRKtv8i4tyxsJAiPz0WF9wK3SLP0,97666
|
149
149
|
pulumiverse_scaleway/instance_snapshot.py,sha256=TYYjN8DLEI8D3DfhKeTi0Gt3pAlFeyi9lMMcLE0vwrk,26683
|
150
150
|
pulumiverse_scaleway/instance_user_data.py,sha256=EX0TPec7OuLwgGbgLvOLfOKhLosv5rhDmInpeVE-LcI,17350
|
151
151
|
pulumiverse_scaleway/instance_volume.py,sha256=RrFOKS-aaN_QgOoCgKOFLPQoF8YBn34-IAxgDElikGg,25331
|
@@ -155,7 +155,7 @@ pulumiverse_scaleway/iot_network.py,sha256=CA3gUVVLDEtjPW-8_BzEOvBsrXeYO73tNaRqK
|
|
155
155
|
pulumiverse_scaleway/iot_route.py,sha256=Zjr7TkzTREg5o2Zz3FlGBSL3ujILApSqYN-Sp9X9GD8,27833
|
156
156
|
pulumiverse_scaleway/ipam_ip.py,sha256=Fa1y0hSm65LGszrDUK8KJS_K2mJ8lkLmgBYuMhyb5iM,29799
|
157
157
|
pulumiverse_scaleway/ipam_ip_reverse_dns.py,sha256=zJbrFo01_s12JRAQ1ETjwSHHSS9FjMrajhtrk_iC4nI,12386
|
158
|
-
pulumiverse_scaleway/job_definition.py,sha256=
|
158
|
+
pulumiverse_scaleway/job_definition.py,sha256=DttBaVAeoXkV25JXqOpqHPDMBZM0BJHYjry7XB5Nmq8,32785
|
159
159
|
pulumiverse_scaleway/kubernetes_cluster.py,sha256=bekbCPQd3aLoBNRMmy1YogqN0xhVnqb-AQwZ_Sc4I6A,72766
|
160
160
|
pulumiverse_scaleway/kubernetes_node_pool.py,sha256=owv60EIbNw8tcZiNCpYcJx4nM_fHifr11S6nqxbbyNA,60204
|
161
161
|
pulumiverse_scaleway/loadbalancer.py,sha256=gpOL-MVd6GWE8wY-sVtb8cqpT0zLb_nGYO3D_AXCS-E,46891
|
@@ -182,9 +182,9 @@ pulumiverse_scaleway/object_bucket_lock_configuration.py,sha256=DQm9cPbsv4QNXMsi
|
|
182
182
|
pulumiverse_scaleway/object_bucket_policy.py,sha256=ZqLUauMi-bn-VX_t4BLz1iIMqn2fHat3XebOafQFopA,25714
|
183
183
|
pulumiverse_scaleway/object_bucket_website_configuration.py,sha256=FAPlYocPcceHpep0MTDgzicNcgUd04G08HTu9W0U0bM,24587
|
184
184
|
pulumiverse_scaleway/object_item.py,sha256=usADC889mCDcwxFE3XeHkI-Ysy4gPOSr2JbEAvkaLp8,33842
|
185
|
-
pulumiverse_scaleway/outputs.py,sha256=
|
185
|
+
pulumiverse_scaleway/outputs.py,sha256=TA-hlW3Udn5K-cSF8OH-fcBSe-2sUfGypJDan4xFZWk,467278
|
186
186
|
pulumiverse_scaleway/provider.py,sha256=peWeLAx4wsEDPL35OtX2F5JKvy1SDcIAjyNwBA-VLW0,12821
|
187
|
-
pulumiverse_scaleway/pulumi-plugin.json,sha256=
|
187
|
+
pulumiverse_scaleway/pulumi-plugin.json,sha256=IZEFQkzzqGXrOULdxjuQL1eGOI4jaTdgKB-bMEvRENM,119
|
188
188
|
pulumiverse_scaleway/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
189
189
|
pulumiverse_scaleway/rdb_snapshot.py,sha256=FufDL1jYw0fEy7-hBV2QCEQjk9M755m4BR3VX5JI3gg,24654
|
190
190
|
pulumiverse_scaleway/redis_cluster.py,sha256=XHibwD2X5_nT0wCJv6utBoL1H-nKicF-Wtb7ukS2Sjg,54552
|
@@ -205,7 +205,7 @@ pulumiverse_scaleway/vpc_public_gateway_ip.py,sha256=FZ99M9bj_c5c1rc_Fv15gLgrIwC
|
|
205
205
|
pulumiverse_scaleway/vpc_public_gateway_ip_reverse_dns.py,sha256=Fc8pdU6KecdMS4OQMDsg0CNEhcYbd6I5eCs7CKcXYKE,12435
|
206
206
|
pulumiverse_scaleway/vpc_public_gateway_pat_rule.py,sha256=Z7bd9MiBCZ1dEnqongzznbEWDOSs-40qY8XKQdmdewU,24566
|
207
207
|
pulumiverse_scaleway/vpc_route.py,sha256=XCw8lmWNe19eENdMCAwcw9VRYkdKgR_V21JIk0-SbEo,22778
|
208
|
-
pulumiverse_scaleway/webhosting.py,sha256=
|
208
|
+
pulumiverse_scaleway/webhosting.py,sha256=1juMPBI6EgCBG8CWxVOboznMtrTMBWZuZ6S4Jek3Pu4,35845
|
209
209
|
pulumiverse_scaleway/account/__init__.py,sha256=32H1nB4i_GHa2Sqvg_5hOP4dW8Q_35nGagVMBQfhaMk,407
|
210
210
|
pulumiverse_scaleway/account/get_availability_zones.py,sha256=t3npfuEYTRzzi9pReKMY5jgLgGWDkCgRWzUgOh5qWbQ,5409
|
211
211
|
pulumiverse_scaleway/account/get_project.py,sha256=SqDNT0yT6Yr4E1wJSYUayJt1yPtOckvfeUwK7Z8ZyZE,7420
|
@@ -264,8 +264,9 @@ pulumiverse_scaleway/domain/outputs.py,sha256=kZ3hBmnBQD0NaXhpngyTDdmgoP6WYXqGxg
|
|
264
264
|
pulumiverse_scaleway/domain/record.py,sha256=IlHjfTmHVQchWviz95Vf964nXVVeZrBJALfq1QeZmZk,45301
|
265
265
|
pulumiverse_scaleway/domain/registration.py,sha256=VoyYTzEux89ZpPcq4FRghGiz6ynIyeHSJfzm6Q0qqsg,33536
|
266
266
|
pulumiverse_scaleway/domain/zone.py,sha256=uo7JgtJpIGLaE2K2crappRs8lU33JlI4_tOKkodYj2I,16750
|
267
|
-
pulumiverse_scaleway/elasticmetal/__init__.py,sha256=
|
267
|
+
pulumiverse_scaleway/elasticmetal/__init__.py,sha256=bPaBY_kh4a5iP_AtI9D3I4GK_u-cB-C8-pF6ZRcQR-E,565
|
268
268
|
pulumiverse_scaleway/elasticmetal/_inputs.py,sha256=AGBiDjGtFMpz5YZvM7q-62az7ztVyyyj4He80Q_-Vuo,15908
|
269
|
+
pulumiverse_scaleway/elasticmetal/get_easy_partitioning.py,sha256=3TMLpKKtdk3EOTgUI-C1OXKL4DLm1B859I3-bTrMSsU,8249
|
269
270
|
pulumiverse_scaleway/elasticmetal/get_ip.py,sha256=pgVWAnwDYHmqdQRFi71Ty2vnIH4zF7JyZPmyBj0qPOI,9774
|
270
271
|
pulumiverse_scaleway/elasticmetal/get_ips.py,sha256=xzKhxEBP2JThlYaSEDmGb_F-3mkTV03C_fFVnM3ysUg,8810
|
271
272
|
pulumiverse_scaleway/elasticmetal/get_offer.py,sha256=jExnVKG6mfw2YD4CDiO3P0tdYiG1vCj64pFGPe7sKSI,10164
|
@@ -275,7 +276,7 @@ pulumiverse_scaleway/elasticmetal/get_server.py,sha256=O5Q-tbSvtlQDQnuM-IpFQPpMC
|
|
275
276
|
pulumiverse_scaleway/elasticmetal/ip.py,sha256=NuxGV0932Aa2cDbDK7ZqV_138VNnl_7_r1VbdKABlsc,26399
|
276
277
|
pulumiverse_scaleway/elasticmetal/ip_mac_address.py,sha256=TxGKxa3w-Zva95ONQ3GaLdTQrkz2gE6LOjCw_WNJ4P8,20962
|
277
278
|
pulumiverse_scaleway/elasticmetal/outputs.py,sha256=w4eG8GNQ2KA5lWSFsfbQsPLTab5P5DBqSE9ezZkobho,28321
|
278
|
-
pulumiverse_scaleway/elasticmetal/server.py,sha256=
|
279
|
+
pulumiverse_scaleway/elasticmetal/server.py,sha256=YNlMo6yGKbE92VQY8komSMWW8_vX-WTFhRqaS0TOjk0,74791
|
279
280
|
pulumiverse_scaleway/functions/__init__.py,sha256=giP3AleODApf2_oCacB4Zn7twtqxS8vgZ_aAWxBnvG8,506
|
280
281
|
pulumiverse_scaleway/functions/_inputs.py,sha256=yNf7FkKmA0p67WeN68T904RLZKzFpwYg9xDLcd7_cG0,7711
|
281
282
|
pulumiverse_scaleway/functions/cron.py,sha256=aUKw-WuYtcbfWfByoJXGNW8LljBinUJ9M--hhcgQgt0,18956
|
@@ -291,7 +292,7 @@ pulumiverse_scaleway/hosting/__init__.py,sha256=k2_bOlDAD6XRvnipJlKWU1egdhx9lXM-
|
|
291
292
|
pulumiverse_scaleway/hosting/_inputs.py,sha256=IZES7j9EYaUP2IYrwFElTx5GlOr94tZArxsHvaCt3Bc,8598
|
292
293
|
pulumiverse_scaleway/hosting/get_hosting.py,sha256=AyP1KIMlgBMCrKAdFhj7g8j7HejGzCzZqZr_nsc_YSw,14899
|
293
294
|
pulumiverse_scaleway/hosting/get_offer.py,sha256=q5dTYAK6qyW3k33qrVlDckx8xu194dlnc-_LRc4kxuo,8814
|
294
|
-
pulumiverse_scaleway/hosting/hosting.py,sha256=
|
295
|
+
pulumiverse_scaleway/hosting/hosting.py,sha256=IM-IFLNJzU1lgn6gLHcFX547zYhXMTEWCznnhInGQYo,35396
|
295
296
|
pulumiverse_scaleway/hosting/outputs.py,sha256=BdmehvPgYzkc1Rv6yLbOMypooq6p0JqzR_0_AM6HCKA,18412
|
296
297
|
pulumiverse_scaleway/iam/__init__.py,sha256=Kc0k0qvmQp0Q3SckdUJkr0mB2Q53LwCxU85afsmH940,616
|
297
298
|
pulumiverse_scaleway/iam/_inputs.py,sha256=z_qw1y41L8tXaWPd159YJSP9ZVV1EwERZ4cHLbPyyaA,4999
|
@@ -319,19 +320,19 @@ pulumiverse_scaleway/instance/get_ip.py,sha256=0t6K-Z26dsPlA-a8NfDta13xakMS633vj
|
|
319
320
|
pulumiverse_scaleway/instance/get_placement_group.py,sha256=luMv4nP5q_0Lxer1t_RD3MeYwSGHx3IHga5cleSKw50,9221
|
320
321
|
pulumiverse_scaleway/instance/get_private_nic.py,sha256=jOT8eNm9w0hq-XYfKM_Vx1RoRe3NixfdBx836wgIYoQ,9760
|
321
322
|
pulumiverse_scaleway/instance/get_security_group.py,sha256=K04zVNTxfJzczRUhHlQ6Vvu73Lg1I-zbEdBEKtuWCzc,12284
|
322
|
-
pulumiverse_scaleway/instance/get_server.py,sha256=
|
323
|
+
pulumiverse_scaleway/instance/get_server.py,sha256=2w9caRcOwXQZuCByGS-OF1d8b6kab_MK8hdr1xPamDQ,21823
|
323
324
|
pulumiverse_scaleway/instance/get_servers.py,sha256=TIsxj-lzbWdUYdDbJXdWOHvVMP2iPUwDZAC8Nwrv4oA,6984
|
324
325
|
pulumiverse_scaleway/instance/get_snapshot.py,sha256=_kpieHBfExXHmF8-Fdt0ToX4eUA6VvqFt2Ra_0QMYkw,9700
|
325
326
|
pulumiverse_scaleway/instance/get_volume.py,sha256=HlwH998edqGcOGdIGdYtKtyzxnOnf5J239hFGcL28r4,9117
|
326
327
|
pulumiverse_scaleway/instance/image.py,sha256=dnLDNda539LsSjVf0GHLEPq1uIwSYp4ly8YQ2qBpmvk,31081
|
327
328
|
pulumiverse_scaleway/instance/ip.py,sha256=sWJPnuPYLGYTzVQ7b5HHtcQfoiYmq-uOPVWues2fns8,18244
|
328
329
|
pulumiverse_scaleway/instance/ip_reverse_dns.py,sha256=m_5wFlYmU_TRgmYIbKI24p032ig-0Qe7ToNTD59M3V0,10958
|
329
|
-
pulumiverse_scaleway/instance/outputs.py,sha256=
|
330
|
+
pulumiverse_scaleway/instance/outputs.py,sha256=3ILBXXBLQFwbZP3c52JYnBx482buNMK_rXw_mpTF_lg,52855
|
330
331
|
pulumiverse_scaleway/instance/placement_group.py,sha256=4kROq2Nt-GGkWpyjZ2Rm1FD_bWUrFGqguCtzoa12Btw,21550
|
331
332
|
pulumiverse_scaleway/instance/private_nic.py,sha256=2b3qdxw_k7YgsjROX1x8PtmKbEJqvMX-b8WqgBVi2AQ,22294
|
332
333
|
pulumiverse_scaleway/instance/security_group.py,sha256=DV7Ob88v3uswOGy1g1uXJmGHKe67b5PjeGpB470UPBY,36175
|
333
334
|
pulumiverse_scaleway/instance/security_group_rules.py,sha256=EFP3kbmNmF44iz5y4XIpPaR3errfvQ68nTlKAQdIXUY,20308
|
334
|
-
pulumiverse_scaleway/instance/server.py,sha256=
|
335
|
+
pulumiverse_scaleway/instance/server.py,sha256=hunfElboqJsi4TMh7LWiav-h6xRlzXOS0qrhARCYYw4,96735
|
335
336
|
pulumiverse_scaleway/instance/snapshot.py,sha256=1HtyV59XpHxfopeOUu45Du0cS-vBX0qiGlt9MQudZyQ,26034
|
336
337
|
pulumiverse_scaleway/instance/user_data.py,sha256=fA2ZCP5dKNU4pITlPZwQptmUEEjQczJLH1JJ2moYxrM,16853
|
337
338
|
pulumiverse_scaleway/instance/volume.py,sha256=rgJ1SvoNtEQ3iZl-T6XowuBIlmC36BREXfncDdUad0U,24856
|
@@ -352,9 +353,9 @@ pulumiverse_scaleway/ipam/ip.py,sha256=VxHpv80YEkBPtwC899lioGtsaM_xMGo99RPVoSRtO
|
|
352
353
|
pulumiverse_scaleway/ipam/ip_reverse_dns.py,sha256=ecD4pVyFmEulwgf4C2iuRa1q4G7XSUKJ8citos2olNA,11961
|
353
354
|
pulumiverse_scaleway/ipam/outputs.py,sha256=d28ffw7OZInjWz89QBnPKM9IELbmANDBm9uInZce7hc,15113
|
354
355
|
pulumiverse_scaleway/job/__init__.py,sha256=Nd7oyNyRbG0bPm3y0KpF4nQPxX_WG1LCQSx_I_ddhzU,340
|
355
|
-
pulumiverse_scaleway/job/_inputs.py,sha256=
|
356
|
-
pulumiverse_scaleway/job/definition.py,sha256=
|
357
|
-
pulumiverse_scaleway/job/outputs.py,sha256=
|
356
|
+
pulumiverse_scaleway/job/_inputs.py,sha256=pMZw9N7t19ZVBUEOc7LuRRlx7YFoHnVAHDPwyVyaKoI,7190
|
357
|
+
pulumiverse_scaleway/job/definition.py,sha256=302RUWRqlmFPHtCJVKPXnFMXUqGOmdyHoZpF_ayAe6I,32297
|
358
|
+
pulumiverse_scaleway/job/outputs.py,sha256=VHmNKn07dp4I-fNoBuVnTvaHLilXenSRmmzYkzbfStU,5146
|
358
359
|
pulumiverse_scaleway/kubernetes/__init__.py,sha256=CZtq37BlJDgXIV57BCEvH1AWnpeD_hCU7e94Pfh3Tn4,435
|
359
360
|
pulumiverse_scaleway/kubernetes/_inputs.py,sha256=PrFaB7UPhOr0AnlaetwL2U-qI9VH8FbNMkUvWlJsEuc,29854
|
360
361
|
pulumiverse_scaleway/kubernetes/cluster.py,sha256=u3QO-qXs45_Fi7dW91d1XZuPlx12jVNJel1GJfA0D60,71562
|
@@ -443,9 +444,9 @@ pulumiverse_scaleway/object/outputs.py,sha256=NyarZVOZMQlfLaGq6vGkXnwsETZo6Wq4e_
|
|
443
444
|
pulumiverse_scaleway/observability/__init__.py,sha256=p1lsFw5247ravq26UN2J0WC56SpN9ROME_B67nJCmWE,515
|
444
445
|
pulumiverse_scaleway/observability/_inputs.py,sha256=NHRBMJL2J-B_zJkRsvv4TEqR9AK3YWFS2iSz5qy0YNY,16014
|
445
446
|
pulumiverse_scaleway/observability/alert_manager.py,sha256=oMOoRPA07sj2mDWjFybXiz5EmdONu9hCpD3LjumYUJ0,19144
|
446
|
-
pulumiverse_scaleway/observability/cockpit.py,sha256=
|
447
|
+
pulumiverse_scaleway/observability/cockpit.py,sha256=sDPWPFK1-aMLH9p9EKYfjCJhpvQE3VI-672c_-De9Rw,16031
|
447
448
|
pulumiverse_scaleway/observability/get_instance.py,sha256=n-7tknzgYaTJbu-7EUPBqlawI2bkgkMLxlPAzoOgwV8,8903
|
448
|
-
pulumiverse_scaleway/observability/get_plan.py,sha256=
|
449
|
+
pulumiverse_scaleway/observability/get_plan.py,sha256=CO1VZmhH0SObCy7eOEjH0PjoQSG_GbQ9aajjNGGDUL8,5112
|
449
450
|
pulumiverse_scaleway/observability/get_source.py,sha256=wB_bNBt9K8AxFCcNCbLsXDCnJzFFJT0vsGMqpyoCbhc,11112
|
450
451
|
pulumiverse_scaleway/observability/grafana_user.py,sha256=QKm8ljlrr6r1I6cKcTnjzzsYI7MmQoF_X5NFMCLkN1I,15216
|
451
452
|
pulumiverse_scaleway/observability/outputs.py,sha256=3euOFRS9A2kAyox4MsB2eAg8-uuVUw-4cIxKBhNrz34,15981
|
@@ -477,7 +478,7 @@ pulumiverse_scaleway/tem/get_domain.py,sha256=fSDl1p1m0CATbRU6KZkwb_Fi3aI1N8-3nx
|
|
477
478
|
pulumiverse_scaleway/tem/get_offer_subscription.py,sha256=OTd_uwkGMEmDPB97iw8fE3z8Yt734KzmJ6oeJxeFw8w,11094
|
478
479
|
pulumiverse_scaleway/tem/outputs.py,sha256=zvjpJB-sEqfmweBuJ6_98Vn67P9biTpjgluFk07GjSU,5717
|
479
480
|
pulumiverse_scaleway/tem/webhook.py,sha256=VmTztD0I6qp63hF9XNPWZlZI-7GhSmWeMQRb7ZMdLF8,25041
|
480
|
-
pulumiverse_scaleway-1.
|
481
|
-
pulumiverse_scaleway-1.
|
482
|
-
pulumiverse_scaleway-1.
|
483
|
-
pulumiverse_scaleway-1.
|
481
|
+
pulumiverse_scaleway-1.27.0.dist-info/METADATA,sha256=Jr3twh2UX-GTnqhvSQ-D0axn0SSs7eBVISm93TkG_bc,2038
|
482
|
+
pulumiverse_scaleway-1.27.0.dist-info/WHEEL,sha256=pxyMxgL8-pra_rKaQ4drOZAegBVuX-G_4nRHjjgWbmo,91
|
483
|
+
pulumiverse_scaleway-1.27.0.dist-info/top_level.txt,sha256=nZh5pqyc9FpoAll32zwyBXyAUg_m-XQXqk_YOJ5Ih2g,21
|
484
|
+
pulumiverse_scaleway-1.27.0.dist-info/RECORD,,
|
File without changes
|