@pulumiverse/scaleway 1.36.0-alpha.1761749977 → 1.36.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/databaseInstance.d.ts +30 -9
  2. package/databaseInstance.js +21 -0
  3. package/databaseInstance.js.map +1 -1
  4. package/databaseUser.d.ts +1 -1
  5. package/databaseUser.js +1 -1
  6. package/databases/getInstance.d.ts +1 -0
  7. package/databases/getInstance.js.map +1 -1
  8. package/databases/instance.d.ts +30 -9
  9. package/databases/instance.js +21 -0
  10. package/databases/instance.js.map +1 -1
  11. package/databases/user.d.ts +1 -1
  12. package/databases/user.js +1 -1
  13. package/elasticmetal/getOffer.d.ts +6 -0
  14. package/elasticmetal/getOffer.js.map +1 -1
  15. package/fileFilesystem.d.ts +4 -4
  16. package/fileFilesystem.js +5 -5
  17. package/fileFilesystem.js.map +1 -1
  18. package/getBaremetalOffer.d.ts +6 -0
  19. package/getBaremetalOffer.js.map +1 -1
  20. package/getDatabaseInstance.d.ts +1 -0
  21. package/getDatabaseInstance.js.map +1 -1
  22. package/getInstanceServer.d.ts +2 -22
  23. package/getInstanceServer.js.map +1 -1
  24. package/getKubernetesCluster.d.ts +3 -0
  25. package/getKubernetesCluster.js.map +1 -1
  26. package/iam/getPolicy.d.ts +129 -0
  27. package/iam/getPolicy.js +66 -0
  28. package/iam/getPolicy.js.map +1 -0
  29. package/iam/index.d.ts +3 -0
  30. package/iam/index.js +4 -1
  31. package/iam/index.js.map +1 -1
  32. package/instance/getServer.d.ts +2 -22
  33. package/instance/getServer.js.map +1 -1
  34. package/instance/server.d.ts +40 -83
  35. package/instance/server.js +34 -12
  36. package/instance/server.js.map +1 -1
  37. package/instanceServer.d.ts +40 -83
  38. package/instanceServer.js +34 -12
  39. package/instanceServer.js.map +1 -1
  40. package/iot/device.d.ts +0 -23
  41. package/iot/device.js +0 -23
  42. package/iot/device.js.map +1 -1
  43. package/iot/route.d.ts +10 -10
  44. package/iot/route.js +10 -10
  45. package/iotDevice.d.ts +0 -23
  46. package/iotDevice.js +0 -23
  47. package/iotDevice.js.map +1 -1
  48. package/iotRoute.d.ts +10 -10
  49. package/iotRoute.js +10 -10
  50. package/kubernetes/cluster.d.ts +65 -2
  51. package/kubernetes/cluster.js +8 -2
  52. package/kubernetes/cluster.js.map +1 -1
  53. package/kubernetes/getCluster.d.ts +3 -0
  54. package/kubernetes/getCluster.js.map +1 -1
  55. package/kubernetesCluster.d.ts +65 -2
  56. package/kubernetesCluster.js +8 -2
  57. package/kubernetesCluster.js.map +1 -1
  58. package/object/bucketPolicy.d.ts +0 -36
  59. package/object/bucketPolicy.js +0 -36
  60. package/object/bucketPolicy.js.map +1 -1
  61. package/objectBucketPolicy.d.ts +0 -36
  62. package/objectBucketPolicy.js +0 -36
  63. package/objectBucketPolicy.js.map +1 -1
  64. package/package.json +2 -2
  65. package/types/input.d.ts +58 -2
  66. package/types/output.d.ts +140 -62
package/types/input.d.ts CHANGED
@@ -360,7 +360,7 @@ export interface DatabaseInstancePrivateIp {
360
360
  */
361
361
  address?: pulumi.Input<string>;
362
362
  /**
363
- * The ID of the IPv4 address resource.
363
+ * Version ID to use in upgrade requests.
364
364
  */
365
365
  id?: pulumi.Input<string>;
366
366
  }
@@ -416,6 +416,24 @@ export interface DatabaseInstanceReadReplica {
416
416
  */
417
417
  port?: pulumi.Input<number>;
418
418
  }
419
+ export interface DatabaseInstanceUpgradableVersion {
420
+ /**
421
+ * Version ID to use in upgrade requests.
422
+ */
423
+ id?: pulumi.Input<string>;
424
+ /**
425
+ * Minor version string (e.g., `15.5.0`).
426
+ */
427
+ minorVersion?: pulumi.Input<string>;
428
+ /**
429
+ * The name of the Database Instance.
430
+ */
431
+ name?: pulumi.Input<string>;
432
+ /**
433
+ * Version string (e.g., `15.5`).
434
+ */
435
+ version?: pulumi.Input<string>;
436
+ }
419
437
  export interface DatabaseReadReplicaDirectAccess {
420
438
  /**
421
439
  * The ID of the endpoint of the Read Replica.
@@ -970,6 +988,16 @@ export interface InstanceSecurityGroupRulesOutboundRule {
970
988
  */
971
989
  protocol?: pulumi.Input<string>;
972
990
  }
991
+ export interface InstanceServerFilesystem {
992
+ /**
993
+ * The unique ID of the filesystem attached to the server.
994
+ */
995
+ filesystemId?: pulumi.Input<string>;
996
+ /**
997
+ * The state of the filesystem
998
+ */
999
+ status?: pulumi.Input<string>;
1000
+ }
973
1001
  export interface InstanceServerPrivateIp {
974
1002
  /**
975
1003
  * The private IP address.
@@ -2501,7 +2529,7 @@ export declare namespace databases {
2501
2529
  */
2502
2530
  address?: pulumi.Input<string>;
2503
2531
  /**
2504
- * The ID of the IPv4 address resource.
2532
+ * Version ID to use in upgrade requests.
2505
2533
  */
2506
2534
  id?: pulumi.Input<string>;
2507
2535
  }
@@ -2557,6 +2585,24 @@ export declare namespace databases {
2557
2585
  */
2558
2586
  port?: pulumi.Input<number>;
2559
2587
  }
2588
+ interface InstanceUpgradableVersion {
2589
+ /**
2590
+ * Version ID to use in upgrade requests.
2591
+ */
2592
+ id?: pulumi.Input<string>;
2593
+ /**
2594
+ * Minor version string (e.g., `15.5.0`).
2595
+ */
2596
+ minorVersion?: pulumi.Input<string>;
2597
+ /**
2598
+ * The name of the Database Instance.
2599
+ */
2600
+ name?: pulumi.Input<string>;
2601
+ /**
2602
+ * Version string (e.g., `15.5`).
2603
+ */
2604
+ version?: pulumi.Input<string>;
2605
+ }
2560
2606
  interface ReadReplicaDirectAccess {
2561
2607
  /**
2562
2608
  * The ID of the endpoint of the Read Replica.
@@ -3689,6 +3735,16 @@ export declare namespace instance {
3689
3735
  */
3690
3736
  protocol?: pulumi.Input<string>;
3691
3737
  }
3738
+ interface ServerFilesystem {
3739
+ /**
3740
+ * The unique ID of the filesystem attached to the server.
3741
+ */
3742
+ filesystemId?: pulumi.Input<string>;
3743
+ /**
3744
+ * The state of the filesystem
3745
+ */
3746
+ status?: pulumi.Input<string>;
3747
+ }
3692
3748
  interface ServerPrivateIp {
3693
3749
  /**
3694
3750
  * The private IP address.
package/types/output.d.ts CHANGED
@@ -359,7 +359,7 @@ export interface DatabaseInstancePrivateIp {
359
359
  */
360
360
  address: string;
361
361
  /**
362
- * The ID of the IPv4 address resource.
362
+ * Version ID to use in upgrade requests.
363
363
  */
364
364
  id: string;
365
365
  }
@@ -415,6 +415,24 @@ export interface DatabaseInstanceReadReplica {
415
415
  */
416
416
  port: number;
417
417
  }
