@pulumiverse/grafana 0.18.0 → 0.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.
Files changed (76) hide show
  1. package/cloud/getStack.d.ts +4 -0
  2. package/cloud/getStack.js.map +1 -1
  3. package/cloud/providerAwsCloudwatchScrapeJob.d.ts +6 -6
  4. package/cloud/stack.d.ts +8 -0
  5. package/cloud/stack.js +2 -0
  6. package/cloud/stack.js.map +1 -1
  7. package/cloudStack.d.ts +8 -0
  8. package/cloudStack.js +2 -0
  9. package/cloudStack.js.map +1 -1
  10. package/cloudprovider/awsCloudwatchScrapeJob.d.ts +6 -6
  11. package/cloudprovider/awsResourceMetadataScrapeJob.d.ts +3 -3
  12. package/enterprise/index.d.ts +3 -0
  13. package/enterprise/index.js +6 -1
  14. package/enterprise/index.js.map +1 -1
  15. package/enterprise/scimConfig.d.ts +87 -0
  16. package/enterprise/scimConfig.js +74 -0
  17. package/enterprise/scimConfig.js.map +1 -0
  18. package/frontendobservability/app.d.ts +3 -3
  19. package/getCloudStack.d.ts +4 -0
  20. package/getCloudStack.js.map +1 -1
  21. package/getOncallIntegration.d.ts +4 -0
  22. package/getOncallIntegration.js.map +1 -1
  23. package/getOncallTeam.d.ts +10 -4
  24. package/getOncallTeam.js +10 -4
  25. package/getOncallTeam.js.map +1 -1
  26. package/k6/getLoadTest.d.ts +11 -11
  27. package/k6/getLoadTest.js +6 -6
  28. package/k6/getLoadTests.d.ts +16 -16
  29. package/k6/getLoadTests.js +12 -12
  30. package/k6/getProject.d.ts +9 -9
  31. package/k6/getProject.js +6 -6
  32. package/k6/getProjectLimits.d.ts +10 -10
  33. package/k6/getProjectLimits.js +6 -6
  34. package/k6/getProjects.d.ts +0 -2
  35. package/k6/getProjects.js +0 -2
  36. package/k6/getProjects.js.map +1 -1
  37. package/k6/loadTest.d.ts +6 -6
  38. package/k6/projectLimits.d.ts +3 -3
  39. package/oncall/escalationChain.d.ts +13 -4
  40. package/oncall/escalationChain.js +10 -1
  41. package/oncall/escalationChain.js.map +1 -1
  42. package/oncall/getIntegration.d.ts +4 -0
  43. package/oncall/getIntegration.js.map +1 -1
  44. package/oncall/getTeam.d.ts +10 -4
  45. package/oncall/getTeam.js +10 -4
  46. package/oncall/getTeam.js.map +1 -1
  47. package/oncall/integration.d.ts +24 -36
  48. package/oncall/integration.js +2 -30
  49. package/oncall/integration.js.map +1 -1
  50. package/oncall/onCallShift.d.ts +3 -3
  51. package/oncall/outgoingWebhook.d.ts +10 -3
  52. package/oncall/outgoingWebhook.js +7 -0
  53. package/oncall/outgoingWebhook.js.map +1 -1
  54. package/oncall/schedule.d.ts +6 -6
  55. package/oncallEscalationChain.d.ts +13 -4
  56. package/oncallEscalationChain.js +10 -1
  57. package/oncallEscalationChain.js.map +1 -1
  58. package/oncallIntegration.d.ts +24 -36
  59. package/oncallIntegration.js +2 -30
  60. package/oncallIntegration.js.map +1 -1
  61. package/oncallOnCallShift.d.ts +3 -3
  62. package/oncallOutgoingWebhook.d.ts +10 -3
  63. package/oncallOutgoingWebhook.js +7 -0
  64. package/oncallOutgoingWebhook.js.map +1 -1
  65. package/oncallSchedule.d.ts +6 -6
  66. package/package.json +2 -2
  67. package/syntheticMonitoringCheck.d.ts +3 -3
  68. package/syntheticmonitoring/check.d.ts +3 -3
  69. package/syntheticmonitoring/checkAlerts.d.ts +109 -0
  70. package/syntheticmonitoring/checkAlerts.js +104 -0
  71. package/syntheticmonitoring/checkAlerts.js.map +1 -0
  72. package/syntheticmonitoring/index.d.ts +3 -0
  73. package/syntheticmonitoring/index.js +6 -1
  74. package/syntheticmonitoring/index.js.map +1 -1
  75. package/types/input.d.ts +35 -5
  76. package/types/output.d.ts +39 -9
