gcp.securitycenter.V2ProjectSccBigQueryExport
Explore with Pulumi AI
A Cloud Security Command Center (Cloud SCC) Big Query Export Config. It represents exporting Security Command Center data, including assets, findings, and security marks using gcloud scc bqexports
Note: In order to use Cloud SCC resources, your organization must be enrolled in SCC Standard/Premium. Without doing so, you may run into errors during resource creation.
To get more information about ProjectSccBigQueryExport, see:
- API documentation
- How-to Guides
Example Usage
Scc V2 Project Big Query Export Config Basic
Coming soon!
Coming soon!
Coming soon!
Coming soon!
Coming soon!
resources:
  default:
    type: gcp:bigquery:Dataset
    properties:
      datasetId: my_dataset_id
      friendlyName: test
      description: This is a test description
      location: US
      defaultTableExpirationMs: 3.6e+06
      defaultPartitionExpirationMs: null
      labels:
        env: default
  customBigQueryExportConfig:
    type: gcp:securitycenter:V2ProjectSccBigQueryExport
    name: custom_big_query_export_config
    properties:
      name: my-export
      bigQueryExportId: my-export
      project: my-project-name
      dataset: ${default.id}
      location: global
      description: Cloud Security Command Center Findings Big Query Export Config
      filter: state="ACTIVE" AND NOT mute="MUTED"
Create V2ProjectSccBigQueryExport Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new V2ProjectSccBigQueryExport(name: string, args: V2ProjectSccBigQueryExportArgs, opts?: CustomResourceOptions);@overload
def V2ProjectSccBigQueryExport(resource_name: str,
                               args: V2ProjectSccBigQueryExportArgs,
                               opts: Optional[ResourceOptions] = None)
@overload
def V2ProjectSccBigQueryExport(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               big_query_export_id: Optional[str] = None,
                               dataset: Optional[str] = None,
                               description: Optional[str] = None,
                               filter: Optional[str] = None,
                               location: Optional[str] = None,
                               project: Optional[str] = None)func NewV2ProjectSccBigQueryExport(ctx *Context, name string, args V2ProjectSccBigQueryExportArgs, opts ...ResourceOption) (*V2ProjectSccBigQueryExport, error)public V2ProjectSccBigQueryExport(string name, V2ProjectSccBigQueryExportArgs args, CustomResourceOptions? opts = null)
public V2ProjectSccBigQueryExport(String name, V2ProjectSccBigQueryExportArgs args)
public V2ProjectSccBigQueryExport(String name, V2ProjectSccBigQueryExportArgs args, CustomResourceOptions options)
type: gcp:securitycenter:V2ProjectSccBigQueryExport
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 V2ProjectSccBigQueryExportArgs
- 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 V2ProjectSccBigQueryExportArgs
- 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 V2ProjectSccBigQueryExportArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args V2ProjectSccBigQueryExportArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args V2ProjectSccBigQueryExportArgs
- 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 v2projectSccBigQueryExportResource = new Gcp.SecurityCenter.V2ProjectSccBigQueryExport("v2projectSccBigQueryExportResource", new()
{
    BigQueryExportId = "string",
    Dataset = "string",
    Description = "string",
    Filter = "string",
    Location = "string",
    Project = "string",
});
example, err := securitycenter.NewV2ProjectSccBigQueryExport(ctx, "v2projectSccBigQueryExportResource", &securitycenter.V2ProjectSccBigQueryExportArgs{
	BigQueryExportId: pulumi.String("string"),
	Dataset:          pulumi.String("string"),
	Description:      pulumi.String("string"),
	Filter:           pulumi.String("string"),
	Location:         pulumi.String("string"),
	Project:          pulumi.String("string"),
})
var v2projectSccBigQueryExportResource = new V2ProjectSccBigQueryExport("v2projectSccBigQueryExportResource", V2ProjectSccBigQueryExportArgs.builder()
    .bigQueryExportId("string")
    .dataset("string")
    .description("string")
    .filter("string")
    .location("string")
    .project("string")
    .build());
v2project_scc_big_query_export_resource = gcp.securitycenter.V2ProjectSccBigQueryExport("v2projectSccBigQueryExportResource",
    big_query_export_id="string",
    dataset="string",
    description="string",
    filter="string",
    location="string",
    project="string")
const v2projectSccBigQueryExportResource = new gcp.securitycenter.V2ProjectSccBigQueryExport("v2projectSccBigQueryExportResource", {
    bigQueryExportId: "string",
    dataset: "string",
    description: "string",
    filter: "string",
    location: "string",
    project: "string",
});
type: gcp:securitycenter:V2ProjectSccBigQueryExport
properties:
    bigQueryExportId: string
    dataset: string
    description: string
    filter: string
    location: string
    project: string
V2ProjectSccBigQueryExport 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 V2ProjectSccBigQueryExport resource accepts the following input properties:
- BigQuery stringExport Id 
- This must be unique within the organization.
- Dataset string
- The dataset to write findings' updates to. Its format is "projects/[projectId]/datasets/[bigquery_dataset_id]". BigQuery Dataset unique ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_).
- Description string
- The description of the notification config (max of 1024 characters).
- Filter string
- Expression that defines the filter to apply across create/update events of findings. The expression is a list of zero or more restrictions combined via logical operators AND and OR. Parentheses are supported, and OR has higher precedence than AND. Restrictions have the form and may have a - character in front of them to indicate negation. The fields map to those defined in the corresponding resource. The supported operators are: - = for all value types.
- , <, >=, <= for integer values. 
- :, meaning substring matching, for strings. The supported value types are:
- string literals in quotes.
- integer literals without quotes.
- boolean literals true and false without quotes. See Filtering notifications for information on how to write a filter.
 
- Location string
- location Id is provided by organization. If not provided, Use global as default.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- BigQuery stringExport Id 
- This must be unique within the organization.
- Dataset string
- The dataset to write findings' updates to. Its format is "projects/[projectId]/datasets/[bigquery_dataset_id]". BigQuery Dataset unique ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_).
- Description string
- The description of the notification config (max of 1024 characters).
- Filter string
- Expression that defines the filter to apply across create/update events of findings. The expression is a list of zero or more restrictions combined via logical operators AND and OR. Parentheses are supported, and OR has higher precedence than AND. Restrictions have the form and may have a - character in front of them to indicate negation. The fields map to those defined in the corresponding resource. The supported operators are: - = for all value types.
- , <, >=, <= for integer values. 
- :, meaning substring matching, for strings. The supported value types are:
- string literals in quotes.
- integer literals without quotes.
- boolean literals true and false without quotes. See Filtering notifications for information on how to write a filter.
 
- Location string
- location Id is provided by organization. If not provided, Use global as default.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- bigQuery StringExport Id 
- This must be unique within the organization.
- dataset String
- The dataset to write findings' updates to. Its format is "projects/[projectId]/datasets/[bigquery_dataset_id]". BigQuery Dataset unique ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_).
- description String
- The description of the notification config (max of 1024 characters).
- filter String
- Expression that defines the filter to apply across create/update events of findings. The expression is a list of zero or more restrictions combined via logical operators AND and OR. Parentheses are supported, and OR has higher precedence than AND. Restrictions have the form and may have a - character in front of them to indicate negation. The fields map to those defined in the corresponding resource. The supported operators are: - = for all value types.
- , <, >=, <= for integer values. 
- :, meaning substring matching, for strings. The supported value types are:
- string literals in quotes.
- integer literals without quotes.
- boolean literals true and false without quotes. See Filtering notifications for information on how to write a filter.
 
- location String
- location Id is provided by organization. If not provided, Use global as default.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- bigQuery stringExport Id 
- This must be unique within the organization.
- dataset string
- The dataset to write findings' updates to. Its format is "projects/[projectId]/datasets/[bigquery_dataset_id]". BigQuery Dataset unique ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_).
- description string
- The description of the notification config (max of 1024 characters).
- filter string
- Expression that defines the filter to apply across create/update events of findings. The expression is a list of zero or more restrictions combined via logical operators AND and OR. Parentheses are supported, and OR has higher precedence than AND. Restrictions have the form and may have a - character in front of them to indicate negation. The fields map to those defined in the corresponding resource. The supported operators are: - = for all value types.
- , <, >=, <= for integer values. 
- :, meaning substring matching, for strings. The supported value types are:
- string literals in quotes.
- integer literals without quotes.
- boolean literals true and false without quotes. See Filtering notifications for information on how to write a filter.
 
