@pulumiverse/scaleway 1.32.0-alpha.1753171981 → 1.32.0

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.
Files changed (66) hide show
  1. package/appleSiliconServer.d.ts +25 -4
  2. package/appleSiliconServer.js +21 -0
  3. package/appleSiliconServer.js.map +1 -1
  4. package/applesilicon/server.d.ts +25 -4
  5. package/applesilicon/server.js +21 -0
  6. package/applesilicon/server.js.map +1 -1
  7. package/block/getSnapshot.d.ts +1 -0
  8. package/block/getSnapshot.js.map +1 -1
  9. package/block/snapshot.d.ts +15 -3
  10. package/block/snapshot.js +2 -0
  11. package/block/snapshot.js.map +1 -1
  12. package/block/volume.d.ts +6 -6
  13. package/blockSnapshot.d.ts +15 -3
  14. package/blockSnapshot.js +2 -0
  15. package/blockSnapshot.js.map +1 -1
  16. package/blockVolume.d.ts +6 -6
  17. package/domain/getRecord.d.ts +0 -1
  18. package/domain/getRecord.js.map +1 -1
  19. package/domain/record.d.ts +0 -12
  20. package/domain/record.js +0 -2
  21. package/domain/record.js.map +1 -1
  22. package/domainRecord.d.ts +0 -12
  23. package/domainRecord.js +0 -2
  24. package/domainRecord.js.map +1 -1
  25. package/getBlockSnapshot.d.ts +1 -0
  26. package/getBlockSnapshot.js.map +1 -1
  27. package/getDomainRecord.d.ts +0 -1
  28. package/getDomainRecord.js.map +1 -1
  29. package/getIamUser.d.ts +2 -2
  30. package/getLbFrontend.d.ts +3 -0
  31. package/getLbFrontend.js.map +1 -1
  32. package/getMongoDbInstance.d.ts +1 -0
  33. package/getMongoDbInstance.js.map +1 -1
  34. package/iam/getUser.d.ts +2 -2
  35. package/index.d.ts +3 -0
  36. package/index.js +8 -3
  37. package/index.js.map +1 -1
  38. package/keyManagerKey.d.ts +259 -0
  39. package/keyManagerKey.js +139 -0
  40. package/keyManagerKey.js.map +1 -0
  41. package/kubernetes/cluster.d.ts +3 -3
  42. package/kubernetes/cluster.js +3 -3
  43. package/kubernetesCluster.d.ts +3 -3
  44. package/kubernetesCluster.js +3 -3
  45. package/loadbalancerFrontend.d.ts +28 -0
  46. package/loadbalancerFrontend.js +6 -0
  47. package/loadbalancerFrontend.js.map +1 -1
  48. package/loadbalancers/frontend.d.ts +28 -0
  49. package/loadbalancers/frontend.js +6 -0
  50. package/loadbalancers/frontend.js.map +1 -1
  51. package/loadbalancers/getFrontend.d.ts +3 -0
  52. package/loadbalancers/getFrontend.js.map +1 -1
  53. package/mongoDbInstance.d.ts +8 -0
  54. package/mongoDbInstance.js +2 -0
  55. package/mongoDbInstance.js.map +1 -1
  56. package/mongodb/getInstance.d.ts +1 -0
  57. package/mongodb/getInstance.js.map +1 -1
  58. package/mongodb/instance.d.ts +8 -0
  59. package/mongodb/instance.js +2 -0
  60. package/mongodb/instance.js.map +1 -1
  61. package/network/acl.d.ts +4 -4
  62. package/network/acl.js +0 -6
  63. package/network/acl.js.map +1 -1
  64. package/package.json +2 -2
  65. package/types/input.d.ts +54 -24
  66. package/types/output.d.ts +94 -28
package/types/output.d.ts CHANGED
@@ -11,27 +11,27 @@ export interface AppleSiliconServerPrivateIp {
11
11
  }