@@ -6,9 +6,12 @@ import * as pulumi from "@pulumi/pulumi";
6
6
  * import * as pulumi from "@pulumi/pulumi";
7
7
  * import * as grafana from "@pulumiverse/grafana";
8
8
  *
9
- * const exampleTeam = grafana.onCall.getTeam({
10
- * name: "example_team",
9
+ * const myTeam = grafana.oss.getTeam({
10
+ * name: "my team",
11
11
  * });
12
+ * const myTeamGetTeam = myTeam.then(myTeam => grafana.onCall.getTeam({
13
+ * name: myTeam.name,
14
+ * }));
12
15
  * ```
13
16
  */
14
17
  /** @deprecated grafana.index/getoncallteam.getOncallTeam has been deprecated in favor of grafana.oncall/getteam.getTeam */
@@ -44,9 +47,12 @@ export interface GetOncallTeamResult {
44
47
  * import * as pulumi from "@pulumi/pulumi";
45
48
  * import * as grafana from "@pulumiverse/grafana";
46
49
  *
47
- * const exampleTeam = grafana.onCall.getTeam({
48
- * name: "example_team",
50
+ * const myTeam = grafana.oss.getTeam({
51
+ * name: "my team",
49
52
  * });
53
+ * const myTeamGetTeam = myTeam.then(myTeam => grafana.onCall.getTeam({
54
+ * name: myTeam.name,
55
+ * }));
50
56
  * ```
51
57
  */
52
58
  /** @deprecated grafana.index/getoncallteam.getOncallTeam has been deprecated in favor of grafana.oncall/getteam.getTeam */
package/getOncallTeam.js CHANGED
@@ -12,9 +12,12 @@ const utilities = require("./utilities");
12
12
  * import * as pulumi from "@pulumi/pulumi";
13
13
  * import * as grafana from "@pulumiverse/grafana";
14
14
  *
15
- * const exampleTeam = grafana.onCall.getTeam({
16
- * name: "example_team",
15
+ * const myTeam = grafana.oss.getTeam({
16
+ * name: "my team",
17
17
  * });
18
+ * const myTeamGetTeam = myTeam.then(myTeam => grafana.onCall.getTeam({
19
+ * name: myTeam.name,
20
+ * }));
18
21
  * ```
19
22
  */
20
23
  /** @deprecated grafana.index/getoncallteam.getOncallTeam has been deprecated in favor of grafana.oncall/getteam.getTeam */
@@ -33,9 +36,12 @@ exports.getOncallTeam = getOncallTeam;
33
36
  * import * as pulumi from "@pulumi/pulumi";
34
37
  * import * as grafana from "@pulumiverse/grafana";
35
38
  *
36
- * const exampleTeam = grafana.onCall.getTeam({
37
- * name: "example_team",
39
+ * const myTeam = grafana.oss.getTeam({
40
+ * name: "my team",
38
41
  * });
42
+ * const myTeamGetTeam = myTeam.then(myTeam => grafana.onCall.getTeam({
43
+ * name: myTeam.name,
44
+ * }));
39
45
  * ```
40
46
  */
41
47
  /** @deprecated grafana.index/getoncallteam.getOncallTeam has been deprecated in favor of grafana.oncall/getteam.getTeam */
@@ -1 +1 @@
1
- {"version":3,"file":"getOncallTeam.js","sourceRoot":"","sources":["../getOncallTeam.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;GAWG;AACH,2HAA2H;AAC3H,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAC9E,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,uIAAuI,CAAC,CAAA;IACxJ,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2CAA2C,EAAE;QACtE,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,sCAMC;AA2BD;;;;;;;;;;;GAWG;AACH,2HAA2H;AAC3H,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAAiC;IAChG,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,uIAAuI,CAAC,CAAA;IACxJ,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,2CAA2C,EAAE;QAC5E,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,kDAMC"}
1
+ {"version":3,"file":"getOncallTeam.js","sourceRoot":"","sources":["../getOncallTeam.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;GAcG;AACH,2HAA2H;AAC3H,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAC9E,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,uIAAuI,CAAC,CAAA;IACxJ,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2CAA2C,EAAE;QACtE,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,sCAMC;AA2BD;;;;;;;;;;;;;;GAcG;AACH,2HAA2H;AAC3H,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAAiC;IAChG,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,uIAAuI,CAAC,CAAA;IACxJ,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,2CAA2C,EAAE;QAC5E,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,kDAMC"}
@@ -17,9 +17,9 @@ import * as pulumi from "@pulumi/pulumi";
17
17
  * }
18
18
  * `,
19
19
  * });
20
- * const fromId = testLoadTest.id.apply(id => grafana.k6.getLoadTestOutput({
21
- * id: id,
22
- * }));
20
+ * const fromId = grafana.k6.getLoadTestOutput({
21
+ * id: testLoadTest.id,
22
+ * });
23
23
  * ```
24
24
  */
25
25
  export declare function getLoadTest(args: GetLoadTestArgs, opts?: pulumi.InvokeOptions): Promise<GetLoadTestResult>;
@@ -30,7 +30,7 @@ export interface GetLoadTestArgs {
30
30
  /**
31
31
  * Numeric identifier of the load test.
32
32
  */
33
- id: number;
33
+ id: string;
34
34
  }
35
35
  /**
36
36
  * A collection of values returned by getLoadTest.
@@ -39,7 +39,7 @@ export interface GetLoadTestResult {
39
39
  /**
40
40
  * Identifier of a baseline test run used for results comparison.
41
41
  */
42
- readonly baselineTestRunId: number;
42
+ readonly baselineTestRunId: string;
43
43
  /**
44
44
  * The date when the load test was created.
45
45
  */
@@ -47,7 +47,7 @@ export interface GetLoadTestResult {
47
47
  /**
48
48
  * Numeric identifier of the load test.
49
49
  */
50
- readonly id: number;
50
+ readonly id: string;
51
51
  /**
52
52
  * Human-friendly identifier of the load test.
53
53
  */
@@ -55,7 +55,7 @@ export interface GetLoadTestResult {
55
55
  /**
56
56
  * The identifier of the project this load test belongs to.
57
57
  */
58
- readonly projectId: number;
58
+ readonly projectId: string;
59
59
  /**
60
60
  * The k6 test script content.
61
61
  */
@@ -83,9 +83,9 @@ export interface GetLoadTestResult {
83
83
  * }
84
84
  * `,
85
85
  * });
86
- * const fromId = testLoadTest.id.apply(id => grafana.k6.getLoadTestOutput({
87
- * id: id,
88
- * }));
86
+ * const fromId = grafana.k6.getLoadTestOutput({
87
+ * id: testLoadTest.id,
88
+ * });
89
89
  * ```
90
90
  */
91
91
  export declare function getLoadTestOutput(args: GetLoadTestOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLoadTestResult>;
@@ -96,5 +96,5 @@ export interface GetLoadTestOutputArgs {
96
96
  /**
97
97
  * Numeric identifier of the load test.
98
98
  */
99
- id: pulumi.Input<number>;
99
+ id: pulumi.Input<string>;
100
100
  }
package/k6/getLoadTest.js CHANGED
@@ -23,9 +23,9 @@ const utilities = require("../utilities");
23
23
  * }
24
24
  * `,
25
25
  * });
26
- * const fromId = testLoadTest.id.apply(id => grafana.k6.getLoadTestOutput({
27
- * id: id,
28
- * }));
26
+ * const fromId = grafana.k6.getLoadTestOutput({
27
+ * id: testLoadTest.id,
28
+ * });
29
29
  * ```
30
30
  */
31
31
  function getLoadTest(args, opts) {
@@ -53,9 +53,9 @@ exports.getLoadTest = getLoadTest;
53
53
  * }
54
54
  * `,
55
55
  * });
56
- * const fromId = testLoadTest.id.apply(id => grafana.k6.getLoadTestOutput({
57
- * id: id,
58
- * }));
56
+ * const fromId = grafana.k6.getLoadTestOutput({
57
+ * id: testLoadTest.id,
58
+ * });
59
59
  * ```
60
60
  */
61
61
  function getLoadTestOutput(args, opts) {
@@ -30,13 +30,13 @@ import * as outputs from "../types/output";
30
30
  * }, {
31
31
  * dependsOn: [testLoadTest],
32
32
  * });
33
- * const fromProjectId = loadTestProject.id.apply(id => grafana.k6.getLoadTestsOutput({
34
- * projectId: id,
35
- * }));
36
- * const filterByName = loadTestProject.id.apply(id => grafana.k6.getLoadTestsOutput({
33
+ * const fromProjectId = grafana.k6.getLoadTestsOutput({
34
+ * projectId: loadTestProject.id,
35
+ * });
36
+ * const filterByName = grafana.k6.getLoadTestsOutput({
37
37
  * name: "Terraform Test Load Test (2)",
38
- * projectId: id,
39
- * }));
38
+ * projectId: loadTestProject.id,
39
+ * });
40
40
  * ```
41
41
  */
42
42
  export declare function getLoadTests(args: GetLoadTestsArgs, opts?: pulumi.InvokeOptions): Promise<GetLoadTestsResult>;
@@ -51,7 +51,7 @@ export interface GetLoadTestsArgs {
51
51
  /**
52
52
  * The identifier of the project the load tests belong to.
53
53
  */
54
- projectId: number;
54
+ projectId: string;
55
55
  }
56
56
  /**
57
57
  * A collection of values returned by getLoadTests.
@@ -60,7 +60,7 @@ export interface GetLoadTestsResult {
60
60
  /**
61
61
  * The identifier of the project the load tests belong to. This is set to the same as the project_id.
62
62
  */
63
- readonly id: number;
63
+ readonly id: string;
64
64
  readonly loadTests: outputs.k6.GetLoadTestsLoadTest[];
65
65
  /**
66
66
  * Human-friendly identifier of the load test.
@@ -69,7 +69,7 @@ export interface GetLoadTestsResult {
69
69
  /**
70
70
  * The identifier of the project the load tests belong to.
71
71
  */
72
- readonly projectId: number;
72
+ readonly projectId: string;
73
73
  }
74
74
  /**
75
75
  * Retrieves all k6 load tests that belong to a project.
@@ -101,13 +101,13 @@ export interface GetLoadTestsResult {
101
101
  * }, {
102
102
  * dependsOn: [testLoadTest],
103
103
  * });
104
- * const fromProjectId = loadTestProject.id.apply(id => grafana.k6.getLoadTestsOutput({
105
- * projectId: id,
106
- * }));
107
- * const filterByName = loadTestProject.id.apply(id => grafana.k6.getLoadTestsOutput({
104
+ * const fromProjectId = grafana.k6.getLoadTestsOutput({
105
+ * projectId: loadTestProject.id,
106
+ * });
107
+ * const filterByName = grafana.k6.getLoadTestsOutput({
108
108
  * name: "Terraform Test Load Test (2)",
109
- * projectId: id,
110
- * }));
109
+ * projectId: loadTestProject.id,
110
+ * });
111
111
  * ```
112
112
  */
113
113
  export declare function getLoadTestsOutput(args: GetLoadTestsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLoadTestsResult>;
@@ -122,5 +122,5 @@ export interface GetLoadTestsOutputArgs {
122
122
  /**
123
123
  * The identifier of the project the load tests belong to.
124
124
  */
125
- projectId: pulumi.Input<number>;
125
+ projectId: pulumi.Input<string>;
126
126
  }
@@ -35,13 +35,13 @@ const utilities = require("../utilities");
35
35
  * }, {
36
36
  * dependsOn: [testLoadTest],
37
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({
38
+ * const fromProjectId = grafana.k6.getLoadTestsOutput({
39
+ * projectId: loadTestProject.id,
40
+ * });
41
+ * const filterByName = grafana.k6.getLoadTestsOutput({
42
42
  * name: "Terraform Test Load Test (2)",
43
- * projectId: id,
44
- * }));
43
+ * projectId: loadTestProject.id,
44
+ * });
45
45
  * ```
46
46
  */
47
47
  function getLoadTests(args, opts) {
@@ -82,13 +82,13 @@ exports.getLoadTests = getLoadTests;
82
82
  * }, {
83
83
  * dependsOn: [testLoadTest],
84
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({
85
+ * const fromProjectId = grafana.k6.getLoadTestsOutput({
86
+ * projectId: loadTestProject.id,
87
+ * });
88
+ * const filterByName = grafana.k6.getLoadTestsOutput({
89
89
  * name: "Terraform Test Load Test (2)",
90
- * projectId: id,
91
- * }));
90
+ * projectId: loadTestProject.id,
91
+ * });
92
92
  * ```
93
93
  */
94
94
  function getLoadTestsOutput(args, opts) {
@@ -9,9 +9,9 @@ import * as pulumi from "@pulumi/pulumi";
9
9
  * import * as grafana from "@pulumiverse/grafana";
10
10
  *
11
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
- * }));
12
+ * const fromId = grafana.k6.getProjectOutput({
13
+ * id: test.id,
14
+ * });
15
15
  * ```
16
16
  */
17
17
  export declare function getProject(args: GetProjectArgs, opts?: pulumi.InvokeOptions): Promise<GetProjectResult>;
@@ -22,7 +22,7 @@ export interface GetProjectArgs {
22
22
  /**
23
23
  * Numeric identifier of the project.
24
24
  */
25
- id: number;
25
+ id: string;
26
26
  }
27
27
  /**
28
28
  * A collection of values returned by getProject.
@@ -39,7 +39,7 @@ export interface GetProjectResult {
39
39
  /**
40
40
  * Numeric identifier of the project.
41
41
  */
42
- readonly id: number;
42
+ readonly id: string;
43
43
  /**
44
44
  * Whether this project is the default for running tests when no explicit project identifier is provided.
45
45
  */
@@ -63,9 +63,9 @@ export interface GetProjectResult {
63
63
  * import * as grafana from "@pulumiverse/grafana";
64
64
  *
65
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
- * }));
66
+ * const fromId = grafana.k6.getProjectOutput({
67
+ * id: test.id,
68
+ * });
69
69
  * ```
70
70
  */
71
71
  export declare function getProjectOutput(args: GetProjectOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetProjectResult>;
@@ -76,5 +76,5 @@ export interface GetProjectOutputArgs {
76
76
  /**
77
77
  * Numeric identifier of the project.
78
78
  */
79
- id: pulumi.Input<number>;
79
+ id: pulumi.Input<string>;
80
80
  }
package/k6/getProject.js CHANGED
@@ -15,9 +15,9 @@ const utilities = require("../utilities");
15
15
  * import * as grafana from "@pulumiverse/grafana";
16
16
  *
17
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
- * }));
18
+ * const fromId = grafana.k6.getProjectOutput({
19
+ * id: test.id,
20
+ * });
21
21
  * ```
22
22
  */
23
23
  function getProject(args, opts) {
@@ -37,9 +37,9 @@ exports.getProject = getProject;
37
37
  * import * as grafana from "@pulumiverse/grafana";
38
38
  *
39
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
- * }));
40
+ * const fromId = grafana.k6.getProjectOutput({
41
+ * id: test.id,
42
+ * });
43
43
  * ```
44
44
  */
45
45
  function getProjectOutput(args, opts) {
@@ -9,9 +9,9 @@ import * as pulumi from "@pulumi/pulumi";
9
9
  * import * as grafana from "@pulumiverse/grafana";
10
10
  *
11
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
- * }));
12
+ * const fromProjectId = grafana.k6.getProjectLimitsOutput({
13
+ * projectId: testProjectLimits.id,
14
+ * });
15
15
  * ```
16
16
  */
17
17
  export declare function getProjectLimits(args: GetProjectLimitsArgs, opts?: pulumi.InvokeOptions): Promise<GetProjectLimitsResult>;
@@ -22,7 +22,7 @@ export interface GetProjectLimitsArgs {
22
22
  /**
23
23
  * The identifier of the project to get limits for.
24
24
  */
25
- projectId: number;
25
+ projectId: string;
26
26
  }
27
27
  /**
28
28
  * A collection of values returned by getProjectLimits.
@@ -35,11 +35,11 @@ export interface GetProjectLimitsResult {
35
35
  /**
36
36
  * The identifier of the project limits. This is set to the same as the project_id.
37
37
  */
38
- readonly id: number;
38
+ readonly id: string;
39
39
  /**
40
40
  * The identifier of the project to get limits for.
41
41
  */
42
- readonly projectId: number;
42
+ readonly projectId: string;
43
43
  /**
44
44
  * Maximum number of concurrent browser virtual users (VUs) used in one test.
45
45
  */
@@ -63,9 +63,9 @@ export interface GetProjectLimitsResult {
63
63
  * import * as grafana from "@pulumiverse/grafana";
64
64
  *
65
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
- * }));
66
+ * const fromProjectId = grafana.k6.getProjectLimitsOutput({
67
+ * projectId: testProjectLimits.id,
68
+ * });
69
69
  * ```
