pulumiverse-scaleway 1.17.0__py3-none-any.whl → 1.18.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.
Potentially problematic release.
This version of pulumiverse-scaleway might be problematic. Click here for more details.
- pulumiverse_scaleway/__init__.py +9 -0
- pulumiverse_scaleway/_inputs.py +133 -107
- pulumiverse_scaleway/account_project.py +17 -17
- pulumiverse_scaleway/account_ssh_key.py +8 -4
- pulumiverse_scaleway/container.py +146 -160
- pulumiverse_scaleway/container_cron.py +42 -77
- pulumiverse_scaleway/container_domain.py +30 -24
- pulumiverse_scaleway/container_namespace.py +42 -42
- pulumiverse_scaleway/container_token.py +36 -38
- pulumiverse_scaleway/container_trigger.py +45 -43
- pulumiverse_scaleway/function.py +112 -154
- pulumiverse_scaleway/function_cron.py +42 -60
- pulumiverse_scaleway/function_domain.py +56 -47
- pulumiverse_scaleway/function_namespace.py +49 -49
- pulumiverse_scaleway/function_token.py +36 -38
- pulumiverse_scaleway/function_trigger.py +45 -43
- pulumiverse_scaleway/get_account_project.py +14 -8
- pulumiverse_scaleway/get_account_ssh_key.py +14 -10
- pulumiverse_scaleway/get_availability_zones.py +17 -9
- pulumiverse_scaleway/get_container.py +50 -30
- pulumiverse_scaleway/get_container_namespace.py +26 -16
- pulumiverse_scaleway/get_function.py +20 -12
- pulumiverse_scaleway/get_function_namespace.py +14 -14
- pulumiverse_scaleway/get_object_bucket.py +22 -10
- pulumiverse_scaleway/get_object_bucket_policy.py +15 -9
- pulumiverse_scaleway/get_tem_domain.py +12 -1
- pulumiverse_scaleway/instance_server.py +32 -0
- pulumiverse_scaleway/object_bucket.py +67 -81
- pulumiverse_scaleway/object_bucket_acl.py +21 -17
- pulumiverse_scaleway/object_bucket_lock_configuration.py +21 -19
- pulumiverse_scaleway/object_bucket_policy.py +10 -8
- pulumiverse_scaleway/object_bucket_website_configuration.py +24 -22
- pulumiverse_scaleway/object_item.py +78 -62
- pulumiverse_scaleway/outputs.py +102 -73
- pulumiverse_scaleway/pulumi-plugin.json +1 -1
- pulumiverse_scaleway/sdb_database.py +26 -22
- pulumiverse_scaleway/tem_domain.py +75 -0
- pulumiverse_scaleway/vpc_private_network.py +2 -2
- pulumiverse_scaleway/vpc_route.py +577 -0
- {pulumiverse_scaleway-1.17.0.dist-info → pulumiverse_scaleway-1.18.0.dist-info}/METADATA +1 -1
- {pulumiverse_scaleway-1.17.0.dist-info → pulumiverse_scaleway-1.18.0.dist-info}/RECORD +43 -42
- {pulumiverse_scaleway-1.17.0.dist-info → pulumiverse_scaleway-1.18.0.dist-info}/WHEEL +1 -1
- {pulumiverse_scaleway-1.17.0.dist-info → pulumiverse_scaleway-1.18.0.dist-info}/top_level.txt +0 -0
|
@@ -26,7 +26,7 @@ class AccountProjectArgs:
|
|
|
26
26
|
The set of arguments for constructing a AccountProject resource.
|
|
27
27
|
:param pulumi.Input[str] description: The description of the Project.
|
|
28
28
|
:param pulumi.Input[str] name: The name of the Project.
|
|
29
|
-
:param pulumi.Input[str] organization_id: `organization_id`)The organization ID the Project is associated with.
|
|
29
|
+
:param pulumi.Input[str] organization_id: `organization_id`)The organization ID the Project is associated with. Any change made to the `organization_id` will recreate the resource.
|
|
30
30
|
"""
|
|
31
31
|
if description is not None:
|
|
32
32
|
pulumi.set(__self__, "description", description)
|
|
@@ -63,7 +63,7 @@ class AccountProjectArgs:
|
|
|
63
63
|
@pulumi.getter(name="organizationId")
|
|
64
64
|
def organization_id(self) -> Optional[pulumi.Input[str]]:
|
|
65
65
|
"""
|
|
66
|
-
`organization_id`)The organization ID the Project is associated with.
|
|
66
|
+
`organization_id`)The organization ID the Project is associated with. Any change made to the `organization_id` will recreate the resource.
|
|
67
67
|
"""
|
|
68
68
|
return pulumi.get(self, "organization_id")
|
|
69
69
|
|
|
@@ -82,11 +82,11 @@ class _AccountProjectState:
|
|
|
82
82
|
updated_at: Optional[pulumi.Input[str]] = None):
|
|
83
83
|
"""
|
|
84
84
|
Input properties used for looking up and filtering AccountProject resources.
|
|
85
|
-
:param pulumi.Input[str] created_at: The
|
|
85
|
+
:param pulumi.Input[str] created_at: The creation time of the Project.
|
|
86
86
|
:param pulumi.Input[str] description: The description of the Project.
|
|
87
87
|
:param pulumi.Input[str] name: The name of the Project.
|
|
88
|
-
:param pulumi.Input[str] organization_id: `organization_id`)The organization ID the Project is associated with.
|
|
89
|
-
:param pulumi.Input[str] updated_at: The
|
|
88
|
+
:param pulumi.Input[str] organization_id: `organization_id`)The organization ID the Project is associated with. Any change made to the `organization_id` will recreate the resource.
|
|
89
|
+
:param pulumi.Input[str] updated_at: The last update time of the Project.
|
|
90
90
|
"""
|
|
91
91
|
if created_at is not None:
|
|
92
92
|
pulumi.set(__self__, "created_at", created_at)
|
|
@@ -103,7 +103,7 @@ class _AccountProjectState:
|
|
|
103
103
|
@pulumi.getter(name="createdAt")
|
|
104
104
|
def created_at(self) -> Optional[pulumi.Input[str]]:
|
|
105
105
|
"""
|
|
106
|
-
The
|
|
106
|
+
The creation time of the Project.
|
|
107
107
|
"""
|
|
108
108
|
return pulumi.get(self, "created_at")
|
|
109
109
|
|
|
@@ -139,7 +139,7 @@ class _AccountProjectState:
|
|
|
139
139
|
@pulumi.getter(name="organizationId")
|
|
140
140
|
def organization_id(self) -> Optional[pulumi.Input[str]]:
|
|
141
141
|
"""
|
|
142
|
-
`organization_id`)The organization ID the Project is associated with.
|
|
142
|
+
`organization_id`)The organization ID the Project is associated with. Any change made to the `organization_id` will recreate the resource.
|
|
143
143
|
"""
|
|
144
144
|
return pulumi.get(self, "organization_id")
|
|
145
145
|
|
|
@@ -151,7 +151,7 @@ class _AccountProjectState:
|
|
|
151
151
|
@pulumi.getter(name="updatedAt")
|
|
152
152
|
def updated_at(self) -> Optional[pulumi.Input[str]]:
|
|
153
153
|
"""
|
|
154
|
-
The
|
|
154
|
+
The last update time of the Project.
|
|
155
155
|
"""
|
|
156
156
|
return pulumi.get(self, "updated_at")
|
|
157
157
|
|
|
@@ -172,7 +172,7 @@ class AccountProject(pulumi.CustomResource):
|
|
|
172
172
|
"""
|
|
173
173
|
## Import
|
|
174
174
|
|
|
175
|
-
Projects can be imported using the `id
|
|
175
|
+
Projects can be imported using the `id` argument, as shown below:
|
|
176
176
|
|
|
177
177
|
bash
|
|
178
178
|
|
|
@@ -184,7 +184,7 @@ class AccountProject(pulumi.CustomResource):
|
|
|
184
184
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
185
185
|
:param pulumi.Input[str] description: The description of the Project.
|
|
186
186
|
:param pulumi.Input[str] name: The name of the Project.
|
|
187
|
-
:param pulumi.Input[str] organization_id: `organization_id`)The organization ID the Project is associated with.
|
|
187
|
+
:param pulumi.Input[str] organization_id: `organization_id`)The organization ID the Project is associated with. Any change made to the `organization_id` will recreate the resource.
|
|
188
188
|
"""
|
|
189
189
|
...
|
|
190
190
|
@overload
|
|
@@ -195,7 +195,7 @@ class AccountProject(pulumi.CustomResource):
|
|
|
195
195
|
"""
|
|
196
196
|
## Import
|
|
197
197
|
|
|
198
|
-
Projects can be imported using the `id
|
|
198
|
+
Projects can be imported using the `id` argument, as shown below:
|
|
199
199
|
|
|
200
200
|
bash
|
|
201
201
|
|
|
@@ -257,11 +257,11 @@ class AccountProject(pulumi.CustomResource):
|
|
|
257
257
|
:param str resource_name: The unique name of the resulting resource.
|
|
258
258
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
259
259
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
260
|
-
:param pulumi.Input[str] created_at: The
|
|
260
|
+
:param pulumi.Input[str] created_at: The creation time of the Project.
|
|
261
261
|
:param pulumi.Input[str] description: The description of the Project.
|
|
262
262
|
:param pulumi.Input[str] name: The name of the Project.
|
|
263
|
-
:param pulumi.Input[str] organization_id: `organization_id`)The organization ID the Project is associated with.
|
|
264
|
-
:param pulumi.Input[str] updated_at: The
|
|
263
|
+
:param pulumi.Input[str] organization_id: `organization_id`)The organization ID the Project is associated with. Any change made to the `organization_id` will recreate the resource.
|
|
264
|
+
:param pulumi.Input[str] updated_at: The last update time of the Project.
|
|
265
265
|
"""
|
|
266
266
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
267
267
|
|
|
@@ -278,7 +278,7 @@ class AccountProject(pulumi.CustomResource):
|
|
|
278
278
|
@pulumi.getter(name="createdAt")
|
|
279
279
|
def created_at(self) -> pulumi.Output[str]:
|
|
280
280
|
"""
|
|
281
|
-
The
|
|
281
|
+
The creation time of the Project.
|
|
282
282
|
"""
|
|
283
283
|
return pulumi.get(self, "created_at")
|
|
284
284
|
|
|
@@ -302,7 +302,7 @@ class AccountProject(pulumi.CustomResource):
|
|
|
302
302
|
@pulumi.getter(name="organizationId")
|
|
303
303
|
def organization_id(self) -> pulumi.Output[str]:
|
|
304
304
|
"""
|
|
305
|
-
`organization_id`)The organization ID the Project is associated with.
|
|
305
|
+
`organization_id`)The organization ID the Project is associated with. Any change made to the `organization_id` will recreate the resource.
|
|
306
306
|
"""
|
|
307
307
|
return pulumi.get(self, "organization_id")
|
|
308
308
|
|
|
@@ -310,7 +310,7 @@ class AccountProject(pulumi.CustomResource):
|
|
|
310
310
|
@pulumi.getter(name="updatedAt")
|
|
311
311
|
def updated_at(self) -> pulumi.Output[str]:
|
|
312
312
|
"""
|
|
313
|
-
The
|
|
313
|
+
The last update time of the Project.
|
|
314
314
|
"""
|
|
315
315
|
return pulumi.get(self, "updated_at")
|
|
316
316
|
|
|
@@ -234,9 +234,11 @@ class AccountSshKey(pulumi.CustomResource):
|
|
|
234
234
|
public_key: Optional[pulumi.Input[str]] = None,
|
|
235
235
|
__props__=None):
|
|
236
236
|
"""
|
|
237
|
-
|
|
237
|
+
The `AccountSshKey` resource allows you to create and manage the Projects of a Scaleway Organization.
|
|
238
238
|
|
|
239
|
-
|
|
239
|
+
Refer to the Organizations and Projects [documentation](https://www.scaleway.com/en/docs/identity-and-access-management/organizations-and-projects/) and [API documentation](https://www.scaleway.com/en/developers/api/account/project-api/) for more information.
|
|
240
|
+
|
|
241
|
+
!> **Important:** The resource `AccountSshKey` has been deprecated and will no longer be supported. Instead, use `IamSshKey`.
|
|
240
242
|
|
|
241
243
|
## Example Usage
|
|
242
244
|
|
|
@@ -273,9 +275,11 @@ class AccountSshKey(pulumi.CustomResource):
|
|
|
273
275
|
args: AccountSshKeyArgs,
|
|
274
276
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
275
277
|
"""
|
|
276
|
-
|
|
278
|
+
The `AccountSshKey` resource allows you to create and manage the Projects of a Scaleway Organization.
|
|
279
|
+
|
|
280
|
+
Refer to the Organizations and Projects [documentation](https://www.scaleway.com/en/docs/identity-and-access-management/organizations-and-projects/) and [API documentation](https://www.scaleway.com/en/developers/api/account/project-api/) for more information.
|
|
277
281
|
|
|
278
|
-
|
|
282
|
+
!> **Important:** The resource `AccountSshKey` has been deprecated and will no longer be supported. Instead, use `IamSshKey`.
|
|
279
283
|
|
|
280
284
|
## Example Usage
|
|
281
285
|
|