gcp.logging.ProjectSink
Explore with Pulumi AI
Import
Project-level logging sinks can be imported using their URI, e.g.
- projects/{{project_id}}/sinks/{{name}}
When using the pulumi import command, project-level logging sinks can be imported using one of the formats above. For example:
$ pulumi import gcp:logging/projectSink:ProjectSink default projects/{{project_id}}/sinks/{{name}}
Create ProjectSink Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ProjectSink(name: string, args: ProjectSinkArgs, opts?: CustomResourceOptions);@overload
def ProjectSink(resource_name: str,
                args: ProjectSinkArgs,
                opts: Optional[ResourceOptions] = None)
@overload
def ProjectSink(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                destination: Optional[str] = None,
                bigquery_options: Optional[ProjectSinkBigqueryOptionsArgs] = None,
                custom_writer_identity: Optional[str] = None,
                description: Optional[str] = None,
                disabled: Optional[bool] = None,
                exclusions: Optional[Sequence[ProjectSinkExclusionArgs]] = None,
                filter: Optional[str] = None,
                name: Optional[str] = None,
                project: Optional[str] = None,
                unique_writer_identity: Optional[bool] = None)func NewProjectSink(ctx *Context, name string, args ProjectSinkArgs, opts ...ResourceOption) (*ProjectSink, error)public ProjectSink(string name, ProjectSinkArgs args, CustomResourceOptions? opts = null)
public ProjectSink(String name, ProjectSinkArgs args)
public ProjectSink(String name, ProjectSinkArgs args, CustomResourceOptions options)
type: gcp:logging:ProjectSink
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 ProjectSinkArgs
- 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 ProjectSinkArgs
- 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 ProjectSinkArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ProjectSinkArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ProjectSinkArgs
- 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 projectSinkResource = new Gcp.Logging.ProjectSink("projectSinkResource", new()
{
    Destination = "string",
    BigqueryOptions = new Gcp.Logging.Inputs.ProjectSinkBigqueryOptionsArgs
    {
        UsePartitionedTables = false,
    },
    CustomWriterIdentity = "string",
    Description = "string",
    Disabled = false,
    Exclusions = new[]
    {
        new Gcp.Logging.Inputs.ProjectSinkExclusionArgs
        {
            Filter = "string",
            Name = "string",
            Description = "string",
            Disabled = false,
        },
    },
    Filter = "string",
    Name = "string",
    Project = "string",
    UniqueWriterIdentity = false,
});
example, err := logging.NewProjectSink(ctx, "projectSinkResource", &logging.ProjectSinkArgs{
	Destination: pulumi.String("string"),
	BigqueryOptions: &logging.ProjectSinkBigqueryOptionsArgs{
		UsePartitionedTables: pulumi.Bool(false),
	},
	CustomWriterIdentity: pulumi.String("string"),
	Description:          pulumi.String("string"),
	Disabled:             pulumi.Bool(false),
	Exclusions: logging.ProjectSinkExclusionArray{
		&logging.ProjectSinkExclusionArgs{
			Filter:      pulumi.String("string"),
			Name:        pulumi.String("string"),
			Description: pulumi.String("string"),
			Disabled:    pulumi.Bool(false),
		},
	},
	Filter:               pulumi.String("string"),
	Name:                 pulumi.String("string"),
	Project:              pulumi.String("string"),
	UniqueWriterIdentity: pulumi.Bool(false),
})
var projectSinkResource = new ProjectSink("projectSinkResource", ProjectSinkArgs.builder()
    .destination("string")
    .bigqueryOptions(ProjectSinkBigqueryOptionsArgs.builder()
        .usePartitionedTables(false)
        .build())
    .customWriterIdentity("string")
    .description("string")
    .disabled(false)
    .exclusions(ProjectSinkExclusionArgs.builder()
        .filter("string")
        .name("string")
        .description("string")
        .disabled(false)
        .build())
    .filter("string")
    .name("string")
    .project("string")
    .uniqueWriterIdentity(false)
    .build());
project_sink_resource = gcp.logging.ProjectSink("projectSinkResource",
    destination="string",
    bigquery_options={
        "use_partitioned_tables": False,
    },
    custom_writer_identity="string",
    description="string",
    disabled=False,
    exclusions=[{
        "filter": "string",
        "name": "string",
        "description": "string",
        "disabled": False,
    }],
    filter="string",
    name="string",
    project="string",
    unique_writer_identity=False)
const projectSinkResource = new gcp.logging.ProjectSink("projectSinkResource", {
    destination: "string",
    bigqueryOptions: {
        usePartitionedTables: false,
    },
    customWriterIdentity: "string",
    description: "string",
    disabled: false,
    exclusions: [{
        filter: "string",
        name: "string",
        description: "string",
        disabled: false,
    }],
    filter: "string",
    name: "string",
    project: "string",
    uniqueWriterIdentity: false,
});
type: gcp:logging:ProjectSink
properties:
    bigqueryOptions:
        usePartitionedTables: false
    customWriterIdentity: string
    description: string
    destination: string
    disabled: false
    exclusions:
        - description: string
          disabled: false
          filter: string
          name: string
    filter: string
    name: string
    project: string
    uniqueWriterIdentity: false
ProjectSink Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ProjectSink resource accepts the following input properties:
- Destination string
- The destination of the sink (or, in other words, where logs are written to). Can be a Cloud Storage bucket, a PubSub topic, a BigQuery dataset, a Cloud Logging bucket, or a Google Cloud project. Examples: - storage.googleapis.com/[GCS_BUCKET]
- bigquery.googleapis.com/projects/[PROJECT_ID]/datasets/[DATASET]
- pubsub.googleapis.com/projects/[PROJECT_ID]/topics/[TOPIC_ID]
- logging.googleapis.com/projects/[PROJECT_ID]/locations/global/buckets/[BUCKET_ID]
- logging.googleapis.com/projects/[PROJECT_ID]
 - The writer associated with the sink must have access to write to the above resource. 
- BigqueryOptions ProjectSink Bigquery Options 
- Options that affect sinks exporting data to BigQuery. Structure documented below.
- CustomWriter stringIdentity 
- A user managed service account that will be used to write
the log entries. The format must be serviceAccount:some@email. This field can only be specified if you are routing logs to a destination outside this sink's project. If not specified, a Logging service account will automatically be generated.
- Description string
- A description of this sink. The maximum length of the description is 8000 characters.
- Disabled bool
- If set to True, then this sink is disabled and it does not export any log entries.
- Exclusions
List<ProjectSink Exclusion> 
- Log entries that match any of the exclusion filters will not be exported. If a log entry is matched by both filterand one ofexclusions.filter, it will not be exported. Can be repeated multiple times for multiple exclusions. Structure is documented below.
- Filter string
- The filter to apply when exporting logs. Only log entries that match the filter are exported. See Advanced Log Filters for information on how to write a filter.
- Name string
- The name of the logging sink. Logging automatically creates two sinks: _Requiredand_Default.
- Project string
- The ID of the project to create the sink in. If omitted, the project associated with the provider is used.
- UniqueWriter boolIdentity 
- Whether or not to create a unique identity associated with this sink. If false, then thewriter_identityused isserviceAccount:cloud-logs@system.gserviceaccount.com. Iftrue(the default), then a unique service account is created and used for this sink. If you wish to publish logs across projects or utilizebigquery_options, you must setunique_writer_identityto true.
- Destination string
- The destination of the sink (or, in other words, where logs are written to). Can be a Cloud Storage bucket, a PubSub topic, a BigQuery dataset, a Cloud Logging bucket, or a Google Cloud project. Examples: - storage.googleapis.com/[GCS_BUCKET]
- bigquery.googleapis.com/projects/[PROJECT_ID]/datasets/[DATASET]
- pubsub.googleapis.com/projects/[PROJECT_ID]/topics/[TOPIC_ID]
- logging.googleapis.com/projects/[PROJECT_ID]/locations/global/buckets/[BUCKET_ID]
- logging.googleapis.com/projects/[PROJECT_ID]
 - The writer associated with the sink must have access to write to the above resource. 
- BigqueryOptions ProjectSink Bigquery Options Args 
- Options that affect sinks exporting data to BigQuery. Structure documented below.
- CustomWriter stringIdentity 
- A user managed service account that will be used to write
the log entries. The format must be serviceAccount:some@email. This field can only be specified if you are routing logs to a destination outside this sink's project. If not specified, a Logging service account will automatically be generated.
- Description string
- A description of this sink. The maximum length of the description is 8000 characters.
- Disabled bool
- If set to True, then this sink is disabled and it does not export any log entries.
- Exclusions
[]ProjectSink Exclusion Args 
- Log entries that match any of the exclusion filters will not be exported. If a log entry is matched by both filterand one ofexclusions.filter, it will not be exported. Can be repeated multiple times for multiple exclusions. Structure is documented below.
- Filter string
- The filter to apply when exporting logs. Only log entries that match the filter are exported. See Advanced Log Filters for information on how to write a filter.
- Name string
- The name of the logging sink. Logging automatically creates two sinks: _Requiredand_Default.
- Project string
- The ID of the project to create the sink in. If omitted, the project associated with the provider is used.
- UniqueWriter boolIdentity 
- Whether or not to create a unique identity associated with this sink. If false, then thewriter_identityused isserviceAccount:cloud-logs@system.gserviceaccount.com. Iftrue(the default), then a unique service account is created and used for this sink. If you wish to publish logs across projects or utilizebigquery_options, you must setunique_writer_identityto true.
- destination String
- The destination of the sink (or, in other words, where logs are written to). Can be a Cloud Storage bucket, a PubSub topic, a BigQuery dataset, a Cloud Logging bucket, or a Google Cloud project. Examples: - storage.googleapis.com/[GCS_BUCKET]
- bigquery.googleapis.com/projects/[PROJECT_ID]/datasets/[DATASET]
- pubsub.googleapis.com/projects/[PROJECT_ID]/topics/[TOPIC_ID]
- logging.googleapis.com/projects/[PROJECT_ID]/locations/global/buckets/[BUCKET_ID]
- logging.googleapis.com/projects/[PROJECT_ID]
 - The writer associated with the sink must have access to write to the above resource. 
