@pulumiverse/scaleway 1.39.0-alpha.1763627057 → 1.39.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/audittrail/getEvent.d.ts +266 -0
- package/audittrail/getEvent.js +142 -0
- package/audittrail/getEvent.js.map +1 -0
- package/audittrail/index.d.ts +3 -0
- package/audittrail/index.js +10 -0
- package/audittrail/index.js.map +1 -0
- package/baremetalServer.d.ts +74 -0
- package/baremetalServer.js +64 -0
- package/baremetalServer.js.map +1 -1
- package/block/snapshot.d.ts +39 -0
- package/block/snapshot.js +39 -0
- package/block/snapshot.js.map +1 -1
- package/blockSnapshot.d.ts +39 -0
- package/blockSnapshot.js +39 -0
- package/blockSnapshot.js.map +1 -1
- package/edgeServicesCacheStage.d.ts +14 -0
- package/edgeServicesCacheStage.js +14 -0
- package/edgeServicesCacheStage.js.map +1 -1
- package/elasticmetal/getServer.d.ts +1 -0
- package/elasticmetal/getServer.js.map +1 -1
- package/elasticmetal/server.d.ts +74 -0
- package/elasticmetal/server.js +64 -0
- package/elasticmetal/server.js.map +1 -1
- package/getBaremetalServer.d.ts +1 -0
- package/getBaremetalServer.js.map +1 -1
- package/getLoadbalancerCertificate.d.ts +66 -0
- package/getLoadbalancerCertificate.js +66 -0
- package/getLoadbalancerCertificate.js.map +1 -1
- package/index.d.ts +2 -1
- package/index.js +4 -2
- package/index.js.map +1 -1
- package/inference/deployment.d.ts +18 -0
- package/inference/deployment.js +18 -0
- package/inference/deployment.js.map +1 -1
- package/inference/model.d.ts +3 -3
- package/inferenceDeployment.d.ts +18 -0
- package/inferenceDeployment.js +18 -0
- package/inferenceDeployment.js.map +1 -1
- package/instance/server.d.ts +9 -6
- package/instance/server.js.map +1 -1
- package/instance/userData.d.ts +2 -2
- package/instance/userData.js +2 -2
- package/instanceServer.d.ts +9 -6
- package/instanceServer.js.map +1 -1
- package/instanceUserData.d.ts +2 -2
- package/instanceUserData.js +2 -2
- package/ipam/ip.d.ts +8 -0
- package/ipam/ip.js +2 -0
- package/ipam/ip.js.map +1 -1
- package/ipam/ipReverseDns.d.ts +43 -0
- package/ipam/ipReverseDns.js +43 -0
- package/ipam/ipReverseDns.js.map +1 -1
- package/ipamIp.d.ts +8 -0
- package/ipamIp.js +2 -0
- package/ipamIp.js.map +1 -1
- package/ipamIpReverseDns.d.ts +43 -0
- package/ipamIpReverseDns.js +43 -0
- package/ipamIpReverseDns.js.map +1 -1
- package/kubernetes/cluster.d.ts +15 -0
- package/kubernetes/cluster.js +15 -0
- package/kubernetes/cluster.js.map +1 -1
- package/kubernetesCluster.d.ts +15 -0
- package/kubernetesCluster.js +15 -0
- package/kubernetesCluster.js.map +1 -1
- package/loadbalancers/getCertificate.d.ts +66 -0
- package/loadbalancers/getCertificate.js +66 -0
- package/loadbalancers/getCertificate.js.map +1 -1
- package/object/item.d.ts +21 -3
- package/object/item.js +18 -0
- package/object/item.js.map +1 -1
- package/objectItem.d.ts +21 -3
- package/objectItem.js +18 -0
- package/objectItem.js.map +1 -1
- package/observability/getSources.d.ts +6 -6
- package/observability/getSources.js +4 -4
- package/package.json +2 -2
- package/tem/domain.d.ts +26 -0
- package/tem/domain.js +26 -0
- package/tem/domain.js.map +1 -1
- package/temDomain.d.ts +26 -0
- package/temDomain.js +26 -0
- package/temDomain.js.map +1 -1
- package/types/input.d.ts +2 -0
- package/types/output.d.ts +79 -1
|
@@ -8,6 +8,39 @@ import * as outputs from "../types/output";
|
|
|
8
8
|
* For more information, see the [main documentation](https://www.scaleway.com/en/docs/load-balancer/how-to/add-certificate/) or [API documentation](https://www.scaleway.com/en/developers/api/load-balancer/zoned-api/#path-certificate).
|
|
9
9
|
*
|
|
10
10
|
* ## Examples
|
|
11
|
+
*
|
|
12
|
+
* ### Let's Encrypt
|
|
13
|
+
*
|
|
14
|
+
* ```typescript
|
|
15
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
16
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
17
|
+
* import * as std from "@pulumi/std";
|
|
18
|
+
*
|
|
19
|
+
* const main = new scaleway.loadbalancers.Ip("main", {});
|
|
20
|
+
* const mainLoadBalancer = new scaleway.loadbalancers.LoadBalancer("main", {
|
|
21
|
+
* ipId: main.id,
|
|
22
|
+
* name: "data-test-lb-cert",
|
|
23
|
+
* type: "LB-S",
|
|
24
|
+
* });
|
|
25
|
+
* const mainCertificate = new scaleway.loadbalancers.Certificate("main", {
|
|
26
|
+
* lbId: mainLoadBalancer.id,
|
|
27
|
+
* name: "data-test-lb-cert",
|
|
28
|
+
* letsencrypt: {
|
|
29
|
+
* commonName: pulumi.all([mainLoadBalancer.ipAddress, mainLoadBalancer.region]).apply(([ipAddress, region]) => `${std.index.replace({
|
|
30
|
+
* text: ipAddress,
|
|
31
|
+
* search: ".",
|
|
32
|
+
* replace: "-",
|
|
33
|
+
* }).result}.lb.${region}.scw.cloud`),
|
|
34
|
+
* },
|
|
35
|
+
* });
|
|
36
|
+
* const byID = scaleway.loadbalancers.getCertificateOutput({
|
|
37
|
+
* certificateId: mainCertificate.id,
|
|
38
|
+
* });
|
|
39
|
+
* const byName = scaleway.loadbalancers.getCertificateOutput({
|
|
40
|
+
* name: mainCertificate.name,
|
|
41
|
+
* lbId: mainLoadBalancer.id,
|
|
42
|
+
* });
|
|
43
|
+
* ```
|
|
11
44
|
*/
|
|
12
45
|
export declare function getCertificate(args?: GetCertificateArgs, opts?: pulumi.InvokeOptions): Promise<GetCertificateResult>;
|
|
13
46
|
/**
|
|
@@ -57,6 +90,39 @@ export interface GetCertificateResult {
|
|
|
57
90
|
* For more information, see the [main documentation](https://www.scaleway.com/en/docs/load-balancer/how-to/add-certificate/) or [API documentation](https://www.scaleway.com/en/developers/api/load-balancer/zoned-api/#path-certificate).
|
|
58
91
|
*
|
|
59
92
|
* ## Examples
|
|
93
|
+
*
|
|
94
|
+
* ### Let's Encrypt
|
|
95
|
+
*
|
|
96
|
+
* ```typescript
|
|
97
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
98
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
99
|
+
* import * as std from "@pulumi/std";
|
|
100
|
+
*
|
|
101
|
+
* const main = new scaleway.loadbalancers.Ip("main", {});
|
|
102
|
+
* const mainLoadBalancer = new scaleway.loadbalancers.LoadBalancer("main", {
|
|
103
|
+
* ipId: main.id,
|
|
104
|
+
* name: "data-test-lb-cert",
|
|
105
|
+
* type: "LB-S",
|
|
106
|
+
* });
|
|
107
|
+
* const mainCertificate = new scaleway.loadbalancers.Certificate("main", {
|
|
108
|
+
* lbId: mainLoadBalancer.id,
|
|
109
|
+
* name: "data-test-lb-cert",
|
|
110
|
+
* letsencrypt: {
|
|
111
|
+
* commonName: pulumi.all([mainLoadBalancer.ipAddress, mainLoadBalancer.region]).apply(([ipAddress, region]) => `${std.index.replace({
|
|
112
|
+
* text: ipAddress,
|
|
113
|
+
* search: ".",
|
|
114
|
+
* replace: "-",
|
|
115
|
+
* }).result}.lb.${region}.scw.cloud`),
|
|
116
|
+
* },
|
|
117
|
+
* });
|
|
118
|
+
* const byID = scaleway.loadbalancers.getCertificateOutput({
|
|
119
|
+
* certificateId: mainCertificate.id,
|
|
120
|
+
* });
|
|
121
|
+
* const byName = scaleway.loadbalancers.getCertificateOutput({
|
|
122
|
+
* name: mainCertificate.name,
|
|
123
|
+
* lbId: mainLoadBalancer.id,
|
|
124
|
+
* });
|
|
125
|
+
* ```
|
|
60
126
|
*/
|
|
61
127
|
export declare function getCertificateOutput(args?: GetCertificateOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCertificateResult>;
|
|
62
128
|
/**
|
|
@@ -13,6 +13,39 @@ const utilities = require("../utilities");
|
|
|
13
13
|
* For more information, see the [main documentation](https://www.scaleway.com/en/docs/load-balancer/how-to/add-certificate/) or [API documentation](https://www.scaleway.com/en/developers/api/load-balancer/zoned-api/#path-certificate).
|
|
14
14
|
*
|
|
15
15
|
* ## Examples
|
|
16
|
+
*
|
|
17
|
+
* ### Let's Encrypt
|
|
18
|
+
*
|
|
19
|
+
* ```typescript
|
|
20
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
21
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
22
|
+
* import * as std from "@pulumi/std";
|
|
23
|
+
*
|
|
24
|
+
* const main = new scaleway.loadbalancers.Ip("main", {});
|
|
25
|
+
* const mainLoadBalancer = new scaleway.loadbalancers.LoadBalancer("main", {
|
|
26
|
+
* ipId: main.id,
|
|
27
|
+
* name: "data-test-lb-cert",
|
|
28
|
+
* type: "LB-S",
|
|
29
|
+
* });
|
|
30
|
+
* const mainCertificate = new scaleway.loadbalancers.Certificate("main", {
|
|
31
|
+
* lbId: mainLoadBalancer.id,
|
|
32
|
+
* name: "data-test-lb-cert",
|
|
33
|
+
* letsencrypt: {
|
|
34
|
+
* commonName: pulumi.all([mainLoadBalancer.ipAddress, mainLoadBalancer.region]).apply(([ipAddress, region]) => `${std.index.replace({
|
|
35
|
+
* text: ipAddress,
|
|
36
|
+
* search: ".",
|
|
37
|
+
* replace: "-",
|
|
38
|
+
* }).result}.lb.${region}.scw.cloud`),
|
|
39
|
+
* },
|
|
40
|
+
* });
|
|
41
|
+
* const byID = scaleway.loadbalancers.getCertificateOutput({
|
|
42
|
+
* certificateId: mainCertificate.id,
|
|
43
|
+
* });
|
|
44
|
+
* const byName = scaleway.loadbalancers.getCertificateOutput({
|
|
45
|
+
* name: mainCertificate.name,
|
|
46
|
+
* lbId: mainLoadBalancer.id,
|
|
47
|
+
* });
|
|
48
|
+
* ```
|
|
16
49
|
*/
|
|
17
50
|
function getCertificate(args, opts) {
|
|
18
51
|
args = args || {};
|
|
@@ -32,6 +65,39 @@ exports.getCertificate = getCertificate;
|
|
|
32
65
|
* For more information, see the [main documentation](https://www.scaleway.com/en/docs/load-balancer/how-to/add-certificate/) or [API documentation](https://www.scaleway.com/en/developers/api/load-balancer/zoned-api/#path-certificate).
|
|
33
66
|
*
|
|
34
67
|
* ## Examples
|
|
68
|
+
*
|
|
69
|
+
* ### Let's Encrypt
|
|
70
|
+
*
|
|
71
|
+
* ```typescript
|
|
72
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
73
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
74
|
+
* import * as std from "@pulumi/std";
|
|
75
|
+
*
|
|
76
|
+
* const main = new scaleway.loadbalancers.Ip("main", {});
|
|
77
|
+
* const mainLoadBalancer = new scaleway.loadbalancers.LoadBalancer("main", {
|
|
78
|
+
* ipId: main.id,
|
|
79
|
+
* name: "data-test-lb-cert",
|
|
80
|
+
* type: "LB-S",
|
|
81
|
+
* });
|
|
82
|
+
* const mainCertificate = new scaleway.loadbalancers.Certificate("main", {
|
|
83
|
+
* lbId: mainLoadBalancer.id,
|
|
84
|
+
* name: "data-test-lb-cert",
|
|
85
|
+
* letsencrypt: {
|
|
86
|
+
* commonName: pulumi.all([mainLoadBalancer.ipAddress, mainLoadBalancer.region]).apply(([ipAddress, region]) => `${std.index.replace({
|
|
87
|
+
* text: ipAddress,
|
|
88
|
+
* search: ".",
|
|
89
|
+
* replace: "-",
|
|
90
|
+
* }).result}.lb.${region}.scw.cloud`),
|
|
91
|
+
* },
|
|
92
|
+
* });
|
|
93
|
+
* const byID = scaleway.loadbalancers.getCertificateOutput({
|
|
94
|
+
* certificateId: mainCertificate.id,
|
|
95
|
+
* });
|
|
96
|
+
* const byName = scaleway.loadbalancers.getCertificateOutput({
|
|
97
|
+
* name: mainCertificate.name,
|
|
98
|
+
* lbId: mainLoadBalancer.id,
|
|
99
|
+
* });
|
|
100
|
+
* ```
|
|
35
101
|
*/
|
|
36
102
|
function getCertificateOutput(args, opts) {
|
|
37
103
|
args = args || {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getCertificate.js","sourceRoot":"","sources":["../../loadbalancers/getCertificate.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"getCertificate.js","sourceRoot":"","sources":["../../loadbalancers/getCertificate.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAyCG;AACH,SAAgB,cAAc,CAAC,IAAyB,EAAE,IAA2B;IACjF,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,sDAAsD,EAAE;QACjF,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,wCAQC;AA0CD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAyCG;AACH,SAAgB,oBAAoB,CAAC,IAA+B,EAAE,IAAiC;IACnG,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,sDAAsD,EAAE;QACvF,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,oDAQC"}
|
package/object/item.d.ts
CHANGED
|
@@ -4,6 +4,24 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
4
4
|
*
|
|
5
5
|
* Refer to the [dedicated documentation](https://www.scaleway.com/en/docs/object-storage/how-to/upload-files-into-a-bucket/) for more information on Object Storage objects.
|
|
6
6
|
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
12
|
+
* import * as std from "@pulumi/std";
|
|
13
|
+
*
|
|
14
|
+
* const someBucket = new scaleway.object.Bucket("some_bucket", {name: "some-unique-name"});
|
|
15
|
+
* const someFile = new scaleway.object.Item("some_file", {
|
|
16
|
+
* bucket: someBucket.id,
|
|
17
|
+
* key: "object_path",
|
|
18
|
+
* file: "myfile",
|
|
19
|
+
* hash: std.index.filemd5({
|
|
20
|
+
* input: "myfile",
|
|
21
|
+
* }).result,
|
|
22
|
+
* });
|
|
23
|
+
* ```
|
|
24
|
+
*
|
|
7
25
|
* ## Import
|
|
8
26
|
*
|
|
9
27
|
* Objects can be imported using the `{region}/{bucketName}/{objectKey}` identifier, as shown below:
|
|
@@ -55,7 +73,7 @@ export declare class Item extends pulumi.CustomResource {
|
|
|
55
73
|
*/
|
|
56
74
|
readonly contentBase64: pulumi.Output<string | undefined>;
|
|
57
75
|
/**
|
|
58
|
-
* The standard MIME type of the object's content (e.g., 'application/json', 'text/plain'). This specifies how the object should be interpreted by clients. See RFC 9110: https://www.rfc-editor.org/rfc/rfc9110.html#name-content-type
|
|
76
|
+
* The standard MIME type of the object's content (e.g., 'application/json', 'text/plain'). This specifies how the object should be interpreted by clients. See RFC 9110: <https://www.rfc-editor.org/rfc/rfc9110.html#name-content-type>
|
|
59
77
|
*/
|
|
60
78
|
readonly contentType: pulumi.Output<string>;
|
|
61
79
|
/**
|
|
@@ -130,7 +148,7 @@ export interface ItemState {
|
|
|
130
148
|
*/
|
|
131
149
|
contentBase64?: pulumi.Input<string>;
|
|
132
150
|
/**
|
|
133
|
-
* The standard MIME type of the object's content (e.g., 'application/json', 'text/plain'). This specifies how the object should be interpreted by clients. See RFC 9110: https://www.rfc-editor.org/rfc/rfc9110.html#name-content-type
|
|
151
|
+
* The standard MIME type of the object's content (e.g., 'application/json', 'text/plain'). This specifies how the object should be interpreted by clients. See RFC 9110: <https://www.rfc-editor.org/rfc/rfc9110.html#name-content-type>
|
|
134
152
|
*/
|
|
135
153
|
contentType?: pulumi.Input<string>;
|
|
136
154
|
/**
|
|
@@ -197,7 +215,7 @@ export interface ItemArgs {
|
|
|
197
215
|
*/
|
|
198
216
|
contentBase64?: pulumi.Input<string>;
|
|
199
217
|
/**
|
|
200
|
-
* The standard MIME type of the object's content (e.g., 'application/json', 'text/plain'). This specifies how the object should be interpreted by clients. See RFC 9110: https://www.rfc-editor.org/rfc/rfc9110.html#name-content-type
|
|
218
|
+
* The standard MIME type of the object's content (e.g., 'application/json', 'text/plain'). This specifies how the object should be interpreted by clients. See RFC 9110: <https://www.rfc-editor.org/rfc/rfc9110.html#name-content-type>
|
|
201
219
|
*/
|
|
202
220
|
contentType?: pulumi.Input<string>;
|
|
203
221
|
/**
|
package/object/item.js
CHANGED
|
@@ -10,6 +10,24 @@ const utilities = require("../utilities");
|
|
|
10
10
|
*
|
|
11
11
|
* Refer to the [dedicated documentation](https://www.scaleway.com/en/docs/object-storage/how-to/upload-files-into-a-bucket/) for more information on Object Storage objects.
|
|
12
12
|
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
18
|
+
* import * as std from "@pulumi/std";
|
|
19
|
+
*
|
|
20
|
+
* const someBucket = new scaleway.object.Bucket("some_bucket", {name: "some-unique-name"});
|
|
21
|
+
* const someFile = new scaleway.object.Item("some_file", {
|
|
22
|
+
* bucket: someBucket.id,
|
|
23
|
+
* key: "object_path",
|
|
24
|
+
* file: "myfile",
|
|
25
|
+
* hash: std.index.filemd5({
|
|
26
|
+
* input: "myfile",
|
|
27
|
+
* }).result,
|
|
28
|
+
* });
|
|
29
|
+
* ```
|
|
30
|
+
*
|
|
13
31
|
* ## Import
|
|
14
32
|
*
|
|
15
33
|
* Objects can be imported using the `{region}/{bucketName}/{objectKey}` identifier, as shown below:
|
package/object/item.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"item.js","sourceRoot":"","sources":["../../object/item.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"item.js","sourceRoot":"","sources":["../../object/item.ts"],"names":[],"mappings":"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"}
|
package/objectItem.d.ts
CHANGED
|
@@ -4,6 +4,24 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
4
4
|
*
|
|
5
5
|
* Refer to the [dedicated documentation](https://www.scaleway.com/en/docs/object-storage/how-to/upload-files-into-a-bucket/) for more information on Object Storage objects.
|
|
6
6
|
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
12
|
+
* import * as std from "@pulumi/std";
|
|
13
|
+
*
|
|
14
|
+
* const someBucket = new scaleway.object.Bucket("some_bucket", {name: "some-unique-name"});
|
|
15
|
+
* const someFile = new scaleway.object.Item("some_file", {
|
|
16
|
+
* bucket: someBucket.id,
|
|
17
|
+
* key: "object_path",
|
|
18
|
+
* file: "myfile",
|
|
19
|
+
* hash: std.index.filemd5({
|
|
20
|
+
* input: "myfile",
|
|
21
|
+
* }).result,
|
|
22
|
+
* });
|
|
23
|
+
* ```
|
|
24
|
+
*
|
|
7
25
|
* ## Import
|
|
8
26
|
*
|
|
9
27
|
* Objects can be imported using the `{region}/{bucketName}/{objectKey}` identifier, as shown below:
|
|
@@ -57,7 +75,7 @@ export declare class ObjectItem extends pulumi.CustomResource {
|
|
|
57
75
|
*/
|
|
58
76
|
readonly contentBase64: pulumi.Output<string | undefined>;
|
|
59
77
|
/**
|
|
60
|
-
* The standard MIME type of the object's content (e.g., 'application/json', 'text/plain'). This specifies how the object should be interpreted by clients. See RFC 9110: https://www.rfc-editor.org/rfc/rfc9110.html#name-content-type
|
|
78
|
+
* The standard MIME type of the object's content (e.g., 'application/json', 'text/plain'). This specifies how the object should be interpreted by clients. See RFC 9110: <https://www.rfc-editor.org/rfc/rfc9110.html#name-content-type>
|
|
61
79
|
*/
|
|
62
80
|
readonly contentType: pulumi.Output<string>;
|
|
63
81
|
/**
|
|
@@ -133,7 +151,7 @@ export interface ObjectItemState {
|
|
|
133
151
|
*/
|
|
134
152
|
contentBase64?: pulumi.Input<string>;
|
|
135
153
|
/**
|
|
136
|
-
* The standard MIME type of the object's content (e.g., 'application/json', 'text/plain'). This specifies how the object should be interpreted by clients. See RFC 9110: https://www.rfc-editor.org/rfc/rfc9110.html#name-content-type
|
|
154
|
+
* The standard MIME type of the object's content (e.g., 'application/json', 'text/plain'). This specifies how the object should be interpreted by clients. See RFC 9110: <https://www.rfc-editor.org/rfc/rfc9110.html#name-content-type>
|
|
137
155
|
*/
|
|
138
156
|
contentType?: pulumi.Input<string>;
|
|
139
157
|
/**
|
|
@@ -200,7 +218,7 @@ export interface ObjectItemArgs {
|
|
|
200
218
|
*/
|
|
201
219
|
contentBase64?: pulumi.Input<string>;
|
|
202
220
|
/**
|
|
203
|
-
* The standard MIME type of the object's content (e.g., 'application/json', 'text/plain'). This specifies how the object should be interpreted by clients. See RFC 9110: https://www.rfc-editor.org/rfc/rfc9110.html#name-content-type
|
|
221
|
+
* The standard MIME type of the object's content (e.g., 'application/json', 'text/plain'). This specifies how the object should be interpreted by clients. See RFC 9110: <https://www.rfc-editor.org/rfc/rfc9110.html#name-content-type>
|
|
204
222
|
*/
|
|
205
223
|
contentType?: pulumi.Input<string>;
|
|
206
224
|
/**
|
package/objectItem.js
CHANGED
|
@@ -10,6 +10,24 @@ const utilities = require("./utilities");
|
|
|
10
10
|
*
|
|
11
11
|
* Refer to the [dedicated documentation](https://www.scaleway.com/en/docs/object-storage/how-to/upload-files-into-a-bucket/) for more information on Object Storage objects.
|
|
12
12
|
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
18
|
+
* import * as std from "@pulumi/std";
|
|
19
|
+
*
|
|
20
|
+
* const someBucket = new scaleway.object.Bucket("some_bucket", {name: "some-unique-name"});
|
|
21
|
+
* const someFile = new scaleway.object.Item("some_file", {
|
|
22
|
+
* bucket: someBucket.id,
|
|
23
|
+
* key: "object_path",
|
|
24
|
+
* file: "myfile",
|
|
25
|
+
* hash: std.index.filemd5({
|
|
26
|
+
* input: "myfile",
|
|
27
|
+
* }).result,
|
|
28
|
+
* });
|
|
29
|
+
* ```
|
|
30
|
+
*
|
|
13
31
|
* ## Import
|
|
14
32
|
*
|
|
15
33
|
* Objects can be imported using the `{region}/{bucketName}/{objectKey}` identifier, as shown below:
|
package/objectItem.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"objectItem.js","sourceRoot":"","sources":["../objectItem.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"objectItem.js","sourceRoot":"","sources":["../objectItem.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4CG;AACH,MAAa,UAAW,SAAQ,MAAM,CAAC,cAAc;IACjD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAuB,EAAE,IAAmC;QACrH,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,0HAA0H,CAAC,CAAA;QAC3I,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;IAsED,iHAAiH;IACjH,YAAY,IAAY,EAAE,WAA8C,EAAE,IAAmC;QACzG,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,0HAA0H,CAAC,CAAA;QAC3I,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA0C,CAAC;YACzD,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;YAC3C,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,EAAE,aAAa,CAAC;YACvD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,EAAE,GAAG,CAAC;YACnC,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;YACzD,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;YACrD,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;SACpD;aAAM;YACH,MAAM,IAAI,GAAG,WAAyC,CAAC;YACvD,IAAI,IAAI,EAAE,MAAM,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACzC,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;aACzD;YACD,IAAI,IAAI,EAAE,GAAG,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACtC,MAAM,IAAI,KAAK,CAAC,iCAAiC,CAAC,CAAC;aACtD;YACD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;YACxC,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,CAAC;YAC1C,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,EAAE,aAAa,CAAC;YACtD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,KAAK,CAAC,GAAG,IAAI,EAAE,GAAG,CAAC;YAClC,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;YACxC,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;YACzG,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,EAAE,YAAY,CAAC;YACpD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;SACnD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,MAAM,UAAU,GAAG,EAAE,uBAAuB,EAAE,CAAC,gBAAgB,CAAC,EAAE,CAAC;QACnE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;QAC7C,KAAK,CAAC,UAAU,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC/D,CAAC;;AAjJL,gCAkJC;AAnIG,gBAAgB;AACO,uBAAY,GAAG,sCAAsC,CAAC"}
|
|
@@ -46,9 +46,9 @@ import * as outputs from "../types/output";
|
|
|
46
46
|
* import * as pulumi from "@pulumi/pulumi";
|
|
47
47
|
* import * as scaleway from "@pulumiverse/scaleway";
|
|
48
48
|
*
|
|
49
|
-
* const
|
|
49
|
+
* const custom = scaleway.observability.getSources({
|
|
50
50
|
* projectId: "11111111-1111-1111-1111-111111111111",
|
|
51
|
-
* origin: "
|
|
51
|
+
* origin: "custom",
|
|
52
52
|
* });
|
|
53
53
|
* ```
|
|
54
54
|
*
|
|
@@ -74,7 +74,7 @@ export interface GetSourcesArgs {
|
|
|
74
74
|
*/
|
|
75
75
|
name?: string;
|
|
76
76
|
/**
|
|
77
|
-
* Filter sources by origin. Possible values are: `scaleway`, `
|
|
77
|
+
* Filter sources by origin. Possible values are: `scaleway`, `custom`.
|
|
78
78
|
*/
|
|
79
79
|
origin?: string;
|
|
80
80
|
/**
|
|
@@ -193,9 +193,9 @@ export interface GetSourcesResult {
|
|
|
193
193
|
* import * as pulumi from "@pulumi/pulumi";
|
|
194
194
|
* import * as scaleway from "@pulumiverse/scaleway";
|
|
195
195
|
*
|
|
196
|
-
* const
|
|
196
|
+
* const custom = scaleway.observability.getSources({
|
|
197
197
|
* projectId: "11111111-1111-1111-1111-111111111111",
|
|
198
|
-
* origin: "
|
|
198
|
+
* origin: "custom",
|
|
199
199
|
* });
|
|
200
200
|
* ```
|
|
201
201
|
*
|
|
@@ -221,7 +221,7 @@ export interface GetSourcesOutputArgs {
|
|
|
221
221
|
*/
|
|
222
222
|
name?: pulumi.Input<string>;
|
|
223
223
|
/**
|
|
224
|
-
* Filter sources by origin. Possible values are: `scaleway`, `
|
|
224
|
+
* Filter sources by origin. Possible values are: `scaleway`, `custom`.
|
|
225
225
|
*/
|
|
226
226
|
origin?: pulumi.Input<string>;
|
|
227
227
|
/**
|
|
@@ -51,9 +51,9 @@ const utilities = require("../utilities");
|
|
|
51
51
|
* import * as pulumi from "@pulumi/pulumi";
|
|
52
52
|
* import * as scaleway from "@pulumiverse/scaleway";
|
|
53
53
|
*
|
|
54
|
-
* const
|
|
54
|
+
* const custom = scaleway.observability.getSources({
|
|
55
55
|
* projectId: "11111111-1111-1111-1111-111111111111",
|
|
56
|
-
* origin: "
|
|
56
|
+
* origin: "custom",
|
|
57
57
|
* });
|
|
58
58
|
* ```
|
|
59
59
|
*
|
|
@@ -127,9 +127,9 @@ exports.getSources = getSources;
|
|
|
127
127
|
* import * as pulumi from "@pulumi/pulumi";
|
|
128
128
|
* import * as scaleway from "@pulumiverse/scaleway";
|
|
129
129
|
*
|
|
130
|
-
* const
|
|
130
|
+
* const custom = scaleway.observability.getSources({
|
|
131
131
|
* projectId: "11111111-1111-1111-1111-111111111111",
|
|
132
|
-
* origin: "
|
|
132
|
+
* origin: "custom",
|
|
133
133
|
* });
|
|
134
134
|
* ```
|
|
135
135
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumiverse/scaleway",
|
|
3
|
-
"version": "1.39.0
|
|
3
|
+
"version": "1.39.0",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Scaleway cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"pulumi": {
|
|
25
25
|
"resource": true,
|
|
26
26
|
"name": "scaleway",
|
|
27
|
-
"version": "1.39.0
|
|
27
|
+
"version": "1.39.0",
|
|
28
28
|
"server": "github://api.github.com/pulumiverse"
|
|
29
29
|
}
|
|
30
30
|
}
|
package/tem/domain.d.ts
CHANGED
|
@@ -70,6 +70,32 @@ import * as outputs from "../types/output";
|
|
|
70
70
|
* });
|
|
71
71
|
* ```
|
|
72
72
|
*
|
|
73
|
+
* ### Configuring GitLab Project Variables
|
|
74
|
+
*
|
|
75
|
+
* ```typescript
|
|
76
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
77
|
+
* import * as gitlab from "@pulumi/gitlab";
|
|
78
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
79
|
+
*
|
|
80
|
+
* const config = new pulumi.Config();
|
|
81
|
+
* const domainName = config.require("domainName");
|
|
82
|
+
* const myDomain = scaleway.tem.getDomain({
|
|
83
|
+
* name: domainName,
|
|
84
|
+
* });
|
|
85
|
+
* const smtpAuthUser = new gitlab.ProjectVariable("smtp_auth_user", {
|
|
86
|
+
* key: "SMTP_AUTH_USER",
|
|
87
|
+
* value: myDomain.then(myDomain => myDomain.smtpsAuthUser),
|
|
88
|
+
* });
|
|
89
|
+
* const smtpPort = new gitlab.ProjectVariable("smtp_port", {
|
|
90
|
+
* key: "SMTP_PORT",
|
|
91
|
+
* value: myDomain.then(myDomain => myDomain.smtpsPort),
|
|
92
|
+
* });
|
|
93
|
+
* const smtpHost = new gitlab.ProjectVariable("smtp_host", {
|
|
94
|
+
* key: "SMTP_HOST",
|
|
95
|
+
* value: myDomain.then(myDomain => myDomain.smtpsHost),
|
|
96
|
+
* });
|
|
97
|
+
* ```
|
|
98
|
+
*
|
|
73
99
|
* ## Import
|
|
74
100
|
*
|
|
75
101
|
* Domains can be imported using the `{region}/{id}`, e.g.
|
package/tem/domain.js
CHANGED
|
@@ -74,6 +74,32 @@ const utilities = require("../utilities");
|
|
|
74
74
|
* });
|
|
75
75
|
* ```
|
|
76
76
|
*
|
|
77
|
+
* ### Configuring GitLab Project Variables
|
|
78
|
+
*
|
|
79
|
+
* ```typescript
|
|
80
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
81
|
+
* import * as gitlab from "@pulumi/gitlab";
|
|
82
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
83
|
+
*
|
|
84
|
+
* const config = new pulumi.Config();
|
|
85
|
+
* const domainName = config.require("domainName");
|
|
86
|
+
* const myDomain = scaleway.tem.getDomain({
|
|
87
|
+
* name: domainName,
|
|
88
|
+
* });
|
|
89
|
+
* const smtpAuthUser = new gitlab.ProjectVariable("smtp_auth_user", {
|
|
90
|
+
* key: "SMTP_AUTH_USER",
|
|
91
|
+
* value: myDomain.then(myDomain => myDomain.smtpsAuthUser),
|
|
92
|
+
* });
|
|
93
|
+
* const smtpPort = new gitlab.ProjectVariable("smtp_port", {
|
|
94
|
+
* key: "SMTP_PORT",
|
|
95
|
+
* value: myDomain.then(myDomain => myDomain.smtpsPort),
|
|
96
|
+
* });
|
|
97
|
+
* const smtpHost = new gitlab.ProjectVariable("smtp_host", {
|
|
98
|
+
* key: "SMTP_HOST",
|
|
99
|
+
* value: myDomain.then(myDomain => myDomain.smtpsHost),
|
|
100
|
+
* });
|
|
101
|
+
* ```
|
|
102
|
+
*
|
|
77
103
|
* ## Import
|
|
78
104
|
*
|
|
79
105
|
* Domains can be imported using the `{region}/{id}`, e.g.
|
package/tem/domain.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"domain.js","sourceRoot":"","sources":["../../tem/domain.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"domain.js","sourceRoot":"","sources":["../../tem/domain.ts"],"names":[],"mappings":"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"}
|
package/temDomain.d.ts
CHANGED
|
@@ -70,6 +70,32 @@ import * as outputs from "./types/output";
|
|
|
70
70
|
* });
|
|
71
71
|
* ```
|
|
72
72
|
*
|
|
73
|
+
* ### Configuring GitLab Project Variables
|
|
74
|
+
*
|
|
75
|
+
* ```typescript
|
|
76
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
77
|
+
* import * as gitlab from "@pulumi/gitlab";
|
|
78
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
79
|
+
*
|
|
80
|
+
* const config = new pulumi.Config();
|
|
81
|
+
* const domainName = config.require("domainName");
|
|
82
|
+
* const myDomain = scaleway.tem.getDomain({
|
|
83
|
+
* name: domainName,
|
|
84
|
+
* });
|
|
85
|
+
* const smtpAuthUser = new gitlab.ProjectVariable("smtp_auth_user", {
|
|
86
|
+
* key: "SMTP_AUTH_USER",
|
|
87
|
+
* value: myDomain.then(myDomain => myDomain.smtpsAuthUser),
|
|
88
|
+
* });
|
|
89
|
+
* const smtpPort = new gitlab.ProjectVariable("smtp_port", {
|
|
90
|
+
* key: "SMTP_PORT",
|
|
91
|
+
* value: myDomain.then(myDomain => myDomain.smtpsPort),
|
|
92
|
+
* });
|
|
93
|
+
* const smtpHost = new gitlab.ProjectVariable("smtp_host", {
|
|
94
|
+
* key: "SMTP_HOST",
|
|
95
|
+
* value: myDomain.then(myDomain => myDomain.smtpsHost),
|
|
96
|
+
* });
|
|
97
|
+
* ```
|
|
98
|
+
*
|
|
73
99
|
* ## Import
|
|
74
100
|
*
|
|
75
101
|
* Domains can be imported using the `{region}/{id}`, e.g.
|
package/temDomain.js
CHANGED
|
@@ -74,6 +74,32 @@ const utilities = require("./utilities");
|
|
|
74
74
|
* });
|
|
75
75
|
* ```
|
|
76
76
|
*
|
|
77
|
+
* ### Configuring GitLab Project Variables
|
|
78
|
+
*
|
|
79
|
+
* ```typescript
|
|
80
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
81
|
+
* import * as gitlab from "@pulumi/gitlab";
|
|
82
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
83
|
+
*
|
|
84
|
+
* const config = new pulumi.Config();
|
|
85
|
+
* const domainName = config.require("domainName");
|
|
86
|
+
* const myDomain = scaleway.tem.getDomain({
|
|
87
|
+
* name: domainName,
|
|
88
|
+
* });
|
|
89
|
+
* const smtpAuthUser = new gitlab.ProjectVariable("smtp_auth_user", {
|
|
90
|
+
* key: "SMTP_AUTH_USER",
|
|
91
|
+
* value: myDomain.then(myDomain => myDomain.smtpsAuthUser),
|
|
92
|
+
* });
|
|
93
|
+
* const smtpPort = new gitlab.ProjectVariable("smtp_port", {
|
|
94
|
+
* key: "SMTP_PORT",
|
|
95
|
+
* value: myDomain.then(myDomain => myDomain.smtpsPort),
|
|
96
|
+
* });
|
|
97
|
+
* const smtpHost = new gitlab.ProjectVariable("smtp_host", {
|
|
98
|
+
* key: "SMTP_HOST",
|
|
99
|
+
* value: myDomain.then(myDomain => myDomain.smtpsHost),
|
|
100
|
+
* });
|
|
101
|
+
* ```
|
|
102
|
+
*
|
|
77
103
|
* ## Import
|
|
78
104
|
*
|
|
79
105
|
* Domains can be imported using the `{region}/{id}`, e.g.
|
package/temDomain.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"temDomain.js","sourceRoot":"","sources":["../temDomain.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"temDomain.js","sourceRoot":"","sources":["../temDomain.ts"],"names":[],"mappings":"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"}
|
package/types/input.d.ts
CHANGED