@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.
Files changed (88) hide show
  1. package/alerting/contactPoint.d.ts +1 -1
  2. package/alerting/contactPoint.js +1 -1
  3. package/alerting/messageTemplate.d.ts +1 -1
  4. package/alerting/messageTemplate.js +1 -1
  5. package/alerting/muteTiming.d.ts +1 -1
  6. package/alerting/muteTiming.js +1 -1
  7. package/alerting/notificationPolicy.d.ts +1 -1
  8. package/alerting/notificationPolicy.js +1 -1
  9. package/alerting/ruleGroup.d.ts +1 -1
  10. package/alerting/ruleGroup.js +1 -1
  11. package/apps/genericResource.d.ts +12 -0
  12. package/apps/genericResource.js +2 -0
  13. package/apps/genericResource.js.map +1 -1
  14. package/cloud/stackServiceAccount.d.ts +1 -1
  15. package/cloud/stackServiceAccount.js +1 -1
  16. package/cloud/stackServiceAccountRotatingToken.d.ts +1 -1
  17. package/cloud/stackServiceAccountRotatingToken.js +1 -1
  18. package/cloud/stackServiceAccountToken.d.ts +1 -1
  19. package/cloud/stackServiceAccountToken.js +1 -1
  20. package/enterprise/dataSourceConfigLbacRules.d.ts +1 -1
  21. package/enterprise/dataSourceConfigLbacRules.js +1 -1
  22. package/enterprise/dataSourcePermission.d.ts +1 -1
  23. package/enterprise/dataSourcePermission.js +1 -1
  24. package/enterprise/getRole.d.ts +2 -2
  25. package/enterprise/getRole.js +2 -2
  26. package/enterprise/report.d.ts +1 -1
  27. package/enterprise/report.js +1 -1
  28. package/enterprise/role.d.ts +1 -1
  29. package/enterprise/role.js +1 -1
  30. package/enterprise/roleAssignment.d.ts +1 -1
  31. package/enterprise/roleAssignment.js +1 -1
  32. package/oss/annotation.d.ts +1 -1
  33. package/oss/annotation.js +1 -1
  34. package/oss/dashboardPermission.d.ts +1 -1
  35. package/oss/dashboardPermission.js +1 -1
  36. package/oss/dashboardPublic.d.ts +1 -1
  37. package/oss/dashboardPublic.js +1 -1
  38. package/oss/dataSource.d.ts +1 -1
  39. package/oss/dataSource.js +1 -1
  40. package/oss/dataSourceConfig.d.ts +1 -1
  41. package/oss/dataSourceConfig.js +1 -1
  42. package/oss/folder.d.ts +1 -1
  43. package/oss/folder.js +1 -1
  44. package/oss/folderPermission.d.ts +1 -1
  45. package/oss/folderPermission.js +1 -1
  46. package/oss/folderPermissionItem.d.ts +1 -1
  47. package/oss/folderPermissionItem.js +1 -1
  48. package/oss/getFolder.d.ts +2 -2
  49. package/oss/getFolder.js +2 -2
  50. package/oss/getFolders.d.ts +2 -2
  51. package/oss/getFolders.js +2 -2
  52. package/oss/getOrganization.d.ts +2 -2
  53. package/oss/getOrganization.js +2 -2
  54. package/oss/getOrganizationPreferences.d.ts +2 -2
  55. package/oss/getOrganizationPreferences.js +2 -2
  56. package/oss/getOrganizationUser.d.ts +2 -2
  57. package/oss/getOrganizationUser.js +2 -2
  58. package/oss/getServiceAccount.d.ts +2 -2
  59. package/oss/getServiceAccount.js +2 -2
  60. package/oss/getTeam.d.ts +2 -2
  61. package/oss/getTeam.js +2 -2
  62. package/oss/getUser.d.ts +2 -2
  63. package/oss/getUser.js +2 -2
  64. package/oss/getUsers.d.ts +2 -2
  65. package/oss/getUsers.js +2 -2
  66. package/oss/libraryPanel.d.ts +1 -1
  67. package/oss/libraryPanel.js +1 -1
  68. package/oss/organization.d.ts +1 -1
  69. package/oss/organization.js +1 -1
  70. package/oss/organizationPreferences.d.ts +1 -1
  71. package/oss/organizationPreferences.js +1 -1
  72. package/oss/playlist.d.ts +1 -1
  73. package/oss/playlist.js +1 -1
  74. package/oss/serviceAccount.d.ts +1 -1
  75. package/oss/serviceAccount.js +1 -1
  76. package/oss/serviceAccountRotatingToken.d.ts +1 -1
  77. package/oss/serviceAccountRotatingToken.js +1 -1
  78. package/oss/serviceAccountToken.d.ts +1 -1
  79. package/oss/serviceAccountToken.js +1 -1
  80. package/oss/ssoSettings.d.ts +1 -1
  81. package/oss/ssoSettings.js +1 -1
  82. package/oss/team.d.ts +4 -4
  83. package/oss/team.js +1 -1
  84. package/oss/user.d.ts +1 -1
  85. package/oss/user.js +1 -1
  86. package/package.json +2 -2
  87. package/types/input.d.ts +88 -0
  88. package/types/output.d.ts +88 -0