- bigqueryOptions ProjectSink Bigquery Options 
- Options that affect sinks exporting data to BigQuery. Structure documented below.
- customWriter StringIdentity 
- A user managed service account that will be used to write
the log entries. The format must be serviceAccount:some@email. This field can only be specified if you are routing logs to a destination outside this sink's project. If not specified, a Logging service account will automatically be generated.
- description String
- A description of this sink. The maximum length of the description is 8000 characters.
- disabled Boolean
- If set to True, then this sink is disabled and it does not export any log entries.
- exclusions
List<ProjectSink Exclusion> 
- Log entries that match any of the exclusion filters will not be exported. If a log entry is matched by both filterand one ofexclusions.filter, it will not be exported. Can be repeated multiple times for multiple exclusions. Structure is documented below.
- filter String
- The filter to apply when exporting logs. Only log entries that match the filter are exported. See Advanced Log Filters for information on how to write a filter.
- name String
- The name of the logging sink. Logging automatically creates two sinks: _Requiredand_Default.
- project String
- The ID of the project to create the sink in. If omitted, the project associated with the provider is used.
- uniqueWriter BooleanIdentity 
- Whether or not to create a unique identity associated with this sink. If false, then thewriter_identityused isserviceAccount:cloud-logs@system.gserviceaccount.com. Iftrue(the default), then a unique service account is created and used for this sink. If you wish to publish logs across projects or utilizebigquery_options, you must setunique_writer_identityto true.
- destination string
- The destination of the sink (or, in other words, where logs are written to). Can be a Cloud Storage bucket, a PubSub topic, a BigQuery dataset, a Cloud Logging bucket, or a Google Cloud project. Examples: - storage.googleapis.com/[GCS_BUCKET]
- bigquery.googleapis.com/projects/[PROJECT_ID]/datasets/[DATASET]
- pubsub.googleapis.com/projects/[PROJECT_ID]/topics/[TOPIC_ID]
- logging.googleapis.com/projects/[PROJECT_ID]/locations/global/buckets/[BUCKET_ID]
- logging.googleapis.com/projects/[PROJECT_ID]
 - The writer associated with the sink must have access to write to the above resource. 
- bigqueryOptions ProjectSink Bigquery Options 
- Options that affect sinks exporting data to BigQuery. Structure documented below.
- customWriter stringIdentity 
- A user managed service account that will be used to write
the log entries. The format must be serviceAccount:some@email. This field can only be specified if you are routing logs to a destination outside this sink's project. If not specified, a Logging service account will automatically be generated.
- description string
- A description of this sink. The maximum length of the description is 8000 characters.
- disabled boolean
- If set to True, then this sink is disabled and it does not export any log entries.
- exclusions
ProjectSink Exclusion[] 
- Log entries that match any of the exclusion filters will not be exported. If a log entry is matched by both filterand one ofexclusions.filter, it will not be exported. Can be repeated multiple times for multiple exclusions. Structure is documented below.
- filter string
- The filter to apply when exporting logs. Only log entries that match the filter are exported. See Advanced Log Filters for information on how to write a filter.
- name string
- The name of the logging sink. Logging automatically creates two sinks: _Requiredand_Default.
- project string
- The ID of the project to create the sink in. If omitted, the project associated with the provider is used.
- uniqueWriter booleanIdentity 
- Whether or not to create a unique identity associated with this sink. If false, then thewriter_identityused isserviceAccount:cloud-logs@system.gserviceaccount.com. Iftrue(the default), then a unique service account is created and used for this sink. If you wish to publish logs across projects or utilizebigquery_options, you must setunique_writer_identityto true.
- destination str
- The destination of the sink (or, in other words, where logs are written to). Can be a Cloud Storage bucket, a PubSub topic, a BigQuery dataset, a Cloud Logging bucket, or a Google Cloud project. Examples: - storage.googleapis.com/[GCS_BUCKET]
- bigquery.googleapis.com/projects/[PROJECT_ID]/datasets/[DATASET]
- pubsub.googleapis.com/projects/[PROJECT_ID]/topics/[TOPIC_ID]
- logging.googleapis.com/projects/[PROJECT_ID]/locations/global/buckets/[BUCKET_ID]
- logging.googleapis.com/projects/[PROJECT_ID]
 - The writer associated with the sink must have access to write to the above resource. 
