@pulumiverse/scaleway 1.34.0-alpha.1756881875 → 1.34.0-alpha.1757663268
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.
- package/cockpit.d.ts +6 -0
- package/cockpit.js.map +1 -1
- package/containerNamespace.d.ts +9 -3
- package/containerNamespace.js.map +1 -1
- package/containers/namespace.d.ts +9 -3
- package/containers/namespace.js.map +1 -1
- package/databaseUser.d.ts +36 -4
- package/databaseUser.js +9 -1
- package/databaseUser.js.map +1 -1
- package/databases/user.d.ts +36 -4
- package/databases/user.js +9 -1
- package/databases/user.js.map +1 -1
- package/functionNamespace.d.ts +9 -3
- package/functionNamespace.js.map +1 -1
- package/functions/namespace.d.ts +9 -3
- package/functions/namespace.js.map +1 -1
- package/getMongoDbInstance.d.ts +3 -0
- package/getMongoDbInstance.js.map +1 -1
- package/instance/securityGroupRules.d.ts +8 -8
- package/instance/securityGroupRules.js +8 -8
- package/instance/snapshot.d.ts +11 -14
- package/instance/snapshot.js +5 -11
- package/instance/snapshot.js.map +1 -1
- package/instanceSecurityGroupRules.d.ts +8 -8
- package/instanceSecurityGroupRules.js +8 -8
- package/instanceSnapshot.d.ts +11 -14
- package/instanceSnapshot.js +5 -11
- package/instanceSnapshot.js.map +1 -1
- package/loadbalancerBackend.d.ts +27 -0
- package/loadbalancerBackend.js.map +1 -1
- package/loadbalancers/backend.d.ts +27 -0
- package/loadbalancers/backend.js.map +1 -1
- package/mnq/sqsQueue.d.ts +66 -0
- package/mnq/sqsQueue.js +48 -0
- package/mnq/sqsQueue.js.map +1 -1
- package/mnqSqsQueue.d.ts +66 -0
- package/mnqSqsQueue.js +48 -0
- package/mnqSqsQueue.js.map +1 -1
- package/mongoDbInstance.d.ts +49 -10
- package/mongoDbInstance.js +7 -1
- package/mongoDbInstance.js.map +1 -1
- package/mongoDbSnapshot.d.ts +1 -1
- package/mongoDbSnapshot.js +1 -1
- package/mongodb/getInstance.d.ts +3 -0
- package/mongodb/getInstance.js.map +1 -1
- package/mongodb/index.d.ts +3 -0
- package/mongodb/index.js +6 -1
- package/mongodb/index.js.map +1 -1
- package/mongodb/instance.d.ts +49 -10
- package/mongodb/instance.js +7 -1
- package/mongodb/instance.js.map +1 -1
- package/mongodb/snapshot.d.ts +1 -1
- package/mongodb/snapshot.js +1 -1
- package/mongodb/user.d.ts +187 -0
- package/mongodb/user.js +154 -0
- package/mongodb/user.js.map +1 -0
- package/object/bucket.d.ts +9 -0
- package/object/bucket.js.map +1 -1
- package/objectBucket.d.ts +9 -0
- package/objectBucket.js.map +1 -1
- package/observability/cockpit.d.ts +6 -0
- package/observability/cockpit.js.map +1 -1
- package/observability/getSources.d.ts +239 -0
- package/observability/getSources.js +160 -0
- package/observability/getSources.js.map +1 -0
- package/observability/index.d.ts +3 -0
- package/observability/index.js +4 -1
- package/observability/index.js.map +1 -1
- package/package.json +2 -2
- package/secret.d.ts +6 -0
- package/secret.js.map +1 -1
- package/secrets/secret.d.ts +6 -0
- package/secrets/secret.js.map +1 -1
- package/types/input.d.ts +127 -9
- package/types/output.d.ts +400 -10
package/types/input.d.ts
CHANGED
|
@@ -1014,13 +1014,33 @@ export interface InstanceServerPrivateNetwork {
|
|
|
1014
1014
|
}
|
|
1015
1015
|
export interface InstanceServerPublicIp {
|
|
1016
1016
|
/**
|
|
1017
|
-
* The address of the IP
|
|
1017
|
+
* The address of the IP.
|
|
1018
1018
|
*/
|
|
1019
1019
|
address?: pulumi.Input<string>;
|
|
1020
1020
|
/**
|
|
1021
|
-
*
|
|
1021
|
+
* Whether the IP is dynamic.
|
|
1022
|
+
*/
|
|
1023
|
+
dynamic?: pulumi.Input<boolean>;
|
|
1024
|
+
/**
|
|
1025
|
+
* The IP address' family.
|
|
1026
|
+
*/
|
|
1027
|
+
family?: pulumi.Input<string>;
|
|
1028
|
+
/**
|
|
1029
|
+
* The IP of the Gateway associated with the IP.
|
|
1030
|
+
*/
|
|
1031
|
+
gateway?: pulumi.Input<string>;
|
|
1032
|
+
/**
|
|
1033
|
+
* The ID of the IP.
|
|
1022
1034
|
*/
|
|
1023
1035
|
id?: pulumi.Input<string>;
|
|
1036
|
+
/**
|
|
1037
|
+
* The CIDR netmask of the IP.
|
|
1038
|
+
*/
|
|
1039
|
+
netmask?: pulumi.Input<string>;
|
|
1040
|
+
/**
|
|
1041
|
+
* The provisioning mode of the IP
|
|
1042
|
+
*/
|
|
1043
|
+
provisioningMode?: pulumi.Input<string>;
|
|
1024
1044
|
}
|
|
1025
1045
|
export interface InstanceServerRootVolume {
|
|
1026
1046
|
/**
|
|
@@ -1064,8 +1084,6 @@ export interface InstanceSnapshotImport {
|
|
|
1064
1084
|
bucket: pulumi.Input<string>;
|
|
1065
1085
|
/**
|
|
1066
1086
|
* Key of the object to import
|
|
1067
|
-
*
|
|
1068
|
-
* > **Note:** The type `unified` could be instantiated on both `lSsd` and `bSsd` volumes.
|
|
1069
1087
|
*/
|
|
1070
1088
|
key: pulumi.Input<string>;
|
|
1071
1089
|
}
|
|
@@ -1265,7 +1283,7 @@ export interface KeyManagerKeyRotationPolicy {
|
|
|
1265
1283
|
/**
|
|
1266
1284
|
* – The period between key rotations (e.g., `"720h"` for 30 days).
|
|
1267
1285
|
*/
|
|
1268
|
-
rotationPeriod
|
|
1286
|
+
rotationPeriod: pulumi.Input<string>;
|
|
1269
1287
|
}
|
|
1270
1288
|
export interface KubernetesClusterAutoUpgrade {
|
|
1271
1289
|
/**
|
|
@@ -1683,6 +1701,16 @@ export interface MnqSqsCredentialsPermissions {
|
|
|
1683
1701
|
*/
|
|
1684
1702
|
canReceive?: pulumi.Input<boolean>;
|
|
1685
1703
|
}
|
|
1704
|
+
export interface MnqSqsQueueDeadLetterQueue {
|
|
1705
|
+
/**
|
|
1706
|
+
* The ID of the queue with format `{region/{project-id}/{queue-name}`
|
|
1707
|
+
*/
|
|
1708
|
+
id: pulumi.Input<string>;
|
|
1709
|
+
/**
|
|
1710
|
+
* 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.
|
|
1711
|
+
*/
|
|
1712
|
+
maxReceiveCount: pulumi.Input<number>;
|
|
1713
|
+
}
|
|
1686
1714
|
export interface MongoDbInstancePrivateIp {
|
|
1687
1715
|
/**
|
|
1688
1716
|
* The private IPv4 address.
|
|
@@ -1730,6 +1758,9 @@ export interface MongoDbInstancePublicNetwork {
|
|
|
1730
1758
|
port?: pulumi.Input<number>;
|
|
1731
1759
|
}
|
|
1732
1760
|
export interface ObjectBucketAclAccessControlPolicy {
|
|
1761
|
+
/**
|
|
1762
|
+
* Grant
|
|
1763
|
+
*/
|
|
1733
1764
|
grants?: pulumi.Input<pulumi.Input<inputs.ObjectBucketAclAccessControlPolicyGrant>[]>;
|
|
1734
1765
|
/**
|
|
1735
1766
|
* Configuration block of the bucket project owner's display organization ID.
|
|
@@ -1747,6 +1778,9 @@ export interface ObjectBucketAclAccessControlPolicyGrant {
|
|
|
1747
1778
|
permission: pulumi.Input<string>;
|
|
1748
1779
|
}
|
|
1749
1780
|
export interface ObjectBucketAclAccessControlPolicyGrantGrantee {
|
|
1781
|
+
/**
|
|
1782
|
+
* Display name of the grantee to grant access to.
|
|
1783
|
+
*/
|
|
1750
1784
|
displayName?: pulumi.Input<string>;
|
|
1751
1785
|
/**
|
|
1752
1786
|
* The `region`, `bucket` and `acl` separated by (`/`).
|
|
@@ -2135,7 +2169,13 @@ export interface WebhostingCpanelUrl {
|
|
|
2135
2169
|
webmail?: pulumi.Input<string>;
|
|
2136
2170
|
}
|
|
2137
2171
|
export interface WebhostingNameServer {
|
|
2172
|
+
/**
|
|
2173
|
+
* Hostname of the server
|
|
2174
|
+
*/
|
|
2138
2175
|
hostname?: pulumi.Input<string>;
|
|
2176
|
+
/**
|
|
2177
|
+
* Whether or not the webhosting is the default one
|
|
2178
|
+
*/
|
|
2139
2179
|
isDefault?: pulumi.Input<boolean>;
|
|
2140
2180
|
/**
|
|
2141
2181
|
* The hosting status.
|
|
@@ -2157,13 +2197,25 @@ export interface WebhostingRecord {
|
|
|
2157
2197
|
* The option name.
|
|
2158
2198
|
*/
|
|
2159
2199
|
name?: pulumi.Input<string>;
|
|
2200
|
+
/**
|
|
2201
|
+
* Priority of DNS records associated with the webhosting.
|
|
2202
|
+
*/
|
|
2160
2203
|
priority?: pulumi.Input<number>;
|
|
2161
2204
|
/**
|
|
2162
2205
|
* The hosting status.
|
|
2163
2206
|
*/
|
|
2164
2207
|
status?: pulumi.Input<string>;
|
|
2208
|
+
/**
|
|
2209
|
+
* Time to live in seconds of the record
|
|
2210
|
+
*/
|
|
2165
2211
|
ttl?: pulumi.Input<number>;
|
|
2212
|
+
/**
|
|
2213
|
+
* Type of the DNS record
|
|
2214
|
+
*/
|
|
2166
2215
|
type?: pulumi.Input<string>;
|
|
2216
|
+
/**
|
|
2217
|
+
* Value of the DNS record
|
|
2218
|
+
*/
|
|
2167
2219
|
value?: pulumi.Input<string>;
|
|
2168
2220
|
}
|
|
2169
2221
|
export declare namespace account {
|
|
@@ -3328,7 +3380,13 @@ export declare namespace hosting {
|
|
|
3328
3380
|
webmail?: pulumi.Input<string>;
|
|
3329
3381
|
}
|
|
3330
3382
|
interface HostingNameServer {
|
|
3383
|
+
/**
|
|
3384
|
+
* Hostname of the server
|
|
3385
|
+
*/
|
|
3331
3386
|
hostname?: pulumi.Input<string>;
|
|
3387
|
+
/**
|
|
3388
|
+
* Whether or not the webhosting is the default one
|
|
3389
|
+
*/
|
|
3332
3390
|
isDefault?: pulumi.Input<boolean>;
|
|
3333
3391
|
/**
|
|
3334
3392
|
* The hosting status.
|
|
@@ -3350,13 +3408,25 @@ export declare namespace hosting {
|
|
|
3350
3408
|
* The option name.
|
|
3351
3409
|
*/
|
|
3352
3410
|
name?: pulumi.Input<string>;
|
|
3411
|
+
/**
|
|
3412
|
+
* Priority of DNS records associated with the webhosting.
|
|
3413
|
+
*/
|
|
3353
3414
|
priority?: pulumi.Input<number>;
|
|
3354
3415
|
/**
|
|
3355
3416
|
* The hosting status.
|
|
3356
3417
|
*/
|
|
3357
3418
|
status?: pulumi.Input<string>;
|
|
3419
|
+
/**
|
|
3420
|
+
* Time to live in seconds of the record
|
|
3421
|
+
*/
|
|
3358
3422
|
ttl?: pulumi.Input<number>;
|
|
3423
|
+
/**
|
|
3424
|
+
* Type of the DNS record
|
|
3425
|
+
*/
|
|
3359
3426
|
type?: pulumi.Input<string>;
|
|
3427
|
+
/**
|
|
3428
|
+
* Value of the DNS record
|
|
3429
|
+
*/
|
|
3360
3430
|
value?: pulumi.Input<string>;
|
|
3361
3431
|
}
|
|
3362
3432
|
}
|
|
@@ -3673,13 +3743,33 @@ export declare namespace instance {
|
|
|
3673
3743
|
}
|
|
3674
3744
|
interface ServerPublicIp {
|
|
3675
3745
|
/**
|
|
3676
|
-
* The address of the IP
|
|
3746
|
+
* The address of the IP.
|
|
3677
3747
|
*/
|
|
3678
3748
|
address?: pulumi.Input<string>;
|
|
3679
3749
|
/**
|
|
3680
|
-
*
|
|
3750
|
+
* Whether the IP is dynamic.
|
|
3751
|
+
*/
|
|
3752
|
+
dynamic?: pulumi.Input<boolean>;
|
|
3753
|
+
/**
|
|
3754
|
+
* The IP address' family.
|
|
3755
|
+
*/
|
|
3756
|
+
family?: pulumi.Input<string>;
|
|
3757
|
+
/**
|
|
3758
|
+
* The IP of the Gateway associated with the IP.
|
|
3759
|
+
*/
|
|
3760
|
+
gateway?: pulumi.Input<string>;
|
|
3761
|
+
/**
|
|
3762
|
+
* The ID of the IP.
|
|
3681
3763
|
*/
|
|
3682
3764
|
id?: pulumi.Input<string>;
|
|
3765
|
+
/**
|
|
3766
|
+
* The CIDR netmask of the IP.
|
|
3767
|
+
*/
|
|
3768
|
+
netmask?: pulumi.Input<string>;
|
|
3769
|
+
/**
|
|
3770
|
+
* The provisioning mode of the IP
|
|
3771
|
+
*/
|
|
3772
|
+
provisioningMode?: pulumi.Input<string>;
|
|
3683
3773
|
}
|
|
3684
3774
|
interface ServerRootVolume {
|
|
3685
3775
|
/**
|
|
@@ -3723,8 +3813,6 @@ export declare namespace instance {
|
|
|
3723
3813
|
bucket: pulumi.Input<string>;
|
|
3724
3814
|
/**
|
|
3725
3815
|
* Key of the object to import
|
|
3726
|
-
*
|
|
3727
|
-
* > **Note:** The type `unified` could be instantiated on both `lSsd` and `bSsd` volumes.
|
|
3728
3816
|
*/
|
|
3729
3817
|
key: pulumi.Input<string>;
|
|
3730
3818
|
}
|
|
@@ -4423,6 +4511,16 @@ export declare namespace mnq {
|
|
|
4423
4511
|
*/
|
|
4424
4512
|
canReceive?: pulumi.Input<boolean>;
|
|
4425
4513
|
}
|
|
4514
|
+
interface SqsQueueDeadLetterQueue {
|
|
4515
|
+
/**
|
|
4516
|
+
* The ID of the queue with format `{region/{project-id}/{queue-name}`
|
|
4517
|
+
*/
|
|
4518
|
+
id: pulumi.Input<string>;
|
|
4519
|
+
/**
|
|
4520
|
+
* 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.
|
|
4521
|
+
*/
|
|
4522
|
+
maxReceiveCount: pulumi.Input<number>;
|
|
4523
|
+
}
|
|
4426
4524
|
}
|
|
4427
4525
|
export declare namespace mongodb {
|
|
4428
4526
|
interface InstancePrivateIp {
|
|
@@ -4471,6 +4569,20 @@ export declare namespace mongodb {
|
|
|
4471
4569
|
*/
|
|
4472
4570
|
port?: pulumi.Input<number>;
|
|
4473
4571
|
}
|
|
4572
|
+
interface UserRole {
|
|
4573
|
+
/**
|
|
4574
|
+
* Apply the role to all databases. Cannot be used with `databaseName`.
|
|
4575
|
+
*/
|
|
4576
|
+
anyDatabase?: pulumi.Input<boolean>;
|
|
4577
|
+
/**
|
|
4578
|
+
* The database name for the role. Cannot be used with `anyDatabase`.
|
|
4579
|
+
*/
|
|
4580
|
+
databaseName?: pulumi.Input<string>;
|
|
4581
|
+
/**
|
|
4582
|
+
* The role name. Valid values are `read`, `readWrite`, `dbAdmin`, `sync`.
|
|
4583
|
+
*/
|
|
4584
|
+
role: pulumi.Input<string>;
|
|
4585
|
+
}
|
|
4474
4586
|
}
|
|
4475
4587
|
export declare namespace network {
|
|
4476
4588
|
interface AclRule {
|
|
@@ -4594,6 +4706,9 @@ export declare namespace network {
|
|
|
4594
4706
|
}
|
|
4595
4707
|
export declare namespace object {
|
|
4596
4708
|
interface BucketAclAccessControlPolicy {
|
|
4709
|
+
/**
|
|
4710
|
+
* Grant
|
|
4711
|
+
*/
|
|
4597
4712
|
grants?: pulumi.Input<pulumi.Input<inputs.object.BucketAclAccessControlPolicyGrant>[]>;
|
|
4598
4713
|
/**
|
|
4599
4714
|
* Configuration block of the bucket project owner's display organization ID.
|
|
@@ -4611,6 +4726,9 @@ export declare namespace object {
|
|
|
4611
4726
|
permission: pulumi.Input<string>;
|
|
4612
4727
|
}
|
|
4613
4728
|
interface BucketAclAccessControlPolicyGrantGrantee {
|
|
4729
|
+
/**
|
|
4730
|
+
* Display name of the grantee to grant access to.
|
|
4731
|
+
*/
|
|
4614
4732
|
displayName?: pulumi.Input<string>;
|
|
4615
4733
|
/**
|
|
4616
4734
|
* The `region`, `bucket` and `acl` separated by (`/`).
|