BillingAccountExclusionArgs

data class BillingAccountExclusionArgs(val billingAccount: Output<String>? = null, val description: Output<String>? = null, val disabled: Output<Boolean>? = null, val filter: Output<String>? = null, val name: Output<String>? = null) : ConvertibleToJava<BillingAccountExclusionArgs>

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.logging.BillingAccountExclusion;
import com.pulumi.gcp.logging.BillingAccountExclusionArgs;
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 my_exclusion = new BillingAccountExclusion("my-exclusion", BillingAccountExclusionArgs.builder()
.billingAccount("ABCDEF-012345-GHIJKL")
.description("Exclude GCE instance debug logs")
.filter("resource.type = gce_instance AND severity <= DEBUG")
.build());
}
}

Import

Billing account logging exclusions can be imported using their URI, e.g.

$ pulumi import gcp:logging/billingAccountExclusion:BillingAccountExclusion my_exclusion billingAccounts/my-billing_account/exclusions/my-exclusion

Constructors

Link copied to clipboard
constructor(billingAccount: Output<String>? = null, description: Output<String>? = null, disabled: Output<Boolean>? = null, filter: Output<String>? = null, name: Output<String>? = null)

Properties

Link copied to clipboard
val billingAccount: Output<String>? = null

The billing account to create the exclusion for.

Link copied to clipboard
val description: Output<String>? = null

A human-readable description.

Link copied to clipboard
val disabled: Output<Boolean>? = null

Whether this exclusion rule should be disabled or not. This defaults to false.

Link copied to clipboard
val filter: Output<String>? = null

The filter to apply when excluding logs. Only log entries that match the filter are excluded. See Advanced Log Filters for information on how to write a filter.

Link copied to clipboard
val name: Output<String>? = null

The name of the logging exclusion.

Functions

Link copied to clipboard
open override fun toJava(): BillingAccountExclusionArgs