grafana.getOrganizationPreferences

Explore with Pulumi AI

Example Usage

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Grafana = Pulumi.Grafana;

return await Deployment.RunAsync(() => 
{
    var test = Grafana.GetOrganizationPreferences.Invoke();

});
package main

import (
	"github.com/lbrlabs/pulumi-grafana/sdk/go/grafana"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := grafana.GetOrganizationPreferences(ctx, nil, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.grafana.GrafanaFunctions;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        final var test = GrafanaFunctions.getOrganizationPreferences();

    }
}
import pulumi
import pulumi_grafana as grafana

test = grafana.get_organization_preferences()
import * as pulumi from "@pulumi/pulumi";
import * as grafana from "@pulumi/grafana";

const test = grafana.getOrganizationPreferences({});
variables:
  test:
    fn::invoke:
      Function: grafana:getOrganizationPreferences
      Arguments: {}

Using getOrganizationPreferences

function getOrganizationPreferences(opts?: InvokeOptions): Promise<GetOrganizationPreferencesResult>
def get_organization_preferences(opts: Optional[InvokeOptions] = None) -> GetOrganizationPreferencesResult
func GetOrganizationPreferences(ctx *Context, opts ...InvokeOption) (*GetOrganizationPreferencesResult, error)

> Note: This function is named GetOrganizationPreferences in the Go SDK.

public static class GetOrganizationPreferences 
{
    public static Task<GetOrganizationPreferencesResult> InvokeAsync(InvokeOptions? opts = null)
}
public static CompletableFuture<GetOrganizationPreferencesResult> getOrganizationPreferences(InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
  function: grafana:index/getOrganizationPreferences:getOrganizationPreferences
  arguments:
    # arguments dictionary

getOrganizationPreferences Result

The following output properties are available:

HomeDashboardId int

The Organization home dashboard ID.

HomeDashboardUid string

The Organization home dashboard UID. This is only available in Grafana 9.0+.

Id string

The provider-assigned unique ID for this managed resource.

OrgId string

The Organization ID. If not set, the Org ID defined in the provider block will be used.

Theme string

The Organization theme. Available values are light, dark, or an empty string for the default.

Timezone string

The Organization timezone. Available values are utc, browser, or an empty string for the default.

WeekStart string

The Organization week start.

HomeDashboardId int

The Organization home dashboard ID.

HomeDashboardUid string

The Organization home dashboard UID. This is only available in Grafana 9.0+.

Id string

The provider-assigned unique ID for this managed resource.

OrgId string

The Organization ID. If not set, the Org ID defined in the provider block will be used.

Theme string

The Organization theme. Available values are light, dark, or an empty string for the default.

Timezone string

The Organization timezone. Available values are utc, browser, or an empty string for the default.

WeekStart string

The Organization week start.

homeDashboardId Integer

The Organization home dashboard ID.

homeDashboardUid String

The Organization home dashboard UID. This is only available in Grafana 9.0+.

id String

The provider-assigned unique ID for this managed resource.

orgId String

The Organization ID. If not set, the Org ID defined in the provider block will be used.

theme String

The Organization theme. Available values are light, dark, or an empty string for the default.

timezone String

The Organization timezone. Available values are utc, browser, or an empty string for the default.

weekStart String

The Organization week start.

homeDashboardId number

The Organization home dashboard ID.

homeDashboardUid string

The Organization home dashboard UID. This is only available in Grafana 9.0+.

id string

The provider-assigned unique ID for this managed resource.

orgId string

The Organization ID. If not set, the Org ID defined in the provider block will be used.

theme string

The Organization theme. Available values are light, dark, or an empty string for the default.

timezone string

The Organization timezone. Available values are utc, browser, or an empty string for the default.

weekStart string

The Organization week start.

home_dashboard_id int

The Organization home dashboard ID.

home_dashboard_uid str

The Organization home dashboard UID. This is only available in Grafana 9.0+.

id str

The provider-assigned unique ID for this managed resource.

org_id str

The Organization ID. If not set, the Org ID defined in the provider block will be used.

theme str

The Organization theme. Available values are light, dark, or an empty string for the default.

timezone str

The Organization timezone. Available values are utc, browser, or an empty string for the default.

week_start str

The Organization week start.

homeDashboardId Number

The Organization home dashboard ID.

homeDashboardUid String

The Organization home dashboard UID. This is only available in Grafana 9.0+.

id String

The provider-assigned unique ID for this managed resource.

orgId String

The Organization ID. If not set, the Org ID defined in the provider block will be used.

theme String

The Organization theme. Available values are light, dark, or an empty string for the default.

timezone String

The Organization timezone. Available values are utc, browser, or an empty string for the default.

weekStart String

The Organization week start.

Package Details

Repository
grafana lbrlabs/pulumi-grafana
License
Apache-2.0
Notes

This Pulumi package is based on the grafana Terraform Provider.