12
12
  export interface AppleSiliconServerPrivateNetwork {
13
13
  /**
14
- * The date and time of the creation of the Apple Silicon server.
14
+ * The date and time the private network was created.
15
15
  */
16
16
  createdAt: string;
17
17
  /**
18
- * The ID of the IP address resource.
18
+ * The private network ID
19
19
  */
20
20
  id: string;
21
21
  /**
22
- * List of IPAM IP IDs to attach to the server
22
+ * A list of IPAM IP IDs to attach to the server.
23
23
  */
24
24
  ipamIpIds: string[];
25
25
  /**
26
- * The private network status
26
+ * The current status of the private network.
27
27
  */
28
28
  status: string;
29
29
  /**
30
- * The date and time of the last update of the Apple Silicon server.
30
+ * The date and time the private network was last updated.
31
31
  */
32
32
  updatedAt: string;
33
33
  /**
34
- * The VLAN ID associated to the private network
34
+ * The VLAN ID associated with the private network.
35
35
  */
36
36
  vlan: number;
37
37
  }
@@ -143,13 +143,23 @@ export interface BaremetalServerPrivateNetwork {
143
143
  */
144
144
  vlan: number;
145
145
  }
146
+ export interface BlockSnapshotExport {
147
+ /**
148
+ * The name of the bucket where the QCOW file will be saved.
149
+ */
150
+ bucket: string;
151
+ /**
152
+ * The desired key (path) for the QCOW file within the bucket.
153
+ */
154
+ key: string;
155
+ }
146
156
  export interface BlockSnapshotImport {
147
157
  /**
148
- * Bucket containing qcow
158
+ * The name of the bucket containing the QCOW file.
149
159
  */
150
160
  bucket: string;
151
161
  /**
152
- * Key of the qcow file in the specified bucket
162
+ * The key of the QCOW file within the bucket.
153
163
  */
154
164
  key: string;
155
165
  }
@@ -913,6 +923,16 @@ export interface GetBillingInvoicesInvoice {
913
923
  */
914
924
  totalUntaxed: string;
915
925
  }