package/oss/getFolders.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/developers/http_api/folder/)
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 getFolders(args, opts) {
36
36
  exports.getFolders = getFolders;
37
37
  /**
38
38
  * * [Official documentation](https://grafana.com/docs/grafana/latest/dashboards/manage-dashboards/)
39
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/folder/)
39
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/folder/)
40
40
  *
41
41
  * ## Example Usage
42
42
  *
@@ -1,7 +1,7 @@
1
1
  import * as pulumi from "@pulumi/pulumi";
2
2
  /**
3
3
  * * [Official documentation](https://grafana.com/docs/grafana/latest/administration/organization-management/)
4
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/org/)
4
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/org/)
5
5
  *
6
6
  * ## Example Usage
7
7
  *
@@ -60,7 +60,7 @@ export interface GetOrganizationResult {
60
60
  }
61
61
  /**
62
62
  * * [Official documentation](https://grafana.com/docs/grafana/latest/administration/organization-management/)
63
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/org/)
63
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/org/)
64
64
  *
65
65
  * ## Example Usage
66
66
  *
@@ -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/administration/organization-management/)
10
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/org/)
10
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/org/)
11
11
  *
12
12
  * ## Example Usage
13
13
  *
@@ -38,7 +38,7 @@ function getOrganization(args, opts) {
38
38
  exports.getOrganization = getOrganization;
39
39
  /**
40
40
  * * [Official documentation](https://grafana.com/docs/grafana/latest/administration/organization-management/)
41
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/org/)
41
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/org/)
42
42
  *
43
43
  * ## Example Usage
44
44
  *
@@ -1,7 +1,7 @@
1
1
  import * as pulumi from "@pulumi/pulumi";
2
2
  /**
3
3
  * * [Official documentation](https://grafana.com/docs/grafana/latest/administration/organization-management/)
4
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/preferences/#get-current-org-prefs)
4
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/preferences/#get-current-org-prefs)
5
5
  *
6
6
  * ## Example Usage
7
7
  *
@@ -53,7 +53,7 @@ export interface GetOrganizationPreferencesResult {
53
53
  }
54
54
  /**
55
55
  * * [Official documentation](https://grafana.com/docs/grafana/latest/administration/organization-management/)
56
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/preferences/#get-current-org-prefs)
56
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/preferences/#get-current-org-prefs)
57
57
  *
58
58
  * ## Example Usage
59
59
  *
@@ -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/administration/organization-management/)
10
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/preferences/#get-current-org-prefs)
10
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/preferences/#get-current-org-prefs)
11
11
  *
12
12
  * ## Example Usage
13
13
  *
@@ -28,7 +28,7 @@ function getOrganizationPreferences(args, opts) {
28
28
  exports.getOrganizationPreferences = getOrganizationPreferences;
29
29
  /**
30
30
  * * [Official documentation](https://grafana.com/docs/grafana/latest/administration/organization-management/)
31
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/preferences/#get-current-org-prefs)
31
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/preferences/#get-current-org-prefs)
32
32
  *
33
33
  * ## Example Usage
34
34
  *
@@ -1,7 +1,7 @@
1
1
  import * as pulumi from "@pulumi/pulumi";
2
2
  /**
3
3
  * * [Official documentation](https://grafana.com/docs/grafana/latest/administration/user-management/server-user-management/)
4
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/org/#get-all-users-within-the-current-organization-lookup)
4
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/org/#get-all-users-within-the-current-organization-lookup)
5
5
  *
6
6
  * ## Example Usage
7
7
  *
@@ -68,7 +68,7 @@ export interface GetOrganizationUserResult {
68
68
  }
69
69
  /**
70
70
  * * [Official documentation](https://grafana.com/docs/grafana/latest/administration/user-management/server-user-management/)
71
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/org/#get-all-users-within-the-current-organization-lookup)
71
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/org/#get-all-users-within-the-current-organization-lookup)
72
72
  *
73
73
  * ## Example Usage
74
74
  *
@@ -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/administration/user-management/server-user-management/)
10
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/org/#get-all-users-within-the-current-organization-lookup)
10
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/org/#get-all-users-within-the-current-organization-lookup)
11
11
  *
12
12
  * ## Example Usage
13
13
  *
@@ -41,7 +41,7 @@ function getOrganizationUser(args, opts) {
41
41
  exports.getOrganizationUser = getOrganizationUser;
42
42
  /**
43
43
  * * [Official documentation](https://grafana.com/docs/grafana/latest/administration/user-management/server-user-management/)
44
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/org/#get-all-users-within-the-current-organization-lookup)
44
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/org/#get-all-users-within-the-current-organization-lookup)
45
45
  *
46
46
  * ## Example Usage
47
47
  *
@@ -1,7 +1,7 @@
1
1
  import * as pulumi from "@pulumi/pulumi";
2
2
  /**
3
3
  * * [Official documentation](https://grafana.com/docs/grafana/latest/administration/service-accounts/)
4
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/serviceaccount/#service-account-api)
4
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/serviceaccount/#service-account-api)
5
5
  *
6
6
  * ## Example Usage
7
7
  *
@@ -60,7 +60,7 @@ export interface GetServiceAccountResult {
60
60
  }
61
61
  /**
62
62
  * * [Official documentation](https://grafana.com/docs/grafana/latest/administration/service-accounts/)
63
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/serviceaccount/#service-account-api)
63
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/serviceaccount/#service-account-api)
64
64
  *
65
65
  * ## Example Usage
66
66
  *
@@ -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/administration/service-accounts/)
10
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/serviceaccount/#service-account-api)
10
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/serviceaccount/#service-account-api)
11
11
  *
12
12
  * ## Example Usage
13
13
  *
@@ -35,7 +35,7 @@ function getServiceAccount(args, opts) {
35
35
  exports.getServiceAccount = getServiceAccount;
36
36
  /**
37
37
  * * [Official documentation](https://grafana.com/docs/grafana/latest/administration/service-accounts/)
38
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/serviceaccount/#service-account-api)
38
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/serviceaccount/#service-account-api)
39
39
  *
40
40
  * ## Example Usage
41
41
  *
package/oss/getTeam.d.ts CHANGED
@@ -3,7 +3,7 @@ import * as inputs from "../types/input";
3
3
  import * as outputs from "../types/output";
4
4
  /**
5
5
  * * [Official documentation](https://grafana.com/docs/grafana/latest/administration/team-management/)
6
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/team/)
6
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/team/)
7
7
  *
8
8
  * ## Example Usage
9
9
  *
@@ -97,7 +97,7 @@ export interface GetTeamResult {
97
97
  }
98
98
  /**
99
99
  * * [Official documentation](https://grafana.com/docs/grafana/latest/administration/team-management/)
100
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/team/)
100
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/team/)
101
101
  *
102
102
  * ## Example Usage
103
103
  *
package/oss/getTeam.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/administration/team-management/)
10
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/team/)
10
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/team/)
11
11
  *
12
12
  * ## Example Usage
13
13
  *
@@ -41,7 +41,7 @@ function getTeam(args, opts) {
41
41
  exports.getTeam = getTeam;
42
42
  /**
43
43
  * * [Official documentation](https://grafana.com/docs/grafana/latest/administration/team-management/)
44
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/team/)
44
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/team/)
45
45
  *
46
46
  * ## Example Usage
47
47
  *
package/oss/getUser.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/administration/user-management/server-user-management/)
4
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/user/)
4
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/user/)
5
5
  *
6
6
  * This data source uses Grafana's admin APIs for reading users which
7
7
  * does not currently work with API Tokens. You must use basic auth.
@@ -80,7 +80,7 @@ export interface GetUserResult {
80
80
  }
81
81
  /**
82
82
  * * [Official documentation](https://grafana.com/docs/grafana/latest/administration/user-management/server-user-management/)
83
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/user/)
83
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/user/)
84
84
  *
85
85
  * This data source uses Grafana's admin APIs for reading users which
86
86
  * does not currently work with API Tokens. You must use basic auth.
package/oss/getUser.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/administration/user-management/server-user-management/)
10
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/user/)
10
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/user/)
11
11
  *
12
12
  * This data source uses Grafana's admin APIs for reading users which
13
13
  * does not currently work with API Tokens. You must use basic auth.
@@ -49,7 +49,7 @@ function getUser(args, opts) {
49
49
  exports.getUser = getUser;
50
50
  /**
51
51
  * * [Official documentation](https://grafana.com/docs/grafana/latest/administration/user-management/server-user-management/)
52
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/user/)
52
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/user/)
53
53
  *
54
54
  * This data source uses Grafana's admin APIs for reading users which
55
55
  * does not currently work with API Tokens. You must use basic auth.
package/oss/getUsers.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/administration/user-management/server-user-management/)
5
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/user/)
5
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/user/)
6
6
  *
7
7
  * This data source uses Grafana's admin APIs for reading users which
8
8
  * does not currently work with API Tokens. You must use basic auth.
@@ -39,7 +39,7 @@ export interface GetUsersResult {
39
39
  }
40
40
  /**
41
41
  * * [Official documentation](https://grafana.com/docs/grafana/latest/administration/user-management/server-user-management/)
42
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/user/)
42
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/user/)
43
43
  *
44
44
  * This data source uses Grafana's admin APIs for reading users which
45
45
  * does not currently work with API Tokens. You must use basic auth.
package/oss/getUsers.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/administration/user-management/server-user-management/)
10
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/user/)
10
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/user/)
11
11
  *
12
12
  * This data source uses Grafana's admin APIs for reading users which
13
13
  * does not currently work with API Tokens. You must use basic auth.
@@ -35,7 +35,7 @@ function getUsers(opts) {
35
35
  exports.getUsers = getUsers;
36
36
  /**
37
37
  * * [Official documentation](https://grafana.com/docs/grafana/latest/administration/user-management/server-user-management/)
38
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/user/)
38
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/user/)
39
39
  *
40
40
  * This data source uses Grafana's admin APIs for reading users which
41
41
  * does not currently work with API Tokens. You must use basic auth.
@@ -3,7 +3,7 @@ import * as pulumi from "@pulumi/pulumi";
3
3
  * Manages Grafana library panels.
4
4
  *
5
5
  * * [Official documentation](https://grafana.com/docs/grafana/latest/dashboards/build-dashboards/manage-library-panels/)
6
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/library_element/)
6
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/library_element/)
7
7
  *
8
8
  * ## Example Usage
9
9
  *
@@ -9,7 +9,7 @@ const utilities = require("../utilities");
9
9
  * Manages Grafana library panels.
10
10
  *
11
11
  * * [Official documentation](https://grafana.com/docs/grafana/latest/dashboards/build-dashboards/manage-library-panels/)
12
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/library_element/)
12
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/library_element/)
13
13
  *
14
14
  * ## Example Usage
15
15
  *
@@ -1,7 +1,7 @@
1
1
  import * as pulumi from "@pulumi/pulumi";
2
2
  /**
3
3
  * * [Official documentation](https://grafana.com/docs/grafana/latest/administration/organization-management/)
4
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/org/)
4
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/org/)
5
5
  *
6
6
  * This resource represents an instance-scoped resource and uses Grafana's admin APIs.
7
7
  * It does not work with API tokens or service accounts which are org-scoped.
@@ -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/administration/organization-management/)
10
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/org/)
10
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/org/)
11
11
  *
12
12
  * This resource represents an instance-scoped resource and uses Grafana's admin APIs.
13
13
  * It does not work with API tokens or service accounts which are org-scoped.
@@ -1,7 +1,7 @@
1
1
  import * as pulumi from "@pulumi/pulumi";
2
2
  /**
3
3
  * * [Official documentation](https://grafana.com/docs/grafana/latest/administration/organization-management/)
4
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/preferences/#get-current-org-prefs)
4
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/preferences/#get-current-org-prefs)
5
5
  *
6
6
  * ## Example Usage
7
7
  *
@@ -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/administration/organization-management/)
10
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/preferences/#get-current-org-prefs)
10
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/preferences/#get-current-org-prefs)
11
11
  *
12
12
  * ## Example Usage
13
13
  *
package/oss/playlist.d.ts CHANGED
@@ -5,7 +5,7 @@ import * as outputs from "../types/output";
5
5
  * Manages Grafana playlists.
6
6
  *
7
7
  * * [Official documentation](https://grafana.com/docs/grafana/latest/dashboards/create-manage-playlists/)
8
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/playlist/)
8
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/playlist/)
9
9
  *
10
10
  * ## Example Usage
11
11
  *
package/oss/playlist.js CHANGED
@@ -9,7 +9,7 @@ const utilities = require("../utilities");
9
9
  * Manages Grafana playlists.
10
10
  *
11
11
  * * [Official documentation](https://grafana.com/docs/grafana/latest/dashboards/create-manage-playlists/)
12
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/playlist/)
12
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/playlist/)
13
13
  *
14
14
  * ## Example Usage
15
15
  *
@@ -3,7 +3,7 @@ import * as pulumi from "@pulumi/pulumi";
3
3
  * **Note:** This resource is available only with Grafana 9.1+.
4
4
  *
5
5
  * * [Official documentation](https://grafana.com/docs/grafana/latest/administration/service-accounts/)
6
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/serviceaccount/#service-account-api)
6
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/serviceaccount/#service-account-api)
7
7
  *
8
8
  * ## Example Usage
9
9
  *
@@ -9,7 +9,7 @@ const utilities = require("../utilities");
9
9
  * **Note:** This resource is available only with Grafana 9.1+.
10
10
  *
11
11
  * * [Official documentation](https://grafana.com/docs/grafana/latest/administration/service-accounts/)
12
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/serviceaccount/#service-account-api)
12
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/serviceaccount/#service-account-api)
13
13
  *
14
14
  * ## Example Usage
15
15
  *
@@ -3,7 +3,7 @@ import * as pulumi from "@pulumi/pulumi";
3
3
  * **Note:** This resource is available only with Grafana 9.1+.
4
4
  *
5
5
  * * [Official documentation](https://grafana.com/docs/grafana/latest/administration/service-accounts/)
6
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/serviceaccount/#service-account-api)
6
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/serviceaccount/#service-account-api)
7
7
  *
8
8
  * ## Example Usage
9
9
  *
@@ -9,7 +9,7 @@ const utilities = require("../utilities");
9
9
  * **Note:** This resource is available only with Grafana 9.1+.
10
10
  *
11
11
  * * [Official documentation](https://grafana.com/docs/grafana/latest/administration/service-accounts/)
12
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/serviceaccount/#service-account-api)
12
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/serviceaccount/#service-account-api)
13
13
  *
14
14
  * ## Example Usage
15
15
  *
@@ -3,7 +3,7 @@ import * as pulumi from "@pulumi/pulumi";
3
3
  * **Note:** This resource is available only with Grafana 9.1+.
4
4
  *
5
5
  * * [Official documentation](https://grafana.com/docs/grafana/latest/administration/service-accounts/)
6
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/serviceaccount/#service-account-api)
6
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/serviceaccount/#service-account-api)
7
7
  *
8
8
  * ## Example Usage
9
9
  *
@@ -9,7 +9,7 @@ const utilities = require("../utilities");
9
9
  * **Note:** This resource is available only with Grafana 9.1+.
10
10
  *
11
11
  * * [Official documentation](https://grafana.com/docs/grafana/latest/administration/service-accounts/)
12
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/serviceaccount/#service-account-api)
12
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/serviceaccount/#service-account-api)
13
13
  *
14
14
  * ## Example Usage
15
15
  *
@@ -5,7 +5,7 @@ import * as outputs from "../types/output";
5
5
  * Manages Grafana SSO Settings for OAuth2, SAML and LDAP. Support for LDAP is currently in preview, it will be available in Grafana starting with v11.3.
6
6
  *
7
7
  * * [Official documentation](https://grafana.com/docs/grafana/latest/setup-grafana/configure-security/configure-authentication/)
8
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/sso-settings/)
8
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/sso-settings/)
9
9
  *
10
10
  * ## Example Usage
11
11
  *
@@ -9,7 +9,7 @@ const utilities = require("../utilities");
9
9
  * Manages Grafana SSO Settings for OAuth2, SAML and LDAP. Support for LDAP is currently in preview, it will be available in Grafana starting with v11.3.
10
10
  *
11
11
  * * [Official documentation](https://grafana.com/docs/grafana/latest/setup-grafana/configure-security/configure-authentication/)
12
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/sso-settings/)
12
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/sso-settings/)
13
13
  *
14
14
  * ## Example Usage
15
15
  *
package/oss/team.d.ts CHANGED
@@ -3,7 +3,7 @@ import * as inputs from "../types/input";
3
3
  import * as outputs from "../types/output";
4
4
  /**
5
5
  * * [Official documentation](https://grafana.com/docs/grafana/latest/administration/team-management/)
6
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/team/)
6
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/team/)
7
7
  *
8
8
  * ## Example Usage
9
9
  *
@@ -75,7 +75,7 @@ export declare class Team extends pulumi.CustomResource {
75
75
  /**
76
76
  * Sync external auth provider groups with this Grafana team. Only available in Grafana Enterprise.
77
77
  * * [Official documentation](https://grafana.com/docs/grafana/latest/setup-grafana/configure-security/configure-team-sync/)
78
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/team_sync/)
78
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/team_sync/)
79
79
  */
80
80
  readonly teamSync: pulumi.Output<outputs.oss.TeamTeamSync | undefined>;
81
81
  /**
@@ -123,7 +123,7 @@ export interface TeamState {
123
123
  /**
124
124
  * Sync external auth provider groups with this Grafana team. Only available in Grafana Enterprise.
125
125
  * * [Official documentation](https://grafana.com/docs/grafana/latest/setup-grafana/configure-security/configure-team-sync/)
126
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/team_sync/)
126
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/team_sync/)
127
127
  */
128
128
  teamSync?: pulumi.Input<inputs.oss.TeamTeamSync>;
129
129
  /**
@@ -159,7 +159,7 @@ export interface TeamArgs {
159
159
  /**
160
160
  * Sync external auth provider groups with this Grafana team. Only available in Grafana Enterprise.
161
161
  * * [Official documentation](https://grafana.com/docs/grafana/latest/setup-grafana/configure-security/configure-team-sync/)
162
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/team_sync/)
162
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/team_sync/)
163
163
  */
164
164
  teamSync?: pulumi.Input<inputs.oss.TeamTeamSync>;
165
165
  }
