@pulumiverse/grafana 2.25.1 → 2.25.2
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/alerting/contactPoint.d.ts +1 -1
- package/alerting/contactPoint.js +1 -1
- package/alerting/messageTemplate.d.ts +1 -1
- package/alerting/messageTemplate.js +1 -1
- package/alerting/muteTiming.d.ts +1 -1
- package/alerting/muteTiming.js +1 -1
- package/alerting/notificationPolicy.d.ts +1 -1
- package/alerting/notificationPolicy.js +1 -1
- package/alerting/ruleGroup.d.ts +1 -1
- package/alerting/ruleGroup.js +1 -1
- package/apps/genericResource.d.ts +12 -0
- package/apps/genericResource.js +2 -0
- package/apps/genericResource.js.map +1 -1
- package/cloud/stackServiceAccount.d.ts +1 -1
- package/cloud/stackServiceAccount.js +1 -1
- package/cloud/stackServiceAccountRotatingToken.d.ts +1 -1
- package/cloud/stackServiceAccountRotatingToken.js +1 -1
- package/cloud/stackServiceAccountToken.d.ts +1 -1
- package/cloud/stackServiceAccountToken.js +1 -1
- package/enterprise/dataSourceConfigLbacRules.d.ts +1 -1
- package/enterprise/dataSourceConfigLbacRules.js +1 -1
- package/enterprise/dataSourcePermission.d.ts +1 -1
- package/enterprise/dataSourcePermission.js +1 -1
- package/enterprise/getRole.d.ts +2 -2
- package/enterprise/getRole.js +2 -2
- package/enterprise/report.d.ts +1 -1
- package/enterprise/report.js +1 -1
- package/enterprise/role.d.ts +1 -1
- package/enterprise/role.js +1 -1
- package/enterprise/roleAssignment.d.ts +1 -1
- package/enterprise/roleAssignment.js +1 -1
- package/oss/annotation.d.ts +1 -1
- package/oss/annotation.js +1 -1
- package/oss/dashboardPermission.d.ts +1 -1
- package/oss/dashboardPermission.js +1 -1
- package/oss/dashboardPublic.d.ts +1 -1
- package/oss/dashboardPublic.js +1 -1
- package/oss/dataSource.d.ts +1 -1
- package/oss/dataSource.js +1 -1
- package/oss/dataSourceConfig.d.ts +1 -1
- package/oss/dataSourceConfig.js +1 -1
- package/oss/folder.d.ts +1 -1
- package/oss/folder.js +1 -1
- package/oss/folderPermission.d.ts +1 -1
- package/oss/folderPermission.js +1 -1
- package/oss/folderPermissionItem.d.ts +1 -1
- package/oss/folderPermissionItem.js +1 -1
- package/oss/getFolder.d.ts +2 -2
- package/oss/getFolder.js +2 -2
- package/oss/getFolders.d.ts +2 -2
- package/oss/getFolders.js +2 -2
- package/oss/getOrganization.d.ts +2 -2
- package/oss/getOrganization.js +2 -2
- package/oss/getOrganizationPreferences.d.ts +2 -2
- package/oss/getOrganizationPreferences.js +2 -2
- package/oss/getOrganizationUser.d.ts +2 -2
- package/oss/getOrganizationUser.js +2 -2
- package/oss/getServiceAccount.d.ts +2 -2
- package/oss/getServiceAccount.js +2 -2
- package/oss/getTeam.d.ts +2 -2
- package/oss/getTeam.js +2 -2
- package/oss/getUser.d.ts +2 -2
- package/oss/getUser.js +2 -2
- package/oss/getUsers.d.ts +2 -2
- package/oss/getUsers.js +2 -2
- package/oss/libraryPanel.d.ts +1 -1
- package/oss/libraryPanel.js +1 -1
- package/oss/organization.d.ts +1 -1
- package/oss/organization.js +1 -1
- package/oss/organizationPreferences.d.ts +1 -1
- package/oss/organizationPreferences.js +1 -1
- package/oss/playlist.d.ts +1 -1
- package/oss/playlist.js +1 -1
- package/oss/serviceAccount.d.ts +1 -1
- package/oss/serviceAccount.js +1 -1
- package/oss/serviceAccountRotatingToken.d.ts +1 -1
- package/oss/serviceAccountRotatingToken.js +1 -1
- package/oss/serviceAccountToken.d.ts +1 -1
- package/oss/serviceAccountToken.js +1 -1
- package/oss/ssoSettings.d.ts +1 -1
- package/oss/ssoSettings.js +1 -1
- package/oss/team.d.ts +4 -4
- package/oss/team.js +1 -1
- package/oss/user.d.ts +1 -1
- package/oss/user.js +1 -1
- package/package.json +2 -2
- package/types/input.d.ts +88 -0
- package/types/output.d.ts +88 -0
|
@@ -5,7 +5,7 @@ import * as outputs from "../types/output";
|
|
|
5
5
|
* Manages Grafana Alerting contact points.
|
|
6
6
|
*
|
|
7
7
|
* * Official documentation
|
|
8
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
8
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/alerting_provisioning/#contact-points)
|
|
9
9
|
*
|
|
10
10
|
* This resource requires Grafana 9.1.0 or later.
|
|
11
11
|
*
|
package/alerting/contactPoint.js
CHANGED
|
@@ -9,7 +9,7 @@ const utilities = require("../utilities");
|
|
|
9
9
|
* Manages Grafana Alerting contact points.
|
|
10
10
|
*
|
|
11
11
|
* * Official documentation
|
|
12
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
12
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/alerting_provisioning/#contact-points)
|
|
13
13
|
*
|
|
14
14
|
* This resource requires Grafana 9.1.0 or later.
|
|
15
15
|
*
|
|
@@ -3,7 +3,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
3
3
|
* Manages Grafana Alerting notification template groups, including notification templates.
|
|
4
4
|
*
|
|
5
5
|
* * Official documentation
|
|
6
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
6
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/alerting_provisioning/#notification-template-groups)
|
|
7
7
|
*
|
|
8
8
|
* This resource requires Grafana 9.1.0 or later.
|
|
9
9
|
*
|
|
@@ -9,7 +9,7 @@ const utilities = require("../utilities");
|
|
|
9
9
|
* Manages Grafana Alerting notification template groups, including notification templates.
|
|
10
10
|
*
|
|
11
11
|
* * Official documentation
|
|
12
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
12
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/alerting_provisioning/#notification-template-groups)
|
|
13
13
|
*
|
|
14
14
|
* This resource requires Grafana 9.1.0 or later.
|
|
15
15
|
*
|
package/alerting/muteTiming.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ import * as outputs from "../types/output";
|
|
|
5
5
|
* Manages Grafana Alerting mute timings.
|
|
6
6
|
*
|
|
7
7
|
* * Official documentation
|
|
8
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
8
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/alerting_provisioning/#mute-timings)
|
|
9
9
|
*
|
|
10
10
|
* This resource requires Grafana 9.1.0 or later.
|
|
11
11
|
*
|
package/alerting/muteTiming.js
CHANGED
|
@@ -9,7 +9,7 @@ const utilities = require("../utilities");
|
|
|
9
9
|
* Manages Grafana Alerting mute timings.
|
|
10
10
|
*
|
|
11
11
|
* * Official documentation
|
|
12
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
12
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/alerting_provisioning/#mute-timings)
|
|
13
13
|
*
|
|
14
14
|
* This resource requires Grafana 9.1.0 or later.
|
|
15
15
|
*
|
|
@@ -7,7 +7,7 @@ import * as outputs from "../types/output";
|
|
|
7
7
|
* !> This resource manages the entire notification policy tree and overwrites its policies. However, it does not overwrite internal policies created when alert rules directly set a contact point for notifications.
|
|
8
8
|
*
|
|
9
9
|
* * Official documentation
|
|
10
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
10
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/alerting_provisioning/#notification-policies)
|
|
11
11
|
*
|
|
12
12
|
* This resource requires Grafana 9.1.0 or later.
|
|
13
13
|
*
|
|
@@ -11,7 +11,7 @@ const utilities = require("../utilities");
|
|
|
11
11
|
* !> This resource manages the entire notification policy tree and overwrites its policies. However, it does not overwrite internal policies created when alert rules directly set a contact point for notifications.
|
|
12
12
|
*
|
|
13
13
|
* * Official documentation
|
|
14
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
14
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/alerting_provisioning/#notification-policies)
|
|
15
15
|
*
|
|
16
16
|
* This resource requires Grafana 9.1.0 or later.
|
|
17
17
|
*
|
package/alerting/ruleGroup.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ import * as outputs from "../types/output";
|
|
|
5
5
|
* Manages Grafana Alerting rule groups.
|
|
6
6
|
*
|
|
7
7
|
* * Official documentation
|
|
8
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
8
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/alerting_provisioning/#alert-rules)
|
|
9
9
|
*
|
|
10
10
|
* This resource requires Grafana 9.1.0 or later.
|
|
11
11
|
*
|
package/alerting/ruleGroup.js
CHANGED
|
@@ -9,7 +9,7 @@ const utilities = require("../utilities");
|
|
|
9
9
|
* Manages Grafana Alerting rule groups.
|
|
10
10
|
*
|
|
11
11
|
* * Official documentation
|
|
12
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
12
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/alerting_provisioning/#alert-rules)
|
|
13
13
|
*
|
|
14
14
|
* This resource requires Grafana 9.1.0 or later.
|
|
15
15
|
*
|
|
@@ -95,6 +95,10 @@ export declare class GenericResource extends pulumi.CustomResource {
|
|
|
95
95
|
* Whether the resource can be edited from the Grafana UI. Defaults to `false` — Terraform-managed resources are locked from UI edits unless you opt in. Set to `true` to allow UI modifications; not supported by all resources.
|
|
96
96
|
*/
|
|
97
97
|
readonly allowUiUpdates: pulumi.Output<boolean>;
|
|
98
|
+
/**
|
|
99
|
+
* Override the identity stamped on this resource's manager metadata. Defaults to "grafana-terraform-provider". Use this to distinguish resources managed by different Terraform workspaces targeting the same Grafana instance.
|
|
100
|
+
*/
|
|
101
|
+
readonly managerIdentity: pulumi.Output<string | undefined>;
|
|
98
102
|
/**
|
|
99
103
|
* Kubernetes-style manifest, typically from `yamldecode(file(...))` or `jsondecode(file(...))`. Must contain `apiVersion`, `kind`, `metadata` (with `name` or `uid`), and `spec`. Use HCL `merge()` to inject Terraform variables. If you start from an exported manifest, remove noisy server-managed metadata such as `resourceVersion`, `generation`, and `managedFields`, or import the resource first and use the normalized state shape. If `metadata.namespace` is set, it must match the namespace selected from provider `orgId` or `stackId` / autodiscovery. Top-level manifest fields are limited to `apiVersion`, `kind`, `metadata`, `spec`, and the ignored `status` field. The `secure` field must not be set here; use the top-level `secure` argument instead.
|
|
100
104
|
*/
|
|
@@ -125,6 +129,10 @@ export interface GenericResourceState {
|
|
|
125
129
|
* Whether the resource can be edited from the Grafana UI. Defaults to `false` — Terraform-managed resources are locked from UI edits unless you opt in. Set to `true` to allow UI modifications; not supported by all resources.
|
|
126
130
|
*/
|
|
127
131
|
allowUiUpdates?: pulumi.Input<boolean>;
|
|
132
|
+
/**
|
|
133
|
+
* Override the identity stamped on this resource's manager metadata. Defaults to "grafana-terraform-provider". Use this to distinguish resources managed by different Terraform workspaces targeting the same Grafana instance.
|
|
134
|
+
*/
|
|
135
|
+
managerIdentity?: pulumi.Input<string>;
|
|
128
136
|
/**
|
|
129
137
|
* Kubernetes-style manifest, typically from `yamldecode(file(...))` or `jsondecode(file(...))`. Must contain `apiVersion`, `kind`, `metadata` (with `name` or `uid`), and `spec`. Use HCL `merge()` to inject Terraform variables. If you start from an exported manifest, remove noisy server-managed metadata such as `resourceVersion`, `generation`, and `managedFields`, or import the resource first and use the normalized state shape. If `metadata.namespace` is set, it must match the namespace selected from provider `orgId` or `stackId` / autodiscovery. Top-level manifest fields are limited to `apiVersion`, `kind`, `metadata`, `spec`, and the ignored `status` field. The `secure` field must not be set here; use the top-level `secure` argument instead.
|
|
130
138
|
*/
|
|
@@ -147,6 +155,10 @@ export interface GenericResourceArgs {
|
|
|
147
155
|
* Whether the resource can be edited from the Grafana UI. Defaults to `false` — Terraform-managed resources are locked from UI edits unless you opt in. Set to `true` to allow UI modifications; not supported by all resources.
|
|
148
156
|
*/
|
|
149
157
|
allowUiUpdates?: pulumi.Input<boolean>;
|
|
158
|
+
/**
|
|
159
|
+
* Override the identity stamped on this resource's manager metadata. Defaults to "grafana-terraform-provider". Use this to distinguish resources managed by different Terraform workspaces targeting the same Grafana instance.
|
|
160
|
+
*/
|
|
161
|
+
managerIdentity?: pulumi.Input<string>;
|
|
150
162
|
/**
|
|
151
163
|
* Kubernetes-style manifest, typically from `yamldecode(file(...))` or `jsondecode(file(...))`. Must contain `apiVersion`, `kind`, `metadata` (with `name` or `uid`), and `spec`. Use HCL `merge()` to inject Terraform variables. If you start from an exported manifest, remove noisy server-managed metadata such as `resourceVersion`, `generation`, and `managedFields`, or import the resource first and use the normalized state shape. If `metadata.namespace` is set, it must match the namespace selected from provider `orgId` or `stackId` / autodiscovery. Top-level manifest fields are limited to `apiVersion`, `kind`, `metadata`, `spec`, and the ignored `status` field. The `secure` field must not be set here; use the top-level `secure` argument instead.
|
|
152
164
|
*/
|
package/apps/genericResource.js
CHANGED
|
@@ -110,6 +110,7 @@ class GenericResource extends pulumi.CustomResource {
|
|
|
110
110
|
if (opts.id) {
|
|
111
111
|
const state = argsOrState;
|
|
112
112
|
resourceInputs["allowUiUpdates"] = state?.allowUiUpdates;
|
|
113
|
+
resourceInputs["managerIdentity"] = state?.managerIdentity;
|
|
113
114
|
resourceInputs["manifest"] = state?.manifest;
|
|
114
115
|
resourceInputs["secure"] = state?.secure;
|
|
115
116
|
resourceInputs["secureVersion"] = state?.secureVersion;
|
|
@@ -117,6 +118,7 @@ class GenericResource extends pulumi.CustomResource {
|
|
|
117
118
|
else {
|
|
118
119
|
const args = argsOrState;
|
|
119
120
|
resourceInputs["allowUiUpdates"] = args?.allowUiUpdates;
|
|
121
|
+
resourceInputs["managerIdentity"] = args?.managerIdentity;
|
|
120
122
|
resourceInputs["manifest"] = args?.manifest;
|
|
121
123
|
resourceInputs["secure"] = args?.secure ? pulumi.secret(args.secure) : undefined;
|
|
122
124
|
resourceInputs["secureVersion"] = args?.secureVersion;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"genericResource.js","sourceRoot":"","sources":["../../apps/genericResource.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2EG;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,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,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;
|
|
1
|
+
{"version":3,"file":"genericResource.js","sourceRoot":"","sources":["../../apps/genericResource.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2EG;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,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,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;IAgCD,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,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;YACzD,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,EAAE,eAAe,CAAC;YAC3D,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,EAAE,aAAa,CAAC;SAC1D;aAAM;YACH,MAAM,IAAI,GAAG,WAA8C,CAAC;YAC5D,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC;YACxD,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,EAAE,eAAe,CAAC;YAC1D,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;YACjF,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,EAAE,aAAa,CAAC;SACzD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,MAAM,UAAU,GAAG,EAAE,uBAAuB,EAAE,CAAC,QAAQ,CAAC,EAAE,CAAC;QAC3D,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;QAC7C,KAAK,CAAC,eAAe,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACpE,CAAC;;AAhFL,0CAiFC;AAnEG,gBAAgB;AACO,4BAAY,GAAG,8CAA8C,CAAC"}
|
|
@@ -4,7 +4,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
4
4
|
* This can be used to bootstrap a management service account for a new stack
|
|
5
5
|
*
|
|
6
6
|
* * [Official documentation](https://grafana.com/docs/grafana/latest/administration/service-accounts/)
|
|
7
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
7
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/serviceaccount/#service-account-api)
|
|
8
8
|
*
|
|
9
9
|
* Required access policy scopes:
|
|
10
10
|
*
|
|
@@ -10,7 +10,7 @@ const utilities = require("../utilities");
|
|
|
10
10
|
* This can be used to bootstrap a management service account for a new stack
|
|
11
11
|
*
|
|
12
12
|
* * [Official documentation](https://grafana.com/docs/grafana/latest/administration/service-accounts/)
|
|
13
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
13
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/serviceaccount/#service-account-api)
|
|
14
14
|
*
|
|
15
15
|
* Required access policy scopes:
|
|
16
16
|
*
|
|
@@ -4,7 +4,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
4
4
|
* This can be used to bootstrap a management service account token for a new stack
|
|
5
5
|
*
|
|
6
6
|
* * [Official documentation](https://grafana.com/docs/grafana/latest/administration/service-accounts/)
|
|
7
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
7
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/serviceaccount/#service-account-api)
|
|
8
8
|
*
|
|
9
9
|
* Required access policy scopes:
|
|
10
10
|
*
|
|
@@ -10,7 +10,7 @@ const utilities = require("../utilities");
|
|
|
10
10
|
* This can be used to bootstrap a management service account token for a new stack
|
|
11
11
|
*
|
|
12
12
|
* * [Official documentation](https://grafana.com/docs/grafana/latest/administration/service-accounts/)
|
|
13
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
13
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/serviceaccount/#service-account-api)
|
|
14
14
|
*
|
|
15
15
|
* Required access policy scopes:
|
|
16
16
|
*
|
|
@@ -4,7 +4,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
4
4
|
* This can be used to bootstrap a management service account token for a new stack
|
|
5
5
|
*
|
|
6
6
|
* * [Official documentation](https://grafana.com/docs/grafana/latest/administration/service-accounts/)
|
|
7
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
7
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/serviceaccount/#service-account-api)
|
|
8
8
|
*
|
|
9
9
|
* Required access policy scopes:
|
|
10
10
|
*
|
|
@@ -10,7 +10,7 @@ const utilities = require("../utilities");
|
|
|
10
10
|
* This can be used to bootstrap a management service account token for a new stack
|
|
11
11
|
*
|
|
12
12
|
* * [Official documentation](https://grafana.com/docs/grafana/latest/administration/service-accounts/)
|
|
13
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
13
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/serviceaccount/#service-account-api)
|
|
14
14
|
*
|
|
15
15
|
* Required access policy scopes:
|
|
16
16
|
*
|
|
@@ -5,7 +5,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
5
5
|
* !> Warning: The resource is experimental and will be subject to change. This resource manages the entire LBAC rules tree, and will overwrite any existing rules.
|
|
6
6
|
*
|
|
7
7
|
* * [Official documentation](https://grafana.com/docs/grafana/latest/administration/data-source-management/teamlbac/)
|
|
8
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
8
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/datasource_lbac_rules/)
|
|
9
9
|
*
|
|
10
10
|
* This resource requires Grafana >=11.5.0.
|
|
11
11
|
*
|
|
@@ -11,7 +11,7 @@ const utilities = require("../utilities");
|
|
|
11
11
|
* !> Warning: The resource is experimental and will be subject to change. This resource manages the entire LBAC rules tree, and will overwrite any existing rules.
|
|
12
12
|
*
|
|
13
13
|
* * [Official documentation](https://grafana.com/docs/grafana/latest/administration/data-source-management/teamlbac/)
|
|
14
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
14
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/datasource_lbac_rules/)
|
|
15
15
|
*
|
|
16
16
|
* This resource requires Grafana >=11.5.0.
|
|
17
17
|
*
|
|
@@ -3,7 +3,7 @@ import * as inputs from "../types/input";
|
|
|
3
3
|
import * as outputs from "../types/output";
|
|
4
4
|
/**
|
|
5
5
|
* Manages the entire set of permissions for a datasource. Permissions that aren't specified when applying this resource will be removed.
|
|
6
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
6
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/datasource_permissions/)
|
|
7
7
|
*
|
|
8
8
|
* ## Example Usage
|
|
9
9
|
*
|
|
@@ -7,7 +7,7 @@ const pulumi = require("@pulumi/pulumi");
|
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
/**
|
|
9
9
|
* Manages the entire set of permissions for a datasource. Permissions that aren't specified when applying this resource will be removed.
|
|
10
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
10
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/datasource_permissions/)
|
|
11
11
|
*
|
|
12
12
|
* ## Example Usage
|
|
13
13
|
*
|
package/enterprise/getRole.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import * as outputs from "../types/output";
|
|
|
4
4
|
* **Note:** This resource is available only with Grafana Enterprise 8.+.
|
|
5
5
|
*
|
|
6
6
|
* * [Official documentation](https://grafana.com/docs/grafana/latest/administration/roles-and-permissions/access-control/)
|
|
7
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
7
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/access_control/)
|
|
8
8
|
*
|
|
9
9
|
* ## Example Usage
|
|
10
10
|
*
|
|
@@ -102,7 +102,7 @@ export interface GetRoleResult {
|
|
|
102
102
|
* **Note:** This resource is available only with Grafana Enterprise 8.+.
|
|
103
103
|
*
|
|
104
104
|
* * [Official documentation](https://grafana.com/docs/grafana/latest/administration/roles-and-permissions/access-control/)
|
|
105
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
105
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/access_control/)
|
|
106
106
|
*
|
|
107
107
|
* ## Example Usage
|
|
108
108
|
*
|
package/enterprise/getRole.js
CHANGED
|
@@ -9,7 +9,7 @@ const utilities = require("../utilities");
|
|
|
9
9
|
* **Note:** This resource is available only with Grafana Enterprise 8.+.
|
|
10
10
|
*
|
|
11
11
|
* * [Official documentation](https://grafana.com/docs/grafana/latest/administration/roles-and-permissions/access-control/)
|
|
12
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
12
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/access_control/)
|
|
13
13
|
*
|
|
14
14
|
* ## Example Usage
|
|
15
15
|
*
|
|
@@ -55,7 +55,7 @@ exports.getRole = getRole;
|
|
|
55
55
|
* **Note:** This resource is available only with Grafana Enterprise 8.+.
|
|
56
56
|
*
|
|
57
57
|
* * [Official documentation](https://grafana.com/docs/grafana/latest/administration/roles-and-permissions/access-control/)
|
|
58
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
58
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/access_control/)
|
|
59
59
|
*
|
|
60
60
|
* ## Example Usage
|
|
61
61
|
*
|
package/enterprise/report.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ import * as outputs from "../types/output";
|
|
|
5
5
|
* **Note:** This resource is available only with Grafana Enterprise 7.+.
|
|
6
6
|
*
|
|
7
7
|
* * [Official documentation](https://grafana.com/docs/grafana/latest/dashboards/create-reports/)
|
|
8
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
8
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/reporting/)
|
|
9
9
|
*
|
|
10
10
|
* ## Example Usage
|
|
11
11
|
*
|
package/enterprise/report.js
CHANGED
|
@@ -9,7 +9,7 @@ const utilities = require("../utilities");
|
|
|
9
9
|
* **Note:** This resource is available only with Grafana Enterprise 7.+.
|
|
10
10
|
*
|
|
11
11
|
* * [Official documentation](https://grafana.com/docs/grafana/latest/dashboards/create-reports/)
|
|
12
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
12
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/reporting/)
|
|
13
13
|
*
|
|
14
14
|
* ## Example Usage
|
|
15
15
|
*
|
package/enterprise/role.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ import * as outputs from "../types/output";
|
|
|
5
5
|
* **Note:** This resource is available only with Grafana Enterprise 8.+.
|
|
6
6
|
*
|
|
7
7
|
* * [Official documentation](https://grafana.com/docs/grafana/latest/administration/roles-and-permissions/access-control/)
|
|
8
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
8
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/access_control/)
|
|
9
9
|
*
|
|
10
10
|
* ## Example Usage
|
|
11
11
|
*
|
package/enterprise/role.js
CHANGED
|
@@ -9,7 +9,7 @@ const utilities = require("../utilities");
|
|
|
9
9
|
* **Note:** This resource is available only with Grafana Enterprise 8.+.
|
|
10
10
|
*
|
|
11
11
|
* * [Official documentation](https://grafana.com/docs/grafana/latest/administration/roles-and-permissions/access-control/)
|
|
12
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
12
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/access_control/)
|
|
13
13
|
*
|
|
14
14
|
* ## Example Usage
|
|
15
15
|
*
|
|
@@ -3,7 +3,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
3
3
|
* Manages the entire set of assignments for a role. Assignments that aren't specified when applying this resource will be removed.
|
|
4
4
|
* **Note:** This resource is available only with Grafana Enterprise 9.2+.
|
|
5
5
|
* * [Official documentation](https://grafana.com/docs/grafana/latest/administration/roles-and-permissions/access-control/)
|
|
6
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
6
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/access_control/)
|
|
7
7
|
*
|
|
8
8
|
* ## Example Usage
|
|
9
9
|
*
|
|
@@ -9,7 +9,7 @@ const utilities = require("../utilities");
|
|
|
9
9
|
* Manages the entire set of assignments for a role. Assignments that aren't specified when applying this resource will be removed.
|
|
10
10
|
* **Note:** This resource is available only with Grafana Enterprise 9.2+.
|
|
11
11
|
* * [Official documentation](https://grafana.com/docs/grafana/latest/administration/roles-and-permissions/access-control/)
|
|
12
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
12
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/access_control/)
|
|
13
13
|
*
|
|
14
14
|
* ## Example Usage
|
|
15
15
|
*
|
package/oss/annotation.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
3
3
|
* Manages Grafana annotations.
|
|
4
4
|
*
|
|
5
5
|
* * [Official documentation](https://grafana.com/docs/grafana/latest/dashboards/build-dashboards/annotate-visualizations/)
|
|
6
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
6
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/annotations/)
|
|
7
7
|
*
|
|
8
8
|
* ## Example Usage
|
|
9
9
|
*
|
package/oss/annotation.js
CHANGED
|
@@ -9,7 +9,7 @@ const utilities = require("../utilities");
|
|
|
9
9
|
* Manages Grafana annotations.
|
|
10
10
|
*
|
|
11
11
|
* * [Official documentation](https://grafana.com/docs/grafana/latest/dashboards/build-dashboards/annotate-visualizations/)
|
|
12
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
12
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/annotations/)
|
|
13
13
|
*
|
|
14
14
|
* ## Example Usage
|
|
15
15
|
*
|
|
@@ -4,7 +4,7 @@ import * as outputs from "../types/output";
|
|
|
4
4
|
/**
|
|
5
5
|
* Manages the entire set of permissions for a dashboard. Permissions that aren't specified when applying this resource will be removed.
|
|
6
6
|
* * [Official documentation](https://grafana.com/docs/grafana/latest/administration/roles-and-permissions/access-control/)
|
|
7
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
7
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/dashboard_permissions/)
|
|
8
8
|
*
|
|
9
9
|
* ## Example Usage
|
|
10
10
|
*
|
|
@@ -8,7 +8,7 @@ const utilities = require("../utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* Manages the entire set of permissions for a dashboard. Permissions that aren't specified when applying this resource will be removed.
|
|
10
10
|
* * [Official documentation](https://grafana.com/docs/grafana/latest/administration/roles-and-permissions/access-control/)
|
|
11
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
11
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/dashboard_permissions/)
|
|
12
12
|
*
|
|
13
13
|
* ## Example Usage
|
|
14
14
|
*
|
package/oss/dashboardPublic.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
5
5
|
* **Note:** This resource is available only with Grafana 10.2+.
|
|
6
6
|
*
|
|
7
7
|
* * [Official documentation](https://grafana.com/docs/grafana/latest/dashboards/share-dashboards-panels/shared-dashboards/)
|
|
8
|
-
* * [HTTP API](https://grafana.com/docs/grafana/
|
|
8
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/dashboard_public/)
|
|
9
9
|
*
|
|
10
10
|
* ## Example Usage
|
|
11
11
|
*
|
package/oss/dashboardPublic.js
CHANGED
|
@@ -11,7 +11,7 @@ const utilities = require("../utilities");
|
|
|
11
11
|
* **Note:** This resource is available only with Grafana 10.2+.
|
|
12
12
|
*
|
|
13
13
|
* * [Official documentation](https://grafana.com/docs/grafana/latest/dashboards/share-dashboards-panels/shared-dashboards/)
|
|
14
|
-
* * [HTTP API](https://grafana.com/docs/grafana/
|
|
14
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/dashboard_public/)
|
|
15
15
|
*
|
|
16
16
|
* ## Example Usage
|
|
17
17
|
*
|
package/oss/dataSource.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
3
|
* * [Official documentation](https://grafana.com/docs/grafana/latest/datasources/)
|
|
4
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
4
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/data_source/)
|
|
5
5
|
*
|
|
6
6
|
* The required arguments for this resource vary depending on the type of data
|
|
7
7
|
* source selected (via the 'type' argument).
|
package/oss/dataSource.js
CHANGED
|
@@ -7,7 +7,7 @@ const pulumi = require("@pulumi/pulumi");
|
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
/**
|
|
9
9
|
* * [Official documentation](https://grafana.com/docs/grafana/latest/datasources/)
|
|
10
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
10
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/data_source/)
|
|
11
11
|
*
|
|
12
12
|
* The required arguments for this resource vary depending on the type of data
|
|
13
13
|
* source selected (via the 'type' argument).
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
3
|
* * [Official documentation](https://grafana.com/docs/grafana/latest/datasources/)
|
|
4
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
4
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/data_source/)
|
|
5
5
|
*
|
|
6
6
|
* The required arguments for this resource vary depending on the type of data
|
|
7
7
|
* source selected (via the 'type' argument).
|
package/oss/dataSourceConfig.js
CHANGED
|
@@ -7,7 +7,7 @@ const pulumi = require("@pulumi/pulumi");
|
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
/**
|
|
9
9
|
* * [Official documentation](https://grafana.com/docs/grafana/latest/datasources/)
|
|
10
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
10
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/data_source/)
|
|
11
11
|
*
|
|
12
12
|
* The required arguments for this resource vary depending on the type of data
|
|
13
13
|
* source selected (via the 'type' argument).
|
package/oss/folder.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
3
|
* * [Official documentation](https://grafana.com/docs/grafana/latest/dashboards/manage-dashboards/)
|
|
4
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
4
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/folder/)
|
|
5
5
|
*
|
|
6
6
|
* ## Example Usage
|
|
7
7
|
*
|
package/oss/folder.js
CHANGED
|
@@ -7,7 +7,7 @@ const pulumi = require("@pulumi/pulumi");
|
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
/**
|
|
9
9
|
* * [Official documentation](https://grafana.com/docs/grafana/latest/dashboards/manage-dashboards/)
|
|
10
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
10
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/folder/)
|
|
11
11
|
*
|
|
12
12
|
* ## Example Usage
|
|
13
13
|
*
|
|
@@ -4,7 +4,7 @@ import * as outputs from "../types/output";
|
|
|
4
4
|
/**
|
|
5
5
|
* Manages the entire set of permissions for a folder. Permissions that aren't specified when applying this resource will be removed.
|
|
6
6
|
* * [Official documentation](https://grafana.com/docs/grafana/latest/administration/roles-and-permissions/access-control/)
|
|
7
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
7
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/folder_permissions/)
|
|
8
8
|
*
|
|
9
9
|
* ## Example Usage
|
|
10
10
|
*
|
package/oss/folderPermission.js
CHANGED
|
@@ -8,7 +8,7 @@ const utilities = require("../utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* Manages the entire set of permissions for a folder. Permissions that aren't specified when applying this resource will be removed.
|
|
10
10
|
* * [Official documentation](https://grafana.com/docs/grafana/latest/administration/roles-and-permissions/access-control/)
|
|
11
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
11
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/folder_permissions/)
|
|
12
12
|
*
|
|
13
13
|
* ## Example Usage
|
|
14
14
|
*
|
|
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
/**
|
|
3
3
|
* Manages a single permission item for a folder. Conflicts with the "grafana.oss.FolderPermission" resource which manages the entire set of permissions for a folder.
|
|
4
4
|
* * [Official documentation](https://grafana.com/docs/grafana/latest/administration/roles-and-permissions/access-control/)
|
|
5
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
5
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/folder_permissions/)
|
|
6
6
|
*
|
|
7
7
|
* ## Example Usage
|
|
8
8
|
*
|
|
@@ -8,7 +8,7 @@ const utilities = require("../utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* Manages a single permission item for a folder. Conflicts with the "grafana.oss.FolderPermission" resource which manages the entire set of permissions for a folder.
|
|
10
10
|
* * [Official documentation](https://grafana.com/docs/grafana/latest/administration/roles-and-permissions/access-control/)
|
|
11
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
11
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/folder_permissions/)
|
|
12
12
|
*
|
|
13
13
|
* ## Example Usage
|
|
14
14
|
*
|
package/oss/getFolder.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
3
|
* * [Official documentation](https://grafana.com/docs/grafana/latest/dashboards/manage-dashboards/)
|
|
4
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
4
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/folder/)
|
|
5
5
|
*
|
|
6
6
|
* ## Example Usage
|
|
7
7
|
*
|
|
@@ -67,7 +67,7 @@ export interface GetFolderResult {
|
|
|
67
67
|
}
|
|
68
68
|
/**
|
|
69
69
|
* * [Official documentation](https://grafana.com/docs/grafana/latest/dashboards/manage-dashboards/)
|
|
70
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
70
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/folder/)
|
|
71
71
|
*
|
|
72
72
|
* ## Example Usage
|
|
73
73
|
*
|
package/oss/getFolder.js
CHANGED
|
@@ -7,7 +7,7 @@ const pulumi = require("@pulumi/pulumi");
|
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
/**
|
|
9
9
|
* * [Official documentation](https://grafana.com/docs/grafana/latest/dashboards/manage-dashboards/)
|
|
10
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
10
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/folder/)
|
|
11
11
|
*
|
|
12
12
|
* ## Example Usage
|
|
13
13
|
*
|
|
@@ -36,7 +36,7 @@ function getFolder(args, opts) {
|
|
|
36
36
|
exports.getFolder = getFolder;
|
|
37
37
|
/**
|
|
38
38
|
* * [Official documentation](https://grafana.com/docs/grafana/latest/dashboards/manage-dashboards/)
|
|
39
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
39
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/folder/)
|
|
40
40
|
*
|
|
41
41
|
* ## Example Usage
|
|
42
42
|
*
|
package/oss/getFolders.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
import * as outputs from "../types/output";
|
|
3
3
|
/**
|
|
4
4
|
* * [Official documentation](https://grafana.com/docs/grafana/latest/dashboards/manage-dashboards/)
|
|
5
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
5
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/folder/)
|
|
6
6
|
*
|
|
7
7
|
* ## Example Usage
|
|
8
8
|
*
|
|
@@ -50,7 +50,7 @@ export interface GetFoldersResult {
|
|
|
50
50
|
}
|
|
51
51
|
/**
|
|
52
52
|
* * [Official documentation](https://grafana.com/docs/grafana/latest/dashboards/manage-dashboards/)
|
|
53
|
-
* * [HTTP API](https://grafana.com/docs/grafana/latest/
|
|
53
|
+
* * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/folder/)
|
|
54
54
|
*
|
|
55
55
|
* ## Example Usage
|
|
56
56
|
*
|