@pulumiverse/scaleway 1.40.0 → 1.41.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.
- package/appleSiliconServer.d.ts +3 -2
- package/appleSiliconServer.js +3 -2
- package/appleSiliconServer.js.map +1 -1
- package/applesilicon/server.d.ts +3 -2
- package/applesilicon/server.js +3 -2
- package/applesilicon/server.js.map +1 -1
- package/audittrail/getEvent.d.ts +106 -32
- package/audittrail/getEvent.js +106 -32
- package/audittrail/getEvent.js.map +1 -1
- package/cockpitAlertManager.d.ts +64 -13
- package/cockpitAlertManager.js +41 -6
- package/cockpitAlertManager.js.map +1 -1
- package/container.d.ts +36 -0
- package/container.js +36 -0
- package/container.js.map +1 -1
- package/containerToken.d.ts +3 -0
- package/containerToken.js +3 -0
- package/containerToken.js.map +1 -1
- package/containers/container.d.ts +36 -0
- package/containers/container.js +36 -0
- package/containers/container.js.map +1 -1
- package/containers/token.d.ts +3 -0
- package/containers/token.js +3 -0
- package/containers/token.js.map +1 -1
- package/databaseInstance.d.ts +2 -0
- package/databaseInstance.js +2 -0
- package/databaseInstance.js.map +1 -1
- package/databases/instance.d.ts +2 -0
- package/databases/instance.js +2 -0
- package/databases/instance.js.map +1 -1
- package/functionToken.d.ts +3 -0
- package/functionToken.js +3 -0
- package/functionToken.js.map +1 -1
- package/functions/token.d.ts +3 -0
- package/functions/token.js +3 -0
- package/functions/token.js.map +1 -1
- package/getK8sVersion.d.ts +10 -12
- package/getK8sVersion.js +10 -12
- package/getK8sVersion.js.map +1 -1
- package/getKubernetesCluster.d.ts +50 -2
- package/getKubernetesCluster.js +50 -2
- package/getKubernetesCluster.js.map +1 -1
- package/getKubernetesNodePool.d.ts +52 -2
- package/getKubernetesNodePool.js +52 -2
- package/getKubernetesNodePool.js.map +1 -1
- package/getSecretVersion.d.ts +2 -0
- package/getSecretVersion.js.map +1 -1
- package/instance/server.d.ts +1 -1
- package/instanceServer.d.ts +1 -1
- package/job/definition.d.ts +12 -0
- package/job/definition.js +2 -0
- package/job/definition.js.map +1 -1
- package/jobDefinition.d.ts +12 -0
- package/jobDefinition.js +2 -0
- package/jobDefinition.js.map +1 -1
- package/kubernetes/acl.d.ts +2 -4
- package/kubernetes/acl.js +2 -4
- package/kubernetes/acl.js.map +1 -1
- package/kubernetes/cluster.d.ts +57 -64
- package/kubernetes/cluster.js +57 -64
- package/kubernetes/cluster.js.map +1 -1
- package/kubernetes/getCluster.d.ts +50 -2
- package/kubernetes/getCluster.js +50 -2
- package/kubernetes/getCluster.js.map +1 -1
- package/kubernetes/getPool.d.ts +52 -2
- package/kubernetes/getPool.js +52 -2
- package/kubernetes/getPool.js.map +1 -1
- package/kubernetes/getVersion.d.ts +10 -12
- package/kubernetes/getVersion.js +10 -12
- package/kubernetes/getVersion.js.map +1 -1
- package/kubernetesCluster.d.ts +57 -64
- package/kubernetesCluster.js +57 -64
- package/kubernetesCluster.js.map +1 -1
- package/loadbalancerCertificate.d.ts +10 -0
- package/loadbalancerCertificate.js +10 -0
- package/loadbalancerCertificate.js.map +1 -1
- package/loadbalancers/certificate.d.ts +11 -0
- package/loadbalancers/certificate.js +11 -0
- package/loadbalancers/certificate.js.map +1 -1
- package/observability/alertManager.d.ts +64 -13
- package/observability/alertManager.js +41 -6
- package/observability/alertManager.js.map +1 -1
- package/observability/getPreconfiguredAlert.d.ts +185 -0
- package/observability/getPreconfiguredAlert.js +146 -0
- package/observability/getPreconfiguredAlert.js.map +1 -0
- package/observability/index.d.ts +3 -0
- package/observability/index.js +4 -1
- package/observability/index.js.map +1 -1
- package/package.json +2 -2
- package/secretVersion.d.ts +29 -5
- package/secretVersion.js +5 -4
- package/secretVersion.js.map +1 -1
- package/secrets/getVersion.d.ts +2 -0
- package/secrets/getVersion.js.map +1 -1
- package/secrets/version.d.ts +29 -5
- package/secrets/version.js +5 -4
- package/secrets/version.js.map +1 -1
- package/types/output.d.ts +52 -0
package/getK8sVersion.js
CHANGED
|
@@ -6,30 +6,29 @@ exports.getK8sVersionOutput = exports.getK8sVersion = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
*
|
|
10
|
-
*
|
|
9
|
+
* The `scaleway.kubernetes.getVersion` data source is used to retrieve information about a Kubernetes version.
|
|
10
|
+
*
|
|
11
|
+
* Refer to the Kubernetes [documentation](https://www.scaleway.com/en/docs/compute/kubernetes/) and [API documentation](https://www.scaleway.com/en/developers/api/kubernetes/) for more information.
|
|
11
12
|
*
|
|
12
13
|
* You can also use the [scaleway-cli](https://github.com/scaleway/scaleway-cli) with `scw k8s version list` to list all available versions.
|
|
13
14
|
*
|
|
14
15
|
* ## Example Usage
|
|
15
16
|
*
|
|
16
|
-
* ### Use the latest version
|
|
17
|
-
*
|
|
18
17
|
* ```typescript
|
|
19
18
|
* import * as pulumi from "@pulumi/pulumi";
|
|
20
19
|
* import * as scaleway from "@pulumiverse/scaleway";
|
|
21
20
|
*
|
|
21
|
+
* // Use the latest version
|
|
22
22
|
* const latest = scaleway.kubernetes.getVersion({
|
|
23
23
|
* name: "latest",
|
|
24
24
|
* });
|
|
25
25
|
* ```
|
|
26
26
|
*
|
|
27
|
-
* ### Use a specific version
|
|
28
|
-
*
|
|
29
27
|
* ```typescript
|
|
30
28
|
* import * as pulumi from "@pulumi/pulumi";
|
|
31
29
|
* import * as scaleway from "@pulumiverse/scaleway";
|
|
32
30
|
*
|
|
31
|
+
* // Use a specific version
|
|
33
32
|
* const byName = scaleway.kubernetes.getVersion({
|
|
34
33
|
* name: "1.26.0",
|
|
35
34
|
* });
|
|
@@ -46,30 +45,29 @@ function getK8sVersion(args, opts) {
|
|
|
46
45
|
}
|
|
47
46
|
exports.getK8sVersion = getK8sVersion;
|
|
48
47
|
/**
|
|
49
|
-
*
|
|
50
|
-
*
|
|
48
|
+
* The `scaleway.kubernetes.getVersion` data source is used to retrieve information about a Kubernetes version.
|
|
49
|
+
*
|
|
50
|
+
* Refer to the Kubernetes [documentation](https://www.scaleway.com/en/docs/compute/kubernetes/) and [API documentation](https://www.scaleway.com/en/developers/api/kubernetes/) for more information.
|
|
51
51
|
*
|
|
52
52
|
* You can also use the [scaleway-cli](https://github.com/scaleway/scaleway-cli) with `scw k8s version list` to list all available versions.
|
|
53
53
|
*
|
|
54
54
|
* ## Example Usage
|
|
55
55
|
*
|
|
56
|
-
* ### Use the latest version
|
|
57
|
-
*
|
|
58
56
|
* ```typescript
|
|
59
57
|
* import * as pulumi from "@pulumi/pulumi";
|
|
60
58
|
* import * as scaleway from "@pulumiverse/scaleway";
|
|
61
59
|
*
|
|
60
|
+
* // Use the latest version
|
|
62
61
|
* const latest = scaleway.kubernetes.getVersion({
|
|
63
62
|
* name: "latest",
|
|
64
63
|
* });
|
|
65
64
|
* ```
|
|
66
65
|
*
|
|
67
|
-
* ### Use a specific version
|
|
68
|
-
*
|
|
69
66
|
* ```typescript
|
|
70
67
|
* import * as pulumi from "@pulumi/pulumi";
|
|
71
68
|
* import * as scaleway from "@pulumiverse/scaleway";
|
|
72
69
|
*
|
|
70
|
+
* // Use a specific version
|
|
73
71
|
* const byName = scaleway.kubernetes.getVersion({
|
|
74
72
|
* name: "1.26.0",
|
|
75
73
|
* });
|
package/getK8sVersion.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getK8sVersion.js","sourceRoot":"","sources":["../getK8sVersion.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getK8sVersion.js","sourceRoot":"","sources":["../getK8sVersion.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,uIAAuI;AACvI,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAC9E,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,mJAAmJ,CAAC,CAAA;IACpK,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4CAA4C,EAAE;QACvE,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,sCAOC;AAwCD;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,uIAAuI;AACvI,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAAiC;IAChG,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,mJAAmJ,CAAC,CAAA;IACpK,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,4CAA4C,EAAE;QAC7E,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,kDAOC"}
|
|
@@ -1,7 +1,31 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import * as outputs from "./types/output";
|
|
3
3
|
/**
|
|
4
|
-
*
|
|
4
|
+
* The `scaleway.kubernetes.Cluster` data source is used to retrieve information about a Kubernetes Cluster.
|
|
5
|
+
*
|
|
6
|
+
* Refer to the Kubernetes [documentation](https://www.scaleway.com/en/docs/compute/kubernetes/) and [API documentation](https://www.scaleway.com/en/developers/api/kubernetes/) for more information.
|
|
7
|
+
*
|
|
8
|
+
* ## Example Usage
|
|
9
|
+
*
|
|
10
|
+
* ```typescript
|
|
11
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
12
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
13
|
+
*
|
|
14
|
+
* // Get info by cluster id
|
|
15
|
+
* const myKey = scaleway.kubernetes.getCluster({
|
|
16
|
+
* clusterId: "11111111-1111-1111-1111-111111111111",
|
|
17
|
+
* });
|
|
18
|
+
* ```
|
|
19
|
+
*
|
|
20
|
+
* ```typescript
|
|
21
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
22
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
23
|
+
*
|
|
24
|
+
* // Get info by cluster name
|
|
25
|
+
* const myKey = scaleway.kubernetes.getCluster({
|
|
26
|
+
* name: "my-cluster-name",
|
|
27
|
+
* });
|
|
28
|
+
* ```
|
|
5
29
|
*/
|
|
6
30
|
/** @deprecated scaleway.index/getkubernetescluster.getKubernetesCluster has been deprecated in favor of scaleway.kubernetes/getcluster.getCluster */
|
|
7
31
|
export declare function getKubernetesCluster(args?: GetKubernetesClusterArgs, opts?: pulumi.InvokeOptions): Promise<GetKubernetesClusterResult>;
|
|
@@ -117,7 +141,31 @@ export interface GetKubernetesClusterResult {
|
|
|
117
141
|
readonly wildcardDns: string;
|
|
118
142
|
}
|
|
119
143
|
/**
|
|
120
|
-
*
|
|
144
|
+
* The `scaleway.kubernetes.Cluster` data source is used to retrieve information about a Kubernetes Cluster.
|
|
145
|
+
*
|
|
146
|
+
* Refer to the Kubernetes [documentation](https://www.scaleway.com/en/docs/compute/kubernetes/) and [API documentation](https://www.scaleway.com/en/developers/api/kubernetes/) for more information.
|
|
147
|
+
*
|
|
148
|
+
* ## Example Usage
|
|
149
|
+
*
|
|
150
|
+
* ```typescript
|
|
151
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
152
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
153
|
+
*
|
|
154
|
+
* // Get info by cluster id
|
|
155
|
+
* const myKey = scaleway.kubernetes.getCluster({
|
|
156
|
+
* clusterId: "11111111-1111-1111-1111-111111111111",
|
|
157
|
+
* });
|
|
158
|
+
* ```
|
|
159
|
+
*
|
|
160
|
+
* ```typescript
|
|
161
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
162
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
163
|
+
*
|
|
164
|
+
* // Get info by cluster name
|
|
165
|
+
* const myKey = scaleway.kubernetes.getCluster({
|
|
166
|
+
* name: "my-cluster-name",
|
|
167
|
+
* });
|
|
168
|
+
* ```
|
|
121
169
|
*/
|
|
122
170
|
/** @deprecated scaleway.index/getkubernetescluster.getKubernetesCluster has been deprecated in favor of scaleway.kubernetes/getcluster.getCluster */
|
|
123
171
|
export declare function getKubernetesClusterOutput(args?: GetKubernetesClusterOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetKubernetesClusterResult>;
|
package/getKubernetesCluster.js
CHANGED
|
@@ -6,7 +6,31 @@ exports.getKubernetesClusterOutput = exports.getKubernetesCluster = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
*
|
|
9
|
+
* The `scaleway.kubernetes.Cluster` data source is used to retrieve information about a Kubernetes Cluster.
|
|
10
|
+
*
|
|
11
|
+
* Refer to the Kubernetes [documentation](https://www.scaleway.com/en/docs/compute/kubernetes/) and [API documentation](https://www.scaleway.com/en/developers/api/kubernetes/) for more information.
|
|
12
|
+
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
18
|
+
*
|
|
19
|
+
* // Get info by cluster id
|
|
20
|
+
* const myKey = scaleway.kubernetes.getCluster({
|
|
21
|
+
* clusterId: "11111111-1111-1111-1111-111111111111",
|
|
22
|
+
* });
|
|
23
|
+
* ```
|
|
24
|
+
*
|
|
25
|
+
* ```typescript
|
|
26
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
27
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
28
|
+
*
|
|
29
|
+
* // Get info by cluster name
|
|
30
|
+
* const myKey = scaleway.kubernetes.getCluster({
|
|
31
|
+
* name: "my-cluster-name",
|
|
32
|
+
* });
|
|
33
|
+
* ```
|
|
10
34
|
*/
|
|
11
35
|
/** @deprecated scaleway.index/getkubernetescluster.getKubernetesCluster has been deprecated in favor of scaleway.kubernetes/getcluster.getCluster */
|
|
12
36
|
function getKubernetesCluster(args, opts) {
|
|
@@ -22,7 +46,31 @@ function getKubernetesCluster(args, opts) {
|
|
|
22
46
|
}
|
|
23
47
|
exports.getKubernetesCluster = getKubernetesCluster;
|
|
24
48
|
/**
|
|
25
|
-
*
|
|
49
|
+
* The `scaleway.kubernetes.Cluster` data source is used to retrieve information about a Kubernetes Cluster.
|
|
50
|
+
*
|
|
51
|
+
* Refer to the Kubernetes [documentation](https://www.scaleway.com/en/docs/compute/kubernetes/) and [API documentation](https://www.scaleway.com/en/developers/api/kubernetes/) for more information.
|
|
52
|
+
*
|
|
53
|
+
* ## Example Usage
|
|
54
|
+
*
|
|
55
|
+
* ```typescript
|
|
56
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
57
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
58
|
+
*
|
|
59
|
+
* // Get info by cluster id
|
|
60
|
+
* const myKey = scaleway.kubernetes.getCluster({
|
|
61
|
+
* clusterId: "11111111-1111-1111-1111-111111111111",
|
|
62
|
+
* });
|
|
63
|
+
* ```
|
|
64
|
+
*
|
|
65
|
+
* ```typescript
|
|
66
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
67
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
68
|
+
*
|
|
69
|
+
* // Get info by cluster name
|
|
70
|
+
* const myKey = scaleway.kubernetes.getCluster({
|
|
71
|
+
* name: "my-cluster-name",
|
|
72
|
+
* });
|
|
73
|
+
* ```
|
|
26
74
|
*/
|
|
27
75
|
/** @deprecated scaleway.index/getkubernetescluster.getKubernetesCluster has been deprecated in favor of scaleway.kubernetes/getcluster.getCluster */
|
|
28
76
|
function getKubernetesClusterOutput(args, opts) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getKubernetesCluster.js","sourceRoot":"","sources":["../getKubernetesCluster.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getKubernetesCluster.js","sourceRoot":"","sources":["../getKubernetesCluster.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,qJAAqJ;AACrJ,SAAgB,oBAAoB,CAAC,IAA+B,EAAE,IAA2B;IAC7F,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,wKAAwK,CAAC,CAAA;IACzL,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0DAA0D,EAAE;QACrF,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,oDAUC;AAkHD;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,qJAAqJ;AACrJ,SAAgB,0BAA0B,CAAC,IAAqC,EAAE,IAAiC;IAC/G,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,wKAAwK,CAAC,CAAA;IACzL,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,0DAA0D,EAAE;QAC3F,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,gEAUC"}
|
|
@@ -1,7 +1,32 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import * as outputs from "./types/output";
|
|
3
3
|
/**
|
|
4
|
-
*
|
|
4
|
+
* The `scaleway.kubernetes.Pool` data source is used to retrieve information about a Kubernetes Cluster's Pool.
|
|
5
|
+
*
|
|
6
|
+
* Refer to the Kubernetes [documentation](https://www.scaleway.com/en/docs/compute/kubernetes/) and [API documentation](https://www.scaleway.com/en/developers/api/kubernetes/) for more information.
|
|
7
|
+
*
|
|
8
|
+
* ## Example Usage
|
|
9
|
+
*
|
|
10
|
+
* ```typescript
|
|
11
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
12
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
13
|
+
*
|
|
14
|
+
* // Get info by pool id
|
|
15
|
+
* const myKey = scaleway.kubernetes.getPool({
|
|
16
|
+
* poolId: "11111111-1111-1111-1111-111111111111",
|
|
17
|
+
* });
|
|
18
|
+
* ```
|
|
19
|
+
*
|
|
20
|
+
* ```typescript
|
|
21
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
22
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
23
|
+
*
|
|
24
|
+
* // Get info by pool name (need cluster_id)
|
|
25
|
+
* const myKey = scaleway.kubernetes.getPool({
|
|
26
|
+
* name: "my-pool-name",
|
|
27
|
+
* clusterId: "11111111-1111-1111-1111-111111111111",
|
|
28
|
+
* });
|
|
29
|
+
* ```
|
|
5
30
|
*/
|
|
6
31
|
/** @deprecated scaleway.index/getkubernetesnodepool.getKubernetesNodePool has been deprecated in favor of scaleway.kubernetes/getpool.getPool */
|
|
7
32
|
export declare function getKubernetesNodePool(args?: GetKubernetesNodePoolArgs, opts?: pulumi.InvokeOptions): Promise<GetKubernetesNodePoolResult>;
|
|
@@ -114,7 +139,32 @@ export interface GetKubernetesNodePoolResult {
|
|
|
114
139
|
readonly zone: string;
|
|
115
140
|
}
|
|
116
141
|
/**
|
|
117
|
-
*
|
|
142
|
+
* The `scaleway.kubernetes.Pool` data source is used to retrieve information about a Kubernetes Cluster's Pool.
|
|
143
|
+
*
|
|
144
|
+
* Refer to the Kubernetes [documentation](https://www.scaleway.com/en/docs/compute/kubernetes/) and [API documentation](https://www.scaleway.com/en/developers/api/kubernetes/) for more information.
|
|
145
|
+
*
|
|
146
|
+
* ## Example Usage
|
|
147
|
+
*
|
|
148
|
+
* ```typescript
|
|
149
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
150
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
151
|
+
*
|
|
152
|
+
* // Get info by pool id
|
|
153
|
+
* const myKey = scaleway.kubernetes.getPool({
|
|
154
|
+
* poolId: "11111111-1111-1111-1111-111111111111",
|
|
155
|
+
* });
|
|
156
|
+
* ```
|
|
157
|
+
*
|
|
158
|
+
* ```typescript
|
|
159
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
160
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
161
|
+
*
|
|
162
|
+
* // Get info by pool name (need cluster_id)
|
|
163
|
+
* const myKey = scaleway.kubernetes.getPool({
|
|
164
|
+
* name: "my-pool-name",
|
|
165
|
+
* clusterId: "11111111-1111-1111-1111-111111111111",
|
|
166
|
+
* });
|
|
167
|
+
* ```
|
|
118
168
|
*/
|
|
119
169
|
/** @deprecated scaleway.index/getkubernetesnodepool.getKubernetesNodePool has been deprecated in favor of scaleway.kubernetes/getpool.getPool */
|
|
120
170
|
export declare function getKubernetesNodePoolOutput(args?: GetKubernetesNodePoolOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetKubernetesNodePoolResult>;
|
package/getKubernetesNodePool.js
CHANGED
|
@@ -6,7 +6,32 @@ exports.getKubernetesNodePoolOutput = exports.getKubernetesNodePool = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
*
|
|
9
|
+
* The `scaleway.kubernetes.Pool` data source is used to retrieve information about a Kubernetes Cluster's Pool.
|
|
10
|
+
*
|
|
11
|
+
* Refer to the Kubernetes [documentation](https://www.scaleway.com/en/docs/compute/kubernetes/) and [API documentation](https://www.scaleway.com/en/developers/api/kubernetes/) for more information.
|
|
12
|
+
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
18
|
+
*
|
|
19
|
+
* // Get info by pool id
|
|
20
|
+
* const myKey = scaleway.kubernetes.getPool({
|
|
21
|
+
* poolId: "11111111-1111-1111-1111-111111111111",
|
|
22
|
+
* });
|
|
23
|
+
* ```
|
|
24
|
+
*
|
|
25
|
+
* ```typescript
|
|
26
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
27
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
28
|
+
*
|
|
29
|
+
* // Get info by pool name (need cluster_id)
|
|
30
|
+
* const myKey = scaleway.kubernetes.getPool({
|
|
31
|
+
* name: "my-pool-name",
|
|
32
|
+
* clusterId: "11111111-1111-1111-1111-111111111111",
|
|
33
|
+
* });
|
|
34
|
+
* ```
|
|
10
35
|
*/
|
|
11
36
|
/** @deprecated scaleway.index/getkubernetesnodepool.getKubernetesNodePool has been deprecated in favor of scaleway.kubernetes/getpool.getPool */
|
|
12
37
|
function getKubernetesNodePool(args, opts) {
|
|
@@ -23,7 +48,32 @@ function getKubernetesNodePool(args, opts) {
|
|
|
23
48
|
}
|
|
24
49
|
exports.getKubernetesNodePool = getKubernetesNodePool;
|
|
25
50
|
/**
|
|
26
|
-
*
|
|
51
|
+
* The `scaleway.kubernetes.Pool` data source is used to retrieve information about a Kubernetes Cluster's Pool.
|
|
52
|
+
*
|
|
53
|
+
* Refer to the Kubernetes [documentation](https://www.scaleway.com/en/docs/compute/kubernetes/) and [API documentation](https://www.scaleway.com/en/developers/api/kubernetes/) for more information.
|
|
54
|
+
*
|
|
55
|
+
* ## Example Usage
|
|
56
|
+
*
|
|
57
|
+
* ```typescript
|
|
58
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
59
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
60
|
+
*
|
|
61
|
+
* // Get info by pool id
|
|
62
|
+
* const myKey = scaleway.kubernetes.getPool({
|
|
63
|
+
* poolId: "11111111-1111-1111-1111-111111111111",
|
|
64
|
+
* });
|
|
65
|
+
* ```
|
|
66
|
+
*
|
|
67
|
+
* ```typescript
|
|
68
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
69
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
70
|
+
*
|
|
71
|
+
* // Get info by pool name (need cluster_id)
|
|
72
|
+
* const myKey = scaleway.kubernetes.getPool({
|
|
73
|
+
* name: "my-pool-name",
|
|
74
|
+
* clusterId: "11111111-1111-1111-1111-111111111111",
|
|
75
|
+
* });
|
|
76
|
+
* ```
|
|
27
77
|
*/
|
|
28
78
|
/** @deprecated scaleway.index/getkubernetesnodepool.getKubernetesNodePool has been deprecated in favor of scaleway.kubernetes/getpool.getPool */
|
|
29
79
|
function getKubernetesNodePoolOutput(args, opts) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getKubernetesNodePool.js","sourceRoot":"","sources":["../getKubernetesNodePool.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getKubernetesNodePool.js","sourceRoot":"","sources":["../getKubernetesNodePool.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AACH,iJAAiJ;AACjJ,SAAgB,qBAAqB,CAAC,IAAgC,EAAE,IAA2B;IAC/F,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,qKAAqK,CAAC,CAAA;IACtL,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4DAA4D,EAAE;QACvF,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,sDAWC;AA6GD;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AACH,iJAAiJ;AACjJ,SAAgB,2BAA2B,CAAC,IAAsC,EAAE,IAAiC;IACjH,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,qKAAqK,CAAC,CAAA;IACtL,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,4DAA4D,EAAE;QAC7F,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,kEAWC"}
|
package/getSecretVersion.d.ts
CHANGED
|
@@ -93,6 +93,8 @@ export interface GetSecretVersionResult {
|
|
|
93
93
|
* The data payload of the secret version. This is a sensitive attribute containing the secret value. Learn more in the [data section](https://www.terraform.io/#data-information).
|
|
94
94
|
*/
|
|
95
95
|
readonly data: string;
|
|
96
|
+
readonly dataWo: string;
|
|
97
|
+
readonly dataWoVersion: number;
|
|
96
98
|
/**
|
|
97
99
|
* (Optional) The description of the secret version (e.g. `my-new-description`).
|
|
98
100
|
*/
|
package/getSecretVersion.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getSecretVersion.js","sourceRoot":"","sources":["../getSecretVersion.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuDG;AACH,0IAA0I;AAC1I,SAAgB,gBAAgB,CAAC,IAA2B,EAAE,IAA2B;IACrF,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,yJAAyJ,CAAC,CAAA;IAC1K,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kDAAkD,EAAE;QAC7E,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,4CAYC;
|
|
1
|
+
{"version":3,"file":"getSecretVersion.js","sourceRoot":"","sources":["../getSecretVersion.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuDG;AACH,0IAA0I;AAC1I,SAAgB,gBAAgB,CAAC,IAA2B,EAAE,IAA2B;IACrF,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,yJAAyJ,CAAC,CAAA;IAC1K,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kDAAkD,EAAE;QAC7E,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,4CAYC;AAgED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuDG;AACH,0IAA0I;AAC1I,SAAgB,sBAAsB,CAAC,IAAiC,EAAE,IAAiC;IACvG,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,yJAAyJ,CAAC,CAAA;IAC1K,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,kDAAkD,EAAE;QACnF,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,wDAYC"}
|
package/instance/server.d.ts
CHANGED
|
@@ -354,7 +354,7 @@ export declare class Server extends pulumi.CustomResource {
|
|
|
354
354
|
/**
|
|
355
355
|
* The state of the server. Possible values are: `started`, `stopped` or `standby`.
|
|
356
356
|
*/
|
|
357
|
-
readonly state: pulumi.Output<string
|
|
357
|
+
readonly state: pulumi.Output<string>;
|
|
358
358
|
/**
|
|
359
359
|
* The tags associated with the server.
|
|
360
360
|
*/
|
package/instanceServer.d.ts
CHANGED
|
@@ -356,7 +356,7 @@ export declare class InstanceServer extends pulumi.CustomResource {
|
|
|
356
356
|
/**
|
|
357
357
|
* The state of the server. Possible values are: `started`, `stopped` or `standby`.
|
|
358
358
|
*/
|
|
359
|
-
readonly state: pulumi.Output<string
|
|
359
|
+
readonly state: pulumi.Output<string>;
|
|
360
360
|
/**
|
|
361
361
|
* The tags associated with the server.
|
|
362
362
|
*/
|
package/job/definition.d.ts
CHANGED
|
@@ -112,6 +112,10 @@ export declare class Definition extends pulumi.CustomResource {
|
|
|
112
112
|
* The uri of the container image that will be used for the job run.
|
|
113
113
|
*/
|
|
114
114
|
readonly imageUri: pulumi.Output<string | undefined>;
|
|
115
|
+
/**
|
|
116
|
+
* The local storage capacity of the job in MiB.
|
|
117
|
+
*/
|
|
118
|
+
readonly localStorageCapacity: pulumi.Output<number | undefined>;
|
|
115
119
|
/**
|
|
116
120
|
* The memory computing resources in MB to allocate to each container running the job.
|
|
117
121
|
*/
|
|
@@ -175,6 +179,10 @@ export interface DefinitionState {
|
|
|
175
179
|
* The uri of the container image that will be used for the job run.
|
|
176
180
|
*/
|
|
177
181
|
imageUri?: pulumi.Input<string>;
|
|
182
|
+
/**
|
|
183
|
+
* The local storage capacity of the job in MiB.
|
|
184
|
+
*/
|
|
185
|
+
localStorageCapacity?: pulumi.Input<number>;
|
|
178
186
|
/**
|
|
179
187
|
* The memory computing resources in MB to allocate to each container running the job.
|
|
180
188
|
*/
|
|
@@ -230,6 +238,10 @@ export interface DefinitionArgs {
|
|
|
230
238
|
* The uri of the container image that will be used for the job run.
|
|
231
239
|
*/
|
|
232
240
|
imageUri?: pulumi.Input<string>;
|
|
241
|
+
/**
|
|
242
|
+
* The local storage capacity of the job in MiB.
|
|
243
|
+
*/
|
|
244
|
+
localStorageCapacity?: pulumi.Input<number>;
|
|
233
245
|
/**
|
|
234
246
|
* The memory computing resources in MB to allocate to each container running the job.
|
|
235
247
|
*/
|
package/job/definition.js
CHANGED
|
@@ -108,6 +108,7 @@ class Definition extends pulumi.CustomResource {
|
|
|
108
108
|
resourceInputs["description"] = state?.description;
|
|
109
109
|
resourceInputs["env"] = state?.env;
|
|
110
110
|
resourceInputs["imageUri"] = state?.imageUri;
|
|
111
|
+
resourceInputs["localStorageCapacity"] = state?.localStorageCapacity;
|
|
111
112
|
resourceInputs["memoryLimit"] = state?.memoryLimit;
|
|
112
113
|
resourceInputs["name"] = state?.name;
|
|
113
114
|
resourceInputs["projectId"] = state?.projectId;
|
|
@@ -129,6 +130,7 @@ class Definition extends pulumi.CustomResource {
|
|
|
129
130
|
resourceInputs["description"] = args?.description;
|
|
130
131
|
resourceInputs["env"] = args?.env;
|
|
131
132
|
resourceInputs["imageUri"] = args?.imageUri;
|
|
133
|
+
resourceInputs["localStorageCapacity"] = args?.localStorageCapacity;
|
|
132
134
|
resourceInputs["memoryLimit"] = args?.memoryLimit;
|
|
133
135
|
resourceInputs["name"] = args?.name;
|
|
134
136
|
resourceInputs["projectId"] = args?.projectId;
|
package/job/definition.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"definition.js","sourceRoot":"","sources":["../../job/definition.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoEG;AACH,MAAa,UAAW,SAAQ,MAAM,CAAC,cAAc;IACjD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAuB,EAAE,IAAmC;QACrH,OAAO,IAAI,UAAU,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACjE,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,UAAU,CAAC,YAAY,CAAC;IAC3D,CAAC;
|
|
1
|
+
{"version":3,"file":"definition.js","sourceRoot":"","sources":["../../job/definition.ts"],"names":[],"mappings":"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"}
|
package/jobDefinition.d.ts
CHANGED
|
@@ -114,6 +114,10 @@ export declare class JobDefinition extends pulumi.CustomResource {
|
|
|
114
114
|
* The uri of the container image that will be used for the job run.
|
|
115
115
|
*/
|
|
116
116
|
readonly imageUri: pulumi.Output<string | undefined>;
|
|
117
|
+
/**
|
|
118
|
+
* The local storage capacity of the job in MiB.
|
|
119
|
+
*/
|
|
120
|
+
readonly localStorageCapacity: pulumi.Output<number | undefined>;
|
|
117
121
|
/**
|
|
118
122
|
* The memory computing resources in MB to allocate to each container running the job.
|
|
119
123
|
*/
|
|
@@ -178,6 +182,10 @@ export interface JobDefinitionState {
|
|
|
178
182
|
* The uri of the container image that will be used for the job run.
|
|
179
183
|
*/
|
|
180
184
|
imageUri?: pulumi.Input<string>;
|
|
185
|
+
/**
|
|
186
|
+
* The local storage capacity of the job in MiB.
|
|
187
|
+
*/
|
|
188
|
+
localStorageCapacity?: pulumi.Input<number>;
|
|
181
189
|
/**
|
|
182
190
|
* The memory computing resources in MB to allocate to each container running the job.
|
|
183
191
|
*/
|
|
@@ -233,6 +241,10 @@ export interface JobDefinitionArgs {
|
|
|
233
241
|
* The uri of the container image that will be used for the job run.
|
|
234
242
|
*/
|
|
235
243
|
imageUri?: pulumi.Input<string>;
|
|
244
|
+
/**
|
|
245
|
+
* The local storage capacity of the job in MiB.
|
|
246
|
+
*/
|
|
247
|
+
localStorageCapacity?: pulumi.Input<number>;
|
|
236
248
|
/**
|
|
237
249
|
* The memory computing resources in MB to allocate to each container running the job.
|
|
238
250
|
*/
|
package/jobDefinition.js
CHANGED
|
@@ -113,6 +113,7 @@ class JobDefinition extends pulumi.CustomResource {
|
|
|
113
113
|
resourceInputs["description"] = state?.description;
|
|
114
114
|
resourceInputs["env"] = state?.env;
|
|
115
115
|
resourceInputs["imageUri"] = state?.imageUri;
|
|
116
|
+
resourceInputs["localStorageCapacity"] = state?.localStorageCapacity;
|
|
116
117
|
resourceInputs["memoryLimit"] = state?.memoryLimit;
|
|
117
118
|
resourceInputs["name"] = state?.name;
|
|
118
119
|
resourceInputs["projectId"] = state?.projectId;
|
|
@@ -134,6 +135,7 @@ class JobDefinition extends pulumi.CustomResource {
|
|
|
134
135
|
resourceInputs["description"] = args?.description;
|
|
135
136
|
resourceInputs["env"] = args?.env;
|
|
136
137
|
resourceInputs["imageUri"] = args?.imageUri;
|
|
138
|
+
resourceInputs["localStorageCapacity"] = args?.localStorageCapacity;
|
|
137
139
|
resourceInputs["memoryLimit"] = args?.memoryLimit;
|
|
138
140
|
resourceInputs["name"] = args?.name;
|
|
139
141
|
resourceInputs["projectId"] = args?.projectId;
|
package/jobDefinition.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"jobDefinition.js","sourceRoot":"","sources":["../jobDefinition.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsEG;AACH,MAAa,aAAc,SAAQ,MAAM,CAAC,cAAc;IACpD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA0B,EAAE,IAAmC;QACxH,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,4IAA4I,CAAC,CAAA;QAC7J,OAAO,IAAI,aAAa,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,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;
|
|
1
|
+
{"version":3,"file":"jobDefinition.js","sourceRoot":"","sources":["../jobDefinition.ts"],"names":[],"mappings":"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"}
|
package/kubernetes/acl.d.ts
CHANGED
|
@@ -4,12 +4,11 @@ import * as outputs from "../types/output";
|
|
|
4
4
|
/**
|
|
5
5
|
* ## Example Usage
|
|
6
6
|
*
|
|
7
|
-
* ### Basic
|
|
8
|
-
*
|
|
9
7
|
* ```typescript
|
|
10
8
|
* import * as pulumi from "@pulumi/pulumi";
|
|
11
9
|
* import * as scaleway from "@pulumiverse/scaleway";
|
|
12
10
|
*
|
|
11
|
+
* // Basic ACL usage
|
|
13
12
|
* const aclBasic = new scaleway.network.PrivateNetwork("acl_basic", {});
|
|
14
13
|
* const aclBasicCluster = new scaleway.kubernetes.Cluster("acl_basic", {
|
|
15
14
|
* name: "acl-basic",
|
|
@@ -33,12 +32,11 @@ import * as outputs from "../types/output";
|
|
|
33
32
|
* });
|
|
34
33
|
* ```
|
|
35
34
|
*
|
|
36
|
-
* ### Full-isolation
|
|
37
|
-
*
|
|
38
35
|
* ```typescript
|
|
39
36
|
* import * as pulumi from "@pulumi/pulumi";
|
|
40
37
|
* import * as scaleway from "@pulumiverse/scaleway";
|
|
41
38
|
*
|
|
39
|
+
* // Full isolation example
|
|
42
40
|
* const aclBasic = new scaleway.network.PrivateNetwork("acl_basic", {});
|
|
43
41
|
* const aclBasicCluster = new scaleway.kubernetes.Cluster("acl_basic", {
|
|
44
42
|
* name: "acl-basic",
|
package/kubernetes/acl.js
CHANGED
|
@@ -8,12 +8,11 @@ const utilities = require("../utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* ## Example Usage
|
|
10
10
|
*
|
|
11
|
-
* ### Basic
|
|
12
|
-
*
|
|
13
11
|
* ```typescript
|
|
14
12
|
* import * as pulumi from "@pulumi/pulumi";
|
|
15
13
|
* import * as scaleway from "@pulumiverse/scaleway";
|
|
16
14
|
*
|
|
15
|
+
* // Basic ACL usage
|
|
17
16
|
* const aclBasic = new scaleway.network.PrivateNetwork("acl_basic", {});
|
|
18
17
|
* const aclBasicCluster = new scaleway.kubernetes.Cluster("acl_basic", {
|
|
19
18
|
* name: "acl-basic",
|
|
@@ -37,12 +36,11 @@ const utilities = require("../utilities");
|
|
|
37
36
|
* });
|
|
38
37
|
* ```
|
|
39
38
|
*
|
|
40
|
-
* ### Full-isolation
|
|
41
|
-
*
|
|
42
39
|
* ```typescript
|
|
43
40
|
* import * as pulumi from "@pulumi/pulumi";
|
|
44
41
|
* import * as scaleway from "@pulumiverse/scaleway";
|
|
45
42
|
*
|
|
43
|
+
* // Full isolation example
|
|
46
44
|
* const aclBasic = new scaleway.network.PrivateNetwork("acl_basic", {});
|
|
47
45
|
* const aclBasicCluster = new scaleway.kubernetes.Cluster("acl_basic", {
|
|
48
46
|
* name: "acl-basic",
|
package/kubernetes/acl.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"acl.js","sourceRoot":"","sources":["../../kubernetes/acl.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"acl.js","sourceRoot":"","sources":["../../kubernetes/acl.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2DG;AACH,MAAa,GAAI,SAAQ,MAAM,CAAC,cAAc;IAC1C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAgB,EAAE,IAAmC;QAC9G,OAAO,IAAI,GAAG,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC1D,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,GAAG,CAAC,YAAY,CAAC;IACpD,CAAC;IAiCD,YAAY,IAAY,EAAE,WAAgC,EAAE,IAAmC;QAC3F,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAmC,CAAC;YAClD,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;SAC5C;aAAM;YACH,MAAM,IAAI,GAAG,WAAkC,CAAC;YAChD,IAAI,IAAI,EAAE,SAAS,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC5C,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,CAAC;aAC5D;YACD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;SAC3C;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,GAAG,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACxD,CAAC;;AAhFL,kBAiFC;AAnEG,gBAAgB;AACO,gBAAY,GAAG,6BAA6B,CAAC"}
|