1. Packages
  2. Google Cloud Native
  3. API Docs
  4. securitycenter
  5. securitycenter/v1
  6. OrganizationBigQueryExport

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi

google-native.securitycenter/v1.OrganizationBigQueryExport

Explore with Pulumi AI

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi

Creates a BigQuery export.

Create OrganizationBigQueryExport Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new OrganizationBigQueryExport(name: string, args: OrganizationBigQueryExportArgs, opts?: CustomResourceOptions);
@overload
def OrganizationBigQueryExport(resource_name: str,
                               args: OrganizationBigQueryExportArgs,
                               opts: Optional[ResourceOptions] = None)

@overload
def OrganizationBigQueryExport(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               big_query_export_id: Optional[str] = None,
                               organization_id: Optional[str] = None,
                               dataset: Optional[str] = None,
                               description: Optional[str] = None,
                               filter: Optional[str] = None,
                               name: Optional[str] = None)
func NewOrganizationBigQueryExport(ctx *Context, name string, args OrganizationBigQueryExportArgs, opts ...ResourceOption) (*OrganizationBigQueryExport, error)
public OrganizationBigQueryExport(string name, OrganizationBigQueryExportArgs args, CustomResourceOptions? opts = null)
public OrganizationBigQueryExport(String name, OrganizationBigQueryExportArgs args)
public OrganizationBigQueryExport(String name, OrganizationBigQueryExportArgs args, CustomResourceOptions options)
type: google-native:securitycenter/v1:OrganizationBigQueryExport
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. OrganizationBigQueryExportArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. OrganizationBigQueryExportArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. OrganizationBigQueryExportArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. OrganizationBigQueryExportArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. OrganizationBigQueryExportArgs
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 organizationBigQueryExportResource = new GoogleNative.Securitycenter.V1.OrganizationBigQueryExport("organizationBigQueryExportResource", new()
{
    BigQueryExportId = "string",
    OrganizationId = "string",
    Dataset = "string",
    Description = "string",
    Filter = "string",
    Name = "string",
});
Copy
example, err := securitycenter.NewOrganizationBigQueryExport(ctx, "organizationBigQueryExportResource", &securitycenter.OrganizationBigQueryExportArgs{
	BigQueryExportId: pulumi.String("string"),
	OrganizationId:   pulumi.String("string"),
	Dataset:          pulumi.String("string"),
	Description:      pulumi.String("string"),
	Filter:           pulumi.String("string"),
	Name:             pulumi.String("string"),
})
Copy
var organizationBigQueryExportResource = new OrganizationBigQueryExport("organizationBigQueryExportResource", OrganizationBigQueryExportArgs.builder()
    .bigQueryExportId("string")
    .organizationId("string")
    .dataset("string")
    .description("string")
    .filter("string")
    .name("string")
    .build());
Copy
organization_big_query_export_resource = google_native.securitycenter.v1.OrganizationBigQueryExport("organizationBigQueryExportResource",
    big_query_export_id="string",
    organization_id="string",
    dataset="string",
    description="string",
    filter="string",
    name="string")
Copy
const organizationBigQueryExportResource = new google_native.securitycenter.v1.OrganizationBigQueryExport("organizationBigQueryExportResource", {
    bigQueryExportId: "string",
    organizationId: "string",
    dataset: "string",
    description: "string",
    filter: "string",
    name: "string",
});
Copy
type: google-native:securitycenter/v1:OrganizationBigQueryExport
properties:
    bigQueryExportId: string
    dataset: string
    description: string
    filter: string
    name: string
    organizationId: string
Copy

OrganizationBigQueryExport 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 OrganizationBigQueryExport resource accepts the following input properties:

