@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.
Files changed (75) hide show
  1. package/cockpit.d.ts +6 -0
  2. package/cockpit.js.map +1 -1
  3. package/containerNamespace.d.ts +9 -3
  4. package/containerNamespace.js.map +1 -1
  5. package/containers/namespace.d.ts +9 -3
  6. package/containers/namespace.js.map +1 -1
  7. package/databaseUser.d.ts +36 -4
  8. package/databaseUser.js +9 -1
  9. package/databaseUser.js.map +1 -1
  10. package/databases/user.d.ts +36 -4
  11. package/databases/user.js +9 -1
  12. package/databases/user.js.map +1 -1
  13. package/functionNamespace.d.ts +9 -3
  14. package/functionNamespace.js.map +1 -1
  15. package/functions/namespace.d.ts +9 -3
  16. package/functions/namespace.js.map +1 -1
  17. package/getMongoDbInstance.d.ts +3 -0
  18. package/getMongoDbInstance.js.map +1 -1
  19. package/instance/securityGroupRules.d.ts +8 -8
  20. package/instance/securityGroupRules.js +8 -8
  21. package/instance/snapshot.d.ts +11 -14
  22. package/instance/snapshot.js +5 -11
  23. package/instance/snapshot.js.map +1 -1
  24. package/instanceSecurityGroupRules.d.ts +8 -8
  25. package/instanceSecurityGroupRules.js +8 -8
  26. package/instanceSnapshot.d.ts +11 -14
  27. package/instanceSnapshot.js +5 -11
  28. package/instanceSnapshot.js.map +1 -1
  29. package/loadbalancerBackend.d.ts +27 -0
  30. package/loadbalancerBackend.js.map +1 -1
  31. package/loadbalancers/backend.d.ts +27 -0
  32. package/loadbalancers/backend.js.map +1 -1
  33. package/mnq/sqsQueue.d.ts +66 -0
  34. package/mnq/sqsQueue.js +48 -0
  35. package/mnq/sqsQueue.js.map +1 -1
  36. package/mnqSqsQueue.d.ts +66 -0
  37. package/mnqSqsQueue.js +48 -0
  38. package/mnqSqsQueue.js.map +1 -1
  39. package/mongoDbInstance.d.ts +49 -10
  40. package/mongoDbInstance.js +7 -1
  41. package/mongoDbInstance.js.map +1 -1
  42. package/mongoDbSnapshot.d.ts +1 -1
  43. package/mongoDbSnapshot.js +1 -1
  44. package/mongodb/getInstance.d.ts +3 -0
  45. package/mongodb/getInstance.js.map +1 -1
  46. package/mongodb/index.d.ts +3 -0
  47. package/mongodb/index.js +6 -1
  48. package/mongodb/index.js.map +1 -1
  49. package/mongodb/instance.d.ts +49 -10
  50. package/mongodb/instance.js +7 -1
  51. package/mongodb/instance.js.map +1 -1
  52. package/mongodb/snapshot.d.ts +1 -1
  53. package/mongodb/snapshot.js +1 -1
  54. package/mongodb/user.d.ts +187 -0
  55. package/mongodb/user.js +154 -0
  56. package/mongodb/user.js.map +1 -0
  57. package/object/bucket.d.ts +9 -0
  58. package/object/bucket.js.map +1 -1
  59. package/objectBucket.d.ts +9 -0
  60. package/objectBucket.js.map +1 -1
  61. package/observability/cockpit.d.ts +6 -0
  62. package/observability/cockpit.js.map +1 -1
  63. package/observability/getSources.d.ts +239 -0
  64. package/observability/getSources.js +160 -0
  65. package/observability/getSources.js.map +1 -0
  66. package/observability/index.d.ts +3 -0
  67. package/observability/index.js +4 -1
  68. package/observability/index.js.map +1 -1
  69. package/package.json +2 -2
  70. package/secret.d.ts +6 -0
  71. package/secret.js.map +1 -1
  72. package/secrets/secret.d.ts +6 -0
  73. package/secrets/secret.js.map +1 -1
  74. package/types/input.d.ts +127 -9
  75. package/types/output.d.ts +400 -10