- bigquery_options ProjectSink Bigquery Options Args 
- Options that affect sinks exporting data to BigQuery. Structure documented below.
- custom_writer_ stridentity 
- A user managed service account that will be used to write
the log entries. The format must be serviceAccount:some@email. This field can only be specified if you are routing logs to a destination outside this sink's project. If not specified, a Logging service account will automatically be generated.
- description str
- A description of this sink. The maximum length of the description is 8000 characters.
- disabled bool
- If set to True, then this sink is disabled and it does not export any log entries.
- exclusions
Sequence[ProjectSink Exclusion Args] 
- Log entries that match any of the exclusion filters will not be exported. If a log entry is matched by both filterand one ofexclusions.filter, it will not be exported. Can be repeated multiple times for multiple exclusions. Structure is documented below.
- filter str
- The filter to apply when exporting logs. Only log entries that match the filter are exported. See Advanced Log Filters for information on how to write a filter.
- name str
- The name of the logging sink. Logging automatically creates two sinks: _Requiredand_Default.
- project str
- The ID of the project to create the sink in. If omitted, the project associated with the provider is used.
- unique_writer_ boolidentity 
- Whether or not to create a unique identity associated with this sink. If false, then thewriter_identityused isserviceAccount:cloud-logs@system.gserviceaccount.com. Iftrue(the default), then a unique service account is created and used for this sink. If you wish to publish logs across projects or utilizebigquery_options, you must setunique_writer_identityto true.
- destination String
- The destination of the sink (or, in other words, where logs are written to). Can be a Cloud Storage bucket, a PubSub topic, a BigQuery dataset, a Cloud Logging bucket, or a Google Cloud project. Examples: - storage.googleapis.com/[GCS_BUCKET]
- bigquery.googleapis.com/projects/[PROJECT_ID]/datasets/[DATASET]
- pubsub.googleapis.com/projects/[PROJECT_ID]/topics/[TOPIC_ID]
- logging.googleapis.com/projects/[PROJECT_ID]/locations/global/buckets/[BUCKET_ID]
- logging.googleapis.com/projects/[PROJECT_ID]
 - The writer associated with the sink must have access to write to the above resource. 
- bigqueryOptions Property Map
- Options that affect sinks exporting data to BigQuery. Structure documented below.
- customWriter StringIdentity 
- A user managed service account that will be used to write
the log entries. The format must be serviceAccount:some@email. This field can only be specified if you are routing logs to a destination outside this sink's project. If not specified, a Logging service account will automatically be generated.
- description String
- A description of this sink. The maximum length of the description is 8000 characters.
- disabled Boolean
- If set to True, then this sink is disabled and it does not export any log entries.
- exclusions List<Property Map>
- Log entries that match any of the exclusion filters will not be exported. If a log entry is matched by both filterand one ofexclusions.filter, it will not be exported. Can be repeated multiple times for multiple exclusions. Structure is documented below.
- filter String
- The filter to apply when exporting logs. Only log entries that match the filter are exported. See Advanced Log Filters for information on how to write a filter.
- name String
- The name of the logging sink. Logging automatically creates two sinks: _Requiredand_Default.
- project String
- The ID of the project to create the sink in. If omitted, the project associated with the provider is used.
- uniqueWriter BooleanIdentity 
- Whether or not to create a unique identity associated with this sink. If false, then thewriter_identityused isserviceAccount:cloud-logs@system.gserviceaccount.com. Iftrue(the default), then a unique service account is created and used for this sink. If you wish to publish logs across projects or utilizebigquery_options, you must setunique_writer_identityto true.
Outputs
All input properties are implicitly available as output properties. Additionally, the ProjectSink resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- WriterIdentity string
- The identity associated with this sink. This identity must be granted write access to the
configured destination.
- Id string
- The provider-assigned unique ID for this managed resource.
- WriterIdentity string
- The identity associated with this sink. This identity must be granted write access to the
configured destination.
- id String
- The provider-assigned unique ID for this managed resource.
- writerIdentity String
- The identity associated with this sink. This identity must be granted write access to the
configured destination.
- id string
- The provider-assigned unique ID for this managed resource.
- writerIdentity string
- The identity associated with this sink. This identity must be granted write access to the
configured destination.
- id str
- The provider-assigned unique ID for this managed resource.
- writer_identity str
- The identity associated with this sink. This identity must be granted write access to the
configured destination.
- id String
- The provider-assigned unique ID for this managed resource.
- writerIdentity String
- The identity associated with this sink. This identity must be granted write access to the
configured destination.
Look up Existing ProjectSink Resource
Get an existing ProjectSink 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?: ProjectSinkState, opts?: CustomResourceOptions): ProjectSink@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        bigquery_options: Optional[ProjectSinkBigqueryOptionsArgs] = None,
        custom_writer_identity: Optional[str] = None,
        description: Optional[str] = None,
        destination: Optional[str] = None,
        disabled: Optional[bool] = None,
        exclusions: Optional[Sequence[ProjectSinkExclusionArgs]] = None,
        filter: Optional[str] = None,
        name: Optional[str] = None,
        project: Optional[str] = None,
        unique_writer_identity: Optional[bool] = None,
        writer_identity: Optional[str] = None) -> ProjectSinkfunc GetProjectSink(ctx *Context, name string, id IDInput, state *ProjectSinkState, opts ...ResourceOption) (*ProjectSink, error)public static ProjectSink Get(string name, Input<string> id, ProjectSinkState? state, CustomResourceOptions? opts = null)public static ProjectSink get(String name, Output<String> id, ProjectSinkState state, CustomResourceOptions options)resources:  _:    type: gcp:logging:ProjectSink    get:      id: ${id}- 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.