package/oss/team.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/administration/team-management/)
10
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/team/)
10
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/team/)
11
11
  *
12
12
  * ## Example Usage
13
13
  *
package/oss/user.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/administration/user-management/server-user-management/)
4
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/user/)
4
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/user/)
5
5
  *
6
6
  * This resource represents an instance-scoped resource and uses Grafana's admin APIs.
7
7
  * It does not work with API tokens or service accounts which are org-scoped.
package/oss/user.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/administration/user-management/server-user-management/)
10
- * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/user/)
10
+ * * [HTTP API](https://grafana.com/docs/grafana/latest/developer-resources/api-reference/http-api/api-legacy/user/)
11
11
  *
12
12
  * This resource represents an instance-scoped resource and uses Grafana's admin APIs.
13
13
  * It does not work with API tokens or service accounts which are org-scoped.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumiverse/grafana",
3
- "version": "2.25.1",
3
+ "version": "2.25.2",
4
4
  "description": "A Pulumi package for creating and managing grafana.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -24,7 +24,7 @@
24
24
  "pulumi": {
25
25
  "resource": true,
26
26
  "name": "grafana",
27
- "version": "2.25.1",
27
+ "version": "2.25.2",
28
28
  "server": "github://api.github.com/pulumiverse"
29
29
  }
30
30
  }