package/types/output.d.ts CHANGED
@@ -1188,6 +1188,9 @@ export interface GetFlexibleIpsIp {
1188
1188
  * The MAC address ID.
1189
1189
  */
1190
1190
  id: string;
1191
+ /**
1192
+ * IP address of the flexible IP
1193
+ */
1191
1194
  ipAddress: string;
1192
1195
  /**
1193
1196
  * The MAC address of the Virtual MAC.
@@ -1355,10 +1358,30 @@ export interface GetInstanceServerPublicIp {
1355
1358
  * The address of the IP
1356
1359
  */
1357
1360
  address: string;
1361
+ /**
1362
+ * Whether the IP is dynamic
1363
+ */
1364
+ dynamic: boolean;
1365
+ /**
1366
+ * IP address family (inet or inet6)
1367
+ */
1368
+ family: string;
1369
+ /**
1370
+ * Gateway's IP address
1371
+ */
1372
+ gateway: string;
1358
1373
  /**
1359
1374
  * The ID of the IP
1360
1375
  */
1361
1376
  id: string;
1377
+ /**
1378
+ * CIDR netmask
1379
+ */
1380
+ netmask: string;
1381
+ /**
1382
+ * Provisioning mode of the IP address
1383
+ */
1384
+ provisioningMode: string;
1362
1385
  }