- BigqueryOptions ProjectSink Bigquery Options 
- Options that affect sinks exporting data to BigQuery. Structure documented below.
- CustomWriter stringIdentity 
- A user managed service account that will be used to write
the log entries. The format must be serviceAccount:some@email. This field can only be specified if you are routing logs to a destination outside this sink's project. If not specified, a Logging service account will automatically be generated.
- Description string
- A description of this sink. The maximum length of the description is 8000 characters.
- Destination string
- The destination of the sink (or, in other words, where logs are written to). Can be a Cloud Storage bucket, a PubSub topic, a BigQuery dataset, a Cloud Logging bucket, or a Google Cloud project. Examples: - storage.googleapis.com/[GCS_BUCKET]
- bigquery.googleapis.com/projects/[PROJECT_ID]/datasets/[DATASET]
- pubsub.googleapis.com/projects/[PROJECT_ID]/topics/[TOPIC_ID]
- logging.googleapis.com/projects/[PROJECT_ID]/locations/global/buckets/[BUCKET_ID]
- logging.googleapis.com/projects/[PROJECT_ID]
 - The writer associated with the sink must have access to write to the above resource. 
- Disabled bool
- If set to True, then this sink is disabled and it does not export any log entries.
- Exclusions
List<ProjectSink Exclusion> 
- Log entries that match any of the exclusion filters will not be exported. If a log entry is matched by both filterand one ofexclusions.filter, it will not be exported. Can be repeated multiple times for multiple exclusions. Structure is documented below.
- Filter string
- The filter to apply when exporting logs. Only log entries that match the filter are exported. See Advanced Log Filters for information on how to write a filter.
- Name string
- The name of the logging sink. Logging automatically creates two sinks: _Requiredand_Default.
- Project string
- The ID of the project to create the sink in. If omitted, the project associated with the provider is used.
- UniqueWriter boolIdentity 
- Whether or not to create a unique identity associated with this sink. If false, then thewriter_identityused isserviceAccount:cloud-logs@system.gserviceaccount.com. Iftrue(the default), then a unique service account is created and used for this sink. If you wish to publish logs across projects or utilizebigquery_options, you must setunique_writer_identityto true.
- WriterIdentity string
- The identity associated with this sink. This identity must be granted write access to the
configured destination.
- BigqueryOptions ProjectSink Bigquery Options Args 
- Options that affect sinks exporting data to BigQuery. Structure documented below.
- CustomWriter stringIdentity 
- A user managed service account that will be used to write
the log entries. The format must be serviceAccount:some@email. This field can only be specified if you are routing logs to a destination outside this sink's project. If not specified, a Logging service account will automatically be generated.
- Description string
- A description of this sink. The maximum length of the description is 8000 characters.
- Destination string
- The destination of the sink (or, in other words, where logs are written to). Can be a Cloud Storage bucket, a PubSub topic, a BigQuery dataset, a Cloud Logging bucket, or a Google Cloud project. Examples: - storage.googleapis.com/[GCS_BUCKET]
- bigquery.googleapis.com/projects/[PROJECT_ID]/datasets/[DATASET]
- pubsub.googleapis.com/projects/[PROJECT_ID]/topics/[TOPIC_ID]
- logging.googleapis.com/projects/[PROJECT_ID]/locations/global/buckets/[BUCKET_ID]
- logging.googleapis.com/projects/[PROJECT_ID]
 - The writer associated with the sink must have access to write to the above resource. 
