@pulumiverse/grafana 0.17.0 → 0.18.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/cloud/getProviderAwsCloudwatchScrapeJob.d.ts +12 -12
- package/cloud/providerAwsCloudwatchScrapeJob.d.ts +11 -11
- package/cloudprovider/awsCloudwatchScrapeJob.d.ts +11 -11
- package/cloudprovider/awsResourceMetadataScrapeJob.d.ts +166 -0
- package/cloudprovider/awsResourceMetadataScrapeJob.js +117 -0
- package/cloudprovider/awsResourceMetadataScrapeJob.js.map +1 -0
- package/cloudprovider/getAwsCloudwatchScrapeJob.d.ts +12 -12
- package/cloudprovider/index.d.ts +3 -0
- package/cloudprovider/index.js +6 -1
- package/cloudprovider/index.js.map +1 -1
- package/config/vars.d.ts +8 -0
- package/config/vars.js +12 -0
- package/config/vars.js.map +1 -1
- package/index.d.ts +2 -1
- package/index.js +3 -1
- package/index.js.map +1 -1
- package/k6/getLoadTest.d.ts +100 -0
- package/k6/getLoadTest.js +68 -0
- package/k6/getLoadTest.js.map +1 -0
- package/k6/getLoadTests.d.ts +126 -0
- package/k6/getLoadTests.js +102 -0
- package/k6/getLoadTests.js.map +1 -0
- package/k6/getProject.d.ts +80 -0
- package/k6/getProject.js +52 -0
- package/k6/getProject.js.map +1 -0
- package/k6/getProjectLimits.d.ts +80 -0
- package/k6/getProjectLimits.js +52 -0
- package/k6/getProjectLimits.js.map +1 -0
- package/k6/getProjects.d.ts +68 -0
- package/k6/getProjects.js +56 -0
- package/k6/getProjects.js.map +1 -0
- package/k6/index.d.ts +27 -0
- package/k6/index.js +52 -0
- package/k6/index.js.map +1 -0
- package/k6/installation.d.ts +154 -0
- package/k6/installation.js +127 -0
- package/k6/installation.js.map +1 -0
- package/k6/loadTest.d.ts +126 -0
- package/k6/loadTest.js +91 -0
- package/k6/loadTest.js.map +1 -0
- package/k6/project.d.ts +98 -0
- package/k6/project.js +75 -0
- package/k6/project.js.map +1 -0
- package/k6/projectLimits.d.ts +121 -0
- package/k6/projectLimits.js +85 -0
- package/k6/projectLimits.js.map +1 -0
- package/package.json +2 -2
- package/provider.d.ts +16 -0
- package/provider.js +3 -1
- package/provider.js.map +1 -1
- package/types/input.d.ts +58 -32
- package/types/output.d.ts +59 -16
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
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.getLoadTestsOutput = exports.getLoadTests = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Retrieves all k6 load tests that belong to a project.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as grafana from "@pulumiverse/grafana";
|
|
16
|
+
*
|
|
17
|
+
* const loadTestProject = new grafana.k6.Project("load_test_project", {name: "Terraform Load Test Project"});
|
|
18
|
+
* const testLoadTest = new grafana.k6.LoadTest("test_load_test", {
|
|
19
|
+
* projectId: loadTestProject.id,
|
|
20
|
+
* name: "Terraform Test Load Test",
|
|
21
|
+
* script: `export default function() {
|
|
22
|
+
* console.log('Hello from k6!');
|
|
23
|
+
* }
|
|
24
|
+
* `,
|
|
25
|
+
* }, {
|
|
26
|
+
* dependsOn: [loadTestProject],
|
|
27
|
+
* });
|
|
28
|
+
* const testLoadTest2 = new grafana.k6.LoadTest("test_load_test_2", {
|
|
29
|
+
* projectId: loadTestProject.id,
|
|
30
|
+
* name: "Terraform Test Load Test (2)",
|
|
31
|
+
* script: `export default function() {
|
|
32
|
+
* console.log('Hello from k6!');
|
|
33
|
+
* }
|
|
34
|
+
* `,
|
|
35
|
+
* }, {
|
|
36
|
+
* dependsOn: [testLoadTest],
|
|
37
|
+
* });
|
|
38
|
+
* const fromProjectId = loadTestProject.id.apply(id => grafana.k6.getLoadTestsOutput({
|
|
39
|
+
* projectId: id,
|
|
40
|
+
* }));
|
|
41
|
+
* const filterByName = loadTestProject.id.apply(id => grafana.k6.getLoadTestsOutput({
|
|
42
|
+
* name: "Terraform Test Load Test (2)",
|
|
43
|
+
* projectId: id,
|
|
44
|
+
* }));
|
|
45
|
+
* ```
|
|
46
|
+
*/
|
|
47
|
+
function getLoadTests(args, opts) {
|
|
48
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
49
|
+
return pulumi.runtime.invoke("grafana:k6/getLoadTests:getLoadTests", {
|
|
50
|
+
"name": args.name,
|
|
51
|
+
"projectId": args.projectId,
|
|
52
|
+
}, opts);
|
|
53
|
+
}
|
|
54
|
+
exports.getLoadTests = getLoadTests;
|
|
55
|
+
/**
|
|
56
|
+
* Retrieves all k6 load tests that belong to a project.
|
|
57
|
+
*
|
|
58
|
+
* ## Example Usage
|
|
59
|
+
*
|
|
60
|
+
* ```typescript
|
|
61
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
62
|
+
* import * as grafana from "@pulumiverse/grafana";
|
|
63
|
+
*
|
|
64
|
+
* const loadTestProject = new grafana.k6.Project("load_test_project", {name: "Terraform Load Test Project"});
|
|
65
|
+
* const testLoadTest = new grafana.k6.LoadTest("test_load_test", {
|
|
66
|
+
* projectId: loadTestProject.id,
|
|
67
|
+
* name: "Terraform Test Load Test",
|
|
68
|
+
* script: `export default function() {
|
|
69
|
+
* console.log('Hello from k6!');
|
|
70
|
+
* }
|
|
71
|
+
* `,
|
|
72
|
+
* }, {
|
|
73
|
+
* dependsOn: [loadTestProject],
|
|
74
|
+
* });
|
|
75
|
+
* const testLoadTest2 = new grafana.k6.LoadTest("test_load_test_2", {
|
|
76
|
+
* projectId: loadTestProject.id,
|
|
77
|
+
* name: "Terraform Test Load Test (2)",
|
|
78
|
+
* script: `export default function() {
|
|
79
|
+
* console.log('Hello from k6!');
|
|
80
|
+
* }
|
|
81
|
+
* `,
|
|
82
|
+
* }, {
|
|
83
|
+
* dependsOn: [testLoadTest],
|
|
84
|
+
* });
|
|
85
|
+
* const fromProjectId = loadTestProject.id.apply(id => grafana.k6.getLoadTestsOutput({
|
|
86
|
+
* projectId: id,
|
|
87
|
+
* }));
|
|
88
|
+
* const filterByName = loadTestProject.id.apply(id => grafana.k6.getLoadTestsOutput({
|
|
89
|
+
* name: "Terraform Test Load Test (2)",
|
|
90
|
+
* projectId: id,
|
|
91
|
+
* }));
|
|
92
|
+
* ```
|
|
93
|
+
*/
|
|
94
|
+
function getLoadTestsOutput(args, opts) {
|
|
95
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
96
|
+
return pulumi.runtime.invokeOutput("grafana:k6/getLoadTests:getLoadTests", {
|
|
97
|
+
"name": args.name,
|
|
98
|
+
"projectId": args.projectId,
|
|
99
|
+
}, opts);
|
|
100
|
+
}
|
|
101
|
+
exports.getLoadTestsOutput = getLoadTestsOutput;
|
|
102
|
+
//# sourceMappingURL=getLoadTests.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getLoadTests.js","sourceRoot":"","sources":["../../k6/getLoadTests.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsCG;AACH,SAAgB,YAAY,CAAC,IAAsB,EAAE,IAA2B;IAC5E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sCAAsC,EAAE;QACjE,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,oCAMC;AAkCD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsCG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAAiC;IAC9F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,sCAAsC,EAAE;QACvE,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,gDAMC"}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Retrieves a k6 project.
|
|
4
|
+
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as grafana from "@pulumiverse/grafana";
|
|
10
|
+
*
|
|
11
|
+
* const test = new grafana.k6.Project("test", {name: "Terraform Test Project"});
|
|
12
|
+
* const fromId = test.id.apply(id => grafana.k6.getProjectOutput({
|
|
13
|
+
* id: id,
|
|
14
|
+
* }));
|
|
15
|
+
* ```
|
|
16
|
+
*/
|
|
17
|
+
export declare function getProject(args: GetProjectArgs, opts?: pulumi.InvokeOptions): Promise<GetProjectResult>;
|
|
18
|
+
/**
|
|
19
|
+
* A collection of arguments for invoking getProject.
|
|
20
|
+
*/
|
|
21
|
+
export interface GetProjectArgs {
|
|
22
|
+
/**
|
|
23
|
+
* Numeric identifier of the project.
|
|
24
|
+
*/
|
|
25
|
+
id: number;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* A collection of values returned by getProject.
|
|
29
|
+
*/
|
|
30
|
+
export interface GetProjectResult {
|
|
31
|
+
/**
|
|
32
|
+
* The date when the project was created.
|
|
33
|
+
*/
|
|
34
|
+
readonly created: string;
|
|
35
|
+
/**
|
|
36
|
+
* The Grafana folder uid.
|
|
37
|
+
*/
|
|
38
|
+
readonly grafanaFolderUid: string;
|
|
39
|
+
/**
|
|
40
|
+
* Numeric identifier of the project.
|
|
41
|
+
*/
|
|
42
|
+
readonly id: number;
|
|
43
|
+
/**
|
|
44
|
+
* Whether this project is the default for running tests when no explicit project identifier is provided.
|
|
45
|
+
*/
|
|
46
|
+
readonly isDefault: boolean;
|
|
47
|
+
/**
|
|
48
|
+
* Human-friendly identifier of the project.
|
|
49
|
+
*/
|
|
50
|
+
readonly name: string;
|
|
51
|
+
/**
|
|
52
|
+
* The date when the project was last updated.
|
|
53
|
+
*/
|
|
54
|
+
readonly updated: string;
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* Retrieves a k6 project.
|
|
58
|
+
*
|
|
59
|
+
* ## Example Usage
|
|
60
|
+
*
|
|
61
|
+
* ```typescript
|
|
62
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
63
|
+
* import * as grafana from "@pulumiverse/grafana";
|
|
64
|
+
*
|
|
65
|
+
* const test = new grafana.k6.Project("test", {name: "Terraform Test Project"});
|
|
66
|
+
* const fromId = test.id.apply(id => grafana.k6.getProjectOutput({
|
|
67
|
+
* id: id,
|
|
68
|
+
* }));
|
|
69
|
+
* ```
|
|
70
|
+
*/
|
|
71
|
+
export declare function getProjectOutput(args: GetProjectOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetProjectResult>;
|
|
72
|
+
/**
|
|
73
|
+
* A collection of arguments for invoking getProject.
|
|
74
|
+
*/
|
|
75
|
+
export interface GetProjectOutputArgs {
|
|
76
|
+
/**
|
|
77
|
+
* Numeric identifier of the project.
|
|
78
|
+
*/
|
|
79
|
+
id: pulumi.Input<number>;
|
|
80
|
+
}
|
package/k6/getProject.js
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
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.getProjectOutput = exports.getProject = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Retrieves a k6 project.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as grafana from "@pulumiverse/grafana";
|
|
16
|
+
*
|
|
17
|
+
* const test = new grafana.k6.Project("test", {name: "Terraform Test Project"});
|
|
18
|
+
* const fromId = test.id.apply(id => grafana.k6.getProjectOutput({
|
|
19
|
+
* id: id,
|
|
20
|
+
* }));
|
|
21
|
+
* ```
|
|
22
|
+
*/
|
|
23
|
+
function getProject(args, opts) {
|
|
24
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
25
|
+
return pulumi.runtime.invoke("grafana:k6/getProject:getProject", {
|
|
26
|
+
"id": args.id,
|
|
27
|
+
}, opts);
|
|
28
|
+
}
|
|
29
|
+
exports.getProject = getProject;
|
|
30
|
+
/**
|
|
31
|
+
* Retrieves a k6 project.
|
|
32
|
+
*
|
|
33
|
+
* ## Example Usage
|
|
34
|
+
*
|
|
35
|
+
* ```typescript
|
|
36
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
37
|
+
* import * as grafana from "@pulumiverse/grafana";
|
|
38
|
+
*
|
|
39
|
+
* const test = new grafana.k6.Project("test", {name: "Terraform Test Project"});
|
|
40
|
+
* const fromId = test.id.apply(id => grafana.k6.getProjectOutput({
|
|
41
|
+
* id: id,
|
|
42
|
+
* }));
|
|
43
|
+
* ```
|
|
44
|
+
*/
|
|
45
|
+
function getProjectOutput(args, opts) {
|
|
46
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
47
|
+
return pulumi.runtime.invokeOutput("grafana:k6/getProject:getProject", {
|
|
48
|
+
"id": args.id,
|
|
49
|
+
}, opts);
|
|
50
|
+
}
|
|
51
|
+
exports.getProjectOutput = getProjectOutput;
|
|
52
|
+
//# sourceMappingURL=getProject.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getProject.js","sourceRoot":"","sources":["../../k6/getProject.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;GAcG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IACxE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kCAAkC,EAAE;QAC7D,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,gCAKC;AAyCD;;;;;;;;;;;;;;GAcG;AACH,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAAiC;IAC1F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,kCAAkC,EAAE;QACnE,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,4CAKC"}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Retrieves a k6 project limits.
|
|
4
|
+
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as grafana from "@pulumiverse/grafana";
|
|
10
|
+
*
|
|
11
|
+
* const testProjectLimits = new grafana.k6.Project("test_project_limits", {name: "Terraform Project Test Limits"});
|
|
12
|
+
* const fromProjectId = testProjectLimits.id.apply(id => grafana.k6.getProjectLimitsOutput({
|
|
13
|
+
* projectId: id,
|
|
14
|
+
* }));
|
|
15
|
+
* ```
|
|
16
|
+
*/
|
|
17
|
+
export declare function getProjectLimits(args: GetProjectLimitsArgs, opts?: pulumi.InvokeOptions): Promise<GetProjectLimitsResult>;
|
|
18
|
+
/**
|
|
19
|
+
* A collection of arguments for invoking getProjectLimits.
|
|
20
|
+
*/
|
|
21
|
+
export interface GetProjectLimitsArgs {
|
|
22
|
+
/**
|
|
23
|
+
* The identifier of the project to get limits for.
|
|
24
|
+
*/
|
|
25
|
+
projectId: number;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* A collection of values returned by getProjectLimits.
|
|
29
|
+
*/
|
|
30
|
+
export interface GetProjectLimitsResult {
|
|
31
|
+
/**
|
|
32
|
+
* Maximum duration of a test in seconds.
|
|
33
|
+
*/
|
|
34
|
+
readonly durationMaxPerTest: number;
|
|
35
|
+
/**
|
|
36
|
+
* The identifier of the project limits. This is set to the same as the project_id.
|
|
37
|
+
*/
|
|
38
|
+
readonly id: number;
|
|
39
|
+
/**
|
|
40
|
+
* The identifier of the project to get limits for.
|
|
41
|
+
*/
|
|
42
|
+
readonly projectId: number;
|
|
43
|
+
/**
|
|
44
|
+
* Maximum number of concurrent browser virtual users (VUs) used in one test.
|
|
45
|
+
*/
|
|
46
|
+
readonly vuBrowserMaxPerTest: number;
|
|
47
|
+
/**
|
|
48
|
+
* Maximum number of concurrent virtual users (VUs) used in one test.
|
|
49
|
+
*/
|
|
50
|
+
readonly vuMaxPerTest: number;
|
|
51
|
+
/**
|
|
52
|
+
* Maximum amount of virtual user hours (VU/h) used per one calendar month.
|
|
53
|
+
*/
|
|
54
|
+
readonly vuhMaxPerMonth: number;
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* Retrieves a k6 project limits.
|
|
58
|
+
*
|
|
59
|
+
* ## Example Usage
|
|
60
|
+
*
|
|
61
|
+
* ```typescript
|
|
62
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
63
|
+
* import * as grafana from "@pulumiverse/grafana";
|
|
64
|
+
*
|
|
65
|
+
* const testProjectLimits = new grafana.k6.Project("test_project_limits", {name: "Terraform Project Test Limits"});
|
|
66
|
+
* const fromProjectId = testProjectLimits.id.apply(id => grafana.k6.getProjectLimitsOutput({
|
|
67
|
+
* projectId: id,
|
|
68
|
+
* }));
|
|
69
|
+
* ```
|
|
70
|
+
*/
|
|
71
|
+
export declare function getProjectLimitsOutput(args: GetProjectLimitsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetProjectLimitsResult>;
|
|
72
|
+
/**
|
|
73
|
+
* A collection of arguments for invoking getProjectLimits.
|
|
74
|
+
*/
|
|
75
|
+
export interface GetProjectLimitsOutputArgs {
|
|
76
|
+
/**
|
|
77
|
+
* The identifier of the project to get limits for.
|
|
78
|
+
*/
|
|
79
|
+
projectId: pulumi.Input<number>;
|
|
80
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
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.getProjectLimitsOutput = exports.getProjectLimits = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Retrieves a k6 project limits.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as grafana from "@pulumiverse/grafana";
|
|
16
|
+
*
|
|
17
|
+
* const testProjectLimits = new grafana.k6.Project("test_project_limits", {name: "Terraform Project Test Limits"});
|
|
18
|
+
* const fromProjectId = testProjectLimits.id.apply(id => grafana.k6.getProjectLimitsOutput({
|
|
19
|
+
* projectId: id,
|
|
20
|
+
* }));
|
|
21
|
+
* ```
|
|
22
|
+
*/
|
|
23
|
+
function getProjectLimits(args, opts) {
|
|
24
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
25
|
+
return pulumi.runtime.invoke("grafana:k6/getProjectLimits:getProjectLimits", {
|
|
26
|
+
"projectId": args.projectId,
|
|
27
|
+
}, opts);
|
|
28
|
+
}
|
|
29
|
+
exports.getProjectLimits = getProjectLimits;
|
|
30
|
+
/**
|
|
31
|
+
* Retrieves a k6 project limits.
|
|
32
|
+
*
|
|
33
|
+
* ## Example Usage
|
|
34
|
+
*
|
|
35
|
+
* ```typescript
|
|
36
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
37
|
+
* import * as grafana from "@pulumiverse/grafana";
|
|
38
|
+
*
|
|
39
|
+
* const testProjectLimits = new grafana.k6.Project("test_project_limits", {name: "Terraform Project Test Limits"});
|
|
40
|
+
* const fromProjectId = testProjectLimits.id.apply(id => grafana.k6.getProjectLimitsOutput({
|
|
41
|
+
* projectId: id,
|
|
42
|
+
* }));
|
|
43
|
+
* ```
|
|
44
|
+
*/
|
|
45
|
+
function getProjectLimitsOutput(args, opts) {
|
|
46
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
47
|
+
return pulumi.runtime.invokeOutput("grafana:k6/getProjectLimits:getProjectLimits", {
|
|
48
|
+
"projectId": args.projectId,
|
|
49
|
+
}, opts);
|
|
50
|
+
}
|
|
51
|
+
exports.getProjectLimitsOutput = getProjectLimitsOutput;
|
|
52
|
+
//# sourceMappingURL=getProjectLimits.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getProjectLimits.js","sourceRoot":"","sources":["../../k6/getProjectLimits.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;GAcG;AACH,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAA2B;IACpF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8CAA8C,EAAE;QACzE,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,4CAKC;AAyCD;;;;;;;;;;;;;;GAcG;AACH,SAAgB,sBAAsB,CAAC,IAAgC,EAAE,IAAiC;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,8CAA8C,EAAE;QAC/E,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,wDAKC"}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "../types/output";
|
|
3
|
+
/**
|
|
4
|
+
* Retrieves all k6 projects with the given name.
|
|
5
|
+
*
|
|
6
|
+
* ## Example Usage
|
|
7
|
+
*
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
+
* import * as grafana from "@pulumiverse/grafana";
|
|
11
|
+
*
|
|
12
|
+
* const project = new grafana.k6.Project("project", {name: "Terraform Test Project"});
|
|
13
|
+
* const project2 = new grafana.k6.Project("project_2", {name: "Terraform Test Project"});
|
|
14
|
+
* const fromName = grafana.k6.getProjects({
|
|
15
|
+
* name: "Terraform Test Project",
|
|
16
|
+
* });
|
|
17
|
+
* ```
|
|
18
|
+
*/
|
|
19
|
+
export declare function getProjects(args?: GetProjectsArgs, opts?: pulumi.InvokeOptions): Promise<GetProjectsResult>;
|
|
20
|
+
/**
|
|
21
|
+
* A collection of arguments for invoking getProjects.
|
|
22
|
+
*/
|
|
23
|
+
export interface GetProjectsArgs {
|
|
24
|
+
/**
|
|
25
|
+
* Human-friendly identifier of the project.
|
|
26
|
+
*/
|
|
27
|
+
name?: string;
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* A collection of values returned by getProjects.
|
|
31
|
+
*/
|
|
32
|
+
export interface GetProjectsResult {
|
|
33
|
+
/**
|
|
34
|
+
* Human-friendly identifier of the project. This is set to the same as name.
|
|
35
|
+
*/
|
|
36
|
+
readonly id: string;
|
|
37
|
+
/**
|
|
38
|
+
* Human-friendly identifier of the project.
|
|
39
|
+
*/
|
|
40
|
+
readonly name?: string;
|
|
41
|
+
readonly projects: outputs.k6.GetProjectsProject[];
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* Retrieves all k6 projects with the given name.
|
|
45
|
+
*
|
|
46
|
+
* ## Example Usage
|
|
47
|
+
*
|
|
48
|
+
* ```typescript
|
|
49
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
50
|
+
* import * as grafana from "@pulumiverse/grafana";
|
|
51
|
+
*
|
|
52
|
+
* const project = new grafana.k6.Project("project", {name: "Terraform Test Project"});
|
|
53
|
+
* const project2 = new grafana.k6.Project("project_2", {name: "Terraform Test Project"});
|
|
54
|
+
* const fromName = grafana.k6.getProjects({
|
|
55
|
+
* name: "Terraform Test Project",
|
|
56
|
+
* });
|
|
57
|
+
* ```
|
|
58
|
+
*/
|
|
59
|
+
export declare function getProjectsOutput(args?: GetProjectsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetProjectsResult>;
|
|
60
|
+
/**
|
|
61
|
+
* A collection of arguments for invoking getProjects.
|
|
62
|
+
*/
|
|
63
|
+
export interface GetProjectsOutputArgs {
|
|
64
|
+
/**
|
|
65
|
+
* Human-friendly identifier of the project.
|
|
66
|
+
*/
|
|
67
|
+
name?: pulumi.Input<string>;
|
|
68
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
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.getProjectsOutput = exports.getProjects = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Retrieves all k6 projects with the given name.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as grafana from "@pulumiverse/grafana";
|
|
16
|
+
*
|
|
17
|
+
* const project = new grafana.k6.Project("project", {name: "Terraform Test Project"});
|
|
18
|
+
* const project2 = new grafana.k6.Project("project_2", {name: "Terraform Test Project"});
|
|
19
|
+
* const fromName = grafana.k6.getProjects({
|
|
20
|
+
* name: "Terraform Test Project",
|
|
21
|
+
* });
|
|
22
|
+
* ```
|
|
23
|
+
*/
|
|
24
|
+
function getProjects(args, opts) {
|
|
25
|
+
args = args || {};
|
|
26
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
27
|
+
return pulumi.runtime.invoke("grafana:k6/getProjects:getProjects", {
|
|
28
|
+
"name": args.name,
|
|
29
|
+
}, opts);
|
|
30
|
+
}
|
|
31
|
+
exports.getProjects = getProjects;
|
|
32
|
+
/**
|
|
33
|
+
* Retrieves all k6 projects with the given name.
|
|
34
|
+
*
|
|
35
|
+
* ## Example Usage
|
|
36
|
+
*
|
|
37
|
+
* ```typescript
|
|
38
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
39
|
+
* import * as grafana from "@pulumiverse/grafana";
|
|
40
|
+
*
|
|
41
|
+
* const project = new grafana.k6.Project("project", {name: "Terraform Test Project"});
|
|
42
|
+
* const project2 = new grafana.k6.Project("project_2", {name: "Terraform Test Project"});
|
|
43
|
+
* const fromName = grafana.k6.getProjects({
|
|
44
|
+
* name: "Terraform Test Project",
|
|
45
|
+
* });
|
|
46
|
+
* ```
|
|
47
|
+
*/
|
|
48
|
+
function getProjectsOutput(args, opts) {
|
|
49
|
+
args = args || {};
|
|
50
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
51
|
+
return pulumi.runtime.invokeOutput("grafana:k6/getProjects:getProjects", {
|
|
52
|
+
"name": args.name,
|
|
53
|
+
}, opts);
|
|
54
|
+
}
|
|
55
|
+
exports.getProjectsOutput = getProjectsOutput;
|
|
56
|
+
//# sourceMappingURL=getProjects.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getProjects.js","sourceRoot":"","sources":["../../k6/getProjects.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,WAAW,CAAC,IAAsB,EAAE,IAA2B;IAC3E,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oCAAoC,EAAE;QAC/D,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,kCAMC;AA0BD;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,iBAAiB,CAAC,IAA4B,EAAE,IAAiC;IAC7F,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,oCAAoC,EAAE;QACrE,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,8CAMC"}
|
package/k6/index.d.ts
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
export { GetLoadTestArgs, GetLoadTestResult, GetLoadTestOutputArgs } from "./getLoadTest";
|
|
2
|
+
export declare const getLoadTest: typeof import("./getLoadTest").getLoadTest;
|
|
3
|
+
export declare const getLoadTestOutput: typeof import("./getLoadTest").getLoadTestOutput;
|
|
4
|
+
export { GetLoadTestsArgs, GetLoadTestsResult, GetLoadTestsOutputArgs } from "./getLoadTests";
|
|
5
|
+
export declare const getLoadTests: typeof import("./getLoadTests").getLoadTests;
|
|
6
|
+
export declare const getLoadTestsOutput: typeof import("./getLoadTests").getLoadTestsOutput;
|
|
7
|
+
export { GetProjectArgs, GetProjectResult, GetProjectOutputArgs } from "./getProject";
|
|
8
|
+
export declare const getProject: typeof import("./getProject").getProject;
|
|
9
|
+
export declare const getProjectOutput: typeof import("./getProject").getProjectOutput;
|
|
10
|
+
export { GetProjectLimitsArgs, GetProjectLimitsResult, GetProjectLimitsOutputArgs } from "./getProjectLimits";
|
|
11
|
+
export declare const getProjectLimits: typeof import("./getProjectLimits").getProjectLimits;
|
|
12
|
+
export declare const getProjectLimitsOutput: typeof import("./getProjectLimits").getProjectLimitsOutput;
|
|
13
|
+
export { GetProjectsArgs, GetProjectsResult, GetProjectsOutputArgs } from "./getProjects";
|
|
14
|
+
export declare const getProjects: typeof import("./getProjects").getProjects;
|
|
15
|
+
export declare const getProjectsOutput: typeof import("./getProjects").getProjectsOutput;
|
|
16
|
+
export { InstallationArgs, InstallationState } from "./installation";
|
|
17
|
+
export type Installation = import("./installation").Installation;
|
|
18
|
+
export declare const Installation: typeof import("./installation").Installation;
|
|
19
|
+
export { LoadTestArgs, LoadTestState } from "./loadTest";
|
|
20
|
+
export type LoadTest = import("./loadTest").LoadTest;
|
|
21
|
+
export declare const LoadTest: typeof import("./loadTest").LoadTest;
|
|
22
|
+
export { ProjectArgs, ProjectState } from "./project";
|
|
23
|
+
export type Project = import("./project").Project;
|
|
24
|
+
export declare const Project: typeof import("./project").Project;
|
|
25
|
+
export { ProjectLimitsArgs, ProjectLimitsState } from "./projectLimits";
|
|
26
|
+
export type ProjectLimits = import("./projectLimits").ProjectLimits;
|
|
27
|
+
export declare const ProjectLimits: typeof import("./projectLimits").ProjectLimits;
|
package/k6/index.js
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
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.ProjectLimits = exports.Project = exports.LoadTest = exports.Installation = exports.getProjectsOutput = exports.getProjects = exports.getProjectLimitsOutput = exports.getProjectLimits = exports.getProjectOutput = exports.getProject = exports.getLoadTestsOutput = exports.getLoadTests = exports.getLoadTestOutput = exports.getLoadTest = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
exports.getLoadTest = null;
|
|
9
|
+
exports.getLoadTestOutput = null;
|
|
10
|
+
utilities.lazyLoad(exports, ["getLoadTest", "getLoadTestOutput"], () => require("./getLoadTest"));
|
|
11
|
+
exports.getLoadTests = null;
|
|
12
|
+
exports.getLoadTestsOutput = null;
|
|
13
|
+
utilities.lazyLoad(exports, ["getLoadTests", "getLoadTestsOutput"], () => require("./getLoadTests"));
|
|
14
|
+
exports.getProject = null;
|
|
15
|
+
exports.getProjectOutput = null;
|
|
16
|
+
utilities.lazyLoad(exports, ["getProject", "getProjectOutput"], () => require("./getProject"));
|
|
17
|
+
exports.getProjectLimits = null;
|
|
18
|
+
exports.getProjectLimitsOutput = null;
|
|
19
|
+
utilities.lazyLoad(exports, ["getProjectLimits", "getProjectLimitsOutput"], () => require("./getProjectLimits"));
|
|
20
|
+
exports.getProjects = null;
|
|
21
|
+
exports.getProjectsOutput = null;
|
|
22
|
+
utilities.lazyLoad(exports, ["getProjects", "getProjectsOutput"], () => require("./getProjects"));
|
|
23
|
+
exports.Installation = null;
|
|
24
|
+
utilities.lazyLoad(exports, ["Installation"], () => require("./installation"));
|
|
25
|
+
exports.LoadTest = null;
|
|
26
|
+
utilities.lazyLoad(exports, ["LoadTest"], () => require("./loadTest"));
|
|
27
|
+
exports.Project = null;
|
|
28
|
+
utilities.lazyLoad(exports, ["Project"], () => require("./project"));
|
|
29
|
+
exports.ProjectLimits = null;
|
|
30
|
+
utilities.lazyLoad(exports, ["ProjectLimits"], () => require("./projectLimits"));
|
|
31
|
+
const _module = {
|
|
32
|
+
version: utilities.getVersion(),
|
|
33
|
+
construct: (name, type, urn) => {
|
|
34
|
+
switch (type) {
|
|
35
|
+
case "grafana:k6/installation:Installation":
|
|
36
|
+
return new exports.Installation(name, undefined, { urn });
|
|
37
|
+
case "grafana:k6/loadTest:LoadTest":
|
|
38
|
+
return new exports.LoadTest(name, undefined, { urn });
|
|
39
|
+
case "grafana:k6/project:Project":
|
|
40
|
+
return new exports.Project(name, undefined, { urn });
|
|
41
|
+
case "grafana:k6/projectLimits:ProjectLimits":
|
|
42
|
+
return new exports.ProjectLimits(name, undefined, { urn });
|
|
43
|
+
default:
|
|
44
|
+
throw new Error(`unknown resource type ${type}`);
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
};
|
|
48
|
+
pulumi.runtime.registerResourceModule("grafana", "k6/installation", _module);
|
|
49
|
+
pulumi.runtime.registerResourceModule("grafana", "k6/loadTest", _module);
|
|
50
|
+
pulumi.runtime.registerResourceModule("grafana", "k6/project", _module);
|
|
51
|
+
pulumi.runtime.registerResourceModule("grafana", "k6/projectLimits", _module);
|
|
52
|
+
//# sourceMappingURL=index.js.map
|
package/k6/index.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../k6/index.ts"],"names":[],"mappings":"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"}
|