1363
1386
  export interface GetInstanceServerRootVolume {
1364
1387
  /**
@@ -1396,6 +1419,8 @@ export interface GetInstanceServersServer {
1396
1419
  */
1397
1420
  bootType: string;
1398
1421
  /**
1422
+ * UUID of the bootscript
1423
+ *
1399
1424
  * @deprecated bootscript are not supported
1400
1425
  */
1401
1426
  bootscriptId: string;
@@ -1439,11 +1464,18 @@ export interface GetInstanceServersServer {
1439
1464
  * The [placement group](https://developers.scaleway.com/en/products/instance/api/#placement-groups-d8f653) the server is attached to.
1440
1465
  */
1441
1466
  placementGroupId: string;
1467
+ /**
1468
+ * Whether the placement group policy respected or not
1469
+ */
1442
1470
  placementGroupPolicyRespected: boolean;
1443
1471
  /**
1444
1472
  * The Scaleway internal IP address of the server.
1445
1473
  */
1446
1474
  privateIp: string;
1475
+ /**
1476
+ * The list of private IPv4 and IPv6 addresses associated with the server.
1477
+ */
1478
+ privateIps: outputs.GetInstanceServersServerPrivateIp[];
1447
1479
  /**
1448
1480
  * The ID of the project the server is associated with.
1449
1481
  */
@@ -1479,6 +1511,16 @@ export interface GetInstanceServersServer {
1479
1511
  */
1480
1512
  zone: string;
1481
1513
  }
1514
+ export interface GetInstanceServersServerPrivateIp {
1515
+ /**
1516
+ * The address of the IP
1517
+ */
1518
+ address: string;
1519
+ /**
1520
+ * The ID of the IP
1521
+ */
1522
+ id: string;
1523
+ }
1482
1524
  export interface GetInstanceServersServerPublicIp {
1483
1525
  /**
1484
1526
  * The address of the IP
@@ -2301,6 +2343,9 @@ export interface GetLbsLbInstance {
2301
2343
  * The ID of the Load Balancer.
2302
2344
  */
2303
2345
  id: string;
2346
+ /**
2347
+ * IP address of the instance
2348
+ */
2304
2349
  ipAddress: string;
2305
2350
  /**
2306
2351
  * The state of the Load Balancer Instance. Possible values are: `unknown`, `ready`, `pending`, `stopped`, `error`, `locked` and `migrating`.
@@ -2320,7 +2365,13 @@ export interface GetLbsLbIp {
2320
2365
  * The ID of the Load Balancer.
2321
2366
  */
2322
2367
  id: string;
2368
+ /**
2369
+ * IP address
2370
+ */
2323
2371
  ipAddress: string;
2372
+ /**
2373
+ * UUID of the load balancer attached to the IP
2374
+ */
2324
2375
  lbId: string;
2325
2376
  /**
2326
2377
  * The ID of the Organization the Load Balancer is associated with.
@@ -2330,6 +2381,9 @@ export interface GetLbsLbIp {
2330
2381
  * The ID of the Project the Load Balancer is associated with.
2331
2382
  */
2332
2383
  projectId: string;
2384
+ /**
2385
+ * Reverse DNS attached to the IP
2386
+ */
2333
2387
  reverse: string;
2334
2388
  /**
2335
2389
  * `zone`) The zone in which the Load Balancers exist.
@@ -2435,10 +2489,25 @@ export interface GetMongoDbInstancePublicNetwork {
2435
2489
  port: number;
2436
2490
  }
2437
2491
  export interface GetObjectBucketCorsRule {
2492
+ /**
2493
+ * Allowed headers in the CORS rule
2494
+ */
2438
2495
  allowedHeaders: string[];
2496
+ /**
2497
+ * Allowed HTTP methods allowed in the CORS rule
2498
+ */
2439
2499
  allowedMethods: string[];
2500
+ /**
2501
+ * Allowed origins allowed in the CORS rule
2502
+ */
2440
2503
  allowedOrigins: string[];
2504
+ /**
2505
+ * Exposed headers in the CORS rule
2506
+ */
2441
2507
  exposeHeaders: string[];
2508
+ /**
2509
+ * Max age of the CORS rule
2510
+ */
2442
2511
  maxAgeSeconds: number;
2443
2512
  }
2444
2513
  export interface GetObjectBucketLifecycleRule {
@@ -2791,6 +2860,9 @@ export interface GetVpcsVpc {
2791
2860
  * List of tags to filter for. VPCs with these exact tags are listed.
2792
2861
  */
2793
2862
  tags: string[];
2863
+ /**
2864
+ * Date on which the VPC was last updated (RFC 3339 format)
2865
+ */
2794
2866
  updateAt: string;
2795
2867
  }
2796
2868
  export interface GetWebHostOfferOffer {
@@ -2904,24 +2976,63 @@ export interface GetWebHostOfferProduct {
2904
2976
  vCpu: number;
2905
2977
  }
2906
2978
  export interface GetWebhostingCpanelUrl {
2979
+ /**
2980
+ * URL to connect to dashboard interface
2981
+ */
2907
2982
  dashboard: string;
2983
+ /**
2984
+ * URL to connect to Webmail interface
2985
+ */
2908
2986
  webmail: string;
2909
2987
  }
2910
2988
  export interface GetWebhostingNameServer {
2989
+ /**
2990
+ * Hostname of the server
2991
+ */
2911
2992
  hostname: string;
2993
+ /**
2994
+ * Whether or not the webhosting is the default one
2995
+ */
2912
2996
  isDefault: boolean;
2997
+ /**
2998
+ * Status of the nameserver
2999
+ */
2913
3000
  status: string;
2914
3001
  }
2915
3002
  export interface GetWebhostingOption {
3003
+ /**
3004
+ * ID of the active option
3005
+ */
2916
3006
  id: string;
3007
+ /**
3008
+ * Name of the option
3009
+ */
2917
3010
  name: string;
2918
3011
  }
2919
3012
  export interface GetWebhostingRecord {
3013
+ /**
3014
+ * Name of the DNS record
3015
+ */
2920
3016
  name: string;
3017
+ /**
3018
+ * Priority of DNS records associated with the webhosting.
3019
+ */
2921
3020
  priority: number;
3021
+ /**
3022
+ * Status of the hosting record
3023
+ */
2922
3024
  status: string;
3025
+ /**
3026
+ * Time to live in seconds of the record
3027
+ */
2923
3028
  ttl: number;
3029
+ /**
3030
+ * Type of the DNS record
3031
+ */
2924
3032
  type: string;
3033
+ /**
3034
+ * Value of the DNS record
3035
+ */
2925
3036
  value: string;
2926
3037
  }
2927
3038
  export interface IamPolicyRule {
@@ -3208,13 +3319,33 @@ export interface InstanceServerPrivateNetwork {
3208
3319
  }
3209
3320
  export interface InstanceServerPublicIp {
3210
3321
  /**
3211
- * The address of the IP
3322
+ * The address of the IP.
3212
3323
  */
3213
3324
  address: string;
3214
3325
  /**
3215
- * The ID of the IP
3326
+ * Whether the IP is dynamic.
3327
+ */
3328
+ dynamic: boolean;
3329
+ /**
3330
+ * The IP address' family.
3331
+ */
3332
+ family: string;
3333
+ /**
3334
+ * The IP of the Gateway associated with the IP.
3335
+ */
3336
+ gateway: string;
3337
+ /**
3338
+ * The ID of the IP.
3216
3339
  */
3217
3340
  id: string;
3341
+ /**
3342
+ * The CIDR netmask of the IP.
3343
+ */
3344
+ netmask: string;
3345
+ /**
3346
+ * The provisioning mode of the IP
3347
+ */
3348
+ provisioningMode: string;
3218
3349
  }
3219
3350
  export interface InstanceServerRootVolume {
3220
3351
  /**
@@ -3258,8 +3389,6 @@ export interface InstanceSnapshotImport {
3258
3389
  bucket: string;
3259
3390
  /**
3260
3391
  * Key of the object to import
3261
- *
3262
- * > **Note:** The type `unified` could be instantiated on both `lSsd` and `bSsd` volumes.
3263
3392
  */
3264
3393
  key: string;
3265
3394
  }
@@ -3455,11 +3584,11 @@ export interface KeyManagerKeyRotationPolicy {
3455
3584
  /**
3456
3585
  * The date and time of the next scheduled rotation.
3457
3586
  */
3458
- nextRotationAt: string;
3587
+ nextRotationAt?: string;
3459
3588
  /**
3460
3589
  * – The period between key rotations (e.g., `"720h"` for 30 days).
3461
3590
  */
3462
- rotationPeriod?: string;
3591
+ rotationPeriod: string;
3463
3592
  }
3464
3593
  export interface KubernetesClusterAutoUpgrade {
3465
3594
  /**
@@ -3877,6 +4006,16 @@ export interface MnqSqsCredentialsPermissions {
3877
4006
  */
3878
4007
  canReceive: boolean;
3879
4008
  }
4009
+ export interface MnqSqsQueueDeadLetterQueue {
4010
+ /**
4011
+ * The ID of the queue with format `{region/{project-id}/{queue-name}`
4012
+ */
4013
+ id: string;
4014
+ /**
4015
+ * 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.
4016
+ */
4017
+ maxReceiveCount: number;
4018
+ }
3880
4019
  export interface MongoDbInstancePrivateIp {
3881
4020
  /**
3882
4021
  * The private IPv4 address.
@@ -3924,6 +4063,9 @@ export interface MongoDbInstancePublicNetwork {
3924
4063
  port: number;
3925
4064
  }
3926
4065
  export interface ObjectBucketAclAccessControlPolicy {
4066
+ /**
4067
+ * Grant
4068
+ */
3927
4069
  grants?: outputs.ObjectBucketAclAccessControlPolicyGrant[];
3928
4070
  /**
3929
4071
  * Configuration block of the bucket project owner's display organization ID.
@@ -3941,6 +4083,9 @@ export interface ObjectBucketAclAccessControlPolicyGrant {
3941
4083
  permission: string;
3942
4084
  }
3943
4085
  export interface ObjectBucketAclAccessControlPolicyGrantGrantee {
4086
+ /**
4087
+ * Display name of the grantee to grant access to.
4088
+ */
3944
4089
  displayName: string;
3945
4090
  /**
3946
4091
  * The `region`, `bucket` and `acl` separated by (`/`).
@@ -4329,7 +4474,13 @@ export interface WebhostingCpanelUrl {
4329
4474
  webmail: string;
4330
4475
  }
4331
4476
  export interface WebhostingNameServer {
4477
+ /**
4478
+ * Hostname of the server
4479
+ */
4332
4480
  hostname: string;
4481
+ /**
4482
+ * Whether or not the webhosting is the default one
4483
+ */
4333
4484
  isDefault: boolean;
4334
4485
  /**
4335
4486
  * The hosting status.
@@ -4351,13 +4502,25 @@ export interface WebhostingRecord {
4351
4502
  * The option name.
4352
4503
  */
4353
4504
  name: string;
4505
+ /**
4506
+ * Priority of DNS records associated with the webhosting.
4507
+ */
4354
4508
  priority: number;
4355
4509
  /**
4356
4510
  * The hosting status.
4357
4511
  */
4358
4512
  status: string;
4513
+ /**
4514
+ * Time to live in seconds of the record
4515
+ */
4359
4516
  ttl: number;
4517
+ /**
4518
+ * Type of the DNS record
4519
+ */
4360
4520
  type: string;
4521
+ /**
4522
+ * Value of the DNS record
4523
+ */
4361
4524
  value: string;
4362
4525
  }
4363
4526
  export declare namespace account {
@@ -5717,6 +5880,9 @@ export declare namespace elasticmetal {
5717
5880
  * The MAC address ID.
5718
5881
  */
5719
5882
  id: string;
5883
+ /**
5884
+ * IP address of the flexible IP
5885
+ */
5720
5886
  ipAddress: string;
5721
5887
  /**
5722
5888
  * The MAC address of the Virtual MAC.
@@ -6086,24 +6252,63 @@ export declare namespace functions {
6086
6252
  }
6087
6253
  export declare namespace hosting {
6088
6254
  interface GetHostingCpanelUrl {
6255
+ /**
6256
+ * URL to connect to dashboard interface
6257
+ */
6089
6258
  dashboard: string;
6259
+ /**
6260
+ * URL to connect to Webmail interface
6261
+ */
6090
6262
  webmail: string;
6091
6263
  }
6092
6264
  interface GetHostingNameServer {
6265
+ /**
6266
+ * Hostname of the server
6267
+ */
6093
6268
  hostname: string;
6269
+ /**
6270
+ * Whether or not the webhosting is the default one
6271
+ */
6094
6272
  isDefault: boolean;
6273
+ /**
6274
+ * Status of the nameserver
6275
+ */
6095
6276
  status: string;
6096
6277
  }
6097
6278
  interface GetHostingOption {
6279
+ /**
6280
+ * ID of the active option
6281
+ */
6098
6282
  id: string;
6283
+ /**
6284
+ * Name of the option
6285
+ */
6099
6286
  name: string;
6100
6287
  }
6101
6288
  interface GetHostingRecord {
6289
+ /**
6290
+ * Name of the DNS record
6291
+ */
6102
6292
  name: string;
6293
+ /**
6294
+ * Priority of DNS records associated with the webhosting.
6295
+ */
6103
6296
  priority: number;
6297
+ /**
6298
+ * Status of the hosting record
6299
+ */
6104
6300
  status: string;
6301
+ /**
6302
+ * Time to live in seconds of the record
6303
+ */
6105
6304
  ttl: number;
6305
+ /**
6306
+ * Type of the DNS record
6307
+ */
6106
6308
  type: string;
6309
+ /**
6310
+ * Value of the DNS record
6311
+ */
6107
6312
  value: string;
6108
6313
  }
6109
6314
  interface GetOfferOffer {
@@ -6227,7 +6432,13 @@ export declare namespace hosting {
6227
6432
  webmail: string;
6228
6433
  }
6229
6434
  interface HostingNameServer {
6435
+ /**
6436
+ * Hostname of the server
6437
+ */
6230
6438
  hostname: string;
6439
+ /**
6440
+ * Whether or not the webhosting is the default one
6441
+ */
6231
6442
  isDefault: boolean;
6232
6443
  /**
6233
6444
  * The hosting status.
@@ -6249,13 +6460,25 @@ export declare namespace hosting {
6249
6460
  * The option name.
6250
6461
  */
6251
6462
  name: string;
6463
+ /**
6464
+ * Priority of DNS records associated with the webhosting.
6465
+ */
6252
6466
  priority: number;
6253
6467
  /**
6254
6468
  * The hosting status.
6255
6469
  */
6256
6470
  status: string;
6471
+ /**
6472
+ * Time to live in seconds of the record
6473
+ */
6257
6474
  ttl: number;
6475
+ /**
6476
+ * Type of the DNS record
6477
+ */
6258
6478
  type: string;
6479
+ /**
6480
+ * Value of the DNS record
6481
+ */
6259
6482
  value: string;
6260
6483
  }
6261
6484
  }
@@ -6487,10 +6710,30 @@ export declare namespace instance {
6487
6710
  * The address of the IP
6488
6711
  */
6489
6712
  address: string;
6713
+ /**
6714
+ * Whether the IP is dynamic
6715
+ */
6716
+ dynamic: boolean;
6717
+ /**
6718
+ * IP address family (inet or inet6)
6719
+ */
6720
+ family: string;
6721
+ /**
6722
+ * Gateway's IP address
6723
+ */
6724
+ gateway: string;
6490
6725
  /**
6491
6726
  * The ID of the IP
6492
6727
  */
6493
6728
  id: string;
6729
+ /**
6730
+ * CIDR netmask
6731
+ */
6732
+ netmask: string;
6733
+ /**
6734
+ * Provisioning mode of the IP address
6735
+ */
6736
+ provisioningMode: string;
6494
6737
  }
6495
6738
  interface GetServerRootVolume {
6496
6739
  /**
@@ -6528,6 +6771,8 @@ export declare namespace instance {
6528
6771
  */
6529
6772
  bootType: string;
6530
6773
  /**
6774
+ * UUID of the bootscript
6775
+ *
6531
6776
  * @deprecated bootscript are not supported
6532
6777
  */
6533
6778
  bootscriptId: string;
@@ -6571,11 +6816,18 @@ export declare namespace instance {
6571
6816
  * The [placement group](https://developers.scaleway.com/en/products/instance/api/#placement-groups-d8f653) the server is attached to.
6572
6817
  */
6573
6818
  placementGroupId: string;
6819
+ /**
6820
+ * Whether the placement group policy respected or not
6821
+ */
6574
6822
  placementGroupPolicyRespected: boolean;
6575
6823
  /**
6576
6824
  * The Scaleway internal IP address of the server.
6577
6825
  */
6578
6826
  privateIp: string;
6827
+ /**
6828
+ * The list of private IPv4 and IPv6 addresses associated with the server.
6829
+ */
6830
+ privateIps: outputs.instance.GetServersServerPrivateIp[];
6579
6831
  /**
6580
6832
  * The ID of the project the server is associated with.
6581
6833
  */
@@ -6611,6 +6863,16 @@ export declare namespace instance {
6611
6863
  */
6612
6864
  zone: string;
6613
6865
  }
6866
+ interface GetServersServerPrivateIp {
6867
+ /**
6868
+ * The address of the IP
6869
+ */
6870
+ address: string;
6871
+ /**
6872
+ * The ID of the IP
6873
+ */
6874
+ id: string;
6875
+ }
6614
6876
  interface GetServersServerPublicIp {
6615
6877
  /**
6616
6878
  * The address of the IP
@@ -6843,13 +7105,33 @@ export declare namespace instance {
6843
7105
  }
6844
7106
  interface ServerPublicIp {
6845
7107
  /**
6846
- * The address of the IP
7108
+ * The address of the IP.
6847
7109
  */
6848
7110
  address: string;
6849
7111
  /**
6850
- * The ID of the IP
7112
+ * Whether the IP is dynamic.
7113
+ */
7114
+ dynamic: boolean;
7115
+ /**
7116
+ * The IP address' family.
7117
+ */
7118
+ family: string;
7119
+ /**
7120
+ * The IP of the Gateway associated with the IP.
7121
+ */
7122
+ gateway: string;
7123
+ /**
7124
+ * The ID of the IP.
6851
7125
  */
6852
7126
  id: string;
7127
+ /**
7128
+ * The CIDR netmask of the IP.
7129
+ */
7130
+ netmask: string;
7131
+ /**
7132
+ * The provisioning mode of the IP
7133
+ */
7134
+ provisioningMode: string;
6853
7135
  }
6854
7136
  interface ServerRootVolume {
6855
7137
  /**
@@ -6893,8 +7175,6 @@ export declare namespace instance {
6893
7175
  bucket: string;
6894
7176
  /**
6895
7177
  * Key of the object to import
6896
- *
6897
- * > **Note:** The type `unified` could be instantiated on both `lSsd` and `bSsd` volumes.
6898
7178
  */
6899
7179
  key: string;
6900
7180
  }
@@ -8286,6 +8566,9 @@ export declare namespace loadbalancers {
8286
8566
  * The ID of the Load Balancer.
8287
8567
  */
8288
8568
  id: string;
8569
+ /**
8570
+ * IP address of the instance
8571
+ */
8289
8572
  ipAddress: string;
8290
8573
  /**
8291
8574
  * The state of the Load Balancer Instance. Possible values are: `unknown`, `ready`, `pending`, `stopped`, `error`, `locked` and `migrating`.
@@ -8305,7 +8588,13 @@ export declare namespace loadbalancers {
8305
8588
  * The ID of the Load Balancer.
8306
8589
  */
8307
8590
  id: string;
8591
+ /**
8592
+ * IP address
8593
+ */
8308
8594
  ipAddress: string;
8595
+ /**
8596
+ * UUID of the load balancer attached to the IP
8597
+ */
8309
8598
  lbId: string;
8310
8599
  /**
8311
8600
  * The ID of the Organization the Load Balancer is associated with.
@@ -8315,6 +8604,9 @@ export declare namespace loadbalancers {
8315
8604
  * The ID of the Project the Load Balancer is associated with.
8316
8605
  */
8317
8606
  projectId: string;
8607
+ /**
8608
+ * Reverse DNS attached to the IP
8609
+ */
8318
8610
  reverse: string;
8319
8611
  /**
8320
8612
  * `zone`) The zone in which the Load Balancers exist.
@@ -8426,6 +8718,16 @@ export declare namespace mnq {
8426
8718
  */
8427
8719
  canReceive: boolean;
8428
8720
  }
8721
+ interface SqsQueueDeadLetterQueue {
8722
+ /**
8723
+ * The ID of the queue with format `{region/{project-id}/{queue-name}`
8724
+ */
8725
+ id: string;
8726
+ /**
8727
+ * 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.
8728
+ */
8729
+ maxReceiveCount: number;
8730
+ }
8429
8731
  }
8430
8732
  export declare namespace mongodb {
8431
8733
  interface GetInstancePrivateIp {
@@ -8520,6 +8822,20 @@ export declare namespace mongodb {
8520
8822
  */
8521
8823
  port: number;
8522
8824
  }
8825
+ interface UserRole {
8826
+ /**
8827
+ * Apply the role to all databases. Cannot be used with `databaseName`.
8828
+ */
8829
+ anyDatabase?: boolean;
8830
+ /**
8831
+ * The database name for the role. Cannot be used with `anyDatabase`.
8832
+ */
8833
+ databaseName?: string;
8834
+ /**
8835
+ * The role name. Valid values are `read`, `readWrite`, `dbAdmin`, `sync`.
8836
+ */
8837
+ role: string;
8838
+ }
8523
8839
  }
8524
8840
  export declare namespace network {
8525
8841
  interface AclRule {
@@ -8745,6 +9061,9 @@ export declare namespace network {
8745
9061
  * List of tags to filter for. VPCs with these exact tags are listed.
8746
9062
  */
8747
9063
  tags: string[];
9064
+ /**
9065
+ * Date on which the VPC was last updated (RFC 3339 format)
9066
+ */
8748
9067
  updateAt: string;
8749
9068
  }
8750
9069
  interface PrivateNetworkIpv4Subnet {
@@ -8810,6 +9129,9 @@ export declare namespace network {
8810
9129
  }
8811
9130
  export declare namespace object {
8812
9131
  interface BucketAclAccessControlPolicy {
9132
+ /**
9133
+ * Grant
9134
+ */
8813
9135
  grants?: outputs.object.BucketAclAccessControlPolicyGrant[];
8814
9136
  /**
8815
9137
  * Configuration block of the bucket project owner's display organization ID.
@@ -8827,6 +9149,9 @@ export declare namespace object {
8827
9149
  permission: string;
8828
9150
  }
8829
9151
  interface BucketAclAccessControlPolicyGrantGrantee {
9152
+ /**
9153
+ * Display name of the grantee to grant access to.
9154
+ */
8830
9155
  displayName: string;
8831
9156
  /**
8832
9157
  * The `region`, `bucket` and `acl` separated by (`/`).
@@ -8972,10 +9297,25 @@ export declare namespace object {
8972
9297
  suffix: string;
8973
9298
  }
8974
9299
  interface GetBucketCorsRule {
9300
+ /**
9301
+ * Allowed headers in the CORS rule
9302
+ */
8975
9303
  allowedHeaders: string[];
9304
+ /**
9305
+ * Allowed HTTP methods allowed in the CORS rule
9306
+ */
8976
9307
  allowedMethods: string[];
9308
+ /**
9309
+ * Allowed origins allowed in the CORS rule
9310
+ */
8977
9311
  allowedOrigins: string[];
9312
+ /**
9313
+ * Exposed headers in the CORS rule
9314
+ */
8978
9315
  exposeHeaders: string[];
9316
+ /**
9317
+ * Max age of the CORS rule
9318
+ */
8979
9319
  maxAgeSeconds: number;
8980
9320
  }
8981
9321
  interface GetBucketLifecycleRule {
@@ -9104,6 +9444,56 @@ export declare namespace observability {
9104
9444
  */
9105
9445
  pushMetricsUrl: string;
9106
9446
  }
9447
+ interface GetSourcesSource {
9448
+ /**
9449
+ * The date and time of the creation of the cockpit datasource.
9450
+ */
9451
+ createdAt: string;
9452
+ /**
9453
+ * The ID of the data source.
9454
+ */
9455
+ id: string;
9456
+ /**
9457
+ * Filter sources by name.
9458
+ */
9459
+ name: string;
9460
+ /**
9461
+ * Filter sources by origin. Possible values are: `scaleway`, `external`, `custom`.
9462
+ */
9463
+ origin: string;
9464
+ /**
9465
+ * The project ID the cockpit sources are associated with.
9466
+ */
9467
+ projectId: string;
9468
+ /**
9469
+ * The URL endpoint used for pushing data to the cockpit data source.
9470
+ */
9471
+ pushUrl: string;
9472
+ /**
9473
+ * The region in which the cockpit sources are located.
9474
+ */
9475
+ region: string;
9476
+ /**
9477
+ * The number of days to retain data.
9478
+ */
9479
+ retentionDays: number;
9480
+ /**
9481
+ * Indicates whether the data source is synchronized with Grafana.
9482
+ */
9483
+ synchronizedWithGrafana: boolean;
9484
+ /**
9485
+ * Filter sources by type. Possible values are: `metrics`, `logs`, `traces`.
9486
+ */
9487
+ type: string;
9488
+ /**
9489
+ * The date and time of the last update of the cockpit datasource.
9490
+ */
9491
+ updatedAt: string;
9492
+ /**
9493
+ * The URL of the datasource.
9494
+ */
9495
+ url: string;
9496
+ }
9107
9497
  interface TokenScopes {
9108
9498
  /**
9109
9499
  * Permission to query logs.