gcp.logging.ProjectExclusion
Explore with Pulumi AI
Manages a project-level logging exclusion. For more information see:
- API documentation
- How-to Guides
You can specify exclusions for log sinks created by the provider by using the exclusions field of
gcp.logging.ProjectSink
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const my_exclusion = new gcp.logging.ProjectExclusion("my-exclusion", {
name: "my-instance-debug-exclusion",
description: "Exclude GCE instance debug logs",
filter: "resource.type = gce_instance AND severity <= DEBUG",
});
import pulumi
import pulumi_gcp as gcp
my_exclusion = gcp.logging.ProjectExclusion("my-exclusion",
name="my-instance-debug-exclusion",
description="Exclude GCE instance debug logs",
filter="resource.type = gce_instance AND severity <= DEBUG")
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/logging"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := logging.NewProjectExclusion(ctx, "my-exclusion", &logging.ProjectExclusionArgs{
Name: pulumi.String("my-instance-debug-exclusion"),
Description: pulumi.String("Exclude GCE instance debug logs"),
Filter: pulumi.String("resource.type = gce_instance AND severity <= DEBUG"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var my_exclusion = new Gcp.Logging.ProjectExclusion("my-exclusion", new()
{
Name = "my-instance-debug-exclusion",
Description = "Exclude GCE instance debug logs",
Filter = "resource.type = gce_instance AND severity <= DEBUG",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.logging.ProjectExclusion;
import com.pulumi.gcp.logging.ProjectExclusionArgs;
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 ProjectExclusion("my-exclusion", ProjectExclusionArgs.builder()
.name("my-instance-debug-exclusion")
.description("Exclude GCE instance debug logs")
.filter("resource.type = gce_instance AND severity <= DEBUG")
.build());
}
}
resources:
my-exclusion:
type: gcp:logging:ProjectExclusion
properties:
name: my-instance-debug-exclusion
description: Exclude GCE instance debug logs
filter: resource.type = gce_instance AND severity <= DEBUG
Create ProjectExclusion Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ProjectExclusion(name: string, args: ProjectExclusionArgs, opts?: CustomResourceOptions);
@overload
def ProjectExclusion(resource_name: str,
args: ProjectExclusionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ProjectExclusion(resource_name: str,
opts: Optional[ResourceOptions] = None,
filter: Optional[str] = None,
description: Optional[str] = None,
disabled: Optional[bool] = None,
name: Optional[str] = None,
project: Optional[str] = None)
func NewProjectExclusion(ctx *Context, name string, args ProjectExclusionArgs, opts ...ResourceOption) (*ProjectExclusion, error)
public ProjectExclusion(string name, ProjectExclusionArgs args, CustomResourceOptions? opts = null)
public ProjectExclusion(String name, ProjectExclusionArgs args)
public ProjectExclusion(String name, ProjectExclusionArgs args, CustomResourceOptions options)
type: gcp:logging:ProjectExclusion
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ProjectExclusionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ProjectExclusionArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ProjectExclusionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ProjectExclusionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ProjectExclusionArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var projectExclusionResource = new Gcp.Logging.ProjectExclusion("projectExclusionResource", new()
{
Filter = "string",
Description = "string",
Disabled = false,
Name = "string",
Project = "string",
});
example, err := logging.NewProjectExclusion(ctx, "projectExclusionResource", &logging.ProjectExclusionArgs{
Filter: pulumi.String("string"),
Description: pulumi.String("string"),
Disabled: pulumi.Bool(false),
Name: pulumi.String("string"),
Project: pulumi.String("string"),
})
var projectExclusionResource = new ProjectExclusion("projectExclusionResource", ProjectExclusionArgs.builder()
.filter("string")
.description("string")
.disabled(false)
.name("string")
.project("string")
.build());
project_exclusion_resource = gcp.logging.ProjectExclusion("projectExclusionResource",
filter="string",
description="string",
disabled=False,
name="string",
project="string")
const projectExclusionResource = new gcp.logging.ProjectExclusion("projectExclusionResource", {
filter: "string",
description: "string",
disabled: false,
name: "string",
project: "string",
});
type: gcp:logging:ProjectExclusion
properties:
description: string
disabled: false
filter: string
name: string
project: string
ProjectExclusion Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The ProjectExclusion resource accepts the following input properties:
- Filter string
- 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.
- Description string
- A human-readable description.
- Disabled bool
- Whether this exclusion rule should be disabled or not. This defaults to false.
- Name string
- The name of the logging exclusion.
- Project string
- The project to create the exclusion in. If omitted, the project associated with the provider is used.
- Filter string
- 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.
- Description string
- A human-readable description.
- Disabled bool
- Whether this exclusion rule should be disabled or not. This defaults to false.
- Name string
- The name of the logging exclusion.
- Project string
- The project to create the exclusion in. If omitted, the project associated with the provider is used.
- filter String
- 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.
- description String
- A human-readable description.
- disabled Boolean
- Whether this exclusion rule should be disabled or not. This defaults to false.
- name String
- The name of the logging exclusion.
- project String
- The project to create the exclusion in. If omitted, the project associated with the provider is used.
- filter string
- 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.
- description string
- A human-readable description.
- disabled boolean
- Whether this exclusion rule should be disabled or not. This defaults to false.
- name string
- The name of the logging exclusion.
- project string
- The project to create the exclusion in. If omitted, the project associated with the provider is used.
- filter str
- 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.
- description str
- A human-readable description.
- disabled bool
- Whether this exclusion rule should be disabled or not. This defaults to false.
- name str
- The name of the logging exclusion.
- project str
- The project to create the exclusion in. If omitted, the project associated with the provider is used.
- filter String
- 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.
- description String
- A human-readable description.
- disabled Boolean
- Whether this exclusion rule should be disabled or not. This defaults to false.
- name String
- The name of the logging exclusion.
- project String
- The project to create the exclusion in. If omitted, the project associated with the provider is used.
Outputs
All input properties are implicitly available as output properties. Additionally, the ProjectExclusion resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing ProjectExclusion Resource
Get an existing ProjectExclusion resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ProjectExclusionState, opts?: CustomResourceOptions): ProjectExclusion
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
disabled: Optional[bool] = None,
filter: Optional[str] = None,
name: Optional[str] = None,
project: Optional[str] = None) -> ProjectExclusion
func GetProjectExclusion(ctx *Context, name string, id IDInput, state *ProjectExclusionState, opts ...ResourceOption) (*ProjectExclusion, error)
public static ProjectExclusion Get(string name, Input<string> id, ProjectExclusionState? state, CustomResourceOptions? opts = null)
public static ProjectExclusion get(String name, Output<String> id, ProjectExclusionState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Description string
- A human-readable description.
- Disabled bool
- Whether this exclusion rule should be disabled or not. This defaults to false.
- Filter string
- 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.
- Name string
- The name of the logging exclusion.
- Project string
- The project to create the exclusion in. If omitted, the project associated with the provider is used.
- Description string
- A human-readable description.
- Disabled bool
- Whether this exclusion rule should be disabled or not. This defaults to false.
- Filter string
- 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.
- Name string
- The name of the logging exclusion.
- Project string
- The project to create the exclusion in. If omitted, the project associated with the provider is used.
- description String
- A human-readable description.
- disabled Boolean
- Whether this exclusion rule should be disabled or not. This defaults to false.
- filter String
- 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.
- name String
- The name of the logging exclusion.
- project String
- The project to create the exclusion in. If omitted, the project associated with the provider is used.
- description string
- A human-readable description.
- disabled boolean
- Whether this exclusion rule should be disabled or not. This defaults to false.
- filter string
- 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.
- name string
- The name of the logging exclusion.
- project string
- The project to create the exclusion in. If omitted, the project associated with the provider is used.
- description str
- A human-readable description.
- disabled bool
- Whether this exclusion rule should be disabled or not. This defaults to false.
- filter str
- 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.
- name str
- The name of the logging exclusion.
- project str
- The project to create the exclusion in. If omitted, the project associated with the provider is used.
- description String
- A human-readable description.
- disabled Boolean
- Whether this exclusion rule should be disabled or not. This defaults to false.
- filter String
- 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.
- name String
- The name of the logging exclusion.
- project String
- The project to create the exclusion in. If omitted, the project associated with the provider is used.
Import
Project-level logging exclusions can be imported using their URI, e.g.
projects/{{project_id}}/exclusions/{{name}}
When using the pulumi import
command, project-level logging exclusions can be imported using one of the formats above. For example:
$ pulumi import gcp:logging/projectExclusion:ProjectExclusion default projects/{{project_id}}/exclusions/{{name}}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Google Cloud (GCP) Classic pulumi/pulumi-gcp
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
google-beta
Terraform Provider.