@pulumiverse/grafana 2.24.0 → 2.25.0-alpha.1776161628
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cloud/getStack.d.ts +12 -0
- package/cloud/getStack.js.map +1 -1
- package/cloud/stack.d.ts +24 -0
- package/cloud/stack.js +6 -0
- package/cloud/stack.js.map +1 -1
- package/config/vars.d.ts +2 -2
- package/package.json +2 -2
- package/provider.d.ts +4 -4
- package/types/input.d.ts +24 -24
- package/types/output.d.ts +24 -24
package/cloud/getStack.d.ts
CHANGED
|
@@ -54,6 +54,10 @@ export interface GetStackResult {
|
|
|
54
54
|
* User ID of the Alertmanager instance configured for this stack.
|
|
55
55
|
*/
|
|
56
56
|
readonly alertmanagerUserId: number;
|
|
57
|
+
/**
|
|
58
|
+
* Base URL of the Cloud Provider API for this stack's cluster. This can be used with the `cloudProviderUrl` provider config option to manage Cloud Provider resources for this stack.
|
|
59
|
+
*/
|
|
60
|
+
readonly cloudProviderUrl: string;
|
|
57
61
|
/**
|
|
58
62
|
* Name of the cluster where this stack resides.
|
|
59
63
|
*/
|
|
@@ -62,6 +66,10 @@ export interface GetStackResult {
|
|
|
62
66
|
* Slug of the cluster where this stack resides.
|
|
63
67
|
*/
|
|
64
68
|
readonly clusterSlug: string;
|
|
69
|
+
/**
|
|
70
|
+
* Base URL of the Connections API for this stack's cluster. This can be used with the `connectionsApiUrl` provider config option to manage Connections resources for this stack.
|
|
71
|
+
*/
|
|
72
|
+
readonly connectionsApiUrl: string;
|
|
65
73
|
/**
|
|
66
74
|
* Whether to enable delete protection for the stack, preventing accidental deletion.
|
|
67
75
|
*/
|
|
@@ -349,6 +357,10 @@ export interface GetStackResult {
|
|
|
349
357
|
* available at “https://\n\n.grafana.net".
|
|
350
358
|
*/
|
|
351
359
|
readonly slug: string;
|
|
360
|
+
/**
|
|
361
|
+
* Base URL of the Synthetic Monitoring API for this stack's region. This can be used with the `smUrl` provider config option. Note: Synthetic Monitoring requires activation either via the `grafana.syntheticMonitoring.Installation` resource or manually in the Grafana Cloud UI before it can be used.
|
|
362
|
+
*/
|
|
363
|
+
readonly smUrl: string;
|
|
352
364
|
/**
|
|
353
365
|
* Status of the stack.
|
|
354
366
|
*/
|
package/cloud/getStack.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getStack.js","sourceRoot":"","sources":["../../cloud/getStack.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,QAAQ,CAAC,IAAkB,EAAE,IAA2B;IACpE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,iCAAiC,EAAE;QAC5D,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,4BAKC;
|
|
1
|
+
{"version":3,"file":"getStack.js","sourceRoot":"","sources":["../../cloud/getStack.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,QAAQ,CAAC,IAAkB,EAAE,IAA2B;IACpE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,iCAAiC,EAAE;QAC5D,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,4BAKC;AA8XD;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAAiC;IACtF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,iCAAiC,EAAE;QAClE,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,wCAKC"}
|
package/cloud/stack.d.ts
CHANGED
|
@@ -64,6 +64,10 @@ export declare class Stack extends pulumi.CustomResource {
|
|
|
64
64
|
* User ID of the Alertmanager instance configured for this stack.
|
|
65
65
|
*/
|
|
66
66
|
readonly alertmanagerUserId: pulumi.Output<number>;
|
|
67
|
+
/**
|
|
68
|
+
* Base URL of the Cloud Provider API for this stack's cluster. This can be used with the `cloudProviderUrl` provider config option to manage Cloud Provider resources for this stack.
|
|
69
|
+
*/
|
|
70
|
+
readonly cloudProviderUrl: pulumi.Output<string>;
|
|
67
71
|
/**
|
|
68
72
|
* Name of the cluster where this stack resides.
|
|
69
73
|
*/
|
|
@@ -72,6 +76,10 @@ export declare class Stack extends pulumi.CustomResource {
|
|
|
72
76
|
* Slug of the cluster where this stack resides.
|
|
73
77
|
*/
|
|
74
78
|
readonly clusterSlug: pulumi.Output<string>;
|
|
79
|
+
/**
|
|
80
|
+
* Base URL of the Connections API for this stack's cluster. This can be used with the `connectionsApiUrl` provider config option to manage Connections resources for this stack.
|
|
81
|
+
*/
|
|
82
|
+
readonly connectionsApiUrl: pulumi.Output<string>;
|
|
75
83
|
/**
|
|
76
84
|
* Whether to enable delete protection for the stack, preventing accidental deletion. Defaults to `true`.
|
|
77
85
|
*/
|
|
@@ -354,6 +362,10 @@ export declare class Stack extends pulumi.CustomResource {
|
|
|
354
362
|
* Subdomain that the Grafana instance will be available at. Setting slug to `<stack_slug>` will make the instance available at `https://<stack_slug>.grafana.net`.
|
|
355
363
|
*/
|
|
356
364
|
readonly slug: pulumi.Output<string>;
|
|
365
|
+
/**
|
|
366
|
+
* Base URL of the Synthetic Monitoring API for this stack's region. This can be used with the `smUrl` provider config option. Note: Synthetic Monitoring requires activation either via the `grafana.syntheticMonitoring.Installation` resource or manually in the Grafana Cloud UI before it can be used.
|
|
367
|
+
*/
|
|
368
|
+
readonly smUrl: pulumi.Output<string>;
|
|
357
369
|
/**
|
|
358
370
|
* Status of the stack.
|
|
359
371
|
*/
|
|
@@ -434,6 +446,10 @@ export interface StackState {
|
|
|
434
446
|
* User ID of the Alertmanager instance configured for this stack.
|
|
435
447
|
*/
|
|
436
448
|
alertmanagerUserId?: pulumi.Input<number>;
|
|
449
|
+
/**
|
|
450
|
+
* Base URL of the Cloud Provider API for this stack's cluster. This can be used with the `cloudProviderUrl` provider config option to manage Cloud Provider resources for this stack.
|
|
451
|
+
*/
|
|
452
|
+
cloudProviderUrl?: pulumi.Input<string>;
|
|
437
453
|
/**
|
|
438
454
|
* Name of the cluster where this stack resides.
|
|
439
455
|
*/
|
|
@@ -442,6 +458,10 @@ export interface StackState {
|
|
|
442
458
|
* Slug of the cluster where this stack resides.
|
|
443
459
|
*/
|
|
444
460
|
clusterSlug?: pulumi.Input<string>;
|
|
461
|
+
/**
|
|
462
|
+
* Base URL of the Connections API for this stack's cluster. This can be used with the `connectionsApiUrl` provider config option to manage Connections resources for this stack.
|
|
463
|
+
*/
|
|
464
|
+
connectionsApiUrl?: pulumi.Input<string>;
|
|
445
465
|
/**
|
|
446
466
|
* Whether to enable delete protection for the stack, preventing accidental deletion. Defaults to `true`.
|
|
447
467
|
*/
|
|
@@ -724,6 +744,10 @@ export interface StackState {
|
|
|
724
744
|
* Subdomain that the Grafana instance will be available at. Setting slug to `<stack_slug>` will make the instance available at `https://<stack_slug>.grafana.net`.
|
|
725
745
|
*/
|
|
726
746
|
slug?: pulumi.Input<string>;
|
|
747
|
+
/**
|
|
748
|
+
* Base URL of the Synthetic Monitoring API for this stack's region. This can be used with the `smUrl` provider config option. Note: Synthetic Monitoring requires activation either via the `grafana.syntheticMonitoring.Installation` resource or manually in the Grafana Cloud UI before it can be used.
|
|
749
|
+
*/
|
|
750
|
+
smUrl?: pulumi.Input<string>;
|
|
727
751
|
/**
|
|
728
752
|
* Status of the stack.
|
|
729
753
|
*/
|
package/cloud/stack.js
CHANGED
|
@@ -67,8 +67,10 @@ class Stack extends pulumi.CustomResource {
|
|
|
67
67
|
resourceInputs["alertmanagerStatus"] = state?.alertmanagerStatus;
|
|
68
68
|
resourceInputs["alertmanagerUrl"] = state?.alertmanagerUrl;
|
|
69
69
|
resourceInputs["alertmanagerUserId"] = state?.alertmanagerUserId;
|
|
70
|
+
resourceInputs["cloudProviderUrl"] = state?.cloudProviderUrl;
|
|
70
71
|
resourceInputs["clusterName"] = state?.clusterName;
|
|
71
72
|
resourceInputs["clusterSlug"] = state?.clusterSlug;
|
|
73
|
+
resourceInputs["connectionsApiUrl"] = state?.connectionsApiUrl;
|
|
72
74
|
resourceInputs["deleteProtection"] = state?.deleteProtection;
|
|
73
75
|
resourceInputs["description"] = state?.description;
|
|
74
76
|
resourceInputs["fleetManagementName"] = state?.fleetManagementName;
|
|
@@ -148,6 +150,7 @@ class Stack extends pulumi.CustomResource {
|
|
|
148
150
|
resourceInputs["prometheusUserId"] = state?.prometheusUserId;
|
|
149
151
|
resourceInputs["regionSlug"] = state?.regionSlug;
|
|
150
152
|
resourceInputs["slug"] = state?.slug;
|
|
153
|
+
resourceInputs["smUrl"] = state?.smUrl;
|
|
151
154
|
resourceInputs["status"] = state?.status;
|
|
152
155
|
resourceInputs["tracesIpAllowListCname"] = state?.tracesIpAllowListCname;
|
|
153
156
|
resourceInputs["tracesName"] = state?.tracesName;
|
|
@@ -182,8 +185,10 @@ class Stack extends pulumi.CustomResource {
|
|
|
182
185
|
resourceInputs["alertmanagerStatus"] = undefined /*out*/;
|
|
183
186
|
resourceInputs["alertmanagerUrl"] = undefined /*out*/;
|
|
184
187
|
resourceInputs["alertmanagerUserId"] = undefined /*out*/;
|
|
188
|
+
resourceInputs["cloudProviderUrl"] = undefined /*out*/;
|
|
185
189
|
resourceInputs["clusterName"] = undefined /*out*/;
|
|
186
190
|
resourceInputs["clusterSlug"] = undefined /*out*/;
|
|
191
|
+
resourceInputs["connectionsApiUrl"] = undefined /*out*/;
|
|
187
192
|
resourceInputs["fleetManagementName"] = undefined /*out*/;
|
|
188
193
|
resourceInputs["fleetManagementPrivateConnectivityInfoAvailabilityZoneIds"] = undefined /*out*/;
|
|
189
194
|
resourceInputs["fleetManagementPrivateConnectivityInfoAvailabilityZones"] = undefined /*out*/;
|
|
@@ -257,6 +262,7 @@ class Stack extends pulumi.CustomResource {
|
|
|
257
262
|
resourceInputs["prometheusStatus"] = undefined /*out*/;
|
|
258
263
|
resourceInputs["prometheusUrl"] = undefined /*out*/;
|
|
259
264
|
resourceInputs["prometheusUserId"] = undefined /*out*/;
|
|
265
|
+
resourceInputs["smUrl"] = undefined /*out*/;
|
|
260
266
|
resourceInputs["status"] = undefined /*out*/;
|
|
261
267
|
resourceInputs["tracesIpAllowListCname"] = undefined /*out*/;
|
|
262
268
|
resourceInputs["tracesName"] = undefined /*out*/;
|
package/cloud/stack.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"stack.js","sourceRoot":"","sources":["../../cloud/stack.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"stack.js","sourceRoot":"","sources":["../../cloud/stack.ts"],"names":[],"mappings":"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"}
|
package/config/vars.d.ts
CHANGED
|
@@ -65,11 +65,11 @@ export declare const k6AccessToken: string | undefined;
|
|
|
65
65
|
*/
|
|
66
66
|
export declare const k6Url: string | undefined;
|
|
67
67
|
/**
|
|
68
|
-
* A Grafana OnCall access token. May alternatively be set via the `GRAFANA_ONCALL_ACCESS_TOKEN` environment variable.
|
|
68
|
+
* A Grafana OnCall access token. May alternatively be set via the `GRAFANA_ONCALL_ACCESS_TOKEN` environment variable. This is only required when using a dedicated OnCall API token. When using Grafana Cloud, OnCall can be accessed through the `auth` and `url` provider attributes instead.
|
|
69
69
|
*/
|
|
70
70
|
export declare const oncallAccessToken: string | undefined;
|
|
71
71
|
/**
|
|
72
|
-
*
|
|
72
|
+
* A Grafana OnCall backend address. May alternatively be set via the `GRAFANA_ONCALL_URL` environment variable. This is only required when using Grafana OnCall OSS. In Grafana Cloud, the OnCall URL is automatically inferred from the Grafana instance URL.
|
|
73
73
|
*/
|
|
74
74
|
export declare const oncallUrl: string | undefined;
|
|
75
75
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumiverse/grafana",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.25.0-alpha.1776161628",
|
|
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.
|
|
27
|
+
"version": "2.25.0-alpha.1776161628",
|
|
28
28
|
"server": "github://api.github.com/pulumiverse"
|
|
29
29
|
}
|
|
30
30
|
}
|
package/provider.d.ts
CHANGED
|
@@ -68,11 +68,11 @@ export declare class Provider extends pulumi.ProviderResource {
|
|
|
68
68
|
*/
|
|
69
69
|
readonly k6Url: pulumi.Output<string | undefined>;
|
|
70
70
|
/**
|
|
71
|
-
* A Grafana OnCall access token. May alternatively be set via the `GRAFANA_ONCALL_ACCESS_TOKEN` environment variable.
|
|
71
|
+
* A Grafana OnCall access token. May alternatively be set via the `GRAFANA_ONCALL_ACCESS_TOKEN` environment variable. This is only required when using a dedicated OnCall API token. When using Grafana Cloud, OnCall can be accessed through the `auth` and `url` provider attributes instead.
|
|
72
72
|
*/
|
|
73
73
|
readonly oncallAccessToken: pulumi.Output<string | undefined>;
|
|
74
74
|
/**
|
|
75
|
-
*
|
|
75
|
+
* A Grafana OnCall backend address. May alternatively be set via the `GRAFANA_ONCALL_URL` environment variable. This is only required when using Grafana OnCall OSS. In Grafana Cloud, the OnCall URL is automatically inferred from the Grafana instance URL.
|
|
76
76
|
*/
|
|
77
77
|
readonly oncallUrl: pulumi.Output<string | undefined>;
|
|
78
78
|
/**
|
|
@@ -179,11 +179,11 @@ export interface ProviderArgs {
|
|
|
179
179
|
*/
|
|
180
180
|
k6Url?: pulumi.Input<string>;
|
|
181
181
|
/**
|
|
182
|
-
* A Grafana OnCall access token. May alternatively be set via the `GRAFANA_ONCALL_ACCESS_TOKEN` environment variable.
|
|
182
|
+
* A Grafana OnCall access token. May alternatively be set via the `GRAFANA_ONCALL_ACCESS_TOKEN` environment variable. This is only required when using a dedicated OnCall API token. When using Grafana Cloud, OnCall can be accessed through the `auth` and `url` provider attributes instead.
|
|
183
183
|
*/
|
|
184
184
|
oncallAccessToken?: pulumi.Input<string>;
|
|
185
185
|
/**
|
|
186
|
-
*
|
|
186
|
+
* A Grafana OnCall backend address. May alternatively be set via the `GRAFANA_ONCALL_URL` environment variable. This is only required when using Grafana OnCall OSS. In Grafana Cloud, the OnCall URL is automatically inferred from the Grafana instance URL.
|
|
187
187
|
*/
|
|
188
188
|
oncallUrl?: pulumi.Input<string>;
|
|
189
189
|
/**
|
package/types/input.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export declare namespace alerting {
|
|
|
9
9
|
[key: string]: pulumi.Input<string>;
|
|
10
10
|
}>;
|
|
11
11
|
/**
|
|
12
|
-
* The UID of the folder to save the resource in.
|
|
12
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
13
13
|
*/
|
|
14
14
|
folderUid?: pulumi.Input<string>;
|
|
15
15
|
/**
|
|
@@ -511,7 +511,7 @@ export declare namespace alerting {
|
|
|
511
511
|
[key: string]: pulumi.Input<string>;
|
|
512
512
|
}>;
|
|
513
513
|
/**
|
|
514
|
-
* The UID of the folder to save the resource in.
|
|
514
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
515
515
|
*/
|
|
516
516
|
folderUid?: pulumi.Input<string>;
|
|
517
517
|
/**
|
|
@@ -2077,7 +2077,7 @@ export declare namespace alerting {
|
|
|
2077
2077
|
[key: string]: pulumi.Input<string>;
|
|
2078
2078
|
}>;
|
|
2079
2079
|
/**
|
|
2080
|
-
* The UID of the folder to save the resource in.
|
|
2080
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
2081
2081
|
*/
|
|
2082
2082
|
folderUid?: pulumi.Input<string>;
|
|
2083
2083
|
/**
|
|
@@ -2290,7 +2290,7 @@ export declare namespace alerting {
|
|
|
2290
2290
|
[key: string]: pulumi.Input<string>;
|
|
2291
2291
|
}>;
|
|
2292
2292
|
/**
|
|
2293
|
-
* The UID of the folder to save the resource in.
|
|
2293
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
2294
2294
|
*/
|
|
2295
2295
|
folderUid?: pulumi.Input<string>;
|
|
2296
2296
|
/**
|
|
@@ -2422,7 +2422,7 @@ export declare namespace alerting {
|
|
|
2422
2422
|
[key: string]: pulumi.Input<string>;
|
|
2423
2423
|
}>;
|
|
2424
2424
|
/**
|
|
2425
|
-
* The UID of the folder to save the resource in.
|
|
2425
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
2426
2426
|
*/
|
|
2427
2427
|
folderUid?: pulumi.Input<string>;
|
|
2428
2428
|
/**
|
|
@@ -2498,7 +2498,7 @@ export declare namespace alerting {
|
|
|
2498
2498
|
[key: string]: pulumi.Input<string>;
|
|
2499
2499
|
}>;
|
|
2500
2500
|
/**
|
|
2501
|
-
* The UID of the folder to save the resource in.
|
|
2501
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
2502
2502
|
*/
|
|
2503
2503
|
folderUid?: pulumi.Input<string>;
|
|
2504
2504
|
/**
|
|
@@ -3000,7 +3000,7 @@ export declare namespace alerting {
|
|
|
3000
3000
|
[key: string]: pulumi.Input<string>;
|
|
3001
3001
|
}>;
|
|
3002
3002
|
/**
|
|
3003
|
-
* The UID of the folder to save the resource in.
|
|
3003
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
3004
3004
|
*/
|
|
3005
3005
|
folderUid?: pulumi.Input<string>;
|
|
3006
3006
|
/**
|
|
@@ -3062,7 +3062,7 @@ export declare namespace apps {
|
|
|
3062
3062
|
[key: string]: pulumi.Input<string>;
|
|
3063
3063
|
}>;
|
|
3064
3064
|
/**
|
|
3065
|
-
* The UID of the folder to save the resource in.
|
|
3065
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
3066
3066
|
*/
|
|
3067
3067
|
folderUid?: pulumi.Input<string>;
|
|
3068
3068
|
/**
|
|
@@ -3114,7 +3114,7 @@ export declare namespace apps {
|
|
|
3114
3114
|
[key: string]: pulumi.Input<string>;
|
|
3115
3115
|
}>;
|
|
3116
3116
|
/**
|
|
3117
|
-
* The UID of the folder to save the resource in.
|
|
3117
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
3118
3118
|
*/
|
|
3119
3119
|
folderUid?: pulumi.Input<string>;
|
|
3120
3120
|
/**
|
|
@@ -3196,7 +3196,7 @@ export declare namespace apps {
|
|
|
3196
3196
|
[key: string]: pulumi.Input<string>;
|
|
3197
3197
|
}>;
|
|
3198
3198
|
/**
|
|
3199
|
-
* The UID of the folder to save the resource in.
|
|
3199
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
3200
3200
|
*/
|
|
3201
3201
|
folderUid?: pulumi.Input<string>;
|
|
3202
3202
|
/**
|
|
@@ -3388,7 +3388,7 @@ export declare namespace apps {
|
|
|
3388
3388
|
[key: string]: pulumi.Input<string>;
|
|
3389
3389
|
}>;
|
|
3390
3390
|
/**
|
|
3391
|
-
* The UID of the folder to save the resource in.
|
|
3391
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
3392
3392
|
*/
|
|
3393
3393
|
folderUid?: pulumi.Input<string>;
|
|
3394
3394
|
/**
|
|
@@ -3442,7 +3442,7 @@ export declare namespace apps {
|
|
|
3442
3442
|
[key: string]: pulumi.Input<string>;
|
|
3443
3443
|
}>;
|
|
3444
3444
|
/**
|
|
3445
|
-
* The UID of the folder to save the resource in.
|
|
3445
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
3446
3446
|
*/
|
|
3447
3447
|
folderUid?: pulumi.Input<string>;
|
|
3448
3448
|
/**
|
|
@@ -3496,7 +3496,7 @@ export declare namespace apps {
|
|
|
3496
3496
|
[key: string]: pulumi.Input<string>;
|
|
3497
3497
|
}>;
|
|
3498
3498
|
/**
|
|
3499
|
-
* The UID of the folder to save the resource in.
|
|
3499
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
3500
3500
|
*/
|
|
3501
3501
|
folderUid?: pulumi.Input<string>;
|
|
3502
3502
|
/**
|
|
@@ -3528,7 +3528,7 @@ export declare namespace apps {
|
|
|
3528
3528
|
}
|
|
3529
3529
|
interface DashboardSpec {
|
|
3530
3530
|
/**
|
|
3531
|
-
* The JSON representation of the dashboard v2 spec.
|
|
3531
|
+
* The JSON representation of the dashboard v2 spec. Must be the spec object only — not the full Kubernetes envelope. Use: json = jsonencode(jsondecode(file("dashboard.json")).spec)
|
|
3532
3532
|
*/
|
|
3533
3533
|
json: pulumi.Input<string>;
|
|
3534
3534
|
/**
|
|
@@ -3550,7 +3550,7 @@ export declare namespace apps {
|
|
|
3550
3550
|
[key: string]: pulumi.Input<string>;
|
|
3551
3551
|
}>;
|
|
3552
3552
|
/**
|
|
3553
|
-
* The UID of the folder to save the resource in.
|
|
3553
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
3554
3554
|
*/
|
|
3555
3555
|
folderUid?: pulumi.Input<string>;
|
|
3556
3556
|
/**
|
|
@@ -3582,7 +3582,7 @@ export declare namespace apps {
|
|
|
3582
3582
|
}
|
|
3583
3583
|
interface DashboardSpec {
|
|
3584
3584
|
/**
|
|
3585
|
-
* The JSON representation of the dashboard v2beta1 spec.
|
|
3585
|
+
* The JSON representation of the dashboard v2beta1 spec. Must be the spec object only — not the full Kubernetes envelope. Use: json = jsonencode(jsondecode(file("dashboard.json")).spec)
|
|
3586
3586
|
*/
|
|
3587
3587
|
json: pulumi.Input<string>;
|
|
3588
3588
|
/**
|
|
@@ -3910,7 +3910,7 @@ export declare namespace cloud {
|
|
|
3910
3910
|
[key: string]: pulumi.Input<string>;
|
|
3911
3911
|
}>;
|
|
3912
3912
|
/**
|
|
3913
|
-
* The UID of the folder to save the resource in.
|
|
3913
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
3914
3914
|
*/
|
|
3915
3915
|
folderUid?: pulumi.Input<string>;
|
|
3916
3916
|
/**
|
|
@@ -3950,7 +3950,7 @@ export declare namespace cloud {
|
|
|
3950
3950
|
[key: string]: pulumi.Input<string>;
|
|
3951
3951
|
}>;
|
|
3952
3952
|
/**
|
|
3953
|
-
* The UID of the folder to save the resource in.
|
|
3953
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
3954
3954
|
*/
|
|
3955
3955
|
folderUid?: pulumi.Input<string>;
|
|
3956
3956
|
/**
|
|
@@ -3991,7 +3991,7 @@ export declare namespace cloud {
|
|
|
3991
3991
|
[key: string]: pulumi.Input<string>;
|
|
3992
3992
|
}>;
|
|
3993
3993
|
/**
|
|
3994
|
-
* The UID of the folder to save the resource in.
|
|
3994
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
3995
3995
|
*/
|
|
3996
3996
|
folderUid?: pulumi.Input<string>;
|
|
3997
3997
|
/**
|
|
@@ -4031,7 +4031,7 @@ export declare namespace cloud {
|
|
|
4031
4031
|
[key: string]: pulumi.Input<string>;
|
|
4032
4032
|
}>;
|
|
4033
4033
|
/**
|
|
4034
|
-
* The UID of the folder to save the resource in.
|
|
4034
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
4035
4035
|
*/
|
|
4036
4036
|
folderUid?: pulumi.Input<string>;
|
|
4037
4037
|
/**
|
|
@@ -4743,7 +4743,7 @@ export declare namespace enterprise {
|
|
|
4743
4743
|
[key: string]: pulumi.Input<string>;
|
|
4744
4744
|
}>;
|
|
4745
4745
|
/**
|
|
4746
|
-
* The UID of the folder to save the resource in.
|
|
4746
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
4747
4747
|
*/
|
|
4748
4748
|
folderUid?: pulumi.Input<string>;
|
|
4749
4749
|
/**
|
|
@@ -4807,7 +4807,7 @@ export declare namespace enterprise {
|
|
|
4807
4807
|
[key: string]: pulumi.Input<string>;
|
|
4808
4808
|
}>;
|
|
4809
4809
|
/**
|
|
4810
|
-
* The UID of the folder to save the resource in.
|
|
4810
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
4811
4811
|
*/
|
|
4812
4812
|
folderUid?: pulumi.Input<string>;
|
|
4813
4813
|
/**
|
|
@@ -4867,7 +4867,7 @@ export declare namespace experimental {
|
|
|
4867
4867
|
[key: string]: pulumi.Input<string>;
|
|
4868
4868
|
}>;
|
|
4869
4869
|
/**
|
|
4870
|
-
* The UID of the folder to save the resource in.
|
|
4870
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
4871
4871
|
*/
|
|
4872
4872
|
folderUid?: pulumi.Input<string>;
|
|
4873
4873
|
/**
|
|
@@ -4919,7 +4919,7 @@ export declare namespace experimental {
|
|
|
4919
4919
|
[key: string]: pulumi.Input<string>;
|
|
4920
4920
|
}>;
|
|
4921
4921
|
/**
|
|
4922
|
-
* The UID of the folder to save the resource in.
|
|
4922
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
4923
4923
|
*/
|
|
4924
4924
|
folderUid?: pulumi.Input<string>;
|
|
4925
4925
|
/**
|
package/types/output.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ export declare namespace alerting {
|
|
|
8
8
|
[key: string]: string;
|
|
9
9
|
};
|
|
10
10
|
/**
|
|
11
|
-
* The UID of the folder to save the resource in.
|
|
11
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
12
12
|
*/
|
|
13
13
|
folderUid?: string;
|
|
14
14
|
/**
|
|
@@ -510,7 +510,7 @@ export declare namespace alerting {
|
|
|
510
510
|
[key: string]: string;
|
|
511
511
|
};
|
|
512
512
|
/**
|
|
513
|
-
* The UID of the folder to save the resource in.
|
|
513
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
514
514
|
*/
|
|
515
515
|
folderUid?: string;
|
|
516
516
|
/**
|
|
@@ -2076,7 +2076,7 @@ export declare namespace alerting {
|
|
|
2076
2076
|
[key: string]: string;
|
|
2077
2077
|
};
|
|
2078
2078
|
/**
|
|
2079
|
-
* The UID of the folder to save the resource in.
|
|
2079
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
2080
2080
|
*/
|
|
2081
2081
|
folderUid?: string;
|
|
2082
2082
|
/**
|
|
@@ -2289,7 +2289,7 @@ export declare namespace alerting {
|
|
|
2289
2289
|
[key: string]: string;
|
|
2290
2290
|
};
|
|
2291
2291
|
/**
|
|
2292
|
-
* The UID of the folder to save the resource in.
|
|
2292
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
2293
2293
|
*/
|
|
2294
2294
|
folderUid?: string;
|
|
2295
2295
|
/**
|
|
@@ -2421,7 +2421,7 @@ export declare namespace alerting {
|
|
|
2421
2421
|
[key: string]: string;
|
|
2422
2422
|
};
|
|
2423
2423
|
/**
|
|
2424
|
-
* The UID of the folder to save the resource in.
|
|
2424
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
2425
2425
|
*/
|
|
2426
2426
|
folderUid?: string;
|
|
2427
2427
|
/**
|
|
@@ -2497,7 +2497,7 @@ export declare namespace alerting {
|
|
|
2497
2497
|
[key: string]: string;
|
|
2498
2498
|
};
|
|
2499
2499
|
/**
|
|
2500
|
-
* The UID of the folder to save the resource in.
|
|
2500
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
2501
2501
|
*/
|
|
2502
2502
|
folderUid?: string;
|
|
2503
2503
|
/**
|
|
@@ -2999,7 +2999,7 @@ export declare namespace alerting {
|
|
|
2999
2999
|
[key: string]: string;
|
|
3000
3000
|
};
|
|
3001
3001
|
/**
|
|
3002
|
-
* The UID of the folder to save the resource in.
|
|
3002
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
3003
3003
|
*/
|
|
3004
3004
|
folderUid?: string;
|
|
3005
3005
|
/**
|
|
@@ -3061,7 +3061,7 @@ export declare namespace apps {
|
|
|
3061
3061
|
[key: string]: string;
|
|
3062
3062
|
};
|
|
3063
3063
|
/**
|
|
3064
|
-
* The UID of the folder to save the resource in.
|
|
3064
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
3065
3065
|
*/
|
|
3066
3066
|
folderUid?: string;
|
|
3067
3067
|
/**
|
|
@@ -3113,7 +3113,7 @@ export declare namespace apps {
|
|
|
3113
3113
|
[key: string]: string;
|
|
3114
3114
|
};
|
|
3115
3115
|
/**
|
|
3116
|
-
* The UID of the folder to save the resource in.
|
|
3116
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
3117
3117
|
*/
|
|
3118
3118
|
folderUid?: string;
|
|
3119
3119
|
/**
|
|
@@ -3195,7 +3195,7 @@ export declare namespace apps {
|
|
|
3195
3195
|
[key: string]: string;
|
|
3196
3196
|
};
|
|
3197
3197
|
/**
|
|
3198
|
-
* The UID of the folder to save the resource in.
|
|
3198
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
3199
3199
|
*/
|
|
3200
3200
|
folderUid?: string;
|
|
3201
3201
|
/**
|
|
@@ -3387,7 +3387,7 @@ export declare namespace apps {
|
|
|
3387
3387
|
[key: string]: string;
|
|
3388
3388
|
};
|
|
3389
3389
|
/**
|
|
3390
|
-
* The UID of the folder to save the resource in.
|
|
3390
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
3391
3391
|
*/
|
|
3392
3392
|
folderUid?: string;
|
|
3393
3393
|
/**
|
|
@@ -3441,7 +3441,7 @@ export declare namespace apps {
|
|
|
3441
3441
|
[key: string]: string;
|
|
3442
3442
|
};
|
|
3443
3443
|
/**
|
|
3444
|
-
* The UID of the folder to save the resource in.
|
|
3444
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
3445
3445
|
*/
|
|
3446
3446
|
folderUid?: string;
|
|
3447
3447
|
/**
|
|
@@ -3495,7 +3495,7 @@ export declare namespace apps {
|
|
|
3495
3495
|
[key: string]: string;
|
|
3496
3496
|
};
|
|
3497
3497
|
/**
|
|
3498
|
-
* The UID of the folder to save the resource in.
|
|
3498
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
3499
3499
|
*/
|
|
3500
3500
|
folderUid?: string;
|
|
3501
3501
|
/**
|
|
@@ -3527,7 +3527,7 @@ export declare namespace apps {
|
|
|
3527
3527
|
}
|
|
3528
3528
|
interface DashboardSpec {
|
|
3529
3529
|
/**
|
|
3530
|
-
* The JSON representation of the dashboard v2 spec.
|
|
3530
|
+
* The JSON representation of the dashboard v2 spec. Must be the spec object only — not the full Kubernetes envelope. Use: json = jsonencode(jsondecode(file("dashboard.json")).spec)
|
|
3531
3531
|
*/
|
|
3532
3532
|
json: string;
|
|
3533
3533
|
/**
|
|
@@ -3549,7 +3549,7 @@ export declare namespace apps {
|
|
|
3549
3549
|
[key: string]: string;
|
|
3550
3550
|
};
|
|
3551
3551
|
/**
|
|
3552
|
-
* The UID of the folder to save the resource in.
|
|
3552
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
3553
3553
|
*/
|
|
3554
3554
|
folderUid?: string;
|
|
3555
3555
|
/**
|
|
@@ -3581,7 +3581,7 @@ export declare namespace apps {
|
|
|
3581
3581
|
}
|
|
3582
3582
|
interface DashboardSpec {
|
|
3583
3583
|
/**
|
|
3584
|
-
* The JSON representation of the dashboard v2beta1 spec.
|
|
3584
|
+
* The JSON representation of the dashboard v2beta1 spec. Must be the spec object only — not the full Kubernetes envelope. Use: json = jsonencode(jsondecode(file("dashboard.json")).spec)
|
|
3585
3585
|
*/
|
|
3586
3586
|
json: string;
|
|
3587
3587
|
/**
|
|
@@ -3923,7 +3923,7 @@ export declare namespace cloud {
|
|
|
3923
3923
|
[key: string]: string;
|
|
3924
3924
|
};
|
|
3925
3925
|
/**
|
|
3926
|
-
* The UID of the folder to save the resource in.
|
|
3926
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
3927
3927
|
*/
|
|
3928
3928
|
folderUid?: string;
|
|
3929
3929
|
/**
|
|
@@ -3963,7 +3963,7 @@ export declare namespace cloud {
|
|
|
3963
3963
|
[key: string]: string;
|
|
3964
3964
|
};
|
|
3965
3965
|
/**
|
|
3966
|
-
* The UID of the folder to save the resource in.
|
|
3966
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
3967
3967
|
*/
|
|
3968
3968
|
folderUid?: string;
|
|
3969
3969
|
/**
|
|
@@ -4004,7 +4004,7 @@ export declare namespace cloud {
|
|
|
4004
4004
|
[key: string]: string;
|
|
4005
4005
|
};
|
|
4006
4006
|
/**
|
|
4007
|
-
* The UID of the folder to save the resource in.
|
|
4007
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
4008
4008
|
*/
|
|
4009
4009
|
folderUid?: string;
|
|
4010
4010
|
/**
|
|
@@ -4044,7 +4044,7 @@ export declare namespace cloud {
|
|
|
4044
4044
|
[key: string]: string;
|
|
4045
4045
|
};
|
|
4046
4046
|
/**
|
|
4047
|
-
* The UID of the folder to save the resource in.
|
|
4047
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
4048
4048
|
*/
|
|
4049
4049
|
folderUid?: string;
|
|
4050
4050
|
/**
|
|
@@ -4549,7 +4549,7 @@ export declare namespace enterprise {
|
|
|
4549
4549
|
[key: string]: string;
|
|
4550
4550
|
};
|
|
4551
4551
|
/**
|
|
4552
|
-
* The UID of the folder to save the resource in.
|
|
4552
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
4553
4553
|
*/
|
|
4554
4554
|
folderUid?: string;
|
|
4555
4555
|
/**
|
|
@@ -4613,7 +4613,7 @@ export declare namespace enterprise {
|
|
|
4613
4613
|
[key: string]: string;
|
|
4614
4614
|
};
|
|
4615
4615
|
/**
|
|
4616
|
-
* The UID of the folder to save the resource in.
|
|
4616
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
4617
4617
|
*/
|
|
4618
4618
|
folderUid?: string;
|
|
4619
4619
|
/**
|
|
@@ -4673,7 +4673,7 @@ export declare namespace experimental {
|
|
|
4673
4673
|
[key: string]: string;
|
|
4674
4674
|
};
|
|
4675
4675
|
/**
|
|
4676
|
-
* The UID of the folder to save the resource in.
|
|
4676
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
4677
4677
|
*/
|
|
4678
4678
|
folderUid?: string;
|
|
4679
4679
|
/**
|
|
@@ -4725,7 +4725,7 @@ export declare namespace experimental {
|
|
|
4725
4725
|
[key: string]: string;
|
|
4726
4726
|
};
|
|
4727
4727
|
/**
|
|
4728
|
-
* The UID of the folder to save the resource in.
|
|
4728
|
+
* The UID of the folder to save the resource in. For example, it's supported for dashboards and folders. To know if it's supported for the specific resource you're using check the documentation.
|
|
4729
4729
|
*/
|
|
4730
4730
|
folderUid?: string;
|
|
4731
4731
|
/**
|