com.pulumi.azurenative.dashboard.Grafana Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azurenative.dashboard;
import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.dashboard.GrafanaArgs;
import com.pulumi.azurenative.dashboard.outputs.ManagedGrafanaPropertiesResponse;
import com.pulumi.azurenative.dashboard.outputs.ManagedServiceIdentityResponse;
import com.pulumi.azurenative.dashboard.outputs.ResourceSkuResponse;
import com.pulumi.azurenative.dashboard.outputs.SystemDataResponse;
import com.pulumi.core.Alias;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Export;
import com.pulumi.core.annotations.ResourceType;
import com.pulumi.core.internal.Codegen;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* The grafana resource type.
* Azure REST API version: 2022-08-01. Prior API version in Azure Native 1.x: 2022-05-01-preview.
*
* Other available API versions: 2021-09-01-preview, 2022-10-01-preview, 2023-09-01, 2023-10-01-preview.
*
* ## Example Usage
* ### Grafana_Create
*
*
* {@code
* package generated_program;
*
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.azurenative.dashboard.Grafana;
* import com.pulumi.azurenative.dashboard.GrafanaArgs;
* import com.pulumi.azurenative.dashboard.inputs.ManagedServiceIdentityArgs;
* import com.pulumi.azurenative.dashboard.inputs.ManagedGrafanaPropertiesArgs;
* import com.pulumi.azurenative.dashboard.inputs.GrafanaIntegrationsArgs;
* import com.pulumi.azurenative.dashboard.inputs.ResourceSkuArgs;
* 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) {
* var grafana = new Grafana("grafana", GrafanaArgs.builder()
* .identity(ManagedServiceIdentityArgs.builder()
* .type("SystemAssigned")
* .build())
* .location("West US")
* .properties(ManagedGrafanaPropertiesArgs.builder()
* .apiKey("Enabled")
* .deterministicOutboundIP("Enabled")
* .grafanaIntegrations(GrafanaIntegrationsArgs.builder()
* .azureMonitorWorkspaceIntegrations(AzureMonitorWorkspaceIntegrationArgs.builder()
* .azureMonitorWorkspaceResourceId("/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.monitor/accounts/myAzureMonitorWorkspace")
* .build())
* .build())
* .publicNetworkAccess("Enabled")
* .zoneRedundancy("Enabled")
* .build())
* .resourceGroupName("myResourceGroup")
* .sku(ResourceSkuArgs.builder()
* .name("Standard")
* .build())
* .tags(Map.of("Environment", "Dev"))
* .workspaceName("myWorkspace")
* .build());
*
* }
* }
*
* }
*
*
* ## Import
*
* An existing resource can be imported using its type token, name, and identifier, e.g.
*
* ```sh
* $ pulumi import azure-native:dashboard:Grafana myWorkspace /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName}
* ```
*
*/
@ResourceType(type="azure-native:dashboard:Grafana")
public class Grafana extends com.pulumi.resources.CustomResource {
/**
* The managed identity of the grafana resource.
*
*/
@Export(name="identity", refs={ManagedServiceIdentityResponse.class}, tree="[0]")
private Output* @Nullable */ ManagedServiceIdentityResponse> identity;
/**
* @return The managed identity of the grafana resource.
*
*/
public Output> identity() {
return Codegen.optional(this.identity);
}
/**
* The geo-location where the grafana resource lives
*
*/
@Export(name="location", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> location;
/**
* @return The geo-location where the grafana resource lives
*
*/
public Output> location() {
return Codegen.optional(this.location);
}
/**
* Name of the grafana resource.
*
*/
@Export(name="name", refs={String.class}, tree="[0]")
private Output name;
/**
* @return Name of the grafana resource.
*
*/
public Output name() {
return this.name;
}
/**
* Properties specific to the grafana resource.
*
*/
@Export(name="properties", refs={ManagedGrafanaPropertiesResponse.class}, tree="[0]")
private Output properties;
/**
* @return Properties specific to the grafana resource.
*
*/
public Output properties() {
return this.properties;
}
/**
* The Sku of the grafana resource.
*
*/
@Export(name="sku", refs={ResourceSkuResponse.class}, tree="[0]")
private Output* @Nullable */ ResourceSkuResponse> sku;
/**
* @return The Sku of the grafana resource.
*
*/
public Output> sku() {
return Codegen.optional(this.sku);
}
/**
* The system meta data relating to this grafana resource.
*
*/
@Export(name="systemData", refs={SystemDataResponse.class}, tree="[0]")
private Output systemData;
/**
* @return The system meta data relating to this grafana resource.
*
*/
public Output systemData() {
return this.systemData;
}
/**
* The tags for grafana resource.
*
*/
@Export(name="tags", refs={Map.class,String.class}, tree="[0,1,1]")
private Output* @Nullable */ Map> tags;
/**
* @return The tags for grafana resource.
*
*/
public Output>> tags() {
return Codegen.optional(this.tags);
}
/**
* The type of the grafana resource.
*
*/
@Export(name="type", refs={String.class}, tree="[0]")
private Output type;
/**
* @return The type of the grafana resource.
*
*/
public Output type() {
return this.type;
}
/**
*
* @param name The _unique_ name of the resulting resource.
*/
public Grafana(java.lang.String name) {
this(name, GrafanaArgs.Empty);
}
/**
*
* @param name The _unique_ name of the resulting resource.
* @param args The arguments to use to populate this resource's properties.
*/
public Grafana(java.lang.String name, GrafanaArgs args) {
this(name, args, null);
}
/**
*
* @param name The _unique_ name of the resulting resource.
* @param args The arguments to use to populate this resource's properties.
* @param options A bag of options that control this resource's behavior.
*/
public Grafana(java.lang.String name, GrafanaArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
super("azure-native:dashboard:Grafana", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false);
}
private Grafana(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) {
super("azure-native:dashboard:Grafana", name, null, makeResourceOptions(options, id), false);
}
private static GrafanaArgs makeArgs(GrafanaArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
if (options != null && options.getUrn().isPresent()) {
return null;
}
return args == null ? GrafanaArgs.Empty : args;
}
private static com.pulumi.resources.CustomResourceOptions makeResourceOptions(@Nullable com.pulumi.resources.CustomResourceOptions options, @Nullable Output id) {
var defaultOptions = com.pulumi.resources.CustomResourceOptions.builder()
.version(Utilities.getVersion())
.aliases(List.of(
Output.of(Alias.builder().type("azure-native:dashboard/v20210901preview:Grafana").build()),
Output.of(Alias.builder().type("azure-native:dashboard/v20220501preview:Grafana").build()),
Output.of(Alias.builder().type("azure-native:dashboard/v20220801:Grafana").build()),
Output.of(Alias.builder().type("azure-native:dashboard/v20221001preview:Grafana").build()),
Output.of(Alias.builder().type("azure-native:dashboard/v20230901:Grafana").build()),
Output.of(Alias.builder().type("azure-native:dashboard/v20231001preview:Grafana").build())
))
.build();
return com.pulumi.resources.CustomResourceOptions.merge(defaultOptions, options, id);
}
/**
* Get an existing Host resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param options Optional settings to control the behavior of the CustomResource.
*/
public static Grafana get(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) {
return new Grafana(name, id, options);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy