@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.
Files changed (63) hide show
  1. package/edgeServicesBackendStage.d.ts +9 -6
  2. package/edgeServicesBackendStage.js +11 -6
  3. package/edgeServicesBackendStage.js.map +1 -1
  4. package/edgeServicesCacheStage.d.ts +5 -2
  5. package/edgeServicesCacheStage.js +7 -2
  6. package/edgeServicesCacheStage.js.map +1 -1
  7. package/edgeServicesDnsStage.d.ts +4 -1
  8. package/edgeServicesDnsStage.js +6 -1
  9. package/edgeServicesDnsStage.js.map +1 -1
  10. package/edgeServicesHeadStage.d.ts +7 -4
  11. package/edgeServicesHeadStage.js +9 -4
  12. package/edgeServicesHeadStage.js.map +1 -1
  13. package/edgeServicesPipeline.d.ts +19 -16
  14. package/edgeServicesPipeline.js +21 -16
  15. package/edgeServicesPipeline.js.map +1 -1
  16. package/edgeServicesPlan.d.ts +4 -1
  17. package/edgeServicesPlan.js +6 -1
  18. package/edgeServicesPlan.js.map +1 -1
  19. package/edgeServicesRouteStage.d.ts +4 -1
  20. package/edgeServicesRouteStage.js +6 -1
  21. package/edgeServicesRouteStage.js.map +1 -1
  22. package/edgeServicesTlsStage.d.ts +5 -2
  23. package/edgeServicesTlsStage.js +7 -2
  24. package/edgeServicesTlsStage.js.map +1 -1
  25. package/edgeServicesWafStage.d.ts +4 -1
  26. package/edgeServicesWafStage.js +6 -1
  27. package/edgeServicesWafStage.js.map +1 -1
  28. package/edgeservices/backendStage.d.ts +171 -0
  29. package/edgeservices/backendStage.js +133 -0
  30. package/edgeservices/backendStage.js.map +1 -0
  31. package/edgeservices/cacheStage.d.ts +205 -0
  32. package/edgeservices/cacheStage.js +117 -0
  33. package/edgeservices/cacheStage.js.map +1 -0
  34. package/edgeservices/dnsStage.d.ts +167 -0
  35. package/edgeservices/dnsStage.js +99 -0
  36. package/edgeservices/dnsStage.js.map +1 -0
  37. package/edgeservices/headStage.d.ts +96 -0
  38. package/edgeservices/headStage.js +92 -0
  39. package/edgeservices/headStage.js.map +1 -0
  40. package/edgeservices/index.d.ts +27 -0
  41. package/edgeservices/index.js +62 -0
  42. package/edgeservices/index.js.map +1 -0
  43. package/edgeservices/pipeline.d.ts +183 -0
  44. package/edgeservices/pipeline.js +148 -0
  45. package/edgeservices/pipeline.js.map +1 -0
  46. package/edgeservices/plan.d.ts +84 -0
  47. package/edgeservices/plan.js +77 -0
  48. package/edgeservices/plan.js.map +1 -0
  49. package/edgeservices/routeStage.d.ts +142 -0
  50. package/edgeservices/routeStage.js +104 -0
  51. package/edgeservices/routeStage.js.map +1 -0
  52. package/edgeservices/tlsStage.d.ts +200 -0
  53. package/edgeservices/tlsStage.js +116 -0
  54. package/edgeservices/tlsStage.js.map +1 -0
  55. package/edgeservices/wafStage.d.ts +140 -0
  56. package/edgeservices/wafStage.js +97 -0
  57. package/edgeservices/wafStage.js.map +1 -0
  58. package/index.d.ts +2 -1
  59. package/index.js +3 -1
  60. package/index.js.map +1 -1
  61. package/package.json +2 -2
  62. package/types/input.d.ts +98 -0
  63. 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 mainEdgeServicesPipeline = new scaleway.EdgeServicesPipeline("main", {name: "my-pipeline"});