70
70
  */
71
71
  export declare function getProjectLimitsOutput(args: GetProjectLimitsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetProjectLimitsResult>;
@@ -76,5 +76,5 @@ export interface GetProjectLimitsOutputArgs {
76
76
  /**
77
77
  * The identifier of the project to get limits for.
78
78
  */
79
- projectId: pulumi.Input<number>;
79
+ projectId: pulumi.Input<string>;
80
80
  }
@@ -15,9 +15,9 @@ const utilities = require("../utilities");
15
15
  * import * as grafana from "@pulumiverse/grafana";
16
16
  *
17
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
- * }));
18
+ * const fromProjectId = grafana.k6.getProjectLimitsOutput({
19
+ * projectId: testProjectLimits.id,
20
+ * });
21
21
  * ```
22
22
  */
23
23
  function getProjectLimits(args, opts) {
@@ -37,9 +37,9 @@ exports.getProjectLimits = getProjectLimits;
37
37
  * import * as grafana from "@pulumiverse/grafana";
38
38
  *
39
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
- * }));
40
+ * const fromProjectId = grafana.k6.getProjectLimitsOutput({
41
+ * projectId: testProjectLimits.id,
42
+ * });
43
43
  * ```
44
44
  */
45
45
  function getProjectLimitsOutput(args, opts) {
@@ -10,7 +10,6 @@ import * as outputs from "../types/output";
10
10
  * import * as grafana from "@pulumiverse/grafana";
11
11
  *
12
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
13
  * const fromName = grafana.k6.getProjects({
15
14
  * name: "Terraform Test Project",
16
15
  * });
@@ -50,7 +49,6 @@ export interface GetProjectsResult {
50
49
  * import * as grafana from "@pulumiverse/grafana";
51
50
  *
52
51
  * 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
52
  * const fromName = grafana.k6.getProjects({
55
53
  * name: "Terraform Test Project",
56
54
  * });
package/k6/getProjects.js CHANGED
@@ -15,7 +15,6 @@ const utilities = require("../utilities");
15
15
  * import * as grafana from "@pulumiverse/grafana";
16
16
  *
17
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
18
  * const fromName = grafana.k6.getProjects({
20
19
  * name: "Terraform Test Project",
21
20
  * });
@@ -39,7 +38,6 @@ exports.getProjects = getProjects;
39
38
  * import * as grafana from "@pulumiverse/grafana";
40
39
  *
41
40
  * 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
41
  * const fromName = grafana.k6.getProjects({
44
42
  * name: "Terraform Test Project",
45
43
  * });
@@ -1 +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"}
1
+ {"version":3,"file":"getProjects.js","sourceRoot":"","sources":["../../k6/getProjects.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;GAcG;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;;;;;;;;;;;;;;GAcG;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/loadTest.d.ts CHANGED
@@ -44,7 +44,7 @@ export declare class LoadTest extends pulumi.CustomResource {
44
44
  /**
45
45
  * Identifier of a baseline test run used for results comparison.
46
46
  */
47
- readonly baselineTestRunId: pulumi.Output<number | undefined>;
47
+ readonly baselineTestRunId: pulumi.Output<string | undefined>;
48
48
  /**
49
49
  * The date when the load test was created.
50
50
  */
@@ -56,7 +56,7 @@ export declare class LoadTest extends pulumi.CustomResource {
56
56
  /**
57
57
  * The identifier of the project this load test belongs to.
58
58
  */
59
- readonly projectId: pulumi.Output<number>;
59
+ readonly projectId: pulumi.Output<string>;
60
60
  /**
61
61
  * The k6 test script content. Can be provided inline or via the `file()` function.
62
62
  */
@@ -81,7 +81,7 @@ export interface LoadTestState {
81
81
  /**
82
82
  * Identifier of a baseline test run used for results comparison.
83
83
  */
84
- baselineTestRunId?: pulumi.Input<number>;
84
+ baselineTestRunId?: pulumi.Input<string>;
85
85
  /**
86
86
  * The date when the load test was created.
87
87
  */
@@ -93,7 +93,7 @@ export interface LoadTestState {
93
93
  /**
94
94
  * The identifier of the project this load test belongs to.
95
95
  */
96
- projectId?: pulumi.Input<number>;
96
+ projectId?: pulumi.Input<string>;
97
97
  /**
98
98
  * The k6 test script content. Can be provided inline or via the `file()` function.
99
99
  */
@@ -110,7 +110,7 @@ export interface LoadTestArgs {
110
110
  /**
111
111
  * Identifier of a baseline test run used for results comparison.
112
112
  */
113
- baselineTestRunId?: pulumi.Input<number>;
113
+ baselineTestRunId?: pulumi.Input<string>;
114
114
  /**
115
115
  * Human-friendly identifier of the load test.
116
116
  */
@@ -118,7 +118,7 @@ export interface LoadTestArgs {
118
118
  /**
119
119
  * The identifier of the project this load test belongs to.
120
120
  */
121
- projectId: pulumi.Input<number>;
121
+ projectId: pulumi.Input<string>;
122
122
  /**
123
123
  * The k6 test script content. Can be provided inline or via the `file()` function.
124
124
  */
@@ -47,7 +47,7 @@ export declare class ProjectLimits extends pulumi.CustomResource {
47
47
  /**
48
48
  * The identifier of the project to manage limits for.
49
49
  */
50
- readonly projectId: pulumi.Output<number>;
50
+ readonly projectId: pulumi.Output<string>;
51
51
  /**
52
52
  * Maximum number of concurrent browser virtual users (VUs) used in one test.
53
53
  */
@@ -80,7 +80,7 @@ export interface ProjectLimitsState {
80
80
  /**
81
81
  * The identifier of the project to manage limits for.
82
82
  */
83
- projectId?: pulumi.Input<number>;
83
+ projectId?: pulumi.Input<string>;
84
84
  /**
85
85
  * Maximum number of concurrent browser virtual users (VUs) used in one test.
86
86
  */
@@ -105,7 +105,7 @@ export interface ProjectLimitsArgs {
105
105
  /**
106
106
  * The identifier of the project to manage limits for.
107
107
  */
108
- projectId: pulumi.Input<number>;
108
+ projectId: pulumi.Input<string>;
109
109
  /**
110
110
  * Maximum number of concurrent browser virtual users (VUs) used in one test.
111
111
  */
@@ -8,7 +8,16 @@ import * as pulumi from "@pulumi/pulumi";
8
8
  * import * as pulumi from "@pulumi/pulumi";
9
9
  * import * as grafana from "@pulumiverse/grafana";
10
10
  *
11
- * const _default = new grafana.oncall.EscalationChain("default", {name: "default"});
11
+ * const myTeam = grafana.oss.getTeam({
12
+ * name: "my team",
13
+ * });
14
+ * const myTeamGetTeam = myTeam.then(myTeam => grafana.onCall.getTeam({
15
+ * name: myTeam.name,
16
+ * }));
17
+ * const _default = new grafana.oncall.EscalationChain("default", {
18
+ * name: "default",
19
+ * teamId: myTeamGetTeam.then(myTeamGetTeam => myTeamGetTeam.id),
20
+ * });
12
21
  * ```
13
22
  *
14
23
  * ## Import
@@ -38,7 +47,7 @@ export declare class EscalationChain extends pulumi.CustomResource {
38
47
  */
39
48
  readonly name: pulumi.Output<string>;
40
49
  /**
41
- * The ID of the OnCall team. To get one, create a team in Grafana, and navigate to the OnCall plugin (to sync the team with OnCall). You can then get the ID using the `grafana.onCall.getTeam` datasource.
50
+ * The ID of the OnCall team (using the `grafana.onCall.getTeam` datasource).
42
51
  */
43
52
  readonly teamId: pulumi.Output<string | undefined>;
44
53
  /**
@@ -59,7 +68,7 @@ export interface EscalationChainState {
59
68
  */
60
69
  name?: pulumi.Input<string>;
61
70
  /**
62
- * The ID of the OnCall team. To get one, create a team in Grafana, and navigate to the OnCall plugin (to sync the team with OnCall). You can then get the ID using the `grafana.onCall.getTeam` datasource.
71
+ * The ID of the OnCall team (using the `grafana.onCall.getTeam` datasource).
63
72
  */
64
73
  teamId?: pulumi.Input<string>;
65
74
  }
@@ -72,7 +81,7 @@ export interface EscalationChainArgs {
72
81
  */
73
82
  name?: pulumi.Input<string>;
74
83
  /**
75
- * The ID of the OnCall team. To get one, create a team in Grafana, and navigate to the OnCall plugin (to sync the team with OnCall). You can then get the ID using the `grafana.onCall.getTeam` datasource.
84
+ * The ID of the OnCall team (using the `grafana.onCall.getTeam` datasource).
76
85
  */
77
86
  teamId?: pulumi.Input<string>;
78
87
  }
@@ -14,7 +14,16 @@ const utilities = require("../utilities");
14
14
  * import * as pulumi from "@pulumi/pulumi";
15
15
  * import * as grafana from "@pulumiverse/grafana";
16
16
  *
17
- * const _default = new grafana.oncall.EscalationChain("default", {name: "default"});
17
+ * const myTeam = grafana.oss.getTeam({
18
+ * name: "my team",
19
+ * });
20
+ * const myTeamGetTeam = myTeam.then(myTeam => grafana.onCall.getTeam({
21
+ * name: myTeam.name,
22
+ * }));
23
+ * const _default = new grafana.oncall.EscalationChain("default", {
24
+ * name: "default",
25
+ * teamId: myTeamGetTeam.then(myTeamGetTeam => myTeamGetTeam.id),
26
+ * });
18
27
  * ```
19
28
  *
20
29
  * ## Import
@@ -1 +1 @@
1
- {"version":3,"file":"escalationChain.js","sourceRoot":"","sources":["../../oncall/escalationChain.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;GAiBG;AACH,MAAa,eAAgB,SAAQ,MAAM,CAAC,cAAc;IACtD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA4B,EAAE,IAAmC;QAC1H,OAAO,IAAI,eAAe,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACtE,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,eAAe,CAAC,YAAY,CAAC;IAChE,CAAC;IAmBD,YAAY,IAAY,EAAE,WAAwD,EAAE,IAAmC;QACnH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA+C,CAAC;YAC9D,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;SAC/D;aAAM;YACH,MAAM,IAAI,GAAG,WAA8C,CAAC;YAC5D,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;SAC7D;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,MAAM,SAAS,GAAG,EAAE,OAAO,EAAE,CAAC,EAAE,IAAI,EAAE,2DAA2D,EAAE,CAAC,EAAE,CAAC;QACvG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC;QAC5C,KAAK,CAAC,eAAe,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACpE,CAAC;;AA7DL,0CA8DC;AAhDG,gBAAgB;AACO,4BAAY,GAAG,gDAAgD,CAAC"}
1
+ {"version":3,"file":"escalationChain.js","sourceRoot":"","sources":["../../oncall/escalationChain.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,MAAa,eAAgB,SAAQ,MAAM,CAAC,cAAc;IACtD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA4B,EAAE,IAAmC;QAC1H,OAAO,IAAI,eAAe,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACtE,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,eAAe,CAAC,YAAY,CAAC;IAChE,CAAC;IAmBD,YAAY,IAAY,EAAE,WAAwD,EAAE,IAAmC;QACnH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA+C,CAAC;YAC9D,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;SAC/D;aAAM;YACH,MAAM,IAAI,GAAG,WAA8C,CAAC;YAC5D,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;SAC7D;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,MAAM,SAAS,GAAG,EAAE,OAAO,EAAE,CAAC,EAAE,IAAI,EAAE,2DAA2D,EAAE,CAAC,EAAE,CAAC;QACvG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC;QAC5C,KAAK,CAAC,eAAe,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACpE,CAAC;;AA7DL,0CA8DC;AAhDG,gBAAgB;AACO,4BAAY,GAAG,gDAAgD,CAAC"}
@@ -31,6 +31,10 @@ export interface GetIntegrationResult {
31
31
  * The integration ID.
32
32
  */
33
33
  readonly id: string;
34
+ /**
35
+ * The link for the integration.
36
+ */
37
+ readonly link: string;
34
38
  /**
35
39
  * The integration name.
36
40
  */
@@ -1 +1 @@
1
- {"version":3,"file":"getIntegration.js","sourceRoot":"","sources":["../../oncall/getIntegration.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;GAaG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAChF,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,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,wCAKC;AAyBD;;;;;;;;;;;;;GAaG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAAiC;IAClG,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,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,oDAKC"}
1
+ {"version":3,"file":"getIntegration.js","sourceRoot":"","sources":["../../oncall/getIntegration.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;GAaG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAChF,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,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,wCAKC;AA6BD;;;;;;;;;;;;;GAaG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAAiC;IAClG,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,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,oDAKC"}