- location string
- location Id is provided by organization. If not provided, Use global as default.
- project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- big_query_ strexport_ id 
- This must be unique within the organization.
- dataset str
- The dataset to write findings' updates to. Its format is "projects/[projectId]/datasets/[bigquery_dataset_id]". BigQuery Dataset unique ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_).
- description str
- The description of the notification config (max of 1024 characters).
- filter str
- Expression that defines the filter to apply across create/update events of findings. The expression is a list of zero or more restrictions combined via logical operators AND and OR. Parentheses are supported, and OR has higher precedence than AND. Restrictions have the form and may have a - character in front of them to indicate negation. The fields map to those defined in the corresponding resource. The supported operators are: - = for all value types.
- , <, >=, <= for integer values. 
- :, meaning substring matching, for strings. The supported value types are:
- string literals in quotes.
- integer literals without quotes.
- boolean literals true and false without quotes. See Filtering notifications for information on how to write a filter.
 
- location str
- location Id is provided by organization. If not provided, Use global as default.
- project str
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- bigQuery StringExport Id 
- This must be unique within the organization.
- dataset String
- The dataset to write findings' updates to. Its format is "projects/[projectId]/datasets/[bigquery_dataset_id]". BigQuery Dataset unique ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_).
- description String
- The description of the notification config (max of 1024 characters).
- filter String
- Expression that defines the filter to apply across create/update events of findings. The expression is a list of zero or more restrictions combined via logical operators AND and OR. Parentheses are supported, and OR has higher precedence than AND. Restrictions have the form and may have a - character in front of them to indicate negation. The fields map to those defined in the corresponding resource. The supported operators are: - = for all value types.
- , <, >=, <= for integer values. 
- :, meaning substring matching, for strings. The supported value types are:
- string literals in quotes.
- integer literals without quotes.
- boolean literals true and false without quotes. See Filtering notifications for information on how to write a filter.
 
- location String
- location Id is provided by organization. If not provided, Use global as default.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
Outputs
All input properties are implicitly available as output properties. Additionally, the V2ProjectSccBigQueryExport resource produces the following output properties:
- CreateTime string
- The time at which the BigQuery export was created. This field is set by the server and will be ignored if provided on export on creation. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- Id string
- The provider-assigned unique ID for this managed resource.
- MostRecent stringEditor 
- Email address of the user who last edited the BigQuery export. This field is set by the server and will be ignored if provided on export creation or update.
- Name string
- The resource name of this export, in the format
projects/{{project}}/locations/{{location}}/bigQueryExports/{{big_query_export_id}}. This field is provided in responses, and is ignored when provided in create requests.
- Principal string
- The service account that needs permission to create table and upload data to the BigQuery dataset.
- UpdateTime string
- The most recent time at which the BigQuery export was updated. This field is set by the server and will be ignored if provided on export creation or update. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- CreateTime string
- The time at which the BigQuery export was created. This field is set by the server and will be ignored if provided on export on creation. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- Id string
- The provider-assigned unique ID for this managed resource.
- MostRecent stringEditor 
- Email address of the user who last edited the BigQuery export. This field is set by the server and will be ignored if provided on export creation or update.
- Name string
- The resource name of this export, in the format
projects/{{project}}/locations/{{location}}/bigQueryExports/{{big_query_export_id}}. This field is provided in responses, and is ignored when provided in create requests.
- Principal string
- The service account that needs permission to create table and upload data to the BigQuery dataset.
- UpdateTime string
- The most recent time at which the BigQuery export was updated. This field is set by the server and will be ignored if provided on export creation or update. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- createTime String
- The time at which the BigQuery export was created. This field is set by the server and will be ignored if provided on export on creation. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- id String
- The provider-assigned unique ID for this managed resource.
- mostRecent StringEditor 
- Email address of the user who last edited the BigQuery export. This field is set by the server and will be ignored if provided on export creation or update.
- name String
- The resource name of this export, in the format
projects/{{project}}/locations/{{location}}/bigQueryExports/{{big_query_export_id}}. This field is provided in responses, and is ignored when provided in create requests.
- principal String
- The service account that needs permission to create table and upload data to the BigQuery dataset.
- updateTime String
- The most recent time at which the BigQuery export was updated. This field is set by the server and will be ignored if provided on export creation or update. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- createTime string
- The time at which the BigQuery export was created. This field is set by the server and will be ignored if provided on export on creation. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- id string
- The provider-assigned unique ID for this managed resource.
- mostRecent stringEditor 
- Email address of the user who last edited the BigQuery export. This field is set by the server and will be ignored if provided on export creation or update.
- name string
- The resource name of this export, in the format
projects/{{project}}/locations/{{location}}/bigQueryExports/{{big_query_export_id}}. This field is provided in responses, and is ignored when provided in create requests.
- principal string
- The service account that needs permission to create table and upload data to the BigQuery dataset.
- updateTime string
- The most recent time at which the BigQuery export was updated. This field is set by the server and will be ignored if provided on export creation or update. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- create_time str
- The time at which the BigQuery export was created. This field is set by the server and will be ignored if provided on export on creation. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- id str
- The provider-assigned unique ID for this managed resource.
- most_recent_ streditor 
- Email address of the user who last edited the BigQuery export. This field is set by the server and will be ignored if provided on export creation or update.
- name str
- The resource name of this export, in the format
projects/{{project}}/locations/{{location}}/bigQueryExports/{{big_query_export_id}}. This field is provided in responses, and is ignored when provided in create requests.
- principal str
- The service account that needs permission to create table and upload data to the BigQuery dataset.
- update_time str
- The most recent time at which the BigQuery export was updated. This field is set by the server and will be ignored if provided on export creation or update. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- createTime String
- The time at which the BigQuery export was created. This field is set by the server and will be ignored if provided on export on creation. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- id String
- The provider-assigned unique ID for this managed resource.
- mostRecent StringEditor 
- Email address of the user who last edited the BigQuery export. This field is set by the server and will be ignored if provided on export creation or update.
- name String
- The resource name of this export, in the format
projects/{{project}}/locations/{{location}}/bigQueryExports/{{big_query_export_id}}. This field is provided in responses, and is ignored when provided in create requests.
- principal String
- The service account that needs permission to create table and upload data to the BigQuery dataset.
- updateTime String
- The most recent time at which the BigQuery export was updated. This field is set by the server and will be ignored if provided on export creation or update. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
Look up Existing V2ProjectSccBigQueryExport Resource
Get an existing V2ProjectSccBigQueryExport 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?: V2ProjectSccBigQueryExportState, opts?: CustomResourceOptions): V2ProjectSccBigQueryExport@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        big_query_export_id: Optional[str] = None,
        create_time: Optional[str] = None,
        dataset: Optional[str] = None,
        description: Optional[str] = None,
        filter: Optional[str] = None,
        location: Optional[str] = None,
        most_recent_editor: Optional[str] = None,
        name: Optional[str] = None,
        principal: Optional[str] = None,
        project: Optional[str] = None,
        update_time: Optional[str] = None) -> V2ProjectSccBigQueryExportfunc GetV2ProjectSccBigQueryExport(ctx *Context, name string, id IDInput, state *V2ProjectSccBigQueryExportState, opts ...ResourceOption) (*V2ProjectSccBigQueryExport, error)public static V2ProjectSccBigQueryExport Get(string name, Input<string> id, V2ProjectSccBigQueryExportState? state, CustomResourceOptions? opts = null)public static V2ProjectSccBigQueryExport get(String name, Output<String> id, V2ProjectSccBigQueryExportState state, CustomResourceOptions options)resources:  _:    type: gcp:securitycenter:V2ProjectSccBigQueryExport    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.