22
- * const mainEdgeServicesBackendStage = new scaleway.EdgeServicesBackendStage("main", {
23
- * pipelineId: mainEdgeServicesPipeline.id,
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 mainEdgeServicesPipeline = new scaleway.EdgeServicesPipeline("main", {name: "my-pipeline"});
50
- * const mainEdgeServicesBackendStage = new scaleway.EdgeServicesBackendStage("main", {
51
- * pipelineId: mainEdgeServicesPipeline.id,
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 mainEdgeServicesPipeline = new scaleway.EdgeServicesPipeline("main", {name: "my-pipeline"});
26
- * const mainEdgeServicesBackendStage = new scaleway.EdgeServicesBackendStage("main", {
27
- * pipelineId: mainEdgeServicesPipeline.id,
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 mainEdgeServicesPipeline = new scaleway.EdgeServicesPipeline("main", {name: "my-pipeline"});
54
- * const mainEdgeServicesBackendStage = new scaleway.EdgeServicesBackendStage("main", {
55
- * pipelineId: mainEdgeServicesPipeline.id,
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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoEG;AACH,MAAa,wBAAyB,SAAQ,MAAM,CAAC,cAAc;IAC/D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAqC,EAAE,IAAmC;QACnI,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;IAmCD,YAAY,IAAY,EAAE,WAA0E,EAAE,IAAmC;QACrI,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;;AAtFL,4DAuFC;AAzEG,gBAAgB;AACO,qCAAY,GAAG,kEAAkE,CAAC"}
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.EdgeServicesCacheStage("main", {
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.EdgeServicesCacheStage("main", {
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.EdgeServicesCacheStage("main", {
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.EdgeServicesCacheStage("main", {
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":"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"}
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.EdgeServicesDnsStage("main", {
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
  /**
@@ -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.EdgeServicesDnsStage("main", {
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":"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"}
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.EdgeServicesPipeline("main", {
13
+ * const main = new scaleway.edgeservices.Pipeline("main", {
14
14
  * name: "my-edge_services-pipeline",
15
15
  * description: "pipeline description",
16
16
  * });
17
- * const mainEdgeServicesDnsStage = new scaleway.EdgeServicesDnsStage("main", {
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 mainEdgeServicesHeadStage = new scaleway.EdgeServicesHeadStage("main", {
22
+ * const mainHeadStage = new scaleway.edgeservices.HeadStage("main", {
23
23
  * pipelineId: main.id,
24
- * headStageId: mainEdgeServicesDnsStage.id,
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
  /**
@@ -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.EdgeServicesPipeline("main", {
19
+ * const main = new scaleway.edgeservices.Pipeline("main", {
20
20
  * name: "my-edge_services-pipeline",
21
21
  * description: "pipeline description",
22
22
  * });
23
- * const mainEdgeServicesDnsStage = new scaleway.EdgeServicesDnsStage("main", {
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 mainEdgeServicesHeadStage = new scaleway.EdgeServicesHeadStage("main", {
28
+ * const mainHeadStage = new scaleway.edgeservices.HeadStage("main", {
29
29
  * pipelineId: main.id,
30
- * headStageId: mainEdgeServicesDnsStage.id,
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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmCG;AACH,MAAa,qBAAsB,SAAQ,MAAM,CAAC,cAAc;IAC5D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAkC,EAAE,IAAmC;QAChI,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;IAmBD,YAAY,IAAY,EAAE,WAAoE,EAAE,IAAmC;QAC/H,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;;AA9DL,sDA+DC;AAjDG,gBAAgB;AACO,kCAAY,GAAG,4DAA4D,CAAC"}
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.EdgeServicesPipeline("main", {
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.EdgeServicesPipeline("main", {
25
+ * const main = new scaleway.edgeservices.Pipeline("main", {
26
26
  * name: "pipeline-name",
27
27
  * description: "pipeline description",
28
28
  * });
29
- * const mainEdgeServicesBackendStage = new scaleway.EdgeServicesBackendStage("main", {
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 mainEdgeServicesWafStage = new scaleway.EdgeServicesWafStage("main", {
36
+ * const mainWafStage = new scaleway.edgeservices.WafStage("main", {
37
37
  * pipelineId: main.id,
38
- * backendStageId: mainEdgeServicesBackendStage.id,
38
+ * backendStageId: mainBackendStage.id,
39
39
  * mode: "enable",
40
40
  * paranoiaLevel: 3,
41
41
  * });
42
- * const mainEdgeServicesRouteStage = new scaleway.EdgeServicesRouteStage("main", {
42
+ * const mainRouteStage = new scaleway.edgeservices.RouteStage("main", {
43
43
  * pipelineId: main.id,
44
- * wafStageId: mainEdgeServicesWafStage.id,
44
+ * wafStageId: mainWafStage.id,
45
45
  * rules: [{
46
- * backendStageId: mainEdgeServicesBackendStage.id,
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 mainEdgeServicesCacheStage = new scaleway.EdgeServicesCacheStage("main", {
59
+ * const mainCacheStage = new scaleway.edgeservices.CacheStage("main", {
60
60
  * pipelineId: main.id,
61
- * routeStageId: mainEdgeServicesRouteStage.id,
61
+ * routeStageId: mainRouteStage.id,
62
62
  * });
63
- * const mainEdgeServicesTlsStage = new scaleway.EdgeServicesTlsStage("main", {
63
+ * const mainTlsStage = new scaleway.edgeservices.TlsStage("main", {
64
64
  * pipelineId: main.id,
65
- * cacheStageId: mainEdgeServicesCacheStage.id,
65
+ * cacheStageId: mainCacheStage.id,
66
66
  * managedCertificate: true,
67
67
  * });
68
- * const mainEdgeServicesDnsStage = new scaleway.EdgeServicesDnsStage("main", {
68
+ * const mainDnsStage = new scaleway.edgeservices.DnsStage("main", {
69
69
  * pipelineId: main.id,
70
- * tlsStageId: mainEdgeServicesTlsStage.id,
70
+ * tlsStageId: mainTlsStage.id,
71
71
  * fqdns: ["subdomain.example.com"],
72
72
  * });
73
- * const mainEdgeServicesHeadStage = new scaleway.EdgeServicesHeadStage("main", {
73
+ * const mainHeadStage = new scaleway.edgeservices.HeadStage("main", {
74
74
  * pipelineId: main.id,
75
- * headStageId: mainEdgeServicesDnsStage.id,
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
  /**
@@ -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.EdgeServicesPipeline("main", {
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.EdgeServicesPipeline("main", {
31
+ * const main = new scaleway.edgeservices.Pipeline("main", {
32
32
  * name: "pipeline-name",
33
33
  * description: "pipeline description",
34
34
  * });
35
- * const mainEdgeServicesBackendStage = new scaleway.EdgeServicesBackendStage("main", {
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 mainEdgeServicesWafStage = new scaleway.EdgeServicesWafStage("main", {
42
+ * const mainWafStage = new scaleway.edgeservices.WafStage("main", {
43
43
  * pipelineId: main.id,
44
- * backendStageId: mainEdgeServicesBackendStage.id,
44
+ * backendStageId: mainBackendStage.id,
45
45
  * mode: "enable",
46
46
  * paranoiaLevel: 3,
47
47
  * });
48
- * const mainEdgeServicesRouteStage = new scaleway.EdgeServicesRouteStage("main", {
48
+ * const mainRouteStage = new scaleway.edgeservices.RouteStage("main", {
49
49
  * pipelineId: main.id,
50
- * wafStageId: mainEdgeServicesWafStage.id,
50
+ * wafStageId: mainWafStage.id,
51
51
  * rules: [{
52
- * backendStageId: mainEdgeServicesBackendStage.id,
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 mainEdgeServicesCacheStage = new scaleway.EdgeServicesCacheStage("main", {
65
+ * const mainCacheStage = new scaleway.edgeservices.CacheStage("main", {
66
66
  * pipelineId: main.id,
67
- * routeStageId: mainEdgeServicesRouteStage.id,
67
+ * routeStageId: mainRouteStage.id,
68
68
  * });
69
- * const mainEdgeServicesTlsStage = new scaleway.EdgeServicesTlsStage("main", {
69
+ * const mainTlsStage = new scaleway.edgeservices.TlsStage("main", {
70
70
  * pipelineId: main.id,
71
- * cacheStageId: mainEdgeServicesCacheStage.id,
71
+ * cacheStageId: mainCacheStage.id,
72
72
  * managedCertificate: true,
73
73
  * });
74
- * const mainEdgeServicesDnsStage = new scaleway.EdgeServicesDnsStage("main", {
74
+ * const mainDnsStage = new scaleway.edgeservices.DnsStage("main", {
75
75
  * pipelineId: main.id,
76
- * tlsStageId: mainEdgeServicesTlsStage.id,
76
+ * tlsStageId: mainTlsStage.id,
77
77
  * fqdns: ["subdomain.example.com"],
78
78
  * });
79
- * const mainEdgeServicesHeadStage = new scaleway.EdgeServicesHeadStage("main", {
79
+ * const mainHeadStage = new scaleway.edgeservices.HeadStage("main", {
80
80
  * pipelineId: main.id,
81
- * headStageId: mainEdgeServicesDnsStage.id,
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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsFG;AACH,MAAa,oBAAqB,SAAQ,MAAM,CAAC,cAAc;IAC3D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAiC,EAAE,IAAmC;QAC/H,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;IAmCD,YAAY,IAAY,EAAE,WAAkE,EAAE,IAAmC;QAC7H,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;;AAnFL,oDAoFC;AAtEG,gBAAgB;AACO,iCAAY,GAAG,0DAA0D,CAAC"}
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"}
@@ -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.EdgeServicesPlan("main", {name: "starter"});
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
  /**