- Disabled bool
- If set to True, then this sink is disabled and it does not export any log entries.
- Exclusions
[]ProjectSink Exclusion Args 
- Log entries that match any of the exclusion filters will not be exported. If a log entry is matched by both filterand one ofexclusions.filter, it will not be exported. Can be repeated multiple times for multiple exclusions. Structure is documented below.
- Filter string
- The filter to apply when exporting logs. Only log entries that match the filter are exported. See Advanced Log Filters for information on how to write a filter.
- Name string
- The name of the logging sink. Logging automatically creates two sinks: _Requiredand_Default.
- Project string
- The ID of the project to create the sink in. If omitted, the project associated with the provider is used.
- UniqueWriter boolIdentity 
- Whether or not to create a unique identity associated with this sink. If false, then thewriter_identityused isserviceAccount:cloud-logs@system.gserviceaccount.com. Iftrue(the default), then a unique service account is created and used for this sink. If you wish to publish logs across projects or utilizebigquery_options, you must setunique_writer_identityto true.
- WriterIdentity string
- The identity associated with this sink. This identity must be granted write access to the
configured destination.
- bigqueryOptions ProjectSink Bigquery Options 
- Options that affect sinks exporting data to BigQuery. Structure documented below.
- customWriter StringIdentity 
- A user managed service account that will be used to write
the log entries. The format must be serviceAccount:some@email. This field can only be specified if you are routing logs to a destination outside this sink's project. If not specified, a Logging service account will automatically be generated.
- description String
- A description of this sink. The maximum length of the description is 8000 characters.
- destination String
- The destination of the sink (or, in other words, where logs are written to). Can be a Cloud Storage bucket, a PubSub topic, a BigQuery dataset, a Cloud Logging bucket, or a Google Cloud project. Examples: - storage.googleapis.com/[GCS_BUCKET]
- bigquery.googleapis.com/projects/[PROJECT_ID]/datasets/[DATASET]
- pubsub.googleapis.com/projects/[PROJECT_ID]/topics/[TOPIC_ID]
- logging.googleapis.com/projects/[PROJECT_ID]/locations/global/buckets/[BUCKET_ID]
- logging.googleapis.com/projects/[PROJECT_ID]
 - The writer associated with the sink must have access to write to the above resource. 
- disabled Boolean
- If set to True, then this sink is disabled and it does not export any log entries.
- exclusions
List<ProjectSink Exclusion> 
- Log entries that match any of the exclusion filters will not be exported. If a log entry is matched by both filterand one ofexclusions.filter, it will not be exported. Can be repeated multiple times for multiple exclusions. Structure is documented below.
- filter String
- The filter to apply when exporting logs. Only log entries that match the filter are exported. See Advanced Log Filters for information on how to write a filter.
- name String
- The name of the logging sink. Logging automatically creates two sinks: _Requiredand_Default.
- project String
- The ID of the project to create the sink in. If omitted, the project associated with the provider is used.
- uniqueWriter BooleanIdentity 
- Whether or not to create a unique identity associated with this sink. If false, then thewriter_identityused isserviceAccount:cloud-logs@system.gserviceaccount.com. Iftrue(the default), then a unique service account is created and used for this sink. If you wish to publish logs across projects or utilizebigquery_options, you must setunique_writer_identityto true.
- writerIdentity String
- The identity associated with this sink. This identity must be granted write access to the
configured destination.
- bigqueryOptions ProjectSink Bigquery Options 
- Options that affect sinks exporting data to BigQuery. Structure documented below.
- customWriter stringIdentity 
- A user managed service account that will be used to write
the log entries. The format must be serviceAccount:some@email. This field can only be specified if you are routing logs to a destination outside this sink's project. If not specified, a Logging service account will automatically be generated.
- description string
- A description of this sink. The maximum length of the description is 8000 characters.
- destination string
- The destination of the sink (or, in other words, where logs are written to). Can be a Cloud Storage bucket, a PubSub topic, a BigQuery dataset, a Cloud Logging bucket, or a Google Cloud project. Examples: - storage.googleapis.com/[GCS_BUCKET]
- bigquery.googleapis.com/projects/[PROJECT_ID]/datasets/[DATASET]
- pubsub.googleapis.com/projects/[PROJECT_ID]/topics/[TOPIC_ID]
- logging.googleapis.com/projects/[PROJECT_ID]/locations/global/buckets/[BUCKET_ID]
- logging.googleapis.com/projects/[PROJECT_ID]
 - The writer associated with the sink must have access to write to the above resource. 
- disabled boolean
- If set to True, then this sink is disabled and it does not export any log entries.
- exclusions
ProjectSink Exclusion[] 
- Log entries that match any of the exclusion filters will not be exported. If a log entry is matched by both filterand one ofexclusions.filter, it will not be exported. Can be repeated multiple times for multiple exclusions. Structure is documented below.
- filter string
- The filter to apply when exporting logs. Only log entries that match the filter are exported. See Advanced Log Filters for information on how to write a filter.
- name string
- The name of the logging sink. Logging automatically creates two sinks: _Requiredand_Default.
- project string
- The ID of the project to create the sink in. If omitted, the project associated with the provider is used.
- uniqueWriter booleanIdentity 
- Whether or not to create a unique identity associated with this sink. If false, then thewriter_identityused isserviceAccount:cloud-logs@system.gserviceaccount.com. Iftrue(the default), then a unique service account is created and used for this sink. If you wish to publish logs across projects or utilizebigquery_options, you must setunique_writer_identityto true.
- writerIdentity string
- The identity associated with this sink. This identity must be granted write access to the
configured destination.
- bigquery_options ProjectSink Bigquery Options Args 
- Options that affect sinks exporting data to BigQuery. Structure documented below.
- custom_writer_ stridentity 
- A user managed service account that will be used to write
the log entries. The format must be serviceAccount:some@email. This field can only be specified if you are routing logs to a destination outside this sink's project. If not specified, a Logging service account will automatically be generated.
- description str
- A description of this sink. The maximum length of the description is 8000 characters.
- destination str
- The destination of the sink (or, in other words, where logs are written to). Can be a Cloud Storage bucket, a PubSub topic, a BigQuery dataset, a Cloud Logging bucket, or a Google Cloud project. Examples: - storage.googleapis.com/[GCS_BUCKET]
- bigquery.googleapis.com/projects/[PROJECT_ID]/datasets/[DATASET]
- pubsub.googleapis.com/projects/[PROJECT_ID]/topics/[TOPIC_ID]
- logging.googleapis.com/projects/[PROJECT_ID]/locations/global/buckets/[BUCKET_ID]
- logging.googleapis.com/projects/[PROJECT_ID]
 - The writer associated with the sink must have access to write to the above resource. 
- disabled bool
- If set to True, then this sink is disabled and it does not export any log entries.
- exclusions
Sequence[ProjectSink Exclusion Args] 
- Log entries that match any of the exclusion filters will not be exported. If a log entry is matched by both filterand one ofexclusions.filter, it will not be exported. Can be repeated multiple times for multiple exclusions. Structure is documented below.
- filter str
- The filter to apply when exporting logs. Only log entries that match the filter are exported. See Advanced Log Filters for information on how to write a filter.
- name str
- The name of the logging sink. Logging automatically creates two sinks: _Requiredand_Default.
- project str
- The ID of the project to create the sink in. If omitted, the project associated with the provider is used.
- unique_writer_ boolidentity 
- Whether or not to create a unique identity associated with this sink. If false, then thewriter_identityused isserviceAccount:cloud-logs@system.gserviceaccount.com. Iftrue(the default), then a unique service account is created and used for this sink. If you wish to publish logs across projects or utilizebigquery_options, you must setunique_writer_identityto true.
- writer_identity str
- The identity associated with this sink. This identity must be granted write access to the
configured destination.
- bigqueryOptions Property Map
- Options that affect sinks exporting data to BigQuery. Structure documented below.
- customWriter StringIdentity 
- A user managed service account that will be used to write
the log entries. The format must be serviceAccount:some@email. This field can only be specified if you are routing logs to a destination outside this sink's project. If not specified, a Logging service account will automatically be generated.
- description String
- A description of this sink. The maximum length of the description is 8000 characters.
- destination String
- The destination of the sink (or, in other words, where logs are written to). Can be a Cloud Storage bucket, a PubSub topic, a BigQuery dataset, a Cloud Logging bucket, or a Google Cloud project. Examples: - storage.googleapis.com/[GCS_BUCKET]
- bigquery.googleapis.com/projects/[PROJECT_ID]/datasets/[DATASET]
- pubsub.googleapis.com/projects/[PROJECT_ID]/topics/[TOPIC_ID]
- logging.googleapis.com/projects/[PROJECT_ID]/locations/global/buckets/[BUCKET_ID]
- logging.googleapis.com/projects/[PROJECT_ID]
 - The writer associated with the sink must have access to write to the above resource. 
