@pulumiverse/scaleway 1.18.0 → 1.19.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/cockpitAlertManager.d.ts +27 -0
- package/cockpitAlertManager.js +27 -0
- package/cockpitAlertManager.js.map +1 -1
- package/getInstancePrivateNic.d.ts +1 -0
- package/getInstancePrivateNic.js.map +1 -1
- package/getRegistryImageTag.d.ts +93 -0
- package/getRegistryImageTag.js +36 -0
- package/getRegistryImageTag.js.map +1 -0
- package/index.d.ts +3 -27
- package/index.js +9 -45
- package/index.js.map +1 -1
- package/instancePrivateNic.d.ts +44 -1
- package/instancePrivateNic.js +34 -1
- package/instancePrivateNic.js.map +1 -1
- package/package.json +2 -2
- package/types/input.d.ts +0 -88
- package/types/output.d.ts +0 -88
- package/documentdbDatabase.d.ts +0 -149
- package/documentdbDatabase.js +0 -99
- package/documentdbDatabase.js.map +0 -1
- package/documentdbInstance.d.ts +0 -249
- package/documentdbInstance.js +0 -115
- package/documentdbInstance.js.map +0 -1
- package/documentdbPrivateNetworkEndpoint.d.ts +0 -130
- package/documentdbPrivateNetworkEndpoint.js +0 -97
- package/documentdbPrivateNetworkEndpoint.js.map +0 -1
- package/documentdbPrivilege.d.ts +0 -131
- package/documentdbPrivilege.js +0 -104
- package/documentdbPrivilege.js.map +0 -1
- package/documentdbReadReplica.d.ts +0 -146
- package/documentdbReadReplica.js +0 -109
- package/documentdbReadReplica.js.map +0 -1
- package/documentdbUser.d.ts +0 -150
- package/documentdbUser.js +0 -107
- package/documentdbUser.js.map +0 -1
- package/getDocumentdbDatabase.d.ts +0 -88
- package/getDocumentdbDatabase.js +0 -58
- package/getDocumentdbDatabase.js.map +0 -1
- package/getDocumentdbInstance.d.ts +0 -77
- package/getDocumentdbInstance.js +0 -36
- package/getDocumentdbInstance.js.map +0 -1
- package/getDocumentdbLoadBalancerEndpoint.d.ts +0 -80
- package/getDocumentdbLoadBalancerEndpoint.js +0 -36
- package/getDocumentdbLoadBalancerEndpoint.js.map +0 -1
package/cockpitAlertManager.d.ts
CHANGED
|
@@ -8,6 +8,33 @@ import * as outputs from "./types/output";
|
|
|
8
8
|
*
|
|
9
9
|
* ## Example Usage
|
|
10
10
|
*
|
|
11
|
+
* ### Enable the alert manager and configure managed alerts
|
|
12
|
+
*
|
|
13
|
+
* The following commands allow you to:
|
|
14
|
+
*
|
|
15
|
+
* - enable the alert manager in a Project named `tfTestProject`
|
|
16
|
+
* - enable [managed alerts](https://www.scaleway.com/en/docs/observability/cockpit/concepts/#managed-alerts)
|
|
17
|
+
* - set up [contact points](https://www.scaleway.com/en/docs/observability/cockpit/concepts/#contact-points) to receive alert notifications
|
|
18
|
+
*
|
|
19
|
+
* ```typescript
|
|
20
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
21
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
22
|
+
*
|
|
23
|
+
* const project = new scaleway.AccountProject("project", {name: "tf_test_project"});
|
|
24
|
+
* const alertManager = new scaleway.CockpitAlertManager("alert_manager", {
|
|
25
|
+
* projectId: project.id,
|
|
26
|
+
* enableManagedAlerts: true,
|
|
27
|
+
* contactPoints: [
|
|
28
|
+
* {
|
|
29
|
+
* email: "alert1@example.com",
|
|
30
|
+
* },
|
|
31
|
+
* {
|
|
32
|
+
* email: "alert2@example.com",
|
|
33
|
+
* },
|
|
34
|
+
* ],
|
|
35
|
+
* });
|
|
36
|
+
* ```
|
|
37
|
+
*
|
|
11
38
|
* ## Import
|
|
12
39
|
*
|
|
13
40
|
* This section explains how to import alert managers using the ID of the Project associated with Cockpit.
|
package/cockpitAlertManager.js
CHANGED
|
@@ -12,6 +12,33 @@ const utilities = require("./utilities");
|
|
|
12
12
|
*
|
|
13
13
|
* ## Example Usage
|
|
14
14
|
*
|
|
15
|
+
* ### Enable the alert manager and configure managed alerts
|
|
16
|
+
*
|
|
17
|
+
* The following commands allow you to:
|
|
18
|
+
*
|
|
19
|
+
* - enable the alert manager in a Project named `tfTestProject`
|
|
20
|
+
* - enable [managed alerts](https://www.scaleway.com/en/docs/observability/cockpit/concepts/#managed-alerts)
|
|
21
|
+
* - set up [contact points](https://www.scaleway.com/en/docs/observability/cockpit/concepts/#contact-points) to receive alert notifications
|
|
22
|
+
*
|
|
23
|
+
* ```typescript
|
|
24
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
25
|
+
* import * as scaleway from "@pulumiverse/scaleway";
|
|
26
|
+
*
|
|
27
|
+
* const project = new scaleway.AccountProject("project", {name: "tf_test_project"});
|
|
28
|
+
* const alertManager = new scaleway.CockpitAlertManager("alert_manager", {
|
|
29
|
+
* projectId: project.id,
|
|
30
|
+
* enableManagedAlerts: true,
|
|
31
|
+
* contactPoints: [
|
|
32
|
+
* {
|
|
33
|
+
* email: "alert1@example.com",
|
|
34
|
+
* },
|
|
35
|
+
* {
|
|
36
|
+
* email: "alert2@example.com",
|
|
37
|
+
* },
|
|
38
|
+
* ],
|
|
39
|
+
* });
|
|
40
|
+
* ```
|
|
41
|
+
*
|
|
15
42
|
* ## Import
|
|
16
43
|
*
|
|
17
44
|
* This section explains how to import alert managers using the ID of the Project associated with Cockpit.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cockpitAlertManager.js","sourceRoot":"","sources":["../cockpitAlertManager.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"cockpitAlertManager.js","sourceRoot":"","sources":["../cockpitAlertManager.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2CG;AACH,MAAa,mBAAoB,SAAQ,MAAM,CAAC,cAAc;IAC1D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAgC,EAAE,IAAmC;QAC9H,OAAO,IAAI,mBAAmB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC1E,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,mBAAmB,CAAC,YAAY,CAAC;IACpE,CAAC;IA+BD,YAAY,IAAY,EAAE,WAAgE,EAAE,IAAmC;QAC3H,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAmD,CAAC;YAClE,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,qBAAqB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,mBAAmB,CAAC,CAAC,CAAC,SAAS,CAAC;YACtF,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;SAC/D;aAAM;YACH,MAAM,IAAI,GAAG,WAAkD,CAAC;YAChE,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,qBAAqB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,CAAC,SAAS,CAAC;YACpF,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,iBAAiB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACzD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,mBAAmB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACxE,CAAC;;AA7EL,kDA8EC;AAhEG,gBAAgB;AACO,gCAAY,GAAG,wDAAwD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getInstancePrivateNic.js","sourceRoot":"","sources":["../getInstancePrivateNic.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAA2B;IAC9F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4DAA4D,EAAE;QACvF,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,sDASC;
|
|
1
|
+
{"version":3,"file":"getInstancePrivateNic.js","sourceRoot":"","sources":["../getInstancePrivateNic.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAA2B;IAC9F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4DAA4D,EAAE;QACvF,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,sDASC;AAgDD;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,SAAgB,2BAA2B,CAAC,IAAqC,EAAE,IAA2B;IAC1G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,4DAA4D,EAAE;QAC7F,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,kEASC"}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Gets information about a specific tag of a Container Registry image.
|
|
4
|
+
*/
|
|
5
|
+
export declare function getRegistryImageTag(args: GetRegistryImageTagArgs, opts?: pulumi.InvokeOptions): Promise<GetRegistryImageTagResult>;
|
|
6
|
+
/**
|
|
7
|
+
* A collection of arguments for invoking getRegistryImageTag.
|
|
8
|
+
*/
|
|
9
|
+
export interface GetRegistryImageTagArgs {
|
|
10
|
+
/**
|
|
11
|
+
* The ID of the registry image.
|
|
12
|
+
*/
|
|
13
|
+
imageId: string;
|
|
14
|
+
/**
|
|
15
|
+
* The name of the registry image tag.
|
|
16
|
+
*/
|
|
17
|
+
name?: string;
|
|
18
|
+
/**
|
|
19
|
+
* The ID of the project the image tag is associated with.
|
|
20
|
+
*/
|
|
21
|
+
projectId?: string;
|
|
22
|
+
/**
|
|
23
|
+
* The region in which the registry image tag exists.
|
|
24
|
+
*/
|
|
25
|
+
region?: string;
|
|
26
|
+
/**
|
|
27
|
+
* The ID of the registry image tag.
|
|
28
|
+
*/
|
|
29
|
+
tagId?: string;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* A collection of values returned by getRegistryImageTag.
|
|
33
|
+
*/
|
|
34
|
+
export interface GetRegistryImageTagResult {
|
|
35
|
+
/**
|
|
36
|
+
* The date and time when the registry image tag was created.
|
|
37
|
+
*/
|
|
38
|
+
readonly createdAt: string;
|
|
39
|
+
/**
|
|
40
|
+
* Hash of the tag content. Several tags of the same image may have the same digest.
|
|
41
|
+
*/
|
|
42
|
+
readonly digest: string;
|
|
43
|
+
/**
|
|
44
|
+
* The provider-assigned unique ID for this managed resource.
|
|
45
|
+
*/
|
|
46
|
+
readonly id: string;
|
|
47
|
+
readonly imageId: string;
|
|
48
|
+
readonly name?: string;
|
|
49
|
+
/**
|
|
50
|
+
* The organization ID the image tag is associated with.
|
|
51
|
+
*/
|
|
52
|
+
readonly organizationId: string;
|
|
53
|
+
readonly projectId: string;
|
|
54
|
+
readonly region: string;
|
|
55
|
+
/**
|
|
56
|
+
* The status of the registry image tag.
|
|
57
|
+
*/
|
|
58
|
+
readonly status: string;
|
|
59
|
+
readonly tagId?: string;
|
|
60
|
+
/**
|
|
61
|
+
* The date and time of the last update to the registry image tag.
|
|
62
|
+
*/
|
|
63
|
+
readonly updatedAt: string;
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* Gets information about a specific tag of a Container Registry image.
|
|
67
|
+
*/
|
|
68
|
+
export declare function getRegistryImageTagOutput(args: GetRegistryImageTagOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetRegistryImageTagResult>;
|
|
69
|
+
/**
|
|
70
|
+
* A collection of arguments for invoking getRegistryImageTag.
|
|
71
|
+
*/
|
|
72
|
+
export interface GetRegistryImageTagOutputArgs {
|
|
73
|
+
/**
|
|
74
|
+
* The ID of the registry image.
|
|
75
|
+
*/
|
|
76
|
+
imageId: pulumi.Input<string>;
|
|
77
|
+
/**
|
|
78
|
+
* The name of the registry image tag.
|
|
79
|
+
*/
|
|
80
|
+
name?: pulumi.Input<string>;
|
|
81
|
+
/**
|
|
82
|
+
* The ID of the project the image tag is associated with.
|
|
83
|
+
*/
|
|
84
|
+
projectId?: pulumi.Input<string>;
|
|
85
|
+
/**
|
|
86
|
+
* The region in which the registry image tag exists.
|
|
87
|
+
*/
|
|
88
|
+
region?: pulumi.Input<string>;
|
|
89
|
+
/**
|
|
90
|
+
* The ID of the registry image tag.
|
|
91
|
+
*/
|
|
92
|
+
tagId?: pulumi.Input<string>;
|
|
93
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getRegistryImageTagOutput = exports.getRegistryImageTag = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Gets information about a specific tag of a Container Registry image.
|
|
10
|
+
*/
|
|
11
|
+
function getRegistryImageTag(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("scaleway:index/getRegistryImageTag:getRegistryImageTag", {
|
|
14
|
+
"imageId": args.imageId,
|
|
15
|
+
"name": args.name,
|
|
16
|
+
"projectId": args.projectId,
|
|
17
|
+
"region": args.region,
|
|
18
|
+
"tagId": args.tagId,
|
|
19
|
+
}, opts);
|
|
20
|
+
}
|
|
21
|
+
exports.getRegistryImageTag = getRegistryImageTag;
|
|
22
|
+
/**
|
|
23
|
+
* Gets information about a specific tag of a Container Registry image.
|
|
24
|
+
*/
|
|
25
|
+
function getRegistryImageTagOutput(args, opts) {
|
|
26
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
27
|
+
return pulumi.runtime.invokeOutput("scaleway:index/getRegistryImageTag:getRegistryImageTag", {
|
|
28
|
+
"imageId": args.imageId,
|
|
29
|
+
"name": args.name,
|
|
30
|
+
"projectId": args.projectId,
|
|
31
|
+
"region": args.region,
|
|
32
|
+
"tagId": args.tagId,
|
|
33
|
+
}, opts);
|
|
34
|
+
}
|
|
35
|
+
exports.getRegistryImageTagOutput = getRegistryImageTagOutput;
|
|
36
|
+
//# sourceMappingURL=getRegistryImageTag.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getRegistryImageTag.js","sourceRoot":"","sources":["../getRegistryImageTag.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;GAEG;AACH,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAA2B;IAC1F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wDAAwD,EAAE;QACnF,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,OAAO,EAAE,IAAI,CAAC,KAAK;KACtB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,kDASC;AA8DD;;GAEG;AACH,SAAgB,yBAAyB,CAAC,IAAmC,EAAE,IAA2B;IACtG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,wDAAwD,EAAE;QACzF,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,OAAO,EAAE,IAAI,CAAC,KAAK;KACtB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,8DASC"}
|
package/index.d.ts
CHANGED
|
@@ -70,24 +70,6 @@ export declare const DatabaseReadReplica: typeof import("./databaseReadReplica")
|
|
|
70
70
|
export { DatabaseUserArgs, DatabaseUserState } from "./databaseUser";
|
|
71
71
|
export type DatabaseUser = import("./databaseUser").DatabaseUser;
|
|
72
72
|
export declare const DatabaseUser: typeof import("./databaseUser").DatabaseUser;
|
|
73
|
-
export { DocumentdbDatabaseArgs, DocumentdbDatabaseState } from "./documentdbDatabase";
|
|
74
|
-
export type DocumentdbDatabase = import("./documentdbDatabase").DocumentdbDatabase;
|
|
75
|
-
export declare const DocumentdbDatabase: typeof import("./documentdbDatabase").DocumentdbDatabase;
|
|
76
|
-
export { DocumentdbInstanceArgs, DocumentdbInstanceState } from "./documentdbInstance";
|
|
77
|
-
export type DocumentdbInstance = import("./documentdbInstance").DocumentdbInstance;
|
|
78
|
-
export declare const DocumentdbInstance: typeof import("./documentdbInstance").DocumentdbInstance;
|
|
79
|
-
export { DocumentdbPrivateNetworkEndpointArgs, DocumentdbPrivateNetworkEndpointState } from "./documentdbPrivateNetworkEndpoint";
|
|
80
|
-
export type DocumentdbPrivateNetworkEndpoint = import("./documentdbPrivateNetworkEndpoint").DocumentdbPrivateNetworkEndpoint;
|
|
81
|
-
export declare const DocumentdbPrivateNetworkEndpoint: typeof import("./documentdbPrivateNetworkEndpoint").DocumentdbPrivateNetworkEndpoint;
|
|
82
|
-
export { DocumentdbPrivilegeArgs, DocumentdbPrivilegeState } from "./documentdbPrivilege";
|
|
83
|
-
export type DocumentdbPrivilege = import("./documentdbPrivilege").DocumentdbPrivilege;
|
|
84
|
-
export declare const DocumentdbPrivilege: typeof import("./documentdbPrivilege").DocumentdbPrivilege;
|
|
85
|
-
export { DocumentdbReadReplicaArgs, DocumentdbReadReplicaState } from "./documentdbReadReplica";
|
|
86
|
-
export type DocumentdbReadReplica = import("./documentdbReadReplica").DocumentdbReadReplica;
|
|
87
|
-
export declare const DocumentdbReadReplica: typeof import("./documentdbReadReplica").DocumentdbReadReplica;
|
|
88
|
-
export { DocumentdbUserArgs, DocumentdbUserState } from "./documentdbUser";
|
|
89
|
-
export type DocumentdbUser = import("./documentdbUser").DocumentdbUser;
|
|
90
|
-
export declare const DocumentdbUser: typeof import("./documentdbUser").DocumentdbUser;
|
|
91
73
|
export { DomainRecordArgs, DomainRecordState } from "./domainRecord";
|
|
92
74
|
export type DomainRecord = import("./domainRecord").DomainRecord;
|
|
93
75
|
export declare const DomainRecord: typeof import("./domainRecord").DomainRecord;
|
|
@@ -181,15 +163,6 @@ export declare const getDatabaseInstanceOutput: typeof import("./getDatabaseInst
|
|
|
181
163
|
export { GetDatabasePrivilegeArgs, GetDatabasePrivilegeResult, GetDatabasePrivilegeOutputArgs } from "./getDatabasePrivilege";
|
|
182
164
|
export declare const getDatabasePrivilege: typeof import("./getDatabasePrivilege").getDatabasePrivilege;
|
|
183
165
|
export declare const getDatabasePrivilegeOutput: typeof import("./getDatabasePrivilege").getDatabasePrivilegeOutput;
|
|
184
|
-
export { GetDocumentdbDatabaseArgs, GetDocumentdbDatabaseResult, GetDocumentdbDatabaseOutputArgs } from "./getDocumentdbDatabase";
|
|
185
|
-
export declare const getDocumentdbDatabase: typeof import("./getDocumentdbDatabase").getDocumentdbDatabase;
|
|
186
|
-
export declare const getDocumentdbDatabaseOutput: typeof import("./getDocumentdbDatabase").getDocumentdbDatabaseOutput;
|
|
187
|
-
export { GetDocumentdbInstanceArgs, GetDocumentdbInstanceResult, GetDocumentdbInstanceOutputArgs } from "./getDocumentdbInstance";
|
|
188
|
-
export declare const getDocumentdbInstance: typeof import("./getDocumentdbInstance").getDocumentdbInstance;
|
|
189
|
-
export declare const getDocumentdbInstanceOutput: typeof import("./getDocumentdbInstance").getDocumentdbInstanceOutput;
|
|
190
|
-
export { GetDocumentdbLoadBalancerEndpointArgs, GetDocumentdbLoadBalancerEndpointResult, GetDocumentdbLoadBalancerEndpointOutputArgs } from "./getDocumentdbLoadBalancerEndpoint";
|
|
191
|
-
export declare const getDocumentdbLoadBalancerEndpoint: typeof import("./getDocumentdbLoadBalancerEndpoint").getDocumentdbLoadBalancerEndpoint;
|
|
192
|
-
export declare const getDocumentdbLoadBalancerEndpointOutput: typeof import("./getDocumentdbLoadBalancerEndpoint").getDocumentdbLoadBalancerEndpointOutput;
|
|
193
166
|
export { GetDomainRecordArgs, GetDomainRecordResult, GetDomainRecordOutputArgs } from "./getDomainRecord";
|
|
194
167
|
export declare const getDomainRecord: typeof import("./getDomainRecord").getDomainRecord;
|
|
195
168
|
export declare const getDomainRecordOutput: typeof import("./getDomainRecord").getDomainRecordOutput;
|
|
@@ -328,6 +301,9 @@ export declare const getRedisClusterOutput: typeof import("./getRedisCluster").g
|
|
|
328
301
|
export { GetRegistryImageArgs, GetRegistryImageResult, GetRegistryImageOutputArgs } from "./getRegistryImage";
|
|
329
302
|
export declare const getRegistryImage: typeof import("./getRegistryImage").getRegistryImage;
|
|
330
303
|
export declare const getRegistryImageOutput: typeof import("./getRegistryImage").getRegistryImageOutput;
|
|
304
|
+
export { GetRegistryImageTagArgs, GetRegistryImageTagResult, GetRegistryImageTagOutputArgs } from "./getRegistryImageTag";
|
|
305
|
+
export declare const getRegistryImageTag: typeof import("./getRegistryImageTag").getRegistryImageTag;
|
|
306
|
+
export declare const getRegistryImageTagOutput: typeof import("./getRegistryImageTag").getRegistryImageTagOutput;
|
|
331
307
|
export { GetRegistryNamespaceArgs, GetRegistryNamespaceResult, GetRegistryNamespaceOutputArgs } from "./getRegistryNamespace";
|
|
332
308
|
export declare const getRegistryNamespace: typeof import("./getRegistryNamespace").getRegistryNamespace;
|
|
333
309
|
export declare const getRegistryNamespaceOutput: typeof import("./getRegistryNamespace").getRegistryNamespaceOutput;
|
package/index.js
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.
|
|
6
|
-
exports.
|
|
7
|
-
exports.
|
|
8
|
-
exports.
|
|
9
|
-
exports.
|
|
10
|
-
exports.types = exports.config = exports.Webhosting = exports.VpcRoute = exports.VpcPublicGatewayPatRule = exports.VpcPublicGatewayIpReverseDns = exports.VpcPublicGatewayIp = exports.VpcPublicGatewayDhcpReservation = exports.VpcPublicGatewayDhcp = exports.VpcPublicGateway = exports.VpcPrivateNetwork = exports.VpcGatewayNetwork = exports.Vpc = exports.TemWebhook = exports.TemDomainValidation = exports.TemDomain = exports.SecretVersion = exports.Secret = exports.SdbDatabase = exports.RegistryNamespace = exports.RedisCluster = exports.Provider = exports.ObjectItem =
|
|
5
|
+
exports.getBillingConsumptionsOutput = exports.getBillingConsumptions = exports.getBaremetalServerOutput = exports.getBaremetalServer = exports.getBaremetalOsOutput = exports.getBaremetalOs = exports.getBaremetalOptionOutput = exports.getBaremetalOption = exports.getBaremetalOfferOutput = exports.getBaremetalOffer = exports.getAvailabilityZonesOutput = exports.getAvailabilityZones = exports.getAccountSshKeyOutput = exports.getAccountSshKey = exports.getAccountProjectOutput = exports.getAccountProject = exports.FunctionTrigger = exports.FunctionToken = exports.FunctionNamespace = exports.FunctionDomain = exports.FunctionCron = exports.Function = exports.FlexibleIpMacAddress = exports.FlexibleIp = exports.DomainZone = exports.DomainRecord = exports.DatabaseUser = exports.DatabaseReadReplica = exports.DatabasePrivilege = exports.DatabaseInstance = exports.DatabaseBackup = exports.DatabaseAcl = exports.Database = exports.ContainerTrigger = exports.ContainerToken = exports.ContainerNamespace = exports.ContainerDomain = exports.ContainerCron = exports.Container = exports.CockpitToken = exports.CockpitSource = exports.CockpitGrafanaUser = exports.CockpitAlertManager = exports.Cockpit = exports.BlockVolume = exports.BlockSnapshot = exports.BaremetalServer = exports.AppleSiliconServer = exports.AccountSshKey = exports.AccountProject = void 0;
|
|
6
|
+
exports.getInstanceImageOutput = exports.getInstanceImage = exports.getIamUserOutput = exports.getIamUser = exports.getIamSshKeyOutput = exports.getIamSshKey = exports.getIamGroupOutput = exports.getIamGroup = exports.getIamApplicationOutput = exports.getIamApplication = exports.getIamApiKeyOutput = exports.getIamApiKey = exports.getFunctionNamespaceOutput = exports.getFunctionNamespace = exports.getFunctionOutput = exports.getFunction = exports.getFlexibleIpsOutput = exports.getFlexibleIps = exports.getFlexibleIpOutput = exports.getFlexibleIp = exports.getDomainZoneOutput = exports.getDomainZone = exports.getDomainRecordOutput = exports.getDomainRecord = exports.getDatabasePrivilegeOutput = exports.getDatabasePrivilege = exports.getDatabaseInstanceOutput = exports.getDatabaseInstance = exports.getDatabaseBackupOutput = exports.getDatabaseBackup = exports.getDatabaseAclOutput = exports.getDatabaseAcl = exports.getDatabaseOutput = exports.getDatabase = exports.getContainerNamespaceOutput = exports.getContainerNamespace = exports.getContainerOutput = exports.getContainer = exports.getConfigOutput = exports.getConfig = exports.getCockpitPlanOutput = exports.getCockpitPlan = exports.getCockpitOutput = exports.getCockpit = exports.getBlockVolumeOutput = exports.getBlockVolume = exports.getBlockSnapshotOutput = exports.getBlockSnapshot = exports.getBillingInvoicesOutput = exports.getBillingInvoices = void 0;
|
|
7
|
+
exports.getLoadbalancerOutput = exports.getLoadbalancer = exports.getLbsOutput = exports.getLbs = exports.getLbRoutesOutput = exports.getLbRoutes = exports.getLbRouteOutput = exports.getLbRoute = exports.getLbIpsOutput = exports.getLbIps = exports.getLbFrontendsOutput = exports.getLbFrontends = exports.getLbFrontendOutput = exports.getLbFrontend = exports.getLbBackendsOutput = exports.getLbBackends = exports.getLbBackendOutput = exports.getLbBackend = exports.getLbAclsOutput = exports.getLbAcls = exports.getKubernetesNodePoolOutput = exports.getKubernetesNodePool = exports.getKubernetesClusterOutput = exports.getKubernetesCluster = exports.getK8sVersionOutput = exports.getK8sVersion = exports.getIpamIpsOutput = exports.getIpamIps = exports.getIpamIpOutput = exports.getIpamIp = exports.getIotHubOutput = exports.getIotHub = exports.getIotDeviceOutput = exports.getIotDevice = exports.getInstanceVolumeOutput = exports.getInstanceVolume = exports.getInstanceSnapshotOutput = exports.getInstanceSnapshot = exports.getInstanceServersOutput = exports.getInstanceServers = exports.getInstanceServerOutput = exports.getInstanceServer = exports.getInstanceSecurityGroupOutput = exports.getInstanceSecurityGroup = exports.getInstancePrivateNicOutput = exports.getInstancePrivateNic = exports.getInstancePlacementGroupOutput = exports.getInstancePlacementGroup = exports.getInstanceIpOutput = exports.getInstanceIp = void 0;
|
|
8
|
+
exports.getWebHostOfferOutput = exports.getWebHostOffer = exports.getVpcsOutput = exports.getVpcs = exports.getVpcRoutesOutput = exports.getVpcRoutes = exports.getVpcPublicPatRuleOutput = exports.getVpcPublicPatRule = exports.getVpcPublicGatewayIpOutput = exports.getVpcPublicGatewayIp = exports.getVpcPublicGatewayDhcpReservationOutput = exports.getVpcPublicGatewayDhcpReservation = exports.getVpcPublicGatewayDhcpOutput = exports.getVpcPublicGatewayDhcp = exports.getVpcPublicGatewayOutput = exports.getVpcPublicGateway = exports.getVpcPrivateNetworkOutput = exports.getVpcPrivateNetwork = exports.getVpcGatewayNetworkOutput = exports.getVpcGatewayNetwork = exports.getVpcOutput = exports.getVpc = exports.getTemDomainOutput = exports.getTemDomain = exports.getSecretVersionOutput = exports.getSecretVersion = exports.getSecretOutput = exports.getSecret = exports.getRegistryNamespaceOutput = exports.getRegistryNamespace = exports.getRegistryImageTagOutput = exports.getRegistryImageTag = exports.getRegistryImageOutput = exports.getRegistryImage = exports.getRedisClusterOutput = exports.getRedisCluster = exports.getObjectBucketPolicyOutput = exports.getObjectBucketPolicy = exports.getObjectBucketOutput = exports.getObjectBucket = exports.getMnqSqsOutput = exports.getMnqSqs = exports.getMnqSnsOutput = exports.getMnqSns = exports.getMarketplaceImageOutput = exports.getMarketplaceImage = exports.getLoadbalancerIpOutput = exports.getLoadbalancerIp = exports.getLoadbalancerCertificateOutput = exports.getLoadbalancerCertificate = void 0;
|
|
9
|
+
exports.ObjectBucketWebsiteConfiguration = exports.ObjectBucketPolicy = exports.ObjectBucketLockConfiguration = exports.ObjectBucketAcl = exports.ObjectBucket = exports.MnqSqsQueue = exports.MnqSqsCredentials = exports.MnqSqs = exports.MnqSnsTopicSubscription = exports.MnqSnsTopic = exports.MnqSnsCredentials = exports.MnqSns = exports.MnqNatsCredentials = exports.MnqNatsAccount = exports.LoadbalancerRoute = exports.LoadbalancerIp = exports.LoadbalancerFrontend = exports.LoadbalancerCertificate = exports.LoadbalancerBackend = exports.LoadbalancerAcl = exports.Loadbalancer = exports.KubernetesNodePool = exports.KubernetesCluster = exports.JobDefinition = exports.IpamIpReverseDns = exports.IpamIp = exports.IotRoute = exports.IotNetwork = exports.IotHub = exports.IotDevice = exports.InstanceVolume = exports.InstanceUserData = exports.InstanceSnapshot = exports.InstanceServer = exports.InstanceSecurityGroupRules = exports.InstanceSecurityGroup = exports.InstancePrivateNic = exports.InstancePlacementGroup = exports.InstanceIpReverseDns = exports.InstanceIp = exports.InstanceImage = exports.IamUser = exports.IamSshKey = exports.IamPolicy = exports.IamGroupMembership = exports.IamGroup = exports.IamApplication = exports.IamApiKey = exports.getWebhostingOutput = exports.getWebhosting = void 0;
|
|
10
|
+
exports.types = exports.config = exports.Webhosting = exports.VpcRoute = exports.VpcPublicGatewayPatRule = exports.VpcPublicGatewayIpReverseDns = exports.VpcPublicGatewayIp = exports.VpcPublicGatewayDhcpReservation = exports.VpcPublicGatewayDhcp = exports.VpcPublicGateway = exports.VpcPrivateNetwork = exports.VpcGatewayNetwork = exports.Vpc = exports.TemWebhook = exports.TemDomainValidation = exports.TemDomain = exports.SecretVersion = exports.Secret = exports.SdbDatabase = exports.RegistryNamespace = exports.RedisCluster = exports.Provider = exports.ObjectItem = void 0;
|
|
11
11
|
const pulumi = require("@pulumi/pulumi");
|
|
12
12
|
const utilities = require("./utilities");
|
|
13
13
|
exports.AccountProject = null;
|
|
@@ -58,18 +58,6 @@ exports.DatabaseReadReplica = null;
|
|
|
58
58
|
utilities.lazyLoad(exports, ["DatabaseReadReplica"], () => require("./databaseReadReplica"));
|
|
59
59
|
exports.DatabaseUser = null;
|
|
60
60
|
utilities.lazyLoad(exports, ["DatabaseUser"], () => require("./databaseUser"));
|
|
61
|
-
exports.DocumentdbDatabase = null;
|
|
62
|
-
utilities.lazyLoad(exports, ["DocumentdbDatabase"], () => require("./documentdbDatabase"));
|
|
63
|
-
exports.DocumentdbInstance = null;
|
|
64
|
-
utilities.lazyLoad(exports, ["DocumentdbInstance"], () => require("./documentdbInstance"));
|
|
65
|
-
exports.DocumentdbPrivateNetworkEndpoint = null;
|
|
66
|
-
utilities.lazyLoad(exports, ["DocumentdbPrivateNetworkEndpoint"], () => require("./documentdbPrivateNetworkEndpoint"));
|
|
67
|
-
exports.DocumentdbPrivilege = null;
|
|
68
|
-
utilities.lazyLoad(exports, ["DocumentdbPrivilege"], () => require("./documentdbPrivilege"));
|
|
69
|
-
exports.DocumentdbReadReplica = null;
|
|
70
|
-
utilities.lazyLoad(exports, ["DocumentdbReadReplica"], () => require("./documentdbReadReplica"));
|
|
71
|
-
exports.DocumentdbUser = null;
|
|
72
|
-
utilities.lazyLoad(exports, ["DocumentdbUser"], () => require("./documentdbUser"));
|
|
73
61
|
exports.DomainRecord = null;
|
|
74
62
|
utilities.lazyLoad(exports, ["DomainRecord"], () => require("./domainRecord"));
|
|
75
63
|
exports.DomainZone = null;
|
|
@@ -153,15 +141,6 @@ utilities.lazyLoad(exports, ["getDatabaseInstance", "getDatabaseInstanceOutput"]
|
|
|
153
141
|
exports.getDatabasePrivilege = null;
|
|
154
142
|
exports.getDatabasePrivilegeOutput = null;
|
|
155
143
|
utilities.lazyLoad(exports, ["getDatabasePrivilege", "getDatabasePrivilegeOutput"], () => require("./getDatabasePrivilege"));
|
|
156
|
-
exports.getDocumentdbDatabase = null;
|
|
157
|
-
exports.getDocumentdbDatabaseOutput = null;
|
|
158
|
-
utilities.lazyLoad(exports, ["getDocumentdbDatabase", "getDocumentdbDatabaseOutput"], () => require("./getDocumentdbDatabase"));
|
|
159
|
-
exports.getDocumentdbInstance = null;
|
|
160
|
-
exports.getDocumentdbInstanceOutput = null;
|
|
161
|
-
utilities.lazyLoad(exports, ["getDocumentdbInstance", "getDocumentdbInstanceOutput"], () => require("./getDocumentdbInstance"));
|
|
162
|
-
exports.getDocumentdbLoadBalancerEndpoint = null;
|
|
163
|
-
exports.getDocumentdbLoadBalancerEndpointOutput = null;
|
|
164
|
-
utilities.lazyLoad(exports, ["getDocumentdbLoadBalancerEndpoint", "getDocumentdbLoadBalancerEndpointOutput"], () => require("./getDocumentdbLoadBalancerEndpoint"));
|
|
165
144
|
exports.getDomainRecord = null;
|
|
166
145
|
exports.getDomainRecordOutput = null;
|
|
167
146
|
utilities.lazyLoad(exports, ["getDomainRecord", "getDomainRecordOutput"], () => require("./getDomainRecord"));
|
|
@@ -300,6 +279,9 @@ utilities.lazyLoad(exports, ["getRedisCluster", "getRedisClusterOutput"], () =>
|
|
|
300
279
|
exports.getRegistryImage = null;
|
|
301
280
|
exports.getRegistryImageOutput = null;
|
|
302
281
|
utilities.lazyLoad(exports, ["getRegistryImage", "getRegistryImageOutput"], () => require("./getRegistryImage"));
|
|
282
|
+
exports.getRegistryImageTag = null;
|
|
283
|
+
exports.getRegistryImageTagOutput = null;
|
|
284
|
+
utilities.lazyLoad(exports, ["getRegistryImageTag", "getRegistryImageTagOutput"], () => require("./getRegistryImageTag"));
|
|
303
285
|
exports.getRegistryNamespace = null;
|
|
304
286
|
exports.getRegistryNamespaceOutput = null;
|
|
305
287
|
utilities.lazyLoad(exports, ["getRegistryNamespace", "getRegistryNamespaceOutput"], () => require("./getRegistryNamespace"));
|
|
@@ -543,18 +525,6 @@ const _module = {
|
|
|
543
525
|
return new exports.DatabaseReadReplica(name, undefined, { urn });
|
|
544
526
|
case "scaleway:index/databaseUser:DatabaseUser":
|
|
545
527
|
return new exports.DatabaseUser(name, undefined, { urn });
|
|
546
|
-
case "scaleway:index/documentdbDatabase:DocumentdbDatabase":
|
|
547
|
-
return new exports.DocumentdbDatabase(name, undefined, { urn });
|
|
548
|
-
case "scaleway:index/documentdbInstance:DocumentdbInstance":
|
|
549
|
-
return new exports.DocumentdbInstance(name, undefined, { urn });
|
|
550
|
-
case "scaleway:index/documentdbPrivateNetworkEndpoint:DocumentdbPrivateNetworkEndpoint":
|
|
551
|
-
return new exports.DocumentdbPrivateNetworkEndpoint(name, undefined, { urn });
|
|
552
|
-
case "scaleway:index/documentdbPrivilege:DocumentdbPrivilege":
|
|
553
|
-
return new exports.DocumentdbPrivilege(name, undefined, { urn });
|
|
554
|
-
case "scaleway:index/documentdbReadReplica:DocumentdbReadReplica":
|
|
555
|
-
return new exports.DocumentdbReadReplica(name, undefined, { urn });
|
|
556
|
-
case "scaleway:index/documentdbUser:DocumentdbUser":
|
|
557
|
-
return new exports.DocumentdbUser(name, undefined, { urn });
|
|
558
528
|
case "scaleway:index/domainRecord:DomainRecord":
|
|
559
529
|
return new exports.DomainRecord(name, undefined, { urn });
|
|
560
530
|
case "scaleway:index/domainZone:DomainZone":
|
|
@@ -740,12 +710,6 @@ pulumi.runtime.registerResourceModule("scaleway", "index/databaseInstance", _mod
|
|
|
740
710
|
pulumi.runtime.registerResourceModule("scaleway", "index/databasePrivilege", _module);
|
|
741
711
|
pulumi.runtime.registerResourceModule("scaleway", "index/databaseReadReplica", _module);
|
|
742
712
|
pulumi.runtime.registerResourceModule("scaleway", "index/databaseUser", _module);
|
|
743
|
-
pulumi.runtime.registerResourceModule("scaleway", "index/documentdbDatabase", _module);
|
|
744
|
-
pulumi.runtime.registerResourceModule("scaleway", "index/documentdbInstance", _module);
|
|
745
|
-
pulumi.runtime.registerResourceModule("scaleway", "index/documentdbPrivateNetworkEndpoint", _module);
|
|
746
|
-
pulumi.runtime.registerResourceModule("scaleway", "index/documentdbPrivilege", _module);
|
|
747
|
-
pulumi.runtime.registerResourceModule("scaleway", "index/documentdbReadReplica", _module);
|
|
748
|
-
pulumi.runtime.registerResourceModule("scaleway", "index/documentdbUser", _module);
|
|
749
713
|
pulumi.runtime.registerResourceModule("scaleway", "index/domainRecord", _module);
|
|
750
714
|
pulumi.runtime.registerResourceModule("scaleway", "index/domainZone", _module);
|
|
751
715
|
pulumi.runtime.registerResourceModule("scaleway", "index/flexibleIp", _module);
|