- BigQuery stringExport Id 
- This must be unique within the organization.
- CreateTime string
- The time at which the BigQuery export was created. This field is set by the server and will be ignored if provided on export on creation. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- Dataset string
- The dataset to write findings' updates to. Its format is "projects/[projectId]/datasets/[bigquery_dataset_id]". BigQuery Dataset unique ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_).
- Description string
- The description of the notification config (max of 1024 characters).
- Filter string
- Expression that defines the filter to apply across create/update events of findings. The expression is a list of zero or more restrictions combined via logical operators AND and OR. Parentheses are supported, and OR has higher precedence than AND. Restrictions have the form and may have a - character in front of them to indicate negation. The fields map to those defined in the corresponding resource. The supported operators are: - = for all value types.
- , <, >=, <= for integer values. 
- :, meaning substring matching, for strings. The supported value types are:
- string literals in quotes.
- integer literals without quotes.
- boolean literals true and false without quotes. See Filtering notifications for information on how to write a filter.
 
- Location string
- location Id is provided by organization. If not provided, Use global as default.
- MostRecent stringEditor 
- Email address of the user who last edited the BigQuery export. This field is set by the server and will be ignored if provided on export creation or update.
- Name string
- The resource name of this export, in the format
projects/{{project}}/locations/{{location}}/bigQueryExports/{{big_query_export_id}}. This field is provided in responses, and is ignored when provided in create requests.
- Principal string
- The service account that needs permission to create table and upload data to the BigQuery dataset.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- UpdateTime string
- The most recent time at which the BigQuery export was updated. This field is set by the server and will be ignored if provided on export creation or update. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- BigQuery stringExport Id 
- This must be unique within the organization.
- CreateTime string
- The time at which the BigQuery export was created. This field is set by the server and will be ignored if provided on export on creation. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- Dataset string
- The dataset to write findings' updates to. Its format is "projects/[projectId]/datasets/[bigquery_dataset_id]". BigQuery Dataset unique ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_).
- Description string
- The description of the notification config (max of 1024 characters).
- Filter string
- Expression that defines the filter to apply across create/update events of findings. The expression is a list of zero or more restrictions combined via logical operators AND and OR. Parentheses are supported, and OR has higher precedence than AND. Restrictions have the form and may have a - character in front of them to indicate negation. The fields map to those defined in the corresponding resource. The supported operators are: - = for all value types.
- , <, >=, <= for integer values. 
- :, meaning substring matching, for strings. The supported value types are:
- string literals in quotes.
- integer literals without quotes.
- boolean literals true and false without quotes. See Filtering notifications for information on how to write a filter.
 