418
+ export interface DatabaseInstanceUpgradableVersion {
419
+ /**
420
+ * Version ID to use in upgrade requests.
421
+ */
422
+ id: string;
423
+ /**
424
+ * Minor version string (e.g., `15.5.0`).
425
+ */
426
+ minorVersion: string;
427
+ /**
428
+ * The name of the Database Instance.
429
+ */
430
+ name: string;
431
+ /**
432
+ * Version string (e.g., `15.5`).
433
+ */
434
+ version: string;
435
+ }
418
436
  export interface DatabaseReadReplicaDirectAccess {
419
437
  /**
420
438
  * The ID of the endpoint of the Read Replica.
@@ -1113,6 +1131,24 @@ export interface GetDatabaseInstanceReadReplica {
1113
1131
  */
1114
1132
  port: number;
1115
1133
  }
1134
+ export interface GetDatabaseInstanceUpgradableVersion {
1135
+ /**
1136
+ * The ID of the Database Instance.
1137
+ */
1138
+ id: string;
1139
+ /**
1140
+ * Minor version string
1141
+ */
1142
+ minorVersion: string;
1143
+ /**
1144
+ * The name of the RDB instance.
1145
+ */
1146
+ name: string;
1147
+ /**
1148
+ * Version string
1149
+ */
1150
+ version: string;
1151
+ }
1116
1152
  export interface GetDomainRecordGeoIp {
1117
1153
  /**
1118
1154
  * The list of matches
@@ -1321,13 +1357,23 @@ export interface GetInstanceSecurityGroupOutboundRule {
1321
1357
  */
1322
1358
  protocol: string;
1323
1359
  }
1360
+ export interface GetInstanceServerFilesystem {
1361
+ /**
1362
+ * The filesystem ID attached to the server
1363
+ */
1364
+ filesystemId: string;
1365
+ /**
1366
+ * The state of the filesystem
1367
+ */
1368
+ status: string;
1369
+ }
1324
1370
  export interface GetInstanceServerPrivateIp {
1325
1371
  /**
1326
- * The address of the IP
1372
+ * The private IP address.
1327
1373
  */
1328
1374
  address: string;
1329
1375
  /**
1330
- * The ID of the IP
1376
+ * The ID of the IP address resource.
1331
1377
  */
1332
1378
  id: string;
1333
1379
  }
@@ -1355,7 +1401,7 @@ export interface GetInstanceServerPrivateNetwork {
1355
1401
  }
