@pulumiverse/scaleway 0.3.1-alpha.1661372906 → 0.4.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 (293) hide show
  1. package/accountSshKey.d.ts +33 -11
  2. package/accountSshKey.js +22 -0
  3. package/accountSshKey.js.map +1 -1
  4. package/appleSliconValleyServer.d.ts +63 -24
  5. package/appleSliconValleyServer.js +25 -0
  6. package/appleSliconValleyServer.js.map +1 -1
  7. package/baremetalServer.d.ts +88 -33
  8. package/baremetalServer.js +31 -0
  9. package/baremetalServer.js.map +1 -1
  10. package/config/vars.d.ts +4 -0
  11. package/config/vars.js +6 -0
  12. package/config/vars.js.map +1 -1
  13. package/container.d.ts +133 -49
  14. package/container.js +82 -1
  15. package/container.js.map +1 -1
  16. package/containerCron.d.ts +142 -0
  17. package/containerCron.js +112 -0
  18. package/containerCron.js.map +1 -0
  19. package/containerNamespace.d.ts +58 -21
  20. package/containerNamespace.js +27 -0
  21. package/containerNamespace.js.map +1 -1
  22. package/database.d.ts +35 -12
  23. package/database.js +23 -0
  24. package/database.js.map +1 -1
  25. package/databaseAcl.d.ts +35 -6
  26. package/databaseAcl.js +29 -0
  27. package/databaseAcl.js.map +1 -1
  28. package/databaseBackup.d.ts +167 -0
  29. package/databaseBackup.js +110 -0
  30. package/databaseBackup.js.map +1 -0
  31. package/databaseInstance.d.ts +170 -63
  32. package/databaseInstance.js +107 -0
  33. package/databaseInstance.js.map +1 -1
  34. package/databasePrivilege.d.ts +41 -12
  35. package/databasePrivilege.js +29 -0
  36. package/databasePrivilege.js.map +1 -1
  37. package/databaseReadReplica.d.ts +148 -0
  38. package/databaseReadReplica.js +121 -0
  39. package/databaseReadReplica.js.map +1 -0
  40. package/databaseUser.d.ts +44 -12
  41. package/databaseUser.js +32 -0
  42. package/databaseUser.js.map +1 -1
  43. package/domainRecord.d.ts +206 -33
  44. package/domainRecord.js +173 -0
  45. package/domainRecord.js.map +1 -1
  46. package/domainZone.d.ts +30 -6
  47. package/domainZone.js +24 -0
  48. package/domainZone.js.map +1 -1
  49. package/flexibleIp.d.ts +213 -0
  50. package/flexibleIp.js +134 -0
  51. package/flexibleIp.js.map +1 -0
  52. package/function.d.ts +287 -0
  53. package/function.js +126 -0
  54. package/function.js.map +1 -0
  55. package/functionCron.d.ts +153 -0
  56. package/functionCron.js +118 -0
  57. package/functionCron.js.map +1 -0
  58. package/functionNamespace.d.ts +46 -21
  59. package/functionNamespace.js +25 -0
  60. package/functionNamespace.js.map +1 -1
  61. package/getAccountSshKey.d.ts +33 -0
  62. package/getAccountSshKey.js +15 -0
  63. package/getAccountSshKey.js.map +1 -1
  64. package/getBaremetalOffer.d.ts +55 -0
  65. package/getBaremetalOffer.js +16 -0
  66. package/getBaremetalOffer.js.map +1 -1
  67. package/getBaremetalOs.d.ts +47 -0
  68. package/getBaremetalOs.js +23 -0
  69. package/getBaremetalOs.js.map +1 -1
  70. package/getBaremetalServer.d.ts +33 -0
  71. package/getBaremetalServer.js +21 -0
  72. package/getBaremetalServer.js.map +1 -1
  73. package/getContainer.d.ts +101 -0
  74. package/getContainer.js +28 -0
  75. package/getContainer.js.map +1 -1
  76. package/getContainerNamespace.d.ts +57 -0
  77. package/getContainerNamespace.js +19 -0
  78. package/getContainerNamespace.js.map +1 -1
  79. package/getDatabase.d.ts +37 -0
  80. package/getDatabase.js +16 -0
  81. package/getDatabase.js.map +1 -1
  82. package/getDatabaseAcl.d.ts +24 -0
  83. package/getDatabaseAcl.js +15 -0
  84. package/getDatabaseAcl.js.map +1 -1
  85. package/getDatabaseBackup.d.ts +83 -0
  86. package/getDatabaseBackup.js +47 -0
  87. package/getDatabaseBackup.js.map +1 -0
  88. package/getDatabaseInstance.d.ts +31 -0
  89. package/getDatabaseInstance.js +15 -0
  90. package/getDatabaseInstance.js.map +1 -1
  91. package/getDatabasePrivilege.d.ts +38 -0
  92. package/getDatabasePrivilege.js +17 -0
  93. package/getDatabasePrivilege.js.map +1 -1
  94. package/getDomainRecord.d.ts +79 -0
  95. package/getDomainRecord.js +23 -0
  96. package/getDomainRecord.js.map +1 -1
  97. package/getDomainZone.d.ts +46 -0
  98. package/getDomainZone.js +16 -0
  99. package/getDomainZone.js.map +1 -1
  100. package/getFlexibleIp.d.ts +81 -0
  101. package/getFlexibleIp.js +40 -0
  102. package/getFlexibleIp.js.map +1 -0
  103. package/getFunction.d.ts +50 -0
  104. package/getFunction.js +24 -0
  105. package/getFunction.js.map +1 -0
  106. package/getFunctionNamespace.d.ts +52 -0
  107. package/getFunctionNamespace.js +15 -0
  108. package/getFunctionNamespace.js.map +1 -1
  109. package/getInstanceImage.d.ts +81 -0
  110. package/getInstanceImage.js +15 -0
  111. package/getInstanceImage.js.map +1 -1
  112. package/getInstanceIp.d.ts +43 -0
  113. package/getInstanceIp.js +15 -0
  114. package/getInstanceIp.js.map +1 -1
  115. package/getInstanceSecurityGroup.d.ts +51 -0
  116. package/getInstanceSecurityGroup.js +15 -0
  117. package/getInstanceSecurityGroup.js.map +1 -1
  118. package/getInstanceServer.d.ts +95 -0
  119. package/getInstanceServer.js +15 -0
  120. package/getInstanceServer.js.map +1 -1
  121. package/getInstanceServers.d.ts +97 -0
  122. package/getInstanceServers.js +44 -0
  123. package/getInstanceServers.js.map +1 -0
  124. package/getInstanceVolume.d.ts +40 -0
  125. package/getInstanceVolume.js +15 -0
  126. package/getInstanceVolume.js.map +1 -1
  127. package/getIotDevice.d.ts +43 -0
  128. package/getIotDevice.js +15 -0
  129. package/getIotDevice.js.map +1 -1
  130. package/getIotHub.d.ts +37 -0
  131. package/getIotHub.js +15 -0
  132. package/getIotHub.js.map +1 -1
  133. package/getKubernetesCluster.d.ts +87 -0
  134. package/getKubernetesCluster.js +15 -0
  135. package/getKubernetesCluster.js.map +1 -1
  136. package/getKubernetesNodePool.d.ts +92 -0
  137. package/getKubernetesNodePool.js +15 -0
  138. package/getKubernetesNodePool.js.map +1 -1
  139. package/getLoadbalancer.d.ts +46 -0
  140. package/getLoadbalancer.js +19 -0
  141. package/getLoadbalancer.js.map +1 -1
  142. package/getLoadbalancerCertificate.d.ts +31 -0
  143. package/getLoadbalancerCertificate.js +9 -0
  144. package/getLoadbalancerCertificate.js.map +1 -1
  145. package/getLoadbalancerIp.d.ts +40 -0
  146. package/getLoadbalancerIp.js +15 -0
  147. package/getLoadbalancerIp.js.map +1 -1
  148. package/getMarketplaceImage.d.ts +36 -0
  149. package/getMarketplaceImage.js +14 -0
  150. package/getMarketplaceImage.js.map +1 -1
  151. package/getObjectBucket.d.ts +35 -0
  152. package/getObjectBucket.js +20 -0
  153. package/getObjectBucket.js.map +1 -1
  154. package/getRedisCluster.d.ts +40 -0
  155. package/getRedisCluster.js +15 -0
  156. package/getRedisCluster.js.map +1 -1
  157. package/getRegistryImage.d.ts +68 -0
  158. package/getRegistryImage.js +16 -0
  159. package/getRegistryImage.js.map +1 -1
  160. package/getRegistryNamespace.d.ts +46 -0
  161. package/getRegistryNamespace.js +15 -0
  162. package/getRegistryNamespace.js.map +1 -1
  163. package/getVpcGatewayNetwork.d.ts +100 -0
  164. package/getVpcGatewayNetwork.js +53 -0
  165. package/getVpcGatewayNetwork.js.map +1 -0
  166. package/getVpcPrivateNetwork.d.ts +13 -0
  167. package/getVpcPrivateNetwork.js +7 -0
  168. package/getVpcPrivateNetwork.js.map +1 -1
  169. package/getVpcPublicGateway.d.ts +29 -0
  170. package/getVpcPublicGateway.js +20 -0
  171. package/getVpcPublicGateway.js.map +1 -1
  172. package/getVpcPublicGatewayDhcp.d.ts +17 -0
  173. package/getVpcPublicGatewayDhcp.js +17 -0
  174. package/getVpcPublicGatewayDhcp.js.map +1 -1
  175. package/getVpcPublicGatewayDhcpReservation.d.ts +79 -0
  176. package/getVpcPublicGatewayDhcpReservation.js +29 -0
  177. package/getVpcPublicGatewayDhcpReservation.js.map +1 -0
  178. package/getVpcPublicGatewayIp.d.ts +17 -0
  179. package/getVpcPublicGatewayIp.js +17 -0
  180. package/getVpcPublicGatewayIp.js.map +1 -1
  181. package/getVpcPublicPatRule.d.ts +69 -0
  182. package/getVpcPublicPatRule.js +40 -0
  183. package/getVpcPublicPatRule.js.map +1 -1
  184. package/index.d.ts +15 -1
  185. package/index.js +51 -5
  186. package/index.js.map +1 -1
  187. package/instanceImage.d.ts +223 -0
  188. package/instanceImage.js +120 -0
  189. package/instanceImage.js.map +1 -0
  190. package/instanceIp.d.ts +35 -15
  191. package/instanceIp.js +20 -0
  192. package/instanceIp.js.map +1 -1
  193. package/instanceIpReverseDns.d.ts +22 -9
  194. package/instanceIpReverseDns.js +13 -0
  195. package/instanceIpReverseDns.js.map +1 -1
  196. package/instancePlacementGroup.d.ts +40 -20
  197. package/instancePlacementGroup.js +20 -0
  198. package/instancePlacementGroup.js.map +1 -1
  199. package/instancePrivateNic.d.ts +56 -11
  200. package/instancePrivateNic.js +45 -0
  201. package/instancePrivateNic.js.map +1 -1
  202. package/instanceSecurityGroup.d.ts +56 -35
  203. package/instanceSecurityGroup.js +9 -0
  204. package/instanceSecurityGroup.js.map +1 -1
  205. package/instanceSecurityGroupRules.d.ts +18 -9
  206. package/instanceSecurityGroupRules.js +9 -0
  207. package/instanceSecurityGroupRules.js.map +1 -1
  208. package/instanceServer.d.ts +238 -67
  209. package/instanceServer.js +154 -3
  210. package/instanceServer.js.map +1 -1
  211. package/instanceSnapshot.d.ts +87 -23
  212. package/instanceSnapshot.js +52 -1
  213. package/instanceSnapshot.js.map +1 -1
  214. package/instanceVolume.d.ts +49 -25
  215. package/instanceVolume.js +24 -0
  216. package/instanceVolume.js.map +1 -1
  217. package/iotDevice.d.ts +40 -31
  218. package/iotDevice.js +9 -0
  219. package/iotDevice.js.map +1 -1
  220. package/iotHub.d.ts +36 -27
  221. package/iotHub.js +9 -0
  222. package/iotHub.js.map +1 -1
  223. package/iotNetwork.d.ts +27 -18
  224. package/iotNetwork.js +9 -0
  225. package/iotNetwork.js.map +1 -1
  226. package/kubernetesCluster.d.ts +67 -53
  227. package/kubernetesCluster.js +9 -0
  228. package/kubernetesCluster.js.map +1 -1
  229. package/kubernetesNodePool.d.ts +110 -50
  230. package/kubernetesNodePool.js +13 -0
  231. package/kubernetesNodePool.js.map +1 -1
  232. package/loadbalancer.d.ts +167 -25
  233. package/loadbalancer.js +142 -0
  234. package/loadbalancer.js.map +1 -1
  235. package/loadbalancerBackend.d.ts +127 -54
  236. package/loadbalancerBackend.js +43 -0
  237. package/loadbalancerBackend.js.map +1 -1
  238. package/loadbalancerCertificate.d.ts +18 -18
  239. package/loadbalancerFrontend.d.ts +49 -23
  240. package/loadbalancerFrontend.js +26 -0
  241. package/loadbalancerFrontend.js.map +1 -1
  242. package/loadbalancerIp.d.ts +38 -13
  243. package/loadbalancerIp.js +25 -0
  244. package/loadbalancerIp.js.map +1 -1
  245. package/loadbalancerRoute.d.ts +52 -6
  246. package/loadbalancerRoute.js +43 -0
  247. package/loadbalancerRoute.js.map +1 -1
  248. package/objectBucket.d.ts +174 -20
  249. package/objectBucket.js +145 -0
  250. package/objectBucket.js.map +1 -1
  251. package/objectBucketPolicy.d.ts +84 -0
  252. package/objectBucketPolicy.js +71 -0
  253. package/objectBucketPolicy.js.map +1 -0
  254. package/objectBucketWebsiteConfiguration.d.ts +166 -0
  255. package/objectBucketWebsiteConfiguration.js +137 -0
  256. package/objectBucketWebsiteConfiguration.js.map +1 -0
  257. package/package.json +2 -2
  258. package/package.json.dev +2 -2
  259. package/provider.d.ts +8 -0
  260. package/provider.js +1 -0
  261. package/provider.js.map +1 -1
  262. package/redisCluster.d.ts +150 -40
  263. package/redisCluster.js +84 -0
  264. package/redisCluster.js.map +1 -1
  265. package/registryNamespace.d.ts +45 -19
  266. package/registryNamespace.js +26 -0
  267. package/registryNamespace.js.map +1 -1
  268. package/types/input.d.ts +507 -21
  269. package/types/output.d.ts +730 -21
  270. package/vpcGatewayNetwork.d.ts +65 -27
  271. package/vpcGatewayNetwork.js +38 -0
  272. package/vpcGatewayNetwork.js.map +1 -1
  273. package/vpcPrivateNetwork.d.ts +40 -14
  274. package/vpcPrivateNetwork.js +26 -0
  275. package/vpcPrivateNetwork.js.map +1 -1
  276. package/vpcPublicGateway.d.ts +90 -27
  277. package/vpcPublicGateway.js +33 -0
  278. package/vpcPublicGateway.js.map +1 -1
  279. package/vpcPublicGatewayDhcp.d.ts +70 -62
  280. package/vpcPublicGatewayDhcp.js +23 -0
  281. package/vpcPublicGatewayDhcp.js.map +1 -1
  282. package/vpcPublicGatewayDhcpReservation.d.ts +74 -17
  283. package/vpcPublicGatewayDhcpReservation.js +59 -0
  284. package/vpcPublicGatewayDhcpReservation.js.map +1 -1
  285. package/vpcPublicGatewayIp.d.ts +50 -20
  286. package/vpcPublicGatewayIp.js +30 -0
  287. package/vpcPublicGatewayIp.js.map +1 -1
  288. package/vpcPublicGatewayPatRule.d.ts +65 -24
  289. package/vpcPublicGatewayPatRule.js +41 -0
  290. package/vpcPublicGatewayPatRule.js.map +1 -1
  291. package/iotRoute.d.ts +0 -129
  292. package/iotRoute.js +0 -69
  293. package/iotRoute.js.map +0 -1