926
+ export interface GetBlockSnapshotExport {
927
+ /**
928
+ * Bucket containing qcow
929
+ */
930
+ bucket: string;
931
+ /**
932
+ * Key of the qcow file in the specified bucket
933
+ */
934
+ key: string;
935
+ }
916
936
  export interface GetBlockSnapshotImport {
917
937
  /**
918
938
  * Bucket containing qcow
@@ -2084,10 +2104,18 @@ export interface GetLbFrontendsFrontend {
2084
2104
  * List of certificate IDs that are used by the frontend.
2085
2105
  */
2086
2106
  certificateIds: string[];
2107
+ /**
2108
+ * The rate limit for new connections established on this frontend. Use 0 value to disable, else value is connections per second.
2109
+ */
2110
+ connectionRateLimit: number;
2087
2111
  /**
2088
2112
  * The date on which the frontend was created (RFC 3339 format).
2089
2113
  */
2090
2114
  createdAt: string;
2115
+ /**
2116
+ * Defines whether to enable access logs on the frontend.
2117
+ */
2118
+ enableAccessLogs: boolean;
2091
2119
  /**
2092
2120
  * Whether HTTP/3 protocol is activated.
2093
2121
  */
@@ -2114,7 +2142,7 @@ export interface GetLbFrontendsFrontend {
2114
2142
  */
2115
2143
  timeoutClient: string;
2116
2144
  /**
2117
- * The date aont which the frontend was last updated (RFC 3339 format).
2145
+ * The date on which the frontend was last updated (RFC 3339 format).
2118
2146
  */
2119
2147
  updateAt: string;
2120
2148
  }
@@ -3412,6 +3440,16 @@ export interface JobDefinitionSecretReference {
3412
3440
  */
3413
3441
  secretVersion?: string;
3414
3442
  }
3443
+ export interface KeyManagerKeyRotationPolicy {
3444
+ /**
3445
+ * The date and time of the next scheduled rotation.
3446
+ */
3447
+ nextRotationAt: string;
3448
+ /**
3449
+ * – The period between key rotations (e.g., `"720h"` for 30 days).
3450
+ */
3451
+ rotationPeriod?: string;
3452
+ }
3415
3453
  export interface KubernetesClusterAutoUpgrade {
3416
3454
  /**
3417
3455
  * Set to `true` to enable Kubernetes patch version auto upgrades.
@@ -3686,7 +3724,7 @@ export interface LoadbalancerFrontendAcl {
3686
3724
  */
3687
3725
  action: outputs.LoadbalancerFrontendAclAction;
3688
3726
  /**
3689
- * IsDate and time of ACL's creation (RFC 3339 format)
3727
+ * The date and time the frontend was created.
3690
3728
  */
3691
3729
  createdAt: string;
3692
3730
  /**
@@ -3702,7 +3740,7 @@ export interface LoadbalancerFrontendAcl {
3702
3740
  */
3703
3741
  name: string;
3704
3742
  /**
3705
- * IsDate and time of ACL's update (RFC 3339 format)
3743
+ * The date and time the frontend resource was updated.
3706
3744
  */
3707
3745
  updatedAt: string;
3708
3746
  }
@@ -3771,7 +3809,7 @@ export interface LoadbalancerPrivateIp {
3771
3809
  }
3772
3810
  export interface LoadbalancerPrivateNetwork {
3773
3811
  /**
3774
- * Please use `ipamIds`. Set to `true` if you want to let DHCP assign IP addresses.
3812
+ * Set to true if you want to let DHCP assign IP addresses
3775
3813
  *
3776
3814
  * @deprecated dhcp_config field is deprecated, please use `privateNetworkId` or `ipamIds` instead
3777
3815
  */
@@ -3786,11 +3824,11 @@ export interface LoadbalancerPrivateNetwork {
3786
3824
  */
3787
3825
  privateNetworkId: string;
3788
3826
  /**
3789
- * Please use `ipamIds`. Define a local ip address of your choice for the load balancer instance.
3827
+ * Define an IP address in the subnet of your private network that will be assigned to your load balancer instance
3790
3828
  *
3791
3829
  * @deprecated static_config field is deprecated, please use `privateNetworkId` or `ipamIds` instead
3792
3830
  */
3793
- staticConfig?: string;
3831
+ staticConfig: string;
3794
3832
  /**
3795
3833
  * The status of the private network connection.
3796
3834
  */
@@ -4345,27 +4383,27 @@ export declare namespace applesilicon {
4345
4383
  }
4346
4384
  interface ServerPrivateNetwork {
4347
4385
  /**
4348
- * The date and time of the creation of the Apple Silicon server.
4386
+ * The date and time the private network was created.
4349
4387
  */
4350
4388
  createdAt: string;
4351
4389
  /**
4352
- * The ID of the IP address resource.
4390
+ * The private network ID
4353
4391
  */
4354
4392
  id: string;
4355
4393
  /**
4356
- * List of IPAM IP IDs to attach to the server
4394
+ * A list of IPAM IP IDs to attach to the server.
4357
4395
  */
4358
4396
  ipamIpIds: string[];
4359
4397
  /**
4360
- * The private network status
4398
+ * The current status of the private network.
4361
4399
  */
4362
4400
  status: string;
4363
4401
  /**
4364
- * The date and time of the last update of the Apple Silicon server.
4402
+ * The date and time the private network was last updated.
4365
4403
  */
4366
4404
  updatedAt: string;
4367
4405
  /**
4368
- * The VLAN ID associated to the private network
4406
+ * The VLAN ID associated with the private network.
4369
4407
  */
4370
4408
  vlan: number;
4371
4409
  }
@@ -4575,7 +4613,7 @@ export declare namespace billing {
4575
4613
  }
4576
4614
  }
4577
4615
  export declare namespace block {
4578
- interface GetSnapshotImport {
4616
+ interface GetSnapshotExport {
4579
4617
  /**
4580
4618
  * Bucket containing qcow
4581
4619
  */
@@ -4585,7 +4623,7 @@ export declare namespace block {
4585
4623
  */
4586
4624
  key: string;
4587
4625
  }
4588
- interface SnapshotImport {
4626
+ interface GetSnapshotImport {
4589
4627
  /**
4590
4628
  * Bucket containing qcow
4591
4629
  */
@@ -4595,6 +4633,26 @@ export declare namespace block {
4595
4633
  */
4596
4634
  key: string;
4597
4635
  }
4636
+ interface SnapshotExport {
4637
+ /**
4638
+ * The name of the bucket where the QCOW file will be saved.
4639
+ */
4640
+ bucket: string;
4641
+ /**
4642
+ * The desired key (path) for the QCOW file within the bucket.
4643
+ */
4644
+ key: string;
4645
+ }
4646
+ interface SnapshotImport {
4647
+ /**
4648
+ * The name of the bucket containing the QCOW file.
4649
+ */
4650
+ bucket: string;
4651
+ /**
4652
+ * The key of the QCOW file within the bucket.
4653
+ */
4654
+ key: string;
4655
+ }
4598
4656
  }
4599
4657
  export declare namespace containers {
4600
4658
  interface ContainerHealthCheck {
@@ -7590,7 +7648,7 @@ export declare namespace loadbalancers {
7590
7648
  */
7591
7649
  action: outputs.loadbalancers.FrontendAclAction;
7592
7650
  /**
7593
- * IsDate and time of ACL's creation (RFC 3339 format)
7651
+ * The date and time the frontend was created.
7594
7652
  */
7595
7653
  createdAt: string;
7596
7654
  /**
@@ -7606,7 +7664,7 @@ export declare namespace loadbalancers {
7606
7664
  */
7607
7665
  name: string;
7608
7666
  /**
7609
- * IsDate and time of ACL's update (RFC 3339 format)
7667
+ * The date and time the frontend resource was updated.
7610
7668
  */
7611
7669
  updatedAt: string;
7612
7670
  }
@@ -8010,10 +8068,18 @@ export declare namespace loadbalancers {
8010
8068
  * List of certificate IDs that are used by the frontend.
8011
8069
  */
8012
8070
  certificateIds: string[];
8071
+ /**
8072
+ * The rate limit for new connections established on this frontend. Use 0 value to disable, else value is connections per second.
8073
+ */
8074
+ connectionRateLimit: number;
8013
8075
  /**
8014
8076
  * The date on which the frontend was created (RFC 3339 format).
8015
8077
  */
8016
8078
  createdAt: string;
8079
+ /**
8080
+ * Defines whether to enable access logs on the frontend.
8081
+ */
8082
+ enableAccessLogs: boolean;
8017
8083
  /**
8018
8084
  * Whether HTTP/3 protocol is activated.
8019
8085
  */
@@ -8040,7 +8106,7 @@ export declare namespace loadbalancers {
8040
8106
  */
8041
8107
  timeoutClient: string;
8042
8108
  /**
8043
- * The date aont which the frontend was last updated (RFC 3339 format).
8109
+ * The date on which the frontend was last updated (RFC 3339 format).
8044
8110
  */
8045
8111
  updateAt: string;
8046
8112
  }
@@ -8282,7 +8348,7 @@ export declare namespace loadbalancers {
8282
8348
  }
8283
8349
  interface LoadBalancerPrivateNetwork {
8284
8350
  /**
8285
- * Please use `ipamIds`. Set to `true` if you want to let DHCP assign IP addresses.
8351
+ * Set to true if you want to let DHCP assign IP addresses
8286
8352
  *
8287
8353
  * @deprecated dhcp_config field is deprecated, please use `privateNetworkId` or `ipamIds` instead
8288
8354
  */
@@ -8297,11 +8363,11 @@ export declare namespace loadbalancers {
8297
8363
  */
8298
8364
  privateNetworkId: string;
8299
8365
  /**
8300
- * Please use `ipamIds`. Define a local ip address of your choice for the load balancer instance.
8366
+ * Define an IP address in the subnet of your private network that will be assigned to your load balancer instance
8301
8367
  *
8302
8368
  * @deprecated static_config field is deprecated, please use `privateNetworkId` or `ipamIds` instead
8303
8369
  */
8304
- staticConfig?: string;
8370
+ staticConfig: string;
8305
8371
  /**
8306
8372
  * The status of the private network connection.
8307
8373
  */