- Location string
- location Id is provided by organization. If not provided, Use global as default.
- MostRecent stringEditor 
- Email address of the user who last edited the BigQuery export. This field is set by the server and will be ignored if provided on export creation or update.
- Name string
- The resource name of this export, in the format
projects/{{project}}/locations/{{location}}/bigQueryExports/{{big_query_export_id}}. This field is provided in responses, and is ignored when provided in create requests.
- Principal string
- The service account that needs permission to create table and upload data to the BigQuery dataset.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- UpdateTime string
- The most recent time at which the BigQuery export was updated. This field is set by the server and will be ignored if provided on export creation or update. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- bigQuery StringExport Id 
- This must be unique within the organization.
- createTime String
- The time at which the BigQuery export was created. This field is set by the server and will be ignored if provided on export on creation. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- dataset String
- The dataset to write findings' updates to. Its format is "projects/[projectId]/datasets/[bigquery_dataset_id]". BigQuery Dataset unique ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_).
- description String
- The description of the notification config (max of 1024 characters).
- filter String
- Expression that defines the filter to apply across create/update events of findings. The expression is a list of zero or more restrictions combined via logical operators AND and OR. Parentheses are supported, and OR has higher precedence than AND. Restrictions have the form and may have a - character in front of them to indicate negation. The fields map to those defined in the corresponding resource. The supported operators are: - = for all value types.
- , <, >=, <= for integer values. 
- :, meaning substring matching, for strings. The supported value types are:
- string literals in quotes.
- integer literals without quotes.
- boolean literals true and false without quotes. See Filtering notifications for information on how to write a filter.
 
- location String
- location Id is provided by organization. If not provided, Use global as default.
- mostRecent StringEditor 
- Email address of the user who last edited the BigQuery export. This field is set by the server and will be ignored if provided on export creation or update.
- name String
- The resource name of this export, in the format
projects/{{project}}/locations/{{location}}/bigQueryExports/{{big_query_export_id}}. This field is provided in responses, and is ignored when provided in create requests.
- principal String
- The service account that needs permission to create table and upload data to the BigQuery dataset.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- updateTime String
- The most recent time at which the BigQuery export was updated. This field is set by the server and will be ignored if provided on export creation or update. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- bigQuery stringExport Id 
- This must be unique within the organization.
- createTime string
- The time at which the BigQuery export was created. This field is set by the server and will be ignored if provided on export on creation. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- dataset string
- The dataset to write findings' updates to. Its format is "projects/[projectId]/datasets/[bigquery_dataset_id]". BigQuery Dataset unique ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_).
- description string
- The description of the notification config (max of 1024 characters).
- filter string
- Expression that defines the filter to apply across create/update events of findings. The expression is a list of zero or more restrictions combined via logical operators AND and OR. Parentheses are supported, and OR has higher precedence than AND. Restrictions have the form and may have a - character in front of them to indicate negation. The fields map to those defined in the corresponding resource. The supported operators are: - = for all value types.
- , <, >=, <= for integer values. 
- :, meaning substring matching, for strings. The supported value types are:
- string literals in quotes.
- integer literals without quotes.
- boolean literals true and false without quotes. See Filtering notifications for information on how to write a filter.
 