@@ -1,4 +1,26 @@
1
1
  import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * Manages user SSH keys to access servers provisioned on Scaleway.
4
+ *
5
+ * ## Example Usage
6
+ *
7
+ * ```typescript
8
+ * import * as pulumi from "@pulumi/pulumi";
9
+ * import * as scaleway from "@pulumi/scaleway";
10
+ *
11
+ * const main = new scaleway.AccountSshKey("main", {
12
+ * publicKey: "<YOUR-PUBLIC-SSH-KEY>",
13
+ * });
14
+ * ```
15
+ *
16
+ * ## Import
17
+ *
18
+ * SSH keys can be imported using the `id`, e.g. bash
19
+ *
20
+ * ```sh
21
+ * $ pulumi import scaleway:index/accountSshKey:AccountSshKey main 11111111-1111-1111-1111-111111111111
22
+ * ```
23
+ */
2
24
  export declare class AccountSshKey extends pulumi.CustomResource {
3
25
  /**
4
26
  * Get an existing AccountSshKey resource's state with the given name, ID, and optional extra
@@ -16,19 +38,19 @@ export declare class AccountSshKey extends pulumi.CustomResource {
16
38
  */
17
39
  static isInstance(obj: any): obj is AccountSshKey;
18
40
  /**
19
- * The name of the SSH key
41
+ * The name of the SSH key.
20
42
  */
21
43
  readonly name: pulumi.Output<string>;
22
44
  /**
23
- * The organization_id you want to attach the resource to
45
+ * The organization ID the SSH key is associated with.
24
46
  */
25
47
  readonly organizationId: pulumi.Output<string>;
26
48
  /**
27
- * The project_id you want to attach the resource to
49
+ * `projectId`) The ID of the project the SSH key is associated with.
28
50
  */
29
51
  readonly projectId: pulumi.Output<string>;
30
52
  /**
31
- * The public SSH key
53
+ * The public SSH key to be added.
32
54
  */
33
55
  readonly publicKey: pulumi.Output<string>;
34
56
  /**
@@ -45,19 +67,19 @@ export declare class AccountSshKey extends pulumi.CustomResource {
45
67
  */
46
68
  export interface AccountSshKeyState {
47
69
  /**
48
- * The name of the SSH key
70
+ * The name of the SSH key.
49
71
  */
50
72
  name?: pulumi.Input<string>;
51
73
  /**
52
- * The organization_id you want to attach the resource to
74
+ * The organization ID the SSH key is associated with.
53
75
  */
54
76
  organizationId?: pulumi.Input<string>;
55
77
  /**
56
- * The project_id you want to attach the resource to
78
+ * `projectId`) The ID of the project the SSH key is associated with.
57
79
  */
58
80
  projectId?: pulumi.Input<string>;
59
81
  /**
60
- * The public SSH key
82
+ * The public SSH key to be added.
61
83
  */
62
84
  publicKey?: pulumi.Input<string>;
63
85
  }
@@ -66,15 +88,15 @@ export interface AccountSshKeyState {
66
88
  */
67
89
  export interface AccountSshKeyArgs {
68
90
  /**
69
- * The name of the SSH key
91
+ * The name of the SSH key.
70
92
  */
71
93
  name?: pulumi.Input<string>;
72
94
  /**
73
- * The project_id you want to attach the resource to
95
+ * `projectId`) The ID of the project the SSH key is associated with.
74
96
  */
75
97
  projectId?: pulumi.Input<string>;
76
98
  /**
77
- * The public SSH key
99
+ * The public SSH key to be added.
78
100
  */
79
101
  publicKey: pulumi.Input<string>;
80
102
  }
package/accountSshKey.js CHANGED
@@ -5,6 +5,28 @@ Object.defineProperty(exports, "__esModule", { value: true });
5
5
  exports.AccountSshKey = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("./utilities");
8
+ /**
9
+ * Manages user SSH keys to access servers provisioned on Scaleway.
10
+ *
11
+ * ## Example Usage
12
+ *
13
+ * ```typescript
14
+ * import * as pulumi from "@pulumi/pulumi";
15
+ * import * as scaleway from "@pulumi/scaleway";
16
+ *
17
+ * const main = new scaleway.AccountSshKey("main", {
18
+ * publicKey: "<YOUR-PUBLIC-SSH-KEY>",
19
+ * });
20
+ * ```
21
+ *
22
+ * ## Import
23
+ *
24
+ * SSH keys can be imported using the `id`, e.g. bash
25
+ *
26
+ * ```sh
27
+ * $ pulumi import scaleway:index/accountSshKey:AccountSshKey main 11111111-1111-1111-1111-111111111111
28
+ * ```
29
+ */
8
30
  class AccountSshKey extends pulumi.CustomResource {
9
31
  constructor(name, argsOrState, opts) {
10
32
  let resourceInputs = {};
@@ -1 +1 @@
1
- {"version":3,"file":"accountSshKey.js","sourceRoot":"","sources":["../accountSshKey.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC,MAAa,aAAc,SAAQ,MAAM,CAAC,cAAc;IAqDpD,YAAY,IAAY,EAAE,WAAoD,EAAE,IAAmC;QAC/G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA6C,CAAC;YAC5D,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;SACrE;aAAM;YACH,MAAM,IAAI,GAAG,WAA4C,CAAC;YAC1D,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,SAAS,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACtD,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,CAAC;aAC5D;YACD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,gBAAgB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACxD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,aAAa,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAClE,CAAC;IAzED;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA0B,EAAE,IAAmC;QACxH,OAAO,IAAI,aAAa,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACpE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,aAAa,CAAC,YAAY,CAAC;IAC9D,CAAC;;AA1BL,sCA2EC;AA7DG,gBAAgB;AACO,0BAAY,GAAG,4CAA4C,CAAC"}
1
+ {"version":3,"file":"accountSshKey.js","sourceRoot":"","sources":["../accountSshKey.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,MAAa,aAAc,SAAQ,MAAM,CAAC,cAAc;IAqDpD,YAAY,IAAY,EAAE,WAAoD,EAAE,IAAmC;QAC/G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA6C,CAAC;YAC5D,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;SACrE;aAAM;YACH,MAAM,IAAI,GAAG,WAA4C,CAAC;YAC1D,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,SAAS,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACtD,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,CAAC;aAC5D;YACD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,gBAAgB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACxD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,aAAa,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAClE,CAAC;IAzED;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA0B,EAAE,IAAmC;QACxH,OAAO,IAAI,aAAa,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACpE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,aAAa,CAAC,YAAY,CAAC;IAC9D,CAAC;;AA1BL,sCA2EC;AA7DG,gBAAgB;AACO,0BAAY,GAAG,4CAA4C,CAAC"}
@@ -1,4 +1,29 @@
1
1
  import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * Creates and manages Scaleway Apple silicon M1. For more information,
4
+ * see [the documentation](https://www.scaleway.com/en/docs/compute/apple-silicon/concepts).
5
+ *
6
+ * ## Examples
7
+ *
8
+ * ### Basic
9
+ *
10
+ * ```typescript
11
+ * import * as pulumi from "@pulumi/pulumi";
12
+ * import * as scaleway from "@pulumi/scaleway";
13
+ *
14
+ * const server = new scaleway.AppleSliconValleyServer("server", {
15
+ * type: "M1-M",
16
+ * });
17
+ * ```
18
+ *
19
+ * ## Import
20
+ *
21
+ * Instance servers can be imported using the `{zone}/{id}`, e.g. bash
22
+ *
23
+ * ```sh
24
+ * $ pulumi import scaleway:index/appleSliconValleyServer:AppleSliconValleyServer server fr-par-1/11111111-1111-1111-1111-111111111111
25
+ * ```
26
+ */
2
27
  export declare class AppleSliconValleyServer extends pulumi.CustomResource {
3
28
  /**
4
29
  * Get an existing AppleSliconValleyServer resource's state with the given name, ID, and optional extra
@@ -16,7 +41,7 @@ export declare class AppleSliconValleyServer extends pulumi.CustomResource {
16
41
  */
17
42
  static isInstance(obj: any): obj is AppleSliconValleyServer;
18
43
  /**
19
- * The date and time of the creation of the server
44
+ * The date and time of the creation of the Apple Silicon server.
20
45
  */
21
46
  readonly createdAt: pulumi.Output<string>;
22
47
  /**
@@ -24,39 +49,44 @@ export declare class AppleSliconValleyServer extends pulumi.CustomResource {
24
49
  */
25
50
  readonly deletableAt: pulumi.Output<string>;
26
51
  /**
27
- * IPv4 address of the server
52
+ * IPv4 address of the server (IPv4 address).
28
53
  */
29
54
  readonly ip: pulumi.Output<string>;
30
55
  /**
31
- * Name of the server
56
+ * The name of the server.
32
57
  */
33
58
  readonly name: pulumi.Output<string>;
34
59
  /**
35
- * The organization_id you want to attach the resource to
60
+ * The organization ID the server is associated with.
36
61
  */
37
62
  readonly organizationId: pulumi.Output<string>;
38
63
  /**
39
- * The project_id you want to attach the resource to
64
+ * `projectId`) The ID of the project the server is
65
+ * associated with.
40
66
  */
41
67
  readonly projectId: pulumi.Output<string>;
42
68
  /**
43
- * The state of the server
69
+ * The state of the server. Check the possible values on
70
+ * our [sdk](https://github.com/scaleway/scaleway-sdk-go/blob/master/api/applesilicon/v1alpha1/applesilicon_sdk.go#L103).
44
71
  */
45
72
  readonly state: pulumi.Output<string>;
46
73
  /**
47
- * Type of the server
74
+ * The commercial type of the server. You find all the available types on
75
+ * the [pricing page](https://www.scaleway.com/en/pricing/#apple-silicon). Updates to this field will recreate a new
76
+ * resource.
48
77
  */
49
78
  readonly type: pulumi.Output<string>;
50
79
  /**
51
- * The date and time of the last update of the server
80
+ * The date and time of the last update of the Apple Silicon server.
52
81
  */
53
82
  readonly updatedAt: pulumi.Output<string>;
54
83
  /**
55
- * VNC url use to connect remotely to the desktop GUI
84
+ * URL of the VNC.
56
85
  */
57
86
  readonly vncUrl: pulumi.Output<string>;
58
87
  /**
59
- * The zone you want to attach the resource to
88
+ * `zone`) The zone in which
89
+ * the server should be created.
60
90
  */
61
91
  readonly zone: pulumi.Output<string>;
62
92
  /**
@@ -73,7 +103,7 @@ export declare class AppleSliconValleyServer extends pulumi.CustomResource {
73
103
  */
74
104
  export interface AppleSliconValleyServerState {
75
105
  /**
76
- * The date and time of the creation of the server
106
+ * The date and time of the creation of the Apple Silicon server.
77
107
  */
78
108
  createdAt?: pulumi.Input<string>;
79
109
  /**
@@ -81,39 +111,44 @@ export interface AppleSliconValleyServerState {
81
111
  */
82
112
  deletableAt?: pulumi.Input<string>;
83
113
  /**
84
- * IPv4 address of the server
114
+ * IPv4 address of the server (IPv4 address).
85
115
  */
86
116
  ip?: pulumi.Input<string>;
87
117
  /**
88
- * Name of the server
118
+ * The name of the server.
89
119
  */
90
120
  name?: pulumi.Input<string>;
91
121
  /**
92
- * The organization_id you want to attach the resource to
122
+ * The organization ID the server is associated with.
93
123
  */
94
124
  organizationId?: pulumi.Input<string>;
95
125
  /**
96
- * The project_id you want to attach the resource to
126
+ * `projectId`) The ID of the project the server is
127
+ * associated with.
97
128
  */
98
129
  projectId?: pulumi.Input<string>;
99
130
  /**
100
- * The state of the server
131
+ * The state of the server. Check the possible values on
132
+ * our [sdk](https://github.com/scaleway/scaleway-sdk-go/blob/master/api/applesilicon/v1alpha1/applesilicon_sdk.go#L103).
101
133
  */
102
134
  state?: pulumi.Input<string>;
103
135
  /**
104
- * Type of the server
136
+ * The commercial type of the server. You find all the available types on
137
+ * the [pricing page](https://www.scaleway.com/en/pricing/#apple-silicon). Updates to this field will recreate a new
138
+ * resource.
105
139
  */
106
140
  type?: pulumi.Input<string>;
107
141
  /**
108
- * The date and time of the last update of the server
142
+ * The date and time of the last update of the Apple Silicon server.
109
143
  */
110
144
  updatedAt?: pulumi.Input<string>;
111
145
  /**
112
- * VNC url use to connect remotely to the desktop GUI
146
+ * URL of the VNC.
113
147
  */
114
148
  vncUrl?: pulumi.Input<string>;
115
149
  /**
116
- * The zone you want to attach the resource to
150
+ * `zone`) The zone in which
151
+ * the server should be created.
117
152
  */
118
153
  zone?: pulumi.Input<string>;
119
154
  }
@@ -122,19 +157,23 @@ export interface AppleSliconValleyServerState {
122
157
  */
123
158
  export interface AppleSliconValleyServerArgs {
124
159
  /**
125
- * Name of the server
160
+ * The name of the server.
126
161
  */
127
162
  name?: pulumi.Input<string>;
128
163
  /**
129
- * The project_id you want to attach the resource to
164
+ * `projectId`) The ID of the project the server is
165
+ * associated with.
130
166
  */
131
167
  projectId?: pulumi.Input<string>;
132
168
  /**
133
- * Type of the server
169
+ * The commercial type of the server. You find all the available types on
170
+ * the [pricing page](https://www.scaleway.com/en/pricing/#apple-silicon). Updates to this field will recreate a new
171
+ * resource.
134
172
  */
135
173
  type: pulumi.Input<string>;
136
174
  /**
137
- * The zone you want to attach the resource to
175
+ * `zone`) The zone in which
176
+ * the server should be created.
138
177
  */
139
178
  zone?: pulumi.Input<string>;
140
179
  }
@@ -5,6 +5,31 @@ Object.defineProperty(exports, "__esModule", { value: true });
5
5
  exports.AppleSliconValleyServer = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("./utilities");
8
+ /**
9
+ * Creates and manages Scaleway Apple silicon M1. For more information,
10
+ * see [the documentation](https://www.scaleway.com/en/docs/compute/apple-silicon/concepts).
11
+ *
12
+ * ## Examples
13
+ *
14
+ * ### Basic
15
+ *
16
+ * ```typescript
17
+ * import * as pulumi from "@pulumi/pulumi";
18
+ * import * as scaleway from "@pulumi/scaleway";
19
+ *
20
+ * const server = new scaleway.AppleSliconValleyServer("server", {
21
+ * type: "M1-M",
22
+ * });
23
+ * ```
24
+ *
25
+ * ## Import
26
+ *
27
+ * Instance servers can be imported using the `{zone}/{id}`, e.g. bash
28
+ *
29
+ * ```sh
30
+ * $ pulumi import scaleway:index/appleSliconValleyServer:AppleSliconValleyServer server fr-par-1/11111111-1111-1111-1111-111111111111
31
+ * ```
32
+ */
8
33
  class AppleSliconValleyServer extends pulumi.CustomResource {
9
34
  constructor(name, argsOrState, opts) {
10
35
  let resourceInputs = {};
@@ -1 +1 @@
1
- {"version":3,"file":"appleSliconValleyServer.js","sourceRoot":"","sources":["../appleSliconValleyServer.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"appleSliconValleyServer.js","sourceRoot":"","sources":["../appleSliconValleyServer.ts"],"names":[],"mappings":"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"}
@@ -1,5 +1,36 @@
1
1
  import * as pulumi from "@pulumi/pulumi";
2
2
  import { input as inputs, output as outputs } from "./types";
3
+ /**
4
+ * Creates and manages Scaleway Compute Baremetal servers. For more information, see [the documentation](https://developers.scaleway.com/en/products/baremetal/api).
5
+ *
6
+ * ## Examples
7
+ *
8
+ * ### Basic
9
+ *
10
+ * ```typescript
11
+ * import * as pulumi from "@pulumi/pulumi";
12
+ * import * as scaleway from "@pulumi/scaleway";
13
+ * import * as scaleway from "@pulumiverse/scaleway";
14
+ *
15
+ * const main = scaleway.getAccountSshKey({
16
+ * name: "main",
17
+ * });
18
+ * const base = new scaleway.BaremetalServer("base", {
19
+ * zone: "fr-par-2",
20
+ * offer: "GP-BM1-S",
21
+ * os: "d17d6872-0412-45d9-a198-af82c34d3c5c",
22
+ * sshKeyIds: [main.then(main => main.id)],
23
+ * });
24
+ * ```
25
+ *
26
+ * ## Import
27
+ *
28
+ * Baremetal servers can be imported using the `{zone}/{id}`, e.g. bash
29
+ *
30
+ * ```sh
31
+ * $ pulumi import scaleway:index/baremetalServer:BaremetalServer web fr-par-2/11111111-1111-1111-1111-111111111111
32
+ * ```
33
+ */
3
34
  export declare class BaremetalServer extends pulumi.CustomResource {
4
35
  /**
5
36
  * Get an existing BaremetalServer resource's state with the given name, ID, and optional extra
@@ -17,53 +48,63 @@ export declare class BaremetalServer extends pulumi.CustomResource {
17
48
  */
18
49
  static isInstance(obj: any): obj is BaremetalServer;
19
50
  /**
20
- * Some description to associate to the server, max 255 characters
51
+ * A description for the server.
21
52
  */
22
53
  readonly description: pulumi.Output<string | undefined>;
54
+ /**
55
+ * The domain of the server.
56
+ */
23
57
  readonly domain: pulumi.Output<string>;
24
58
  /**
25
- * Hostname of the server
59
+ * The hostname of the server.
26
60
  */
27
61
  readonly hostname: pulumi.Output<string | undefined>;
62
+ /**
63
+ * (List of) The IPs of the server.
64
+ */
28
65
  readonly ips: pulumi.Output<outputs.BaremetalServerIp[]>;
29
66
  /**
30
- * Name of the server
67
+ * The name of the server.
31
68
  */
32
69
  readonly name: pulumi.Output<string>;
33
70
  /**
34
- * ID or name of the server offer
71
+ * The offer name or UUID of the baremetal server.
72
+ * Use [this endpoint](https://developers.scaleway.com/en/products/baremetal/api/#get-334154) to find the right offer.
35
73
  */
36
74
  readonly offer: pulumi.Output<string>;
37
75
  /**
38
- * ID of the server offer
76
+ * The ID of the offer.
39
77
  */
40
78
  readonly offerId: pulumi.Output<string>;
41
79
  /**
42
- * The organization_id you want to attach the resource to
80
+ * The organization ID the server is associated with.
43
81
  */
44
82
  readonly organizationId: pulumi.Output<string>;
45
83
  /**
46
- * The base image of the server
84
+ * The UUID of the os to install on the server.
85
+ * Use [this endpoint](https://developers.scaleway.com/en/products/baremetal/api/#get-87598a) to find the right OS ID.
86
+ * > **Important:** Updates to `os` will reinstall the server.
47
87
  */
48
88
  readonly os: pulumi.Output<string>;
49
89
  /**
50
- * The base image ID of the server
90
+ * The ID of the os.
51
91
  */
52
92
  readonly osId: pulumi.Output<string>;
53
93
  /**
54
- * The project_id you want to attach the resource to
94
+ * `projectId`) The ID of the project the server is associated with.
55
95
  */
56
96
  readonly projectId: pulumi.Output<string>;
57
97
  /**
58
- * Array of SSH key IDs allowed to SSH to the server
98
+ * List of SSH keys allowed to connect to the server.
99
+ * > **Important:** Updates to `sshKeyIds` will reinstall the server.
59
100
  */
60
101
  readonly sshKeyIds: pulumi.Output<string[]>;
61
102
  /**
62
- * Array of tags to associate with the server
103
+ * The tags associated with the server.
63
104
  */
64
105
  readonly tags: pulumi.Output<string[] | undefined>;
65
106
  /**
66
- * The zone you want to attach the resource to
107
+ * `zone`) The zone in which the server should be created.
67
108
  */
68
109
  readonly zone: pulumi.Output<string>;
69
110
  /**
@@ -80,53 +121,63 @@ export declare class BaremetalServer extends pulumi.CustomResource {
80
121
  */
81
122
  export interface BaremetalServerState {
82
123
  /**
83
- * Some description to associate to the server, max 255 characters
124
+ * A description for the server.
84
125
  */
85
126
  description?: pulumi.Input<string>;
127
+ /**
128
+ * The domain of the server.
129
+ */
86
130
  domain?: pulumi.Input<string>;
87
131
  /**
88
- * Hostname of the server
132
+ * The hostname of the server.
89
133
  */
90
134
  hostname?: pulumi.Input<string>;
135
+ /**
136
+ * (List of) The IPs of the server.
137
+ */
91
138
  ips?: pulumi.Input<pulumi.Input<inputs.BaremetalServerIp>[]>;
92
139
  /**
93
- * Name of the server
140
+ * The name of the server.
94
141
  */
95
142
  name?: pulumi.Input<string>;
96
143
  /**
97
- * ID or name of the server offer
144
+ * The offer name or UUID of the baremetal server.
145
+ * Use [this endpoint](https://developers.scaleway.com/en/products/baremetal/api/#get-334154) to find the right offer.
98
146
  */
99
147
  offer?: pulumi.Input<string>;
100
148
  /**
101
- * ID of the server offer
149
+ * The ID of the offer.
102
150
  */
103
151
  offerId?: pulumi.Input<string>;
104
152
  /**
105
- * The organization_id you want to attach the resource to
153
+ * The organization ID the server is associated with.
106
154
  */
107
155
  organizationId?: pulumi.Input<string>;
108
156
  /**
109
- * The base image of the server
157
+ * The UUID of the os to install on the server.
158
+ * Use [this endpoint](https://developers.scaleway.com/en/products/baremetal/api/#get-87598a) to find the right OS ID.
159
+ * > **Important:** Updates to `os` will reinstall the server.
110
160
  */
111
161
  os?: pulumi.Input<string>;
112
162
  /**
113
- * The base image ID of the server
163
+ * The ID of the os.
114
164
  */
115
165
  osId?: pulumi.Input<string>;
116
166
  /**
117
- * The project_id you want to attach the resource to
167
+ * `projectId`) The ID of the project the server is associated with.
118
168
  */
119
169
  projectId?: pulumi.Input<string>;
120
170
  /**
121
- * Array of SSH key IDs allowed to SSH to the server
171
+ * List of SSH keys allowed to connect to the server.
172
+ * > **Important:** Updates to `sshKeyIds` will reinstall the server.
122
173
  */
123
174
  sshKeyIds?: pulumi.Input<pulumi.Input<string>[]>;
124
175
  /**
125
- * Array of tags to associate with the server
176
+ * The tags associated with the server.
126
177
  */
127
178
  tags?: pulumi.Input<pulumi.Input<string>[]>;
128
179
  /**
129
- * The zone you want to attach the resource to
180
+ * `zone`) The zone in which the server should be created.
130
181
  */
131
182
  zone?: pulumi.Input<string>;
132
183
  }
@@ -135,39 +186,43 @@ export interface BaremetalServerState {
135
186
  */
136
187
  export interface BaremetalServerArgs {
137
188
  /**
138
- * Some description to associate to the server, max 255 characters
189
+ * A description for the server.
139
190
  */
140
191
  description?: pulumi.Input<string>;
141
192
  /**
142
- * Hostname of the server
193
+ * The hostname of the server.
143
194
  */
144
195
  hostname?: pulumi.Input<string>;
145
196
  /**
146
- * Name of the server
197
+ * The name of the server.
147
198
  */
148
199
  name?: pulumi.Input<string>;
149
200
  /**
150
- * ID or name of the server offer
201
+ * The offer name or UUID of the baremetal server.
202
+ * Use [this endpoint](https://developers.scaleway.com/en/products/baremetal/api/#get-334154) to find the right offer.
151
203
  */
152
204
  offer: pulumi.Input<string>;
153
205
  /**
154
- * The base image of the server
206
+ * The UUID of the os to install on the server.
207
+ * Use [this endpoint](https://developers.scaleway.com/en/products/baremetal/api/#get-87598a) to find the right OS ID.
208
+ * > **Important:** Updates to `os` will reinstall the server.
155
209
  */
156
210
  os: pulumi.Input<string>;
157
211
  /**
158
- * The project_id you want to attach the resource to
212
+ * `projectId`) The ID of the project the server is associated with.
159
213
  */
160
214
  projectId?: pulumi.Input<string>;
161
215
  /**
162
- * Array of SSH key IDs allowed to SSH to the server
216
+ * List of SSH keys allowed to connect to the server.
217
+ * > **Important:** Updates to `sshKeyIds` will reinstall the server.
163
218
  */
164
219
  sshKeyIds: pulumi.Input<pulumi.Input<string>[]>;
165
220
  /**
166
- * Array of tags to associate with the server
221
+ * The tags associated with the server.
167
222
  */
168
223
  tags?: pulumi.Input<pulumi.Input<string>[]>;
169
224
  /**
170
- * The zone you want to attach the resource to
225
+ * `zone`) The zone in which the server should be created.
171
226
  */
172
227
  zone?: pulumi.Input<string>;
173
228
  }
@@ -5,6 +5,37 @@ Object.defineProperty(exports, "__esModule", { value: true });
5
5
  exports.BaremetalServer = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("./utilities");
8
+ /**
9
+ * Creates and manages Scaleway Compute Baremetal servers. For more information, see [the documentation](https://developers.scaleway.com/en/products/baremetal/api).
10
+ *
11
+ * ## Examples
12
+ *
13
+ * ### Basic
14
+ *
15
+ * ```typescript
16
+ * import * as pulumi from "@pulumi/pulumi";
17
+ * import * as scaleway from "@pulumi/scaleway";
18
+ * import * as scaleway from "@pulumiverse/scaleway";
19
+ *
20
+ * const main = scaleway.getAccountSshKey({
21
+ * name: "main",
22
+ * });
23
+ * const base = new scaleway.BaremetalServer("base", {
24
+ * zone: "fr-par-2",
25
+ * offer: "GP-BM1-S",
26
+ * os: "d17d6872-0412-45d9-a198-af82c34d3c5c",
27
+ * sshKeyIds: [main.then(main => main.id)],
28
+ * });
29
+ * ```
30
+ *
31
+ * ## Import
32
+ *
33
+ * Baremetal servers can be imported using the `{zone}/{id}`, e.g. bash
34
+ *
35
+ * ```sh
36
+ * $ pulumi import scaleway:index/baremetalServer:BaremetalServer web fr-par-2/11111111-1111-1111-1111-111111111111
37
+ * ```
38
+ */
8
39
  class BaremetalServer extends pulumi.CustomResource {
9
40
  constructor(name, argsOrState, opts) {
10
41
  let resourceInputs = {};
@@ -1 +1 @@
1
- {"version":3,"file":"baremetalServer.js","sourceRoot":"","sources":["../baremetalServer.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"baremetalServer.js","sourceRoot":"","sources":["../baremetalServer.ts"],"names":[],"mappings":"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"}