1356
1402
  export interface GetInstanceServerPublicIp {
1357
1403
  /**
1358
- * The address of the IP
1404
+ * The private IP address.
1359
1405
  */
1360
1406
  address: string;
1361
1407
  /**
@@ -1371,7 +1417,7 @@ export interface GetInstanceServerPublicIp {
1371
1417
  */
1372
1418
  gateway: string;
1373
1419
  /**
1374
- * The ID of the IP
1420
+ * The ID of the IP address resource.
1375
1421
  */
1376
1422
  id: string;
1377
1423
  /**
@@ -1428,10 +1474,6 @@ export interface GetInstanceServersServer {
1428
1474
  * If true a dynamic IP will be attached to the server.
1429
1475
  */
1430
1476
  enableDynamicIp: boolean;
1431
- /**
1432
- * Determines if IPv6 is enabled for the server.
1433
- */
1434
- enableIpv6: boolean;
1435
1477
  /**
1436
1478
  * The ID of the IP
1437
1479
  */
@@ -1440,18 +1482,6 @@ export interface GetInstanceServersServer {
1440
1482
  * The UUID or the label of the base image used by the server.
1441
1483
  */
1442
1484
  image: string;
1443
- /**
1444
- * The default ipv6 address routed to the server. ( Only set when enableIpv6 is set to true )
1445
- */
1446
- ipv6Address: string;
1447
- /**
1448
- * The ipv6 gateway address. ( Only set when enableIpv6 is set to true )
1449
- */
1450
- ipv6Gateway: string;
1451
- /**
1452
- * The prefix length of the ipv6 subnet routed to the server. ( Only set when enableIpv6 is set to true )
1453
- */
1454
- ipv6PrefixLength: number;
1455
1485
  /**
1456
1486
  * The server name used as filter. Servers with a name like it are listed.
1457
1487
  */
@@ -1468,10 +1498,6 @@ export interface GetInstanceServersServer {
1468
1498
  * Whether the placement group policy respected or not
1469
1499
  */
1470
1500
  placementGroupPolicyRespected: boolean;
1471
- /**
1472
- * The Scaleway internal IP address of the server.
1473
- */
1474
- privateIp: string;
1475
1501
  /**
1476
1502
  * The list of private IPv4 and IPv6 addresses associated with the server.
1477
1503
  */
@@ -1480,12 +1506,6 @@ export interface GetInstanceServersServer {
1480
1506
  * The ID of the project the server is associated with.
1481
1507
  */
1482
1508
  projectId: string;
1483
- /**
1484
- * The public IP address of the server.
1485
- *
1486
- * @deprecated Use publicIps instead
1487
- */
1488
- publicIp: string;
1489
1509
  /**
1490
1510
  * The list of public IPs of the server
1491
1511
  */
@@ -3275,6 +3295,16 @@ export interface InstanceSecurityGroupRulesOutboundRule {
3275
3295
  */
3276
3296
  protocol?: string;
3277
3297
  }
3298
+ export interface InstanceServerFilesystem {
3299
+ /**
3300
+ * The unique ID of the filesystem attached to the server.
3301
+ */
3302
+ filesystemId?: string;
3303
+ /**
3304
+ * The state of the filesystem
3305
+ */
3306
+ status: string;
3307
+ }
3278
3308
  export interface InstanceServerPrivateIp {
3279
3309
  /**
3280
3310
  * The private IP address.
@@ -5049,6 +5079,24 @@ export declare namespace databases {
5049
5079
  */
5050
5080
  port: number;
5051
5081
  }
5082
+ interface GetInstanceUpgradableVersion {
5083
+ /**
5084
+ * The ID of the Database Instance.
5085
+ */
5086
+ id: string;
5087
+ /**
5088
+ * Minor version string
5089
+ */
5090
+ minorVersion: string;
5091
+ /**
5092
+ * The name of the RDB instance.
5093
+ */
5094
+ name: string;
5095
+ /**
5096
+ * Version string
5097
+ */
5098
+ version: string;
5099
+ }
5052
5100
  interface InstanceLoadBalancer {
5053
5101
  /**
5054
5102
  * The ID of the endpoint.
@@ -5087,7 +5135,7 @@ export declare namespace databases {
5087
5135
  */
5088
5136
  address: string;
5089
5137
  /**
5090
- * The ID of the IPv4 address resource.
5138
+ * Version ID to use in upgrade requests.
5091
5139
  */
5092
5140
  id: string;
5093
5141
  }
@@ -5143,6 +5191,24 @@ export declare namespace databases {
5143
5191
  */
5144
5192
  port: number;
5145
5193
  }
5194
+ interface InstanceUpgradableVersion {
5195
+ /**
5196
+ * Version ID to use in upgrade requests.
5197
+ */
5198
+ id: string;
5199
+ /**
5200
+ * Minor version string (e.g., `15.5.0`).
5201
+ */
5202
+ minorVersion: string;
5203
+ /**
5204
+ * The name of the Database Instance.
5205
+ */
5206
+ name: string;
5207
+ /**
5208
+ * Version string (e.g., `15.5`).
5209
+ */
5210
+ version: string;
5211
+ }
5146
5212
  interface ReadReplicaDirectAccess {
5147
5213
  /**
5148
5214
  * The ID of the endpoint of the Read Replica.
@@ -6473,6 +6539,24 @@ export declare namespace hosting {
6473
6539
  }
6474
6540
  }
6475
6541
  export declare namespace iam {
6542
+ interface GetPolicyRule {
6543
+ /**
6544
+ * The condition of the rule.
6545
+ */
6546
+ condition: string;
6547
+ /**
6548
+ * ID of organization scoped to the rule.
6549
+ */
6550
+ organizationId: string;
6551
+ /**
6552
+ * Names of permission sets bound to the rule.
6553
+ */
6554
+ permissionSetNames: string[];
6555
+ /**
6556
+ * List of project IDs scoped to the rule.
6557
+ */
6558
+ projectIds: string[];
6559
+ }
6476
6560
  interface PolicyRule {
6477
6561
  /**
6478
6562
  * The condition of the rule.
@@ -6663,13 +6747,23 @@ export declare namespace instance {
6663
6747
  */
6664
6748
  protocol: string;
6665
6749
  }
6750
+ interface GetServerFilesystem {
6751
+ /**
6752
+ * The filesystem ID attached to the server
6753
+ */
6754
+ filesystemId: string;
6755
+ /**
6756
+ * The state of the filesystem
6757
+ */
6758
+ status: string;
6759
+ }
6666
6760
  interface GetServerPrivateIp {
6667
6761
  /**
6668
- * The address of the IP
6762
+ * The private IP address.
6669
6763
  */
6670
6764
  address: string;
6671
6765
  /**
6672
- * The ID of the IP
6766
+ * The ID of the IP address resource.
6673
6767
  */
6674
6768
  id: string;
6675
6769
  }
@@ -6697,7 +6791,7 @@ export declare namespace instance {
6697
6791
  }
6698
6792
  interface GetServerPublicIp {
6699
6793
  /**
6700
- * The address of the IP
6794
+ * The private IP address.
6701
6795
  */
6702
6796
  address: string;
6703
6797
  /**
@@ -6713,7 +6807,7 @@ export declare namespace instance {
6713
6807
  */
6714
6808
  gateway: string;
6715
6809
  /**
6716
- * The ID of the IP
6810
+ * The ID of the IP address resource.
6717
6811
  */
6718
6812
  id: string;
6719
6813
  /**
@@ -6820,10 +6914,6 @@ export declare namespace instance {
6820
6914
  * If true a dynamic IP will be attached to the server.
6821
6915
  */
6822
6916
  enableDynamicIp: boolean;
6823
- /**
6824
- * Determines if IPv6 is enabled for the server.
6825
- */
6826
- enableIpv6: boolean;
6827
6917
  /**
6828
6918
  * The ID of the IP
6829
6919
  */
@@ -6832,18 +6922,6 @@ export declare namespace instance {
6832
6922
  * The UUID or the label of the base image used by the server.
6833
6923
  */
6834
6924
  image: string;
6835
- /**
6836
- * The default ipv6 address routed to the server. ( Only set when enableIpv6 is set to true )
6837
- */
6838
- ipv6Address: string;
6839
- /**
6840
- * The ipv6 gateway address. ( Only set when enableIpv6 is set to true )
6841
- */
6842
- ipv6Gateway: string;
6843
- /**
6844
- * The prefix length of the ipv6 subnet routed to the server. ( Only set when enableIpv6 is set to true )
6845
- */
6846
- ipv6PrefixLength: number;
6847
6925
  /**
6848
6926
  * The server name used as filter. Servers with a name like it are listed.
6849
6927
  */
@@ -6860,10 +6938,6 @@ export declare namespace instance {
6860
6938
  * Whether the placement group policy respected or not
6861
6939
  */
6862
6940
  placementGroupPolicyRespected: boolean;
6863
- /**
6864
- * The Scaleway internal IP address of the server.
6865
- */
6866
- privateIp: string;
6867
6941
  /**
6868
6942
  * The list of private IPv4 and IPv6 addresses associated with the server.
6869
6943
  */
@@ -6872,12 +6946,6 @@ export declare namespace instance {
6872
6946
  * The ID of the project the server is associated with.
6873
6947
  */
6874
6948
  projectId: string;
6875
- /**
6876
- * The public IP address of the server.
6877
- *
6878
- * @deprecated Use publicIps instead
6879
- */
6880
- publicIp: string;
6881
6949
  /**
6882
6950
  * The list of public IPs of the server
6883
6951
  */
@@ -7101,6 +7169,16 @@ export declare namespace instance {
7101
7169
  */
7102
7170
  protocol?: string;
7103
7171
  }
7172
+ interface ServerFilesystem {
7173
+ /**
7174
+ * The unique ID of the filesystem attached to the server.
7175
+ */
7176
+ filesystemId?: string;
7177
+ /**
7178
+ * The state of the filesystem
7179
+ */
7180
+ status: string;
7181
+ }
7104
7182
  interface ServerPrivateIp {
7105
7183
  /**
7106
7184
  * The private IP address.