com.pulumi.azurenative.alertsmanagement.PrometheusRuleGroup 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.alertsmanagement;
import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.alertsmanagement.PrometheusRuleGroupArgs;
import com.pulumi.azurenative.alertsmanagement.outputs.PrometheusRuleResponse;
import com.pulumi.azurenative.alertsmanagement.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.Boolean;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* The Prometheus rule group resource.
* Azure REST API version: 2023-03-01.
*
* ## Example Usage
* ### Create or Update a PrometheusRuleGroup
*
*
* {@code
* package generated_program;
*
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.azurenative.alertsmanagement.PrometheusRuleGroup;
* import com.pulumi.azurenative.alertsmanagement.PrometheusRuleGroupArgs;
* import com.pulumi.azurenative.alertsmanagement.inputs.PrometheusRuleArgs;
* import com.pulumi.azurenative.alertsmanagement.inputs.PrometheusRuleResolveConfigurationArgs;
* 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 prometheusRuleGroup = new PrometheusRuleGroup("prometheusRuleGroup", PrometheusRuleGroupArgs.builder()
* .clusterName("myClusterName")
* .description("This is the description of the following rule group")
* .enabled(true)
* .interval("PT10M")
* .location("East US")
* .resourceGroupName("promResourceGroup")
* .ruleGroupName("myPrometheusRuleGroup")
* .rules(
* PrometheusRuleArgs.builder()
* .expression("histogram_quantile(0.99, sum(rate(jobs_duration_seconds_bucket{service=\"billing-processing\"}[5m])) by (job_type))")
* .labels(Map.of("team", "prod"))
* .record("job_type:billing_jobs_duration_seconds:99p5m")
* .build(),
* PrometheusRuleArgs.builder()
* .actions(
* PrometheusRuleGroupActionArgs.builder()
* .actionGroupId("/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourcegroups/myrg/providers/microsoft.insights/actiongroups/myactiongroup")
* .actionProperties(Map.ofEntries(
* Map.entry("key11", "value11"),
* Map.entry("key12", "value12")
* ))
* .build(),
* PrometheusRuleGroupActionArgs.builder()
* .actionGroupId("/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourcegroups/myrg/providers/microsoft.insights/actiongroups/myotheractiongroup")
* .actionProperties(Map.ofEntries(
* Map.entry("key21", "value21"),
* Map.entry("key22", "value22")
* ))
* .build())
* .alert("Billing_Processing_Very_Slow")
* .annotations(Map.of("annotationName1", "annotationValue1"))
* .enabled(true)
* .expression("job_type:billing_jobs_duration_seconds:99p5m > 30")
* .for_("PT5M")
* .labels(Map.of("team", "prod"))
* .resolveConfiguration(PrometheusRuleResolveConfigurationArgs.builder()
* .autoResolved(true)
* .timeToResolve("PT10M")
* .build())
* .severity(2)
* .build())
* .scopes("/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/myResourceGroup/providers/microsoft.monitor/accounts/myAzureMonitorWorkspace")
* .build());
*
* }
* }
*
* }
*
* ### Create or Update a cluster centric PrometheusRuleGroup
*
*
* {@code
* package generated_program;
*
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.azurenative.alertsmanagement.PrometheusRuleGroup;
* import com.pulumi.azurenative.alertsmanagement.PrometheusRuleGroupArgs;
* import com.pulumi.azurenative.alertsmanagement.inputs.PrometheusRuleArgs;
* import com.pulumi.azurenative.alertsmanagement.inputs.PrometheusRuleResolveConfigurationArgs;
* 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 prometheusRuleGroup = new PrometheusRuleGroup("prometheusRuleGroup", PrometheusRuleGroupArgs.builder()
* .clusterName("myClusterName")
* .description("This is a rule group with culster centric configuration")
* .interval("PT10M")
* .location("East US")
* .resourceGroupName("promResourceGroup")
* .ruleGroupName("myPrometheusRuleGroup")
* .rules(PrometheusRuleArgs.builder()
* .actions()
* .alert("Billing_Processing_Very_Slow")
* .annotations(Map.of("annotationName1", "annotationValue1"))
* .enabled(true)
* .expression("job_type:billing_jobs_duration_seconds:99p5m > 30")
* .for_("PT5M")
* .labels(Map.of("team", "prod"))
* .resolveConfiguration(PrometheusRuleResolveConfigurationArgs.builder()
* .autoResolved(true)
* .timeToResolve("PT10M")
* .build())
* .severity(2)
* .build())
* .scopes(
* "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/myResourceGroup/providers/microsoft.monitor/accounts/myAzureMonitorWorkspace",
* "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/myResourceGroup/providers/Microsoft.ContainerService/managedClusters/myClusterName")
* .build());
*
* }
* }
*
* }
*
*
* ## Import
*
* An existing resource can be imported using its type token, name, and identifier, e.g.
*
* ```sh
* $ pulumi import azure-native:alertsmanagement:PrometheusRuleGroup myresource1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AlertsManagement/prometheusRuleGroups/{ruleGroupName}
* ```
*
*/
@ResourceType(type="azure-native:alertsmanagement:PrometheusRuleGroup")
public class PrometheusRuleGroup extends com.pulumi.resources.CustomResource {
/**
* Apply rule to data from a specific cluster.
*
*/
@Export(name="clusterName", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> clusterName;
/**
* @return Apply rule to data from a specific cluster.
*
*/
public Output> clusterName() {
return Codegen.optional(this.clusterName);
}
/**
* Rule group description.
*
*/
@Export(name="description", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> description;
/**
* @return Rule group description.
*
*/
public Output> description() {
return Codegen.optional(this.description);
}
/**
* Enable/disable rule group.
*
*/
@Export(name="enabled", refs={Boolean.class}, tree="[0]")
private Output* @Nullable */ Boolean> enabled;
/**
* @return Enable/disable rule group.
*
*/
public Output> enabled() {
return Codegen.optional(this.enabled);
}
/**
* The interval in which to run the Prometheus rule group represented in ISO 8601 duration format. Should be between 1 and 15 minutes
*
*/
@Export(name="interval", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> interval;
/**
* @return The interval in which to run the Prometheus rule group represented in ISO 8601 duration format. Should be between 1 and 15 minutes
*
*/
public Output> interval() {
return Codegen.optional(this.interval);
}
/**
* The geo-location where the resource lives
*
*/
@Export(name="location", refs={String.class}, tree="[0]")
private Output location;
/**
* @return The geo-location where the resource lives
*
*/
public Output location() {
return this.location;
}
/**
* The name of the resource
*
*/
@Export(name="name", refs={String.class}, tree="[0]")
private Output name;
/**
* @return The name of the resource
*
*/
public Output name() {
return this.name;
}
/**
* Defines the rules in the Prometheus rule group.
*
*/
@Export(name="rules", refs={List.class,PrometheusRuleResponse.class}, tree="[0,1]")
private Output> rules;
/**
* @return Defines the rules in the Prometheus rule group.
*
*/
public Output> rules() {
return this.rules;
}
/**
* Target Azure Monitor workspaces resource ids. This api-version is currently limited to creating with one scope. This may change in future.
*
*/
@Export(name="scopes", refs={List.class,String.class}, tree="[0,1]")
private Output> scopes;
/**
* @return Target Azure Monitor workspaces resource ids. This api-version is currently limited to creating with one scope. This may change in future.
*
*/
public Output> scopes() {
return this.scopes;
}
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*
*/
@Export(name="systemData", refs={SystemDataResponse.class}, tree="[0]")
private Output systemData;
/**
* @return Azure Resource Manager metadata containing createdBy and modifiedBy information.
*
*/
public Output systemData() {
return this.systemData;
}
/**
* Resource tags.
*
*/
@Export(name="tags", refs={Map.class,String.class}, tree="[0,1,1]")
private Output* @Nullable */ Map> tags;
/**
* @return Resource tags.
*
*/
public Output>> tags() {
return Codegen.optional(this.tags);
}
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*
*/
@Export(name="type", refs={String.class}, tree="[0]")
private Output type;
/**
* @return The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*
*/
public Output type() {
return this.type;
}
/**
*
* @param name The _unique_ name of the resulting resource.
*/
public PrometheusRuleGroup(java.lang.String name) {
this(name, PrometheusRuleGroupArgs.Empty);
}
/**
*
* @param name The _unique_ name of the resulting resource.
* @param args The arguments to use to populate this resource's properties.
*/
public PrometheusRuleGroup(java.lang.String name, PrometheusRuleGroupArgs 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 PrometheusRuleGroup(java.lang.String name, PrometheusRuleGroupArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
super("azure-native:alertsmanagement:PrometheusRuleGroup", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false);
}
private PrometheusRuleGroup(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) {
super("azure-native:alertsmanagement:PrometheusRuleGroup", name, null, makeResourceOptions(options, id), false);
}
private static PrometheusRuleGroupArgs makeArgs(PrometheusRuleGroupArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
if (options != null && options.getUrn().isPresent()) {
return null;
}
return args == null ? PrometheusRuleGroupArgs.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:alertsmanagement/v20210722preview:PrometheusRuleGroup").build()),
Output.of(Alias.builder().type("azure-native:alertsmanagement/v20230301:PrometheusRuleGroup").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 PrometheusRuleGroup get(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) {
return new PrometheusRuleGroup(name, id, options);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy