@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
@@ -0,0 +1,259 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "./types/input";
3
+ import * as outputs from "./types/output";
4
+ /**
5
+ * Provides a Scaleway Key Manager Key resource.\
6
+ * This resource allows you to create and manage cryptographic keys in Scaleway Key Manager (KMS).
7
+ *
8
+ * ## Example Usage
9
+ *
10
+ * ```typescript
11
+ * import * as pulumi from "@pulumi/pulumi";
12
+ * import * as scaleway from "@pulumiverse/scaleway";
13
+ *
14
+ * const main = new scaleway.KeyManagerKey("main", {
15
+ * name: "my-kms-key",
16
+ * region: "fr-par",
17
+ * projectId: "your-project-id",
18
+ * usage: "symmetric_encryption",
19
+ * description: "Key for encrypting secrets",
20
+ * tags: [
21
+ * "env:prod",
22
+ * "kms",
23
+ * ],
24
+ * unprotected: true,
25
+ * rotationPolicy: {
26
+ * rotationPeriod: "720h",
27
+ * },
28
+ * });
29
+ * ```
30
+ *
31
+ * ## Notes
32
+ *
33
+ * - **Protection**: By default, keys are protected and cannot be deleted. To allow deletion, set `unprotected = true` when creating the key.
34
+ * - **Rotation Policy**: The `rotationPolicy` block allows you to set automatic rotation for your key.
35
+ * - **Origin**: The `origin` argument is optional and defaults to `scalewayKms`. Use `external` if you want to import an external key (see Scaleway documentation for details).
36
+ * - **Project and Region**: If not specified, `projectId` and `region` will default to the provider configuration.
37
+ *
38
+ * ## Example: Asymmetric Key
39
+ *
40
+ * ```typescript
41
+ * import * as pulumi from "@pulumi/pulumi";
42
+ * import * as scaleway from "@pulumiverse/scaleway";
43
+ *
44
+ * const asym = new scaleway.KeyManagerKey("asym", {
45
+ * name: "asymmetric-key",
46
+ * region: "fr-par",
47
+ * usage: "asymmetric_signing",
48
+ * description: "Key for signing documents",
49
+ * unprotected: true,
50
+ * });
51
+ * ```
52
+ *
53
+ * ## Import
54
+ *
55
+ * You can import a key using its ID and region:
56
+ *
57
+ * ```sh
58
+ * $ pulumi import scaleway:index/keyManagerKey:KeyManagerKey main fr-par/11111111-2222-3333-4444-555555555555
59
+ * ```
60
+ */
61
+ export declare class KeyManagerKey extends pulumi.CustomResource {
62
+ /**
63
+ * Get an existing KeyManagerKey resource's state with the given name, ID, and optional extra
64
+ * properties used to qualify the lookup.
65
+ *
66
+ * @param name The _unique_ name of the resulting resource.
67
+ * @param id The _unique_ provider ID of the resource to lookup.
68
+ * @param state Any extra arguments used during the lookup.
69
+ * @param opts Optional settings to control the behavior of the CustomResource.
70
+ */
71
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: KeyManagerKeyState, opts?: pulumi.CustomResourceOptions): KeyManagerKey;
72
+ /**
73
+ * Returns true if the given object is an instance of KeyManagerKey. This is designed to work even
74
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
75
+ */
76
+ static isInstance(obj: any): obj is KeyManagerKey;
77
+ /**
78
+ * The date and time when the key was created.
79
+ */
80
+ readonly createdAt: pulumi.Output<string>;
81
+ /**
82
+ * – A description for the key.
83
+ */
84
+ readonly description: pulumi.Output<string | undefined>;
85
+ /**
86
+ * Whether the key is locked.
87
+ */
88
+ readonly locked: pulumi.Output<boolean>;
89
+ /**
90
+ * The name of the key.
91
+ */
92
+ readonly name: pulumi.Output<string>;
93
+ /**
94
+ * – The origin of the key. Valid values are:
95
+ */
96
+ readonly origin: pulumi.Output<string | undefined>;
97
+ /**
98
+ * – The ID of the project the key belongs to.
99
+ */
100
+ readonly projectId: pulumi.Output<string>;
101
+ /**
102
+ * Whether the key is protected from deletion.
103
+ */
104
+ readonly protected: pulumi.Output<boolean>;
105
+ /**
106
+ * The region in which to create the key (e.g., `fr-par`).
107
+ */
108
+ readonly region: pulumi.Output<string>;
109
+ /**
110
+ * The date and time when the key was last rotated.
111
+ */
112
+ readonly rotatedAt: pulumi.Output<string>;
113
+ /**
114
+ * The number of times the key has been rotated.
115
+ */
116
+ readonly rotationCount: pulumi.Output<number>;
117
+ /**
118
+ * – Rotation policy for the key:
119
+ */
120
+ readonly rotationPolicy: pulumi.Output<outputs.KeyManagerKeyRotationPolicy | undefined>;
121
+ /**
122
+ * The state of the key (e.g., `enabled`).
123
+ */
124
+ readonly state: pulumi.Output<string>;
125
+ /**
126
+ * – A list of tags to assign to the key.
127
+ */
128
+ readonly tags: pulumi.Output<string[] | undefined>;
129
+ /**
130
+ * – If `true`, the key can be deleted. Defaults to `false` (protected).
131
+ */
132
+ readonly unprotected: pulumi.Output<boolean | undefined>;
133
+ /**
134
+ * The date and time when the key was last updated.
135
+ */
136
+ readonly updatedAt: pulumi.Output<string>;
137
+ /**
138
+ * – The usage of the key. Valid values are:
139
+ */
140
+ readonly usage: pulumi.Output<string>;
141
+ /**
142
+ * Create a KeyManagerKey resource with the given unique name, arguments, and options.
143
+ *
144
+ * @param name The _unique_ name of the resource.
145
+ * @param args The arguments to use to populate this resource's properties.
146
+ * @param opts A bag of options that control this resource's behavior.
147
+ */
148
+ constructor(name: string, args: KeyManagerKeyArgs, opts?: pulumi.CustomResourceOptions);
149
+ }
150
+ /**
151
+ * Input properties used for looking up and filtering KeyManagerKey resources.
152
+ */
153
+ export interface KeyManagerKeyState {
154
+ /**
155
+ * The date and time when the key was created.
156
+ */
157
+ createdAt?: pulumi.Input<string>;
158
+ /**
159
+ * – A description for the key.
160
+ */
161
+ description?: pulumi.Input<string>;
162
+ /**
163
+ * Whether the key is locked.
164
+ */
165
+ locked?: pulumi.Input<boolean>;
166
+ /**
167
+ * The name of the key.
168
+ */
169
+ name?: pulumi.Input<string>;
170
+ /**
171
+ * – The origin of the key. Valid values are:
172
+ */
173
+ origin?: pulumi.Input<string>;
174
+ /**
175
+ * – The ID of the project the key belongs to.
176
+ */
177
+ projectId?: pulumi.Input<string>;
178
+ /**
179
+ * Whether the key is protected from deletion.
180
+ */
181
+ protected?: pulumi.Input<boolean>;
182
+ /**
183
+ * The region in which to create the key (e.g., `fr-par`).
184
+ */
185
+ region?: pulumi.Input<string>;
186
+ /**
187
+ * The date and time when the key was last rotated.
188
+ */
189
+ rotatedAt?: pulumi.Input<string>;
190
+ /**
191
+ * The number of times the key has been rotated.
192
+ */
193
+ rotationCount?: pulumi.Input<number>;
194
+ /**
195
+ * – Rotation policy for the key:
196
+ */
197
+ rotationPolicy?: pulumi.Input<inputs.KeyManagerKeyRotationPolicy>;
198
+ /**
199
+ * The state of the key (e.g., `enabled`).
200
+ */
201
+ state?: pulumi.Input<string>;
202
+ /**
203
+ * – A list of tags to assign to the key.
204
+ */
205
+ tags?: pulumi.Input<pulumi.Input<string>[]>;
206
+ /**
207
+ * – If `true`, the key can be deleted. Defaults to `false` (protected).
208
+ */
209
+ unprotected?: pulumi.Input<boolean>;
210
+ /**
211
+ * The date and time when the key was last updated.
212
+ */
213
+ updatedAt?: pulumi.Input<string>;
214
+ /**
215
+ * – The usage of the key. Valid values are:
216
+ */
217
+ usage?: pulumi.Input<string>;
218
+ }
219
+ /**
220
+ * The set of arguments for constructing a KeyManagerKey resource.
221
+ */
222
+ export interface KeyManagerKeyArgs {
223
+ /**
224
+ * – A description for the key.
225
+ */
226
+ description?: pulumi.Input<string>;
227
+ /**
228
+ * The name of the key.
229
+ */
230
+ name?: pulumi.Input<string>;
231
+ /**
232
+ * – The origin of the key. Valid values are:
233
+ */
234
+ origin?: pulumi.Input<string>;
235
+ /**
236
+ * – The ID of the project the key belongs to.
237
+ */
238
+ projectId?: pulumi.Input<string>;
239
+ /**
240
+ * The region in which to create the key (e.g., `fr-par`).
241
+ */
242
+ region?: pulumi.Input<string>;
243
+ /**
244
+ * – Rotation policy for the key:
245
+ */
246
+ rotationPolicy?: pulumi.Input<inputs.KeyManagerKeyRotationPolicy>;
247
+ /**
248
+ * – A list of tags to assign to the key.
249
+ */
250
+ tags?: pulumi.Input<pulumi.Input<string>[]>;
251
+ /**
252
+ * – If `true`, the key can be deleted. Defaults to `false` (protected).
253
+ */
254
+ unprotected?: pulumi.Input<boolean>;
255
+ /**
256
+ * – The usage of the key. Valid values are:
257
+ */
258
+ usage: pulumi.Input<string>;
259
+ }
@@ -0,0 +1,139 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by pulumi-language-nodejs. ***
3
+ // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.KeyManagerKey = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * Provides a Scaleway Key Manager Key resource.\
10
+ * This resource allows you to create and manage cryptographic keys in Scaleway Key Manager (KMS).
11
+ *
12
+ * ## Example Usage
13
+ *
14
+ * ```typescript
15
+ * import * as pulumi from "@pulumi/pulumi";
16
+ * import * as scaleway from "@pulumiverse/scaleway";
17
+ *
18
+ * const main = new scaleway.KeyManagerKey("main", {
19
+ * name: "my-kms-key",
20
+ * region: "fr-par",
21
+ * projectId: "your-project-id",
22
+ * usage: "symmetric_encryption",
23
+ * description: "Key for encrypting secrets",
24
+ * tags: [
25
+ * "env:prod",
26
+ * "kms",
27
+ * ],
28
+ * unprotected: true,
29
+ * rotationPolicy: {
30
+ * rotationPeriod: "720h",
31
+ * },
32
+ * });
33
+ * ```
34
+ *
35
+ * ## Notes
36
+ *
37
+ * - **Protection**: By default, keys are protected and cannot be deleted. To allow deletion, set `unprotected = true` when creating the key.
38
+ * - **Rotation Policy**: The `rotationPolicy` block allows you to set automatic rotation for your key.
39
+ * - **Origin**: The `origin` argument is optional and defaults to `scalewayKms`. Use `external` if you want to import an external key (see Scaleway documentation for details).
40
+ * - **Project and Region**: If not specified, `projectId` and `region` will default to the provider configuration.
41
+ *
42
+ * ## Example: Asymmetric Key
43
+ *
44
+ * ```typescript
45
+ * import * as pulumi from "@pulumi/pulumi";
46
+ * import * as scaleway from "@pulumiverse/scaleway";
47
+ *
48
+ * const asym = new scaleway.KeyManagerKey("asym", {
49
+ * name: "asymmetric-key",
50
+ * region: "fr-par",
51
+ * usage: "asymmetric_signing",
52
+ * description: "Key for signing documents",
53
+ * unprotected: true,
54
+ * });
55
+ * ```
56
+ *
57
+ * ## Import
58
+ *
59
+ * You can import a key using its ID and region:
60
+ *
61
+ * ```sh
62
+ * $ pulumi import scaleway:index/keyManagerKey:KeyManagerKey main fr-par/11111111-2222-3333-4444-555555555555
63
+ * ```
64
+ */
65
+ class KeyManagerKey extends pulumi.CustomResource {
66
+ /**
67
+ * Get an existing KeyManagerKey resource's state with the given name, ID, and optional extra
68
+ * properties used to qualify the lookup.
69
+ *
70
+ * @param name The _unique_ name of the resulting resource.
71
+ * @param id The _unique_ provider ID of the resource to lookup.
72
+ * @param state Any extra arguments used during the lookup.
73
+ * @param opts Optional settings to control the behavior of the CustomResource.
74
+ */
75
+ static get(name, id, state, opts) {
76
+ return new KeyManagerKey(name, state, Object.assign(Object.assign({}, opts), { id: id }));
77
+ }
78
+ /**
79
+ * Returns true if the given object is an instance of KeyManagerKey. This is designed to work even
80
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
81
+ */
82
+ static isInstance(obj) {
83
+ if (obj === undefined || obj === null) {
84
+ return false;
85
+ }
86
+ return obj['__pulumiType'] === KeyManagerKey.__pulumiType;
87
+ }
88
+ constructor(name, argsOrState, opts) {
89
+ let resourceInputs = {};
90
+ opts = opts || {};
91
+ if (opts.id) {
92
+ const state = argsOrState;
93
+ resourceInputs["createdAt"] = state ? state.createdAt : undefined;
94
+ resourceInputs["description"] = state ? state.description : undefined;
95
+ resourceInputs["locked"] = state ? state.locked : undefined;
96
+ resourceInputs["name"] = state ? state.name : undefined;
97
+ resourceInputs["origin"] = state ? state.origin : undefined;
98
+ resourceInputs["projectId"] = state ? state.projectId : undefined;
99
+ resourceInputs["protected"] = state ? state.protected : undefined;
100
+ resourceInputs["region"] = state ? state.region : undefined;
101
+ resourceInputs["rotatedAt"] = state ? state.rotatedAt : undefined;
102
+ resourceInputs["rotationCount"] = state ? state.rotationCount : undefined;
103
+ resourceInputs["rotationPolicy"] = state ? state.rotationPolicy : undefined;
104
+ resourceInputs["state"] = state ? state.state : undefined;
105
+ resourceInputs["tags"] = state ? state.tags : undefined;
106
+ resourceInputs["unprotected"] = state ? state.unprotected : undefined;
107
+ resourceInputs["updatedAt"] = state ? state.updatedAt : undefined;
108
+ resourceInputs["usage"] = state ? state.usage : undefined;
109
+ }
110
+ else {
111
+ const args = argsOrState;
112
+ if ((!args || args.usage === undefined) && !opts.urn) {
113
+ throw new Error("Missing required property 'usage'");
114
+ }
115
+ resourceInputs["description"] = args ? args.description : undefined;
116
+ resourceInputs["name"] = args ? args.name : undefined;
117
+ resourceInputs["origin"] = args ? args.origin : undefined;
118
+ resourceInputs["projectId"] = args ? args.projectId : undefined;
119
+ resourceInputs["region"] = args ? args.region : undefined;
120
+ resourceInputs["rotationPolicy"] = args ? args.rotationPolicy : undefined;
121
+ resourceInputs["tags"] = args ? args.tags : undefined;
122
+ resourceInputs["unprotected"] = args ? args.unprotected : undefined;
123
+ resourceInputs["usage"] = args ? args.usage : undefined;
124
+ resourceInputs["createdAt"] = undefined /*out*/;
125
+ resourceInputs["locked"] = undefined /*out*/;
126
+ resourceInputs["protected"] = undefined /*out*/;
127
+ resourceInputs["rotatedAt"] = undefined /*out*/;
128
+ resourceInputs["rotationCount"] = undefined /*out*/;
129
+ resourceInputs["state"] = undefined /*out*/;
130
+ resourceInputs["updatedAt"] = undefined /*out*/;
131
+ }
132
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
133
+ super(KeyManagerKey.__pulumiType, name, resourceInputs, opts);
134
+ }
135
+ }
136
+ exports.KeyManagerKey = KeyManagerKey;
137
+ /** @internal */
138
+ KeyManagerKey.__pulumiType = 'scaleway:index/keyManagerKey:KeyManagerKey';
139
+ //# sourceMappingURL=keyManagerKey.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"keyManagerKey.js","sourceRoot":"","sources":["../keyManagerKey.ts"],"names":[],"mappings":"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"}
@@ -15,7 +15,7 @@ import * as outputs from "../types/output";
15
15
  * const pn = new scaleway.network.PrivateNetwork("pn", {});
16
16
  * const cluster = new scaleway.kubernetes.Cluster("cluster", {
17
17
  * name: "tf-cluster",
18
- * version: "1.29.1",
18
+ * version: "1.32.3",
19
19
  * cni: "cilium",
20
20
  * privateNetworkId: pn.id,
21
21
  * deleteAdditionalResources: false,
@@ -37,7 +37,7 @@ import * as outputs from "../types/output";
37
37
  * const cluster = new scaleway.kubernetes.Cluster("cluster", {
38
38
  * name: "tf-cluster",
39
39
  * type: "multicloud",
40
- * version: "1.29.1",
40
+ * version: "1.32.3",
41
41
  * cni: "kilo",
42
42
  * deleteAdditionalResources: false,
43
43
  * });
@@ -62,7 +62,7 @@ import * as outputs from "../types/output";
62
62
  * const cluster = new scaleway.kubernetes.Cluster("cluster", {
63
63
  * name: "tf-cluster",
64
64
  * description: "cluster made in terraform",
65
- * version: "1.29.1",
65
+ * version: "1.32.3",
66
66
  * cni: "calico",
67
67
  * tags: ["terraform"],
68
68
  * privateNetworkId: pn.id,
@@ -19,7 +19,7 @@ const utilities = require("../utilities");
19
19
  * const pn = new scaleway.network.PrivateNetwork("pn", {});
20
20
  * const cluster = new scaleway.kubernetes.Cluster("cluster", {
21
21
  * name: "tf-cluster",
22
- * version: "1.29.1",
22
+ * version: "1.32.3",
23
23
  * cni: "cilium",
24
24
  * privateNetworkId: pn.id,
25
25
  * deleteAdditionalResources: false,
@@ -41,7 +41,7 @@ const utilities = require("../utilities");
41
41
  * const cluster = new scaleway.kubernetes.Cluster("cluster", {
42
42
  * name: "tf-cluster",
43
43
  * type: "multicloud",
44
- * version: "1.29.1",
44
+ * version: "1.32.3",
45
45
  * cni: "kilo",
46
46
  * deleteAdditionalResources: false,
47
47
  * });
@@ -66,7 +66,7 @@ const utilities = require("../utilities");
66
66
  * const cluster = new scaleway.kubernetes.Cluster("cluster", {
67
67
  * name: "tf-cluster",
68
68
  * description: "cluster made in terraform",
69
- * version: "1.29.1",
69
+ * version: "1.32.3",
70
70
  * cni: "calico",
71
71
  * tags: ["terraform"],
72
72
  * privateNetworkId: pn.id,
@@ -15,7 +15,7 @@ import * as outputs from "./types/output";
15
15
  * const pn = new scaleway.network.PrivateNetwork("pn", {});
16
16
  * const cluster = new scaleway.kubernetes.Cluster("cluster", {
17
17
  * name: "tf-cluster",
18
- * version: "1.29.1",
18
+ * version: "1.32.3",
19
19
  * cni: "cilium",
20
20
  * privateNetworkId: pn.id,
21
21
  * deleteAdditionalResources: false,
@@ -37,7 +37,7 @@ import * as outputs from "./types/output";
37
37
  * const cluster = new scaleway.kubernetes.Cluster("cluster", {
38
38
  * name: "tf-cluster",
39
39
  * type: "multicloud",
40
- * version: "1.29.1",
40
+ * version: "1.32.3",
41
41
  * cni: "kilo",
42
42
  * deleteAdditionalResources: false,
43
43
  * });
@@ -62,7 +62,7 @@ import * as outputs from "./types/output";
62
62
  * const cluster = new scaleway.kubernetes.Cluster("cluster", {
63
63
  * name: "tf-cluster",
64
64
  * description: "cluster made in terraform",
65
- * version: "1.29.1",
65
+ * version: "1.32.3",
66
66
  * cni: "calico",
67
67
  * tags: ["terraform"],
68
68
  * privateNetworkId: pn.id,
@@ -19,7 +19,7 @@ const utilities = require("./utilities");
19
19
  * const pn = new scaleway.network.PrivateNetwork("pn", {});
20
20
  * const cluster = new scaleway.kubernetes.Cluster("cluster", {
21
21
  * name: "tf-cluster",
22
- * version: "1.29.1",
22
+ * version: "1.32.3",
23
23
  * cni: "cilium",
24
24
  * privateNetworkId: pn.id,
25
25
  * deleteAdditionalResources: false,
@@ -41,7 +41,7 @@ const utilities = require("./utilities");
41
41
  * const cluster = new scaleway.kubernetes.Cluster("cluster", {
42
42
  * name: "tf-cluster",
43
43
  * type: "multicloud",
44
- * version: "1.29.1",
44
+ * version: "1.32.3",
45
45
  * cni: "kilo",
46
46
  * deleteAdditionalResources: false,
47
47
  * });
@@ -66,7 +66,7 @@ const utilities = require("./utilities");
66
66
  * const cluster = new scaleway.kubernetes.Cluster("cluster", {
67
67
  * name: "tf-cluster",
68
68
  * description: "cluster made in terraform",
69
- * version: "1.29.1",
69
+ * version: "1.32.3",
70
70
  * cni: "calico",
71
71
  * tags: ["terraform"],
72
72
  * privateNetworkId: pn.id,
@@ -165,6 +165,14 @@ export declare class LoadbalancerFrontend extends pulumi.CustomResource {
165
165
  * The rate limit for new connections established on this frontend. Use 0 value to disable, else value is connections per second.
166
166
  */
167
167
  readonly connectionRateLimit: pulumi.Output<number | undefined>;
168
+ /**
169
+ * The date and time the frontend was created.
170
+ */
171
+ readonly createdAt: pulumi.Output<string>;
172
+ /**
173
+ * Defines whether to enable access logs on the frontend.
174
+ */
175
+ readonly enableAccessLogs: pulumi.Output<boolean | undefined>;
168
176
  /**
169
177
  * Activates HTTP/3 protocol.
170
178
  */
@@ -190,6 +198,10 @@ export declare class LoadbalancerFrontend extends pulumi.CustomResource {
190
198
  * Maximum inactivity time on the client side. (e.g. `1s`)
191
199
  */
192
200
  readonly timeoutClient: pulumi.Output<string | undefined>;
201
+ /**
202
+ * The date and time the frontend resource was updated.
203
+ */
204
+ readonly updatedAt: pulumi.Output<string>;
193
205
  /**
194
206
  * Create a LoadbalancerFrontend resource with the given unique name, arguments, and options.
195
207
  *
@@ -230,6 +242,14 @@ export interface LoadbalancerFrontendState {
230
242
  * The rate limit for new connections established on this frontend. Use 0 value to disable, else value is connections per second.
231
243
  */
232
244
  connectionRateLimit?: pulumi.Input<number>;
245
+ /**
246
+ * The date and time the frontend was created.
247
+ */
248
+ createdAt?: pulumi.Input<string>;
249
+ /**
250
+ * Defines whether to enable access logs on the frontend.
251
+ */
252
+ enableAccessLogs?: pulumi.Input<boolean>;
233
253
  /**
234
254
  * Activates HTTP/3 protocol.
235
255
  */
@@ -255,6 +275,10 @@ export interface LoadbalancerFrontendState {
255
275
  * Maximum inactivity time on the client side. (e.g. `1s`)
256
276
  */
257
277
  timeoutClient?: pulumi.Input<string>;
278
+ /**
279
+ * The date and time the frontend resource was updated.
280
+ */
281
+ updatedAt?: pulumi.Input<string>;
258
282
  }
259
283
  /**
260
284
  * The set of arguments for constructing a LoadbalancerFrontend resource.
@@ -280,6 +304,10 @@ export interface LoadbalancerFrontendArgs {
280
304
  * The rate limit for new connections established on this frontend. Use 0 value to disable, else value is connections per second.
281
305
  */
282
306
  connectionRateLimit?: pulumi.Input<number>;
307
+ /**
308
+ * Defines whether to enable access logs on the frontend.
309
+ */
310
+ enableAccessLogs?: pulumi.Input<boolean>;
283
311
  /**
284
312
  * Activates HTTP/3 protocol.
285
313
  */
@@ -163,12 +163,15 @@ class LoadbalancerFrontend extends pulumi.CustomResource {
163
163
  resourceInputs["certificateId"] = state ? state.certificateId : undefined;
164
164
  resourceInputs["certificateIds"] = state ? state.certificateIds : undefined;
165
165
  resourceInputs["connectionRateLimit"] = state ? state.connectionRateLimit : undefined;
166
+ resourceInputs["createdAt"] = state ? state.createdAt : undefined;
167
+ resourceInputs["enableAccessLogs"] = state ? state.enableAccessLogs : undefined;
166
168
  resourceInputs["enableHttp3"] = state ? state.enableHttp3 : undefined;
167
169
  resourceInputs["externalAcls"] = state ? state.externalAcls : undefined;
168
170
  resourceInputs["inboundPort"] = state ? state.inboundPort : undefined;
169
171
  resourceInputs["lbId"] = state ? state.lbId : undefined;
170
172
  resourceInputs["name"] = state ? state.name : undefined;
171
173
  resourceInputs["timeoutClient"] = state ? state.timeoutClient : undefined;
174
+ resourceInputs["updatedAt"] = state ? state.updatedAt : undefined;
172
175
  }
173
176
  else {
174
177
  const args = argsOrState;
@@ -185,6 +188,7 @@ class LoadbalancerFrontend extends pulumi.CustomResource {
185
188
  resourceInputs["backendId"] = args ? args.backendId : undefined;
186
189
  resourceInputs["certificateIds"] = args ? args.certificateIds : undefined;
187
190
  resourceInputs["connectionRateLimit"] = args ? args.connectionRateLimit : undefined;
191
+ resourceInputs["enableAccessLogs"] = args ? args.enableAccessLogs : undefined;
188
192
  resourceInputs["enableHttp3"] = args ? args.enableHttp3 : undefined;
189
193
  resourceInputs["externalAcls"] = args ? args.externalAcls : undefined;
190
194
  resourceInputs["inboundPort"] = args ? args.inboundPort : undefined;
@@ -192,6 +196,8 @@ class LoadbalancerFrontend extends pulumi.CustomResource {
192
196
  resourceInputs["name"] = args ? args.name : undefined;
193
197
  resourceInputs["timeoutClient"] = args ? args.timeoutClient : undefined;
194
198
  resourceInputs["certificateId"] = undefined /*out*/;
199
+ resourceInputs["createdAt"] = undefined /*out*/;
200
+ resourceInputs["updatedAt"] = undefined /*out*/;
195
201
  }
196
202
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
197
203
  super(LoadbalancerFrontend.__pulumiType, name, resourceInputs, opts);
@@ -1 +1 @@
1
- {"version":3,"file":"loadbalancerFrontend.js","sourceRoot":"","sources":["../loadbalancerFrontend.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"loadbalancerFrontend.js","sourceRoot":"","sources":["../loadbalancerFrontend.ts"],"names":[],"mappings":"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"}