@pulumiverse/scaleway 1.41.0 → 1.41.1
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/edgeServicesBackendStage.d.ts +9 -6
- package/edgeServicesBackendStage.js +11 -6
- package/edgeServicesBackendStage.js.map +1 -1
- package/edgeServicesCacheStage.d.ts +5 -2
- package/edgeServicesCacheStage.js +7 -2
- package/edgeServicesCacheStage.js.map +1 -1
- package/edgeServicesDnsStage.d.ts +4 -1
- package/edgeServicesDnsStage.js +6 -1
- package/edgeServicesDnsStage.js.map +1 -1
- package/edgeServicesHeadStage.d.ts +7 -4
- package/edgeServicesHeadStage.js +9 -4
- package/edgeServicesHeadStage.js.map +1 -1
- package/edgeServicesPipeline.d.ts +19 -16
- package/edgeServicesPipeline.js +21 -16
- package/edgeServicesPipeline.js.map +1 -1
- package/edgeServicesPlan.d.ts +4 -1
- package/edgeServicesPlan.js +6 -1
- package/edgeServicesPlan.js.map +1 -1
- package/edgeServicesRouteStage.d.ts +4 -1
- package/edgeServicesRouteStage.js +6 -1
- package/edgeServicesRouteStage.js.map +1 -1
- package/edgeServicesTlsStage.d.ts +5 -2
- package/edgeServicesTlsStage.js +7 -2
- package/edgeServicesTlsStage.js.map +1 -1
- package/edgeServicesWafStage.d.ts +4 -1
- package/edgeServicesWafStage.js +6 -1
- package/edgeServicesWafStage.js.map +1 -1
- package/edgeservices/backendStage.d.ts +171 -0
- package/edgeservices/backendStage.js +133 -0
- package/edgeservices/backendStage.js.map +1 -0
- package/edgeservices/cacheStage.d.ts +205 -0
- package/edgeservices/cacheStage.js +117 -0
- package/edgeservices/cacheStage.js.map +1 -0
- package/edgeservices/dnsStage.d.ts +167 -0
- package/edgeservices/dnsStage.js +99 -0
- package/edgeservices/dnsStage.js.map +1 -0
- package/edgeservices/headStage.d.ts +96 -0
- package/edgeservices/headStage.js +92 -0
- package/edgeservices/headStage.js.map +1 -0
- package/edgeservices/index.d.ts +27 -0
- package/edgeservices/index.js +62 -0
- package/edgeservices/index.js.map +1 -0
- package/edgeservices/pipeline.d.ts +183 -0
- package/edgeservices/pipeline.js +148 -0
- package/edgeservices/pipeline.js.map +1 -0
- package/edgeservices/plan.d.ts +84 -0
- package/edgeservices/plan.js +77 -0
- package/edgeservices/plan.js.map +1 -0
- package/edgeservices/routeStage.d.ts +142 -0
- package/edgeservices/routeStage.js +104 -0
- package/edgeservices/routeStage.js.map +1 -0
- package/edgeservices/tlsStage.d.ts +200 -0
- package/edgeservices/tlsStage.js +116 -0
- package/edgeservices/tlsStage.js.map +1 -0
- package/edgeservices/wafStage.d.ts +140 -0
- package/edgeservices/wafStage.js +97 -0
- package/edgeservices/wafStage.js.map +1 -0
- package/index.d.ts +2 -1
- package/index.js +3 -1
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/types/input.d.ts +98 -0
- package/types/output.d.ts +98 -0
|
@@ -18,9 +18,9 @@ import * as outputs from "./types/output";
|
|
|
18
18
|
* foo: "bar",
|
|
19
19
|
* },
|
|
20
20
|
* });
|
|
21
|
-
* const
|
|
22
|
-
* const
|
|
23
|
-
* pipelineId:
|
|
21
|
+
* const mainPipeline = new scaleway.edgeservices.Pipeline("main", {name: "my-pipeline"});
|
|
22
|
+
* const mainBackendStage = new scaleway.edgeservices.BackendStage("main", {
|
|
23
|
+
* pipelineId: mainPipeline.id,
|
|
24
24
|
* s3BackendConfig: {
|
|
25
25
|
* bucketName: main.name,
|
|
26
26
|
* bucketRegion: "fr-par",
|
|
@@ -46,9 +46,9 @@ import * as outputs from "./types/output";
|
|
|
46
46
|
* inboundPort: 443,
|
|
47
47
|
* certificateIds: [cert01.id],
|
|
48
48
|
* });
|
|
49
|
-
* const
|
|
50
|
-
* const
|
|
51
|
-
* pipelineId:
|
|
49
|
+
* const mainPipeline = new scaleway.edgeservices.Pipeline("main", {name: "my-pipeline"});
|
|
50
|
+
* const mainBackendStage = new scaleway.edgeservices.BackendStage("main", {
|
|
51
|
+
* pipelineId: mainPipeline.id,
|
|
52
52
|
* lbBackendConfigs: [{
|
|
53
53
|
* lbConfig: {
|
|
54
54
|
* id: main.id,
|
|
@@ -69,6 +69,8 @@ import * as outputs from "./types/output";
|
|
|
69
69
|
* ```sh
|
|
70
70
|
* $ pulumi import scaleway:index/edgeServicesBackendStage:EdgeServicesBackendStage basic 11111111-1111-1111-1111-111111111111
|
|
71
71
|
* ```
|
|
72
|
+
*
|
|
73
|
+
* @deprecated scaleway.index/edgeservicesbackendstage.EdgeServicesBackendStage has been deprecated in favor of scaleway.edgeservices/backendstage.BackendStage
|
|
72
74
|
*/
|
|
73
75
|
export declare class EdgeServicesBackendStage extends pulumi.CustomResource {
|
|
74
76
|
/**
|
|
@@ -117,6 +119,7 @@ export declare class EdgeServicesBackendStage extends pulumi.CustomResource {
|
|
|
117
119
|
* @param args The arguments to use to populate this resource's properties.
|
|
118
120
|
* @param opts A bag of options that control this resource's behavior.
|
|
119
121
|
*/
|
|
122
|
+
/** @deprecated scaleway.index/edgeservicesbackendstage.EdgeServicesBackendStage has been deprecated in favor of scaleway.edgeservices/backendstage.BackendStage */
|
|
120
123
|
constructor(name: string, args: EdgeServicesBackendStageArgs, opts?: pulumi.CustomResourceOptions);
|
|
121
124
|
}
|
|
122
125
|
/**
|
|
@@ -22,9 +22,9 @@ const utilities = require("./utilities");
|
|
|
22
22
|
* foo: "bar",
|
|
23
23
|
* },
|
|
24
24
|
* });
|
|
25
|
-
* const
|
|
26
|
-
* const
|
|
27
|
-
* pipelineId:
|
|
25
|
+
* const mainPipeline = new scaleway.edgeservices.Pipeline("main", {name: "my-pipeline"});
|
|
26
|
+
* const mainBackendStage = new scaleway.edgeservices.BackendStage("main", {
|
|
27
|
+
* pipelineId: mainPipeline.id,
|
|
28
28
|
* s3BackendConfig: {
|
|
29
29
|
* bucketName: main.name,
|
|
30
30
|
* bucketRegion: "fr-par",
|
|
@@ -50,9 +50,9 @@ const utilities = require("./utilities");
|
|
|
50
50
|
* inboundPort: 443,
|
|
51
51
|
* certificateIds: [cert01.id],
|
|
52
52
|
* });
|
|
53
|
-
* const
|
|
54
|
-
* const
|
|
55
|
-
* pipelineId:
|
|
53
|
+
* const mainPipeline = new scaleway.edgeservices.Pipeline("main", {name: "my-pipeline"});
|
|
54
|
+
* const mainBackendStage = new scaleway.edgeservices.BackendStage("main", {
|
|
55
|
+
* pipelineId: mainPipeline.id,
|
|
56
56
|
* lbBackendConfigs: [{
|
|
57
57
|
* lbConfig: {
|
|
58
58
|
* id: main.id,
|
|
@@ -73,6 +73,8 @@ const utilities = require("./utilities");
|
|
|
73
73
|
* ```sh
|
|
74
74
|
* $ pulumi import scaleway:index/edgeServicesBackendStage:EdgeServicesBackendStage basic 11111111-1111-1111-1111-111111111111
|
|
75
75
|
* ```
|
|
76
|
+
*
|
|
77
|
+
* @deprecated scaleway.index/edgeservicesbackendstage.EdgeServicesBackendStage has been deprecated in favor of scaleway.edgeservices/backendstage.BackendStage
|
|
76
78
|
*/
|
|
77
79
|
class EdgeServicesBackendStage extends pulumi.CustomResource {
|
|
78
80
|
/**
|
|
@@ -85,6 +87,7 @@ class EdgeServicesBackendStage extends pulumi.CustomResource {
|
|
|
85
87
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
86
88
|
*/
|
|
87
89
|
static get(name, id, state, opts) {
|
|
90
|
+
pulumi.log.warn("EdgeServicesBackendStage is deprecated: scaleway.index/edgeservicesbackendstage.EdgeServicesBackendStage has been deprecated in favor of scaleway.edgeservices/backendstage.BackendStage");
|
|
88
91
|
return new EdgeServicesBackendStage(name, state, { ...opts, id: id });
|
|
89
92
|
}
|
|
90
93
|
/**
|
|
@@ -97,7 +100,9 @@ class EdgeServicesBackendStage extends pulumi.CustomResource {
|
|
|
97
100
|
}
|
|
98
101
|
return obj['__pulumiType'] === EdgeServicesBackendStage.__pulumiType;
|
|
99
102
|
}
|
|
103
|
+
/** @deprecated scaleway.index/edgeservicesbackendstage.EdgeServicesBackendStage has been deprecated in favor of scaleway.edgeservices/backendstage.BackendStage */
|
|
100
104
|
constructor(name, argsOrState, opts) {
|
|
105
|
+
pulumi.log.warn("EdgeServicesBackendStage is deprecated: scaleway.index/edgeservicesbackendstage.EdgeServicesBackendStage has been deprecated in favor of scaleway.edgeservices/backendstage.BackendStage");
|
|
101
106
|
let resourceInputs = {};
|
|
102
107
|
opts = opts || {};
|
|
103
108
|
if (opts.id) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"edgeServicesBackendStage.js","sourceRoot":"","sources":["../edgeServicesBackendStage.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"edgeServicesBackendStage.js","sourceRoot":"","sources":["../edgeServicesBackendStage.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsEG;AACH,MAAa,wBAAyB,SAAQ,MAAM,CAAC,cAAc;IAC/D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAqC,EAAE,IAAmC;QACnI,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,0LAA0L,CAAC,CAAA;QAC3M,OAAO,IAAI,wBAAwB,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC/E,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,wBAAwB,CAAC,YAAY,CAAC;IACzE,CAAC;IAoCD,mKAAmK;IACnK,YAAY,IAAY,EAAE,WAA0E,EAAE,IAAmC;QACrI,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,0LAA0L,CAAC,CAAA;QAC3M,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAwD,CAAC;YACvE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,EAAE,gBAAgB,CAAC;YAC7D,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,EAAE,eAAe,CAAC;YAC3D,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;SAClD;aAAM;YACH,MAAM,IAAI,GAAG,WAAuD,CAAC;YACrE,IAAI,IAAI,EAAE,UAAU,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC7C,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;aAC7D;YACD,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,EAAE,gBAAgB,CAAC;YAC5D,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;YAChD,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,EAAE,eAAe,CAAC;YAC1D,cAAc,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAChD,cAAc,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACnD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,wBAAwB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC7E,CAAC;;AA1FL,4DA2FC;AA5EG,gBAAgB;AACO,qCAAY,GAAG,kEAAkE,CAAC"}
|
|
@@ -12,7 +12,7 @@ import * as outputs from "./types/output";
|
|
|
12
12
|
* import * as pulumi from "@pulumi/pulumi";
|
|
13
13
|
* import * as scaleway from "@pulumiverse/scaleway";
|
|
14
14
|
*
|
|
15
|
-
* const main = new scaleway.
|
|
15
|
+
* const main = new scaleway.edgeservices.CacheStage("main", {
|
|
16
16
|
* pipelineId: mainScalewayEdgeServicesPipeline.id,
|
|
17
17
|
* backendStageId: mainScalewayEdgeServicesBackendStage.id,
|
|
18
18
|
* });
|
|
@@ -24,7 +24,7 @@ import * as outputs from "./types/output";
|
|
|
24
24
|
* import * as pulumi from "@pulumi/pulumi";
|
|
25
25
|
* import * as scaleway from "@pulumiverse/scaleway";
|
|
26
26
|
*
|
|
27
|
-
* const main = new scaleway.
|
|
27
|
+
* const main = new scaleway.edgeservices.CacheStage("main", {
|
|
28
28
|
* pipelineId: mainScalewayEdgeServicesPipeline.id,
|
|
29
29
|
* backendStageId: mainScalewayEdgeServicesBackendStage.id,
|
|
30
30
|
* purge: [{
|
|
@@ -43,6 +43,8 @@ import * as outputs from "./types/output";
|
|
|
43
43
|
* ```sh
|
|
44
44
|
* $ pulumi import scaleway:index/edgeServicesCacheStage:EdgeServicesCacheStage basic 11111111-1111-1111-1111-111111111111
|
|
45
45
|
* ```
|
|
46
|
+
*
|
|
47
|
+
* @deprecated scaleway.index/edgeservicescachestage.EdgeServicesCacheStage has been deprecated in favor of scaleway.edgeservices/cachestage.CacheStage
|
|
46
48
|
*/
|
|
47
49
|
export declare class EdgeServicesCacheStage extends pulumi.CustomResource {
|
|
48
50
|
/**
|
|
@@ -111,6 +113,7 @@ export declare class EdgeServicesCacheStage extends pulumi.CustomResource {
|
|
|
111
113
|
* @param args The arguments to use to populate this resource's properties.
|
|
112
114
|
* @param opts A bag of options that control this resource's behavior.
|
|
113
115
|
*/
|
|
116
|
+
/** @deprecated scaleway.index/edgeservicescachestage.EdgeServicesCacheStage has been deprecated in favor of scaleway.edgeservices/cachestage.CacheStage */
|
|
114
117
|
constructor(name: string, args: EdgeServicesCacheStageArgs, opts?: pulumi.CustomResourceOptions);
|
|
115
118
|
}
|
|
116
119
|
/**
|
|
@@ -16,7 +16,7 @@ const utilities = require("./utilities");
|
|
|
16
16
|
* import * as pulumi from "@pulumi/pulumi";
|
|
17
17
|
* import * as scaleway from "@pulumiverse/scaleway";
|
|
18
18
|
*
|
|
19
|
-
* const main = new scaleway.
|
|
19
|
+
* const main = new scaleway.edgeservices.CacheStage("main", {
|
|
20
20
|
* pipelineId: mainScalewayEdgeServicesPipeline.id,
|
|
21
21
|
* backendStageId: mainScalewayEdgeServicesBackendStage.id,
|
|
22
22
|
* });
|
|
@@ -28,7 +28,7 @@ const utilities = require("./utilities");
|
|
|
28
28
|
* import * as pulumi from "@pulumi/pulumi";
|
|
29
29
|
* import * as scaleway from "@pulumiverse/scaleway";
|
|
30
30
|
*
|
|
31
|
-
* const main = new scaleway.
|
|
31
|
+
* const main = new scaleway.edgeservices.CacheStage("main", {
|
|
32
32
|
* pipelineId: mainScalewayEdgeServicesPipeline.id,
|
|
33
33
|
* backendStageId: mainScalewayEdgeServicesBackendStage.id,
|
|
34
34
|
* purge: [{
|
|
@@ -47,6 +47,8 @@ const utilities = require("./utilities");
|
|
|
47
47
|
* ```sh
|
|
48
48
|
* $ pulumi import scaleway:index/edgeServicesCacheStage:EdgeServicesCacheStage basic 11111111-1111-1111-1111-111111111111
|
|
49
49
|
* ```
|
|
50
|
+
*
|
|
51
|
+
* @deprecated scaleway.index/edgeservicescachestage.EdgeServicesCacheStage has been deprecated in favor of scaleway.edgeservices/cachestage.CacheStage
|
|
50
52
|
*/
|
|
51
53
|
class EdgeServicesCacheStage extends pulumi.CustomResource {
|
|
52
54
|
/**
|
|
@@ -59,6 +61,7 @@ class EdgeServicesCacheStage extends pulumi.CustomResource {
|
|
|
59
61
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
60
62
|
*/
|
|
61
63
|
static get(name, id, state, opts) {
|
|
64
|
+
pulumi.log.warn("EdgeServicesCacheStage is deprecated: scaleway.index/edgeservicescachestage.EdgeServicesCacheStage has been deprecated in favor of scaleway.edgeservices/cachestage.CacheStage");
|
|
62
65
|
return new EdgeServicesCacheStage(name, state, { ...opts, id: id });
|
|
63
66
|
}
|
|
64
67
|
/**
|
|
@@ -71,7 +74,9 @@ class EdgeServicesCacheStage extends pulumi.CustomResource {
|
|
|
71
74
|
}
|
|
72
75
|
return obj['__pulumiType'] === EdgeServicesCacheStage.__pulumiType;
|
|
73
76
|
}
|
|
77
|
+
/** @deprecated scaleway.index/edgeservicescachestage.EdgeServicesCacheStage has been deprecated in favor of scaleway.edgeservices/cachestage.CacheStage */
|
|
74
78
|
constructor(name, argsOrState, opts) {
|
|
79
|
+
pulumi.log.warn("EdgeServicesCacheStage is deprecated: scaleway.index/edgeservicescachestage.EdgeServicesCacheStage has been deprecated in favor of scaleway.edgeservices/cachestage.CacheStage");
|
|
75
80
|
let resourceInputs = {};
|
|
76
81
|
opts = opts || {};
|
|
77
82
|
if (opts.id) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"edgeServicesCacheStage.js","sourceRoot":"","sources":["../edgeServicesCacheStage.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"edgeServicesCacheStage.js","sourceRoot":"","sources":["../edgeServicesCacheStage.ts"],"names":[],"mappings":"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"}
|
|
@@ -10,7 +10,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
10
10
|
* import * as pulumi from "@pulumi/pulumi";
|
|
11
11
|
* import * as scaleway from "@pulumiverse/scaleway";
|
|
12
12
|
*
|
|
13
|
-
* const main = new scaleway.
|
|
13
|
+
* const main = new scaleway.edgeservices.DnsStage("main", {
|
|
14
14
|
* pipelineId: mainScalewayEdgeServicesPipeline.id,
|
|
15
15
|
* fqdns: ["subdomain.example.com"],
|
|
16
16
|
* });
|
|
@@ -25,6 +25,8 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
25
25
|
* ```sh
|
|
26
26
|
* $ pulumi import scaleway:index/edgeServicesDnsStage:EdgeServicesDnsStage basic 11111111-1111-1111-1111-111111111111
|
|
27
27
|
* ```
|
|
28
|
+
*
|
|
29
|
+
* @deprecated scaleway.index/edgeservicesdnsstage.EdgeServicesDnsStage has been deprecated in favor of scaleway.edgeservices/dnsstage.DnsStage
|
|
28
30
|
*/
|
|
29
31
|
export declare class EdgeServicesDnsStage extends pulumi.CustomResource {
|
|
30
32
|
/**
|
|
@@ -89,6 +91,7 @@ export declare class EdgeServicesDnsStage extends pulumi.CustomResource {
|
|
|
89
91
|
* @param args The arguments to use to populate this resource's properties.
|
|
90
92
|
* @param opts A bag of options that control this resource's behavior.
|
|
91
93
|
*/
|
|
94
|
+
/** @deprecated scaleway.index/edgeservicesdnsstage.EdgeServicesDnsStage has been deprecated in favor of scaleway.edgeservices/dnsstage.DnsStage */
|
|
92
95
|
constructor(name: string, args: EdgeServicesDnsStageArgs, opts?: pulumi.CustomResourceOptions);
|
|
93
96
|
}
|
|
94
97
|
/**
|
package/edgeServicesDnsStage.js
CHANGED
|
@@ -16,7 +16,7 @@ const utilities = require("./utilities");
|
|
|
16
16
|
* import * as pulumi from "@pulumi/pulumi";
|
|
17
17
|
* import * as scaleway from "@pulumiverse/scaleway";
|
|
18
18
|
*
|
|
19
|
-
* const main = new scaleway.
|
|
19
|
+
* const main = new scaleway.edgeservices.DnsStage("main", {
|
|
20
20
|
* pipelineId: mainScalewayEdgeServicesPipeline.id,
|
|
21
21
|
* fqdns: ["subdomain.example.com"],
|
|
22
22
|
* });
|
|
@@ -31,6 +31,8 @@ const utilities = require("./utilities");
|
|
|
31
31
|
* ```sh
|
|
32
32
|
* $ pulumi import scaleway:index/edgeServicesDnsStage:EdgeServicesDnsStage basic 11111111-1111-1111-1111-111111111111
|
|
33
33
|
* ```
|
|
34
|
+
*
|
|
35
|
+
* @deprecated scaleway.index/edgeservicesdnsstage.EdgeServicesDnsStage has been deprecated in favor of scaleway.edgeservices/dnsstage.DnsStage
|
|
34
36
|
*/
|
|
35
37
|
class EdgeServicesDnsStage extends pulumi.CustomResource {
|
|
36
38
|
/**
|
|
@@ -43,6 +45,7 @@ class EdgeServicesDnsStage extends pulumi.CustomResource {
|
|
|
43
45
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
44
46
|
*/
|
|
45
47
|
static get(name, id, state, opts) {
|
|
48
|
+
pulumi.log.warn("EdgeServicesDnsStage is deprecated: scaleway.index/edgeservicesdnsstage.EdgeServicesDnsStage has been deprecated in favor of scaleway.edgeservices/dnsstage.DnsStage");
|
|
46
49
|
return new EdgeServicesDnsStage(name, state, { ...opts, id: id });
|
|
47
50
|
}
|
|
48
51
|
/**
|
|
@@ -55,7 +58,9 @@ class EdgeServicesDnsStage extends pulumi.CustomResource {
|
|
|
55
58
|
}
|
|
56
59
|
return obj['__pulumiType'] === EdgeServicesDnsStage.__pulumiType;
|
|
57
60
|
}
|
|
61
|
+
/** @deprecated scaleway.index/edgeservicesdnsstage.EdgeServicesDnsStage has been deprecated in favor of scaleway.edgeservices/dnsstage.DnsStage */
|
|
58
62
|
constructor(name, argsOrState, opts) {
|
|
63
|
+
pulumi.log.warn("EdgeServicesDnsStage is deprecated: scaleway.index/edgeservicesdnsstage.EdgeServicesDnsStage has been deprecated in favor of scaleway.edgeservices/dnsstage.DnsStage");
|
|
59
64
|
let resourceInputs = {};
|
|
60
65
|
opts = opts || {};
|
|
61
66
|
if (opts.id) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"edgeServicesDnsStage.js","sourceRoot":"","sources":["../edgeServicesDnsStage.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"edgeServicesDnsStage.js","sourceRoot":"","sources":["../edgeServicesDnsStage.ts"],"names":[],"mappings":"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"}
|
|
@@ -10,18 +10,18 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
10
10
|
* import * as pulumi from "@pulumi/pulumi";
|
|
11
11
|
* import * as scaleway from "@pulumiverse/scaleway";
|
|
12
12
|
*
|
|
13
|
-
* const main = new scaleway.
|
|
13
|
+
* const main = new scaleway.edgeservices.Pipeline("main", {
|
|
14
14
|
* name: "my-edge_services-pipeline",
|
|
15
15
|
* description: "pipeline description",
|
|
16
16
|
* });
|
|
17
|
-
* const
|
|
17
|
+
* const mainDnsStage = new scaleway.edgeservices.DnsStage("main", {
|
|
18
18
|
* pipelineId: main.id,
|
|
19
19
|
* tlsStageId: mainScalewayEdgeServicesTlsStage.id,
|
|
20
20
|
* fqdns: ["subdomain.example.com"],
|
|
21
21
|
* });
|
|
22
|
-
* const
|
|
22
|
+
* const mainHeadStage = new scaleway.edgeservices.HeadStage("main", {
|
|
23
23
|
* pipelineId: main.id,
|
|
24
|
-
* headStageId:
|
|
24
|
+
* headStageId: mainDnsStage.id,
|
|
25
25
|
* });
|
|
26
26
|
* ```
|
|
27
27
|
*
|
|
@@ -34,6 +34,8 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
34
34
|
* ```sh
|
|
35
35
|
* $ pulumi import scaleway:index/edgeServicesHeadStage:EdgeServicesHeadStage main 11111111-1111-1111-1111-111111111111
|
|
36
36
|
* ```
|
|
37
|
+
*
|
|
38
|
+
* @deprecated scaleway.index/edgeservicesheadstage.EdgeServicesHeadStage has been deprecated in favor of scaleway.edgeservices/headstage.HeadStage
|
|
37
39
|
*/
|
|
38
40
|
export declare class EdgeServicesHeadStage extends pulumi.CustomResource {
|
|
39
41
|
/**
|
|
@@ -66,6 +68,7 @@ export declare class EdgeServicesHeadStage extends pulumi.CustomResource {
|
|
|
66
68
|
* @param args The arguments to use to populate this resource's properties.
|
|
67
69
|
* @param opts A bag of options that control this resource's behavior.
|
|
68
70
|
*/
|
|
71
|
+
/** @deprecated scaleway.index/edgeservicesheadstage.EdgeServicesHeadStage has been deprecated in favor of scaleway.edgeservices/headstage.HeadStage */
|
|
69
72
|
constructor(name: string, args: EdgeServicesHeadStageArgs, opts?: pulumi.CustomResourceOptions);
|
|
70
73
|
}
|
|
71
74
|
/**
|
package/edgeServicesHeadStage.js
CHANGED
|
@@ -16,18 +16,18 @@ const utilities = require("./utilities");
|
|
|
16
16
|
* import * as pulumi from "@pulumi/pulumi";
|
|
17
17
|
* import * as scaleway from "@pulumiverse/scaleway";
|
|
18
18
|
*
|
|
19
|
-
* const main = new scaleway.
|
|
19
|
+
* const main = new scaleway.edgeservices.Pipeline("main", {
|
|
20
20
|
* name: "my-edge_services-pipeline",
|
|
21
21
|
* description: "pipeline description",
|
|
22
22
|
* });
|
|
23
|
-
* const
|
|
23
|
+
* const mainDnsStage = new scaleway.edgeservices.DnsStage("main", {
|
|
24
24
|
* pipelineId: main.id,
|
|
25
25
|
* tlsStageId: mainScalewayEdgeServicesTlsStage.id,
|
|
26
26
|
* fqdns: ["subdomain.example.com"],
|
|
27
27
|
* });
|
|
28
|
-
* const
|
|
28
|
+
* const mainHeadStage = new scaleway.edgeservices.HeadStage("main", {
|
|
29
29
|
* pipelineId: main.id,
|
|
30
|
-
* headStageId:
|
|
30
|
+
* headStageId: mainDnsStage.id,
|
|
31
31
|
* });
|
|
32
32
|
* ```
|
|
33
33
|
*
|
|
@@ -40,6 +40,8 @@ const utilities = require("./utilities");
|
|
|
40
40
|
* ```sh
|
|
41
41
|
* $ pulumi import scaleway:index/edgeServicesHeadStage:EdgeServicesHeadStage main 11111111-1111-1111-1111-111111111111
|
|
42
42
|
* ```
|
|
43
|
+
*
|
|
44
|
+
* @deprecated scaleway.index/edgeservicesheadstage.EdgeServicesHeadStage has been deprecated in favor of scaleway.edgeservices/headstage.HeadStage
|
|
43
45
|
*/
|
|
44
46
|
class EdgeServicesHeadStage extends pulumi.CustomResource {
|
|
45
47
|
/**
|
|
@@ -52,6 +54,7 @@ class EdgeServicesHeadStage extends pulumi.CustomResource {
|
|
|
52
54
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
53
55
|
*/
|
|
54
56
|
static get(name, id, state, opts) {
|
|
57
|
+
pulumi.log.warn("EdgeServicesHeadStage is deprecated: scaleway.index/edgeservicesheadstage.EdgeServicesHeadStage has been deprecated in favor of scaleway.edgeservices/headstage.HeadStage");
|
|
55
58
|
return new EdgeServicesHeadStage(name, state, { ...opts, id: id });
|
|
56
59
|
}
|
|
57
60
|
/**
|
|
@@ -64,7 +67,9 @@ class EdgeServicesHeadStage extends pulumi.CustomResource {
|
|
|
64
67
|
}
|
|
65
68
|
return obj['__pulumiType'] === EdgeServicesHeadStage.__pulumiType;
|
|
66
69
|
}
|
|
70
|
+
/** @deprecated scaleway.index/edgeservicesheadstage.EdgeServicesHeadStage has been deprecated in favor of scaleway.edgeservices/headstage.HeadStage */
|
|
67
71
|
constructor(name, argsOrState, opts) {
|
|
72
|
+
pulumi.log.warn("EdgeServicesHeadStage is deprecated: scaleway.index/edgeservicesheadstage.EdgeServicesHeadStage has been deprecated in favor of scaleway.edgeservices/headstage.HeadStage");
|
|
68
73
|
let resourceInputs = {};
|
|
69
74
|
opts = opts || {};
|
|
70
75
|
if (opts.id) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"edgeServicesHeadStage.js","sourceRoot":"","sources":["../edgeServicesHeadStage.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"edgeServicesHeadStage.js","sourceRoot":"","sources":["../edgeServicesHeadStage.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqCG;AACH,MAAa,qBAAsB,SAAQ,MAAM,CAAC,cAAc;IAC5D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAkC,EAAE,IAAmC;QAChI,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,2KAA2K,CAAC,CAAA;QAC5L,OAAO,IAAI,qBAAqB,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC5E,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,qBAAqB,CAAC,YAAY,CAAC;IACtE,CAAC;IAoBD,uJAAuJ;IACvJ,YAAY,IAAY,EAAE,WAAoE,EAAE,IAAmC;QAC/H,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,2KAA2K,CAAC,CAAA;QAC5L,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAqD,CAAC;YACpE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;SACpD;aAAM;YACH,MAAM,IAAI,GAAG,WAAoD,CAAC;YAClE,IAAI,IAAI,EAAE,UAAU,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC7C,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;aAC7D;YACD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,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,KAAK,CAAC,qBAAqB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC1E,CAAC;;AAlEL,sDAmEC;AApDG,gBAAgB;AACO,kCAAY,GAAG,4DAA4D,CAAC"}
|
|
@@ -10,7 +10,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
10
10
|
* import * as pulumi from "@pulumi/pulumi";
|
|
11
11
|
* import * as scaleway from "@pulumiverse/scaleway";
|
|
12
12
|
*
|
|
13
|
-
* const main = new scaleway.
|
|
13
|
+
* const main = new scaleway.edgeservices.Pipeline("main", {
|
|
14
14
|
* name: "pipeline-name",
|
|
15
15
|
* description: "pipeline description",
|
|
16
16
|
* });
|
|
@@ -22,28 +22,28 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
22
22
|
* import * as pulumi from "@pulumi/pulumi";
|
|
23
23
|
* import * as scaleway from "@pulumiverse/scaleway";
|
|
24
24
|
*
|
|
25
|
-
* const main = new scaleway.
|
|
25
|
+
* const main = new scaleway.edgeservices.Pipeline("main", {
|
|
26
26
|
* name: "pipeline-name",
|
|
27
27
|
* description: "pipeline description",
|
|
28
28
|
* });
|
|
29
|
-
* const
|
|
29
|
+
* const mainBackendStage = new scaleway.edgeservices.BackendStage("main", {
|
|
30
30
|
* pipelineId: main.id,
|
|
31
31
|
* s3BackendConfig: {
|
|
32
32
|
* bucketName: "my-bucket-name",
|
|
33
33
|
* bucketRegion: "fr-par",
|
|
34
34
|
* },
|
|
35
35
|
* });
|
|
36
|
-
* const
|
|
36
|
+
* const mainWafStage = new scaleway.edgeservices.WafStage("main", {
|
|
37
37
|
* pipelineId: main.id,
|
|
38
|
-
* backendStageId:
|
|
38
|
+
* backendStageId: mainBackendStage.id,
|
|
39
39
|
* mode: "enable",
|
|
40
40
|
* paranoiaLevel: 3,
|
|
41
41
|
* });
|
|
42
|
-
* const
|
|
42
|
+
* const mainRouteStage = new scaleway.edgeservices.RouteStage("main", {
|
|
43
43
|
* pipelineId: main.id,
|
|
44
|
-
* wafStageId:
|
|
44
|
+
* wafStageId: mainWafStage.id,
|
|
45
45
|
* rules: [{
|
|
46
|
-
* backendStageId:
|
|
46
|
+
* backendStageId: mainBackendStage.id,
|
|
47
47
|
* ruleHttpMatch: {
|
|
48
48
|
* methodFilters: [
|
|
49
49
|
* "get",
|
|
@@ -56,23 +56,23 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
56
56
|
* },
|
|
57
57
|
* }],
|
|
58
58
|
* });
|
|
59
|
-
* const
|
|
59
|
+
* const mainCacheStage = new scaleway.edgeservices.CacheStage("main", {
|
|
60
60
|
* pipelineId: main.id,
|
|
61
|
-
* routeStageId:
|
|
61
|
+
* routeStageId: mainRouteStage.id,
|
|
62
62
|
* });
|
|
63
|
-
* const
|
|
63
|
+
* const mainTlsStage = new scaleway.edgeservices.TlsStage("main", {
|
|
64
64
|
* pipelineId: main.id,
|
|
65
|
-
* cacheStageId:
|
|
65
|
+
* cacheStageId: mainCacheStage.id,
|
|
66
66
|
* managedCertificate: true,
|
|
67
67
|
* });
|
|
68
|
-
* const
|
|
68
|
+
* const mainDnsStage = new scaleway.edgeservices.DnsStage("main", {
|
|
69
69
|
* pipelineId: main.id,
|
|
70
|
-
* tlsStageId:
|
|
70
|
+
* tlsStageId: mainTlsStage.id,
|
|
71
71
|
* fqdns: ["subdomain.example.com"],
|
|
72
72
|
* });
|
|
73
|
-
* const
|
|
73
|
+
* const mainHeadStage = new scaleway.edgeservices.HeadStage("main", {
|
|
74
74
|
* pipelineId: main.id,
|
|
75
|
-
* headStageId:
|
|
75
|
+
* headStageId: mainDnsStage.id,
|
|
76
76
|
* });
|
|
77
77
|
* ```
|
|
78
78
|
*
|
|
@@ -85,6 +85,8 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
85
85
|
* ```sh
|
|
86
86
|
* $ pulumi import scaleway:index/edgeServicesPipeline:EdgeServicesPipeline basic 11111111-1111-1111-1111-111111111111
|
|
87
87
|
* ```
|
|
88
|
+
*
|
|
89
|
+
* @deprecated scaleway.index/edgeservicespipeline.EdgeServicesPipeline has been deprecated in favor of scaleway.edgeservices/pipeline.Pipeline
|
|
88
90
|
*/
|
|
89
91
|
export declare class EdgeServicesPipeline extends pulumi.CustomResource {
|
|
90
92
|
/**
|
|
@@ -133,6 +135,7 @@ export declare class EdgeServicesPipeline extends pulumi.CustomResource {
|
|
|
133
135
|
* @param args The arguments to use to populate this resource's properties.
|
|
134
136
|
* @param opts A bag of options that control this resource's behavior.
|
|
135
137
|
*/
|
|
138
|
+
/** @deprecated scaleway.index/edgeservicespipeline.EdgeServicesPipeline has been deprecated in favor of scaleway.edgeservices/pipeline.Pipeline */
|
|
136
139
|
constructor(name: string, args?: EdgeServicesPipelineArgs, opts?: pulumi.CustomResourceOptions);
|
|
137
140
|
}
|
|
138
141
|
/**
|
package/edgeServicesPipeline.js
CHANGED
|
@@ -16,7 +16,7 @@ const utilities = require("./utilities");
|
|
|
16
16
|
* import * as pulumi from "@pulumi/pulumi";
|
|
17
17
|
* import * as scaleway from "@pulumiverse/scaleway";
|
|
18
18
|
*
|
|
19
|
-
* const main = new scaleway.
|
|
19
|
+
* const main = new scaleway.edgeservices.Pipeline("main", {
|
|
20
20
|
* name: "pipeline-name",
|
|
21
21
|
* description: "pipeline description",
|
|
22
22
|
* });
|
|
@@ -28,28 +28,28 @@ const utilities = require("./utilities");
|
|
|
28
28
|
* import * as pulumi from "@pulumi/pulumi";
|
|
29
29
|
* import * as scaleway from "@pulumiverse/scaleway";
|
|
30
30
|
*
|
|
31
|
-
* const main = new scaleway.
|
|
31
|
+
* const main = new scaleway.edgeservices.Pipeline("main", {
|
|
32
32
|
* name: "pipeline-name",
|
|
33
33
|
* description: "pipeline description",
|
|
34
34
|
* });
|
|
35
|
-
* const
|
|
35
|
+
* const mainBackendStage = new scaleway.edgeservices.BackendStage("main", {
|
|
36
36
|
* pipelineId: main.id,
|
|
37
37
|
* s3BackendConfig: {
|
|
38
38
|
* bucketName: "my-bucket-name",
|
|
39
39
|
* bucketRegion: "fr-par",
|
|
40
40
|
* },
|
|
41
41
|
* });
|
|
42
|
-
* const
|
|
42
|
+
* const mainWafStage = new scaleway.edgeservices.WafStage("main", {
|
|
43
43
|
* pipelineId: main.id,
|
|
44
|
-
* backendStageId:
|
|
44
|
+
* backendStageId: mainBackendStage.id,
|
|
45
45
|
* mode: "enable",
|
|
46
46
|
* paranoiaLevel: 3,
|
|
47
47
|
* });
|
|
48
|
-
* const
|
|
48
|
+
* const mainRouteStage = new scaleway.edgeservices.RouteStage("main", {
|
|
49
49
|
* pipelineId: main.id,
|
|
50
|
-
* wafStageId:
|
|
50
|
+
* wafStageId: mainWafStage.id,
|
|
51
51
|
* rules: [{
|
|
52
|
-
* backendStageId:
|
|
52
|
+
* backendStageId: mainBackendStage.id,
|
|
53
53
|
* ruleHttpMatch: {
|
|
54
54
|
* methodFilters: [
|
|
55
55
|
* "get",
|
|
@@ -62,23 +62,23 @@ const utilities = require("./utilities");
|
|
|
62
62
|
* },
|
|
63
63
|
* }],
|
|
64
64
|
* });
|
|
65
|
-
* const
|
|
65
|
+
* const mainCacheStage = new scaleway.edgeservices.CacheStage("main", {
|
|
66
66
|
* pipelineId: main.id,
|
|
67
|
-
* routeStageId:
|
|
67
|
+
* routeStageId: mainRouteStage.id,
|
|
68
68
|
* });
|
|
69
|
-
* const
|
|
69
|
+
* const mainTlsStage = new scaleway.edgeservices.TlsStage("main", {
|
|
70
70
|
* pipelineId: main.id,
|
|
71
|
-
* cacheStageId:
|
|
71
|
+
* cacheStageId: mainCacheStage.id,
|
|
72
72
|
* managedCertificate: true,
|
|
73
73
|
* });
|
|
74
|
-
* const
|
|
74
|
+
* const mainDnsStage = new scaleway.edgeservices.DnsStage("main", {
|
|
75
75
|
* pipelineId: main.id,
|
|
76
|
-
* tlsStageId:
|
|
76
|
+
* tlsStageId: mainTlsStage.id,
|
|
77
77
|
* fqdns: ["subdomain.example.com"],
|
|
78
78
|
* });
|
|
79
|
-
* const
|
|
79
|
+
* const mainHeadStage = new scaleway.edgeservices.HeadStage("main", {
|
|
80
80
|
* pipelineId: main.id,
|
|
81
|
-
* headStageId:
|
|
81
|
+
* headStageId: mainDnsStage.id,
|
|
82
82
|
* });
|
|
83
83
|
* ```
|
|
84
84
|
*
|
|
@@ -91,6 +91,8 @@ const utilities = require("./utilities");
|
|
|
91
91
|
* ```sh
|
|
92
92
|
* $ pulumi import scaleway:index/edgeServicesPipeline:EdgeServicesPipeline basic 11111111-1111-1111-1111-111111111111
|
|
93
93
|
* ```
|
|
94
|
+
*
|
|
95
|
+
* @deprecated scaleway.index/edgeservicespipeline.EdgeServicesPipeline has been deprecated in favor of scaleway.edgeservices/pipeline.Pipeline
|
|
94
96
|
*/
|
|
95
97
|
class EdgeServicesPipeline extends pulumi.CustomResource {
|
|
96
98
|
/**
|
|
@@ -103,6 +105,7 @@ class EdgeServicesPipeline extends pulumi.CustomResource {
|
|
|
103
105
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
104
106
|
*/
|
|
105
107
|
static get(name, id, state, opts) {
|
|
108
|
+
pulumi.log.warn("EdgeServicesPipeline is deprecated: scaleway.index/edgeservicespipeline.EdgeServicesPipeline has been deprecated in favor of scaleway.edgeservices/pipeline.Pipeline");
|
|
106
109
|
return new EdgeServicesPipeline(name, state, { ...opts, id: id });
|
|
107
110
|
}
|
|
108
111
|
/**
|
|
@@ -115,7 +118,9 @@ class EdgeServicesPipeline extends pulumi.CustomResource {
|
|
|
115
118
|
}
|
|
116
119
|
return obj['__pulumiType'] === EdgeServicesPipeline.__pulumiType;
|
|
117
120
|
}
|
|
121
|
+
/** @deprecated scaleway.index/edgeservicespipeline.EdgeServicesPipeline has been deprecated in favor of scaleway.edgeservices/pipeline.Pipeline */
|
|
118
122
|
constructor(name, argsOrState, opts) {
|
|
123
|
+
pulumi.log.warn("EdgeServicesPipeline is deprecated: scaleway.index/edgeservicespipeline.EdgeServicesPipeline has been deprecated in favor of scaleway.edgeservices/pipeline.Pipeline");
|
|
119
124
|
let resourceInputs = {};
|
|
120
125
|
opts = opts || {};
|
|
121
126
|
if (opts.id) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"edgeServicesPipeline.js","sourceRoot":"","sources":["../edgeServicesPipeline.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"edgeServicesPipeline.js","sourceRoot":"","sources":["../edgeServicesPipeline.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAwFG;AACH,MAAa,oBAAqB,SAAQ,MAAM,CAAC,cAAc;IAC3D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAiC,EAAE,IAAmC;QAC/H,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,sKAAsK,CAAC,CAAA;QACvL,OAAO,IAAI,oBAAoB,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC3E,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,oBAAoB,CAAC,YAAY,CAAC;IACrE,CAAC;IAoCD,mJAAmJ;IACnJ,YAAY,IAAY,EAAE,WAAkE,EAAE,IAAmC;QAC7H,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,sKAAsK,CAAC,CAAA;QACvL,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAoD,CAAC;YACnE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;SAClD;aAAM;YACH,MAAM,IAAI,GAAG,WAAmD,CAAC;YACjE,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAChD,cAAc,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC7C,cAAc,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACnD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,oBAAoB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACzE,CAAC;;AAvFL,oDAwFC;AAzEG,gBAAgB;AACO,iCAAY,GAAG,0DAA0D,CAAC"}
|
package/edgeServicesPlan.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
10
10
|
* import * as pulumi from "@pulumi/pulumi";
|
|
11
11
|
* import * as scaleway from "@pulumiverse/scaleway";
|
|
12
12
|
*
|
|
13
|
-
* const main = new scaleway.
|
|
13
|
+
* const main = new scaleway.edgeservices.Plan("main", {name: "starter"});
|
|
14
14
|
* ```
|
|
15
15
|
*
|
|
16
16
|
* ## Import
|
|
@@ -22,6 +22,8 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
22
22
|
* ```sh
|
|
23
23
|
* $ pulumi import scaleway:index/edgeServicesPlan:EdgeServicesPlan main 11111111-1111-1111-1111-111111111111/starter
|
|
24
24
|
* ```
|
|
25
|
+
*
|
|
26
|
+
* @deprecated scaleway.index/edgeservicesplan.EdgeServicesPlan has been deprecated in favor of scaleway.edgeservices/plan.Plan
|
|
25
27
|
*/
|
|
26
28
|
export declare class EdgeServicesPlan extends pulumi.CustomResource {
|
|
27
29
|
/**
|
|
@@ -54,6 +56,7 @@ export declare class EdgeServicesPlan extends pulumi.CustomResource {
|
|
|
54
56
|
* @param args The arguments to use to populate this resource's properties.
|
|
55
57
|
* @param opts A bag of options that control this resource's behavior.
|
|
56
58
|
*/
|
|
59
|
+
/** @deprecated scaleway.index/edgeservicesplan.EdgeServicesPlan has been deprecated in favor of scaleway.edgeservices/plan.Plan */
|
|
57
60
|
constructor(name: string, args?: EdgeServicesPlanArgs, opts?: pulumi.CustomResourceOptions);
|
|
58
61
|
}
|
|
59
62
|
/**
|