- location string
- location Id is provided by organization. If not provided, Use global as default.
- mostRecent stringEditor 
- Email address of the user who last edited the BigQuery export. This field is set by the server and will be ignored if provided on export creation or update.
- name string
- The resource name of this export, in the format
projects/{{project}}/locations/{{location}}/bigQueryExports/{{big_query_export_id}}. This field is provided in responses, and is ignored when provided in create requests.
- principal string
- The service account that needs permission to create table and upload data to the BigQuery dataset.
- project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- updateTime string
- The most recent time at which the BigQuery export was updated. This field is set by the server and will be ignored if provided on export creation or update. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- big_query_ strexport_ id 
- This must be unique within the organization.
- create_time str
- The time at which the BigQuery export was created. This field is set by the server and will be ignored if provided on export on creation. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- dataset str
- The dataset to write findings' updates to. Its format is "projects/[projectId]/datasets/[bigquery_dataset_id]". BigQuery Dataset unique ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_).
- description str
- The description of the notification config (max of 1024 characters).
- filter str
- Expression that defines the filter to apply across create/update events of findings. The expression is a list of zero or more restrictions combined via logical operators AND and OR. Parentheses are supported, and OR has higher precedence than AND. Restrictions have the form and may have a - character in front of them to indicate negation. The fields map to those defined in the corresponding resource. The supported operators are: - = for all value types.
- , <, >=, <= for integer values. 
- :, meaning substring matching, for strings. The supported value types are:
- string literals in quotes.
- integer literals without quotes.
- boolean literals true and false without quotes. See Filtering notifications for information on how to write a filter.
 
- location str
- location Id is provided by organization. If not provided, Use global as default.
- most_recent_ streditor 
- Email address of the user who last edited the BigQuery export. This field is set by the server and will be ignored if provided on export creation or update.
- name str
- The resource name of this export, in the format
projects/{{project}}/locations/{{location}}/bigQueryExports/{{big_query_export_id}}. This field is provided in responses, and is ignored when provided in create requests.
- principal str
- The service account that needs permission to create table and upload data to the BigQuery dataset.
- project str
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- update_time str
- The most recent time at which the BigQuery export was updated. This field is set by the server and will be ignored if provided on export creation or update. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- bigQuery StringExport Id 
- This must be unique within the organization.
- createTime String
- The time at which the BigQuery export was created. This field is set by the server and will be ignored if provided on export on creation. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
- dataset String
- The dataset to write findings' updates to. Its format is "projects/[projectId]/datasets/[bigquery_dataset_id]". BigQuery Dataset unique ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_).
- description String
- The description of the notification config (max of 1024 characters).
- filter String
- Expression that defines the filter to apply across create/update events of findings. The expression is a list of zero or more restrictions combined via logical operators AND and OR. Parentheses are supported, and OR has higher precedence than AND. Restrictions have the form and may have a - character in front of them to indicate negation. The fields map to those defined in the corresponding resource. The supported operators are: - = for all value types.
- , <, >=, <= for integer values. 
- :, meaning substring matching, for strings. The supported value types are:
- string literals in quotes.
- integer literals without quotes.
- boolean literals true and false without quotes. See Filtering notifications for information on how to write a filter.
 
- location String
- location Id is provided by organization. If not provided, Use global as default.
- mostRecent StringEditor 
- Email address of the user who last edited the BigQuery export. This field is set by the server and will be ignored if provided on export creation or update.
- name String
- The resource name of this export, in the format
projects/{{project}}/locations/{{location}}/bigQueryExports/{{big_query_export_id}}. This field is provided in responses, and is ignored when provided in create requests.
- principal String
- The service account that needs permission to create table and upload data to the BigQuery dataset.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- updateTime String
- The most recent time at which the BigQuery export was updated. This field is set by the server and will be ignored if provided on export creation or update. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
Import
ProjectSccBigQueryExport can be imported using any of these accepted formats:
- projects/{{project}}/locations/{{location}}/bigQueryExports/{{big_query_export_id}}
- {{project}}/{{location}}/{{big_query_export_id}}
- {{location}}/{{big_query_export_id}}
When using the pulumi import command, ProjectSccBigQueryExport can be imported using one of the formats above. For example:
$ pulumi import gcp:securitycenter/v2ProjectSccBigQueryExport:V2ProjectSccBigQueryExport default projects/{{project}}/locations/{{location}}/bigQueryExports/{{big_query_export_id}}
$ pulumi import gcp:securitycenter/v2ProjectSccBigQueryExport:V2ProjectSccBigQueryExport default {{project}}/{{location}}/{{big_query_export_id}}
$ pulumi import gcp:securitycenter/v2ProjectSccBigQueryExport:V2ProjectSccBigQueryExport default {{location}}/{{big_query_export_id}}
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-betaTerraform Provider.