- disabled Boolean
- If set to True, then this sink is disabled and it does not export any log entries.
- exclusions List<Property Map>
- Log entries that match any of the exclusion filters will not be exported. If a log entry is matched by both filterand one ofexclusions.filter, it will not be exported. Can be repeated multiple times for multiple exclusions. Structure is documented below.
- filter String
- The filter to apply when exporting logs. Only log entries that match the filter are exported. See Advanced Log Filters for information on how to write a filter.
- name String
- The name of the logging sink. Logging automatically creates two sinks: _Requiredand_Default.
- project String
- The ID of the project to create the sink in. If omitted, the project associated with the provider is used.
- uniqueWriter BooleanIdentity 
- Whether or not to create a unique identity associated with this sink. If false, then thewriter_identityused isserviceAccount:cloud-logs@system.gserviceaccount.com. Iftrue(the default), then a unique service account is created and used for this sink. If you wish to publish logs across projects or utilizebigquery_options, you must setunique_writer_identityto true.
- writerIdentity String
- The identity associated with this sink. This identity must be granted write access to the
configured destination.
Supporting Types
ProjectSinkBigqueryOptions, ProjectSinkBigqueryOptionsArgs        
- UsePartitioned boolTables 
- Whether to use BigQuery's partition tables.
By default, Logging creates dated tables based on the log entries' timestamps, e.g. syslog_20170523. With partitioned tables the date suffix is no longer present and special query syntax has to be used instead. In both cases, tables are sharded based on UTC timezone.
- UsePartitioned boolTables 
- Whether to use BigQuery's partition tables.
By default, Logging creates dated tables based on the log entries' timestamps, e.g. syslog_20170523. With partitioned tables the date suffix is no longer present and special query syntax has to be used instead. In both cases, tables are sharded based on UTC timezone.
- usePartitioned BooleanTables 
- Whether to use BigQuery's partition tables.
By default, Logging creates dated tables based on the log entries' timestamps, e.g. syslog_20170523. With partitioned tables the date suffix is no longer present and special query syntax has to be used instead. In both cases, tables are sharded based on UTC timezone.
- usePartitioned booleanTables 
- Whether to use BigQuery's partition tables.
By default, Logging creates dated tables based on the log entries' timestamps, e.g. syslog_20170523. With partitioned tables the date suffix is no longer present and special query syntax has to be used instead. In both cases, tables are sharded based on UTC timezone.
- use_partitioned_ booltables 
- Whether to use BigQuery's partition tables.
By default, Logging creates dated tables based on the log entries' timestamps, e.g. syslog_20170523. With partitioned tables the date suffix is no longer present and special query syntax has to be used instead. In both cases, tables are sharded based on UTC timezone.
- usePartitioned BooleanTables 
- Whether to use BigQuery's partition tables.
By default, Logging creates dated tables based on the log entries' timestamps, e.g. syslog_20170523. With partitioned tables the date suffix is no longer present and special query syntax has to be used instead. In both cases, tables are sharded based on UTC timezone.
ProjectSinkExclusion, ProjectSinkExclusionArgs      
- Filter string
- An advanced logs filter that matches the log entries to be excluded. By using the sample function, you can exclude less than 100% of the matching log entries. See Advanced Log Filters for information on how to write a filter.
- Name string
- A client-assigned identifier, such as load-balancer-exclusion. Identifiers are limited to 100 characters and can include only letters, digits, underscores, hyphens, and periods. First character has to be alphanumeric.
- Description string
- A description of this exclusion.
- Disabled bool
- If set to True, then this exclusion is disabled and it does not exclude any log entries.
- Filter string
- An advanced logs filter that matches the log entries to be excluded. By using the sample function, you can exclude less than 100% of the matching log entries. See Advanced Log Filters for information on how to write a filter.
- Name string
- A client-assigned identifier, such as load-balancer-exclusion. Identifiers are limited to 100 characters and can include only letters, digits, underscores, hyphens, and periods. First character has to be alphanumeric.
- Description string
- A description of this exclusion.
- Disabled bool
- If set to True, then this exclusion is disabled and it does not exclude any log entries.
- filter String
- An advanced logs filter that matches the log entries to be excluded. By using the sample function, you can exclude less than 100% of the matching log entries. See Advanced Log Filters for information on how to write a filter.
- name String
- A client-assigned identifier, such as load-balancer-exclusion. Identifiers are limited to 100 characters and can include only letters, digits, underscores, hyphens, and periods. First character has to be alphanumeric.
- description String
- A description of this exclusion.
- disabled Boolean
- If set to True, then this exclusion is disabled and it does not exclude any log entries.
- filter string
- An advanced logs filter that matches the log entries to be excluded. By using the sample function, you can exclude less than 100% of the matching log entries. See Advanced Log Filters for information on how to write a filter.
- name string
- A client-assigned identifier, such as load-balancer-exclusion. Identifiers are limited to 100 characters and can include only letters, digits, underscores, hyphens, and periods. First character has to be alphanumeric.
- description string
- A description of this exclusion.
- disabled boolean
- If set to True, then this exclusion is disabled and it does not exclude any log entries.
- filter str
- An advanced logs filter that matches the log entries to be excluded. By using the sample function, you can exclude less than 100% of the matching log entries. See Advanced Log Filters for information on how to write a filter.
- name str
- A client-assigned identifier, such as load-balancer-exclusion. Identifiers are limited to 100 characters and can include only letters, digits, underscores, hyphens, and periods. First character has to be alphanumeric.
- description str
- A description of this exclusion.
- disabled bool
- If set to True, then this exclusion is disabled and it does not exclude any log entries.
- filter String
- An advanced logs filter that matches the log entries to be excluded. By using the sample function, you can exclude less than 100% of the matching log entries. See Advanced Log Filters for information on how to write a filter.
- name String
- A client-assigned identifier, such as load-balancer-exclusion. Identifiers are limited to 100 characters and can include only letters, digits, underscores, hyphens, and periods. First character has to be alphanumeric.
- description String
- A description of this exclusion.
- disabled Boolean
- If set to True, then this exclusion is disabled and it does not exclude any log entries.
Package Details
- Repository
- Google Cloud (GCP) Classic pulumi/pulumi-gcp
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the google-betaTerraform Provider.