BigQueryExportId
This property is required.
Changes to this property will trigger replacement.
string
Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.
OrganizationId
This property is required.
Changes to this property will trigger replacement.
string
Dataset string
The dataset to write findings' updates to. Its format is "projects/[project_id]/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 export (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.
Name string
The relative resource name of this export. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name. Example format: "organizations/{organization_id}/bigQueryExports/{export_id}" Example format: "folders/{folder_id}/bigQueryExports/{export_id}" Example format: "projects/{project_id}/bigQueryExports/{export_id}" This field is provided in responses, and is ignored when provided in create requests.
BigQueryExportId
This property is required.
Changes to this property will trigger replacement.
string
Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.
OrganizationId
This property is required.
Changes to this property will trigger replacement.
string
Dataset string
The dataset to write findings' updates to. Its format is "projects/[project_id]/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 export (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.
Name string
The relative resource name of this export. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name. Example format: "organizations/{organization_id}/bigQueryExports/{export_id}" Example format: "folders/{folder_id}/bigQueryExports/{export_id}" Example format: "projects/{project_id}/bigQueryExports/{export_id}" This field is provided in responses, and is ignored when provided in create requests.
bigQueryExportId
This property is required.
Changes to this property will trigger replacement.
String
Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.
organizationId
This property is required.
Changes to this property will trigger replacement.
String
dataset String
The dataset to write findings' updates to. Its format is "projects/[project_id]/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 export (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.
name String
The relative resource name of this export. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name. Example format: "organizations/{organization_id}/bigQueryExports/{export_id}" Example format: "folders/{folder_id}/bigQueryExports/{export_id}" Example format: "projects/{project_id}/bigQueryExports/{export_id}" This field is provided in responses, and is ignored when provided in create requests.
bigQueryExportId
This property is required.
Changes to this property will trigger replacement.
string
Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.
organizationId
This property is required.
Changes to this property will trigger replacement.
string
dataset string
The dataset to write findings' updates to. Its format is "projects/[project_id]/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 export (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.
name string
The relative resource name of this export. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name. Example format: "organizations/{organization_id}/bigQueryExports/{export_id}" Example format: "folders/{folder_id}/bigQueryExports/{export_id}" Example format: "projects/{project_id}/bigQueryExports/{export_id}" This field is provided in responses, and is ignored when provided in create requests.
big_query_export_id
This property is required.
Changes to this property will trigger replacement.
str
Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.
organization_id
This property is required.
Changes to this property will trigger replacement.
str
dataset str
The dataset to write findings' updates to. Its format is "projects/[project_id]/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 export (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.
name str
The relative resource name of this export. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name. Example format: "organizations/{organization_id}/bigQueryExports/{export_id}" Example format: "folders/{folder_id}/bigQueryExports/{export_id}" Example format: "projects/{project_id}/bigQueryExports/{export_id}" This field is provided in responses, and is ignored when provided in create requests.
bigQueryExportId
This property is required.
Changes to this property will trigger replacement.
String
Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.
organizationId
This property is required.
Changes to this property will trigger replacement.
String
dataset String
The dataset to write findings' updates to. Its format is "projects/[project_id]/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 export (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.
name String
The relative resource name of this export. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name. Example format: "organizations/{organization_id}/bigQueryExports/{export_id}" Example format: "folders/{folder_id}/bigQueryExports/{export_id}" Example format: "projects/{project_id}/bigQueryExports/{export_id}" This field is provided in responses, and is ignored when provided in create requests.

Outputs

All input properties are implicitly available as output properties. Additionally, the OrganizationBigQueryExport 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.
Id string
The provider-assigned unique ID for this managed resource.
MostRecentEditor string
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.
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.
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.
Id string
The provider-assigned unique ID for this managed resource.
MostRecentEditor string
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.
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.
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.
id String
The provider-assigned unique ID for this managed resource.
mostRecentEditor String
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.
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.
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.
id string
The provider-assigned unique ID for this managed resource.
mostRecentEditor string
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.
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.
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.
id str
The provider-assigned unique ID for this managed resource.
most_recent_editor str
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.
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.
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.
id String
The provider-assigned unique ID for this managed resource.
mostRecentEditor String
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.
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.

Package Details

Repository
Google Cloud Native pulumi/pulumi-google-native
License
Apache-2.0

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi