Google Cloud Native is in preview. Google Cloud Classic is fully supported.
google-native.dlp/v2.StoredInfoType
Explore with Pulumi AI
Google Cloud Native is in preview. Google Cloud Classic is fully supported.
Creates a pre-built stored infoType to be used for inspection. See https://cloud.google.com/dlp/docs/creating-stored-infotypes to learn more. Auto-naming is currently not supported for this resource.
Create StoredInfoType Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new StoredInfoType(name: string, args: StoredInfoTypeArgs, opts?: CustomResourceOptions);
@overload
def StoredInfoType(resource_name: str,
args: StoredInfoTypeArgs,
opts: Optional[ResourceOptions] = None)
@overload
def StoredInfoType(resource_name: str,
opts: Optional[ResourceOptions] = None,
config: Optional[GooglePrivacyDlpV2StoredInfoTypeConfigArgs] = None,
location: Optional[str] = None,
project: Optional[str] = None,
stored_info_type_id: Optional[str] = None)
func NewStoredInfoType(ctx *Context, name string, args StoredInfoTypeArgs, opts ...ResourceOption) (*StoredInfoType, error)
public StoredInfoType(string name, StoredInfoTypeArgs args, CustomResourceOptions? opts = null)
public StoredInfoType(String name, StoredInfoTypeArgs args)
public StoredInfoType(String name, StoredInfoTypeArgs args, CustomResourceOptions options)
type: google-native:dlp/v2:StoredInfoType
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 StoredInfoTypeArgs
- 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 StoredInfoTypeArgs
- 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 StoredInfoTypeArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args StoredInfoTypeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args StoredInfoTypeArgs
- 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 storedInfoTypeResource = new GoogleNative.DLP.V2.StoredInfoType("storedInfoTypeResource", new()
{
Config = new GoogleNative.DLP.V2.Inputs.GooglePrivacyDlpV2StoredInfoTypeConfigArgs
{
Description = "string",
Dictionary = new GoogleNative.DLP.V2.Inputs.GooglePrivacyDlpV2DictionaryArgs
{
CloudStoragePath = new GoogleNative.DLP.V2.Inputs.GooglePrivacyDlpV2CloudStoragePathArgs
{
Path = "string",
},
WordList = new GoogleNative.DLP.V2.Inputs.GooglePrivacyDlpV2WordListArgs
{
Words = new[]
{
"string",
},
},
},
DisplayName = "string",
LargeCustomDictionary = new GoogleNative.DLP.V2.Inputs.GooglePrivacyDlpV2LargeCustomDictionaryConfigArgs
{
BigQueryField = new GoogleNative.DLP.V2.Inputs.GooglePrivacyDlpV2BigQueryFieldArgs
{
Field = new GoogleNative.DLP.V2.Inputs.GooglePrivacyDlpV2FieldIdArgs
{
Name = "string",
},
Table = new GoogleNative.DLP.V2.Inputs.GooglePrivacyDlpV2BigQueryTableArgs
{
DatasetId = "string",
Project = "string",
TableId = "string",
},
},
CloudStorageFileSet = new GoogleNative.DLP.V2.Inputs.GooglePrivacyDlpV2CloudStorageFileSetArgs
{
Url = "string",
},
OutputPath = new GoogleNative.DLP.V2.Inputs.GooglePrivacyDlpV2CloudStoragePathArgs
{
Path = "string",
},
},
Regex = new GoogleNative.DLP.V2.Inputs.GooglePrivacyDlpV2RegexArgs
{
GroupIndexes = new[]
{
0,
},
Pattern = "string",
},
},
Project = "string",
StoredInfoTypeId = "string",
});
example, err := dlp.NewStoredInfoType(ctx, "storedInfoTypeResource", &dlp.StoredInfoTypeArgs{
Config: &dlp.GooglePrivacyDlpV2StoredInfoTypeConfigArgs{
Description: pulumi.String("string"),
Dictionary: &dlp.GooglePrivacyDlpV2DictionaryArgs{
CloudStoragePath: &dlp.GooglePrivacyDlpV2CloudStoragePathArgs{
Path: pulumi.String("string"),
},
WordList: &dlp.GooglePrivacyDlpV2WordListArgs{
Words: pulumi.StringArray{
pulumi.String("string"),
},
},
},
DisplayName: pulumi.String("string"),
LargeCustomDictionary: &dlp.GooglePrivacyDlpV2LargeCustomDictionaryConfigArgs{
BigQueryField: &dlp.GooglePrivacyDlpV2BigQueryFieldArgs{
Field: &dlp.GooglePrivacyDlpV2FieldIdArgs{
Name: pulumi.String("string"),
},
Table: &dlp.GooglePrivacyDlpV2BigQueryTableArgs{
DatasetId: pulumi.String("string"),
Project: pulumi.String("string"),
TableId: pulumi.String("string"),
},
},
CloudStorageFileSet: &dlp.GooglePrivacyDlpV2CloudStorageFileSetArgs{
Url: pulumi.String("string"),
},
OutputPath: &dlp.GooglePrivacyDlpV2CloudStoragePathArgs{
Path: pulumi.String("string"),
},
},
Regex: &dlp.GooglePrivacyDlpV2RegexArgs{
GroupIndexes: pulumi.IntArray{
pulumi.Int(0),
},
Pattern: pulumi.String("string"),
},
},
Project: pulumi.String("string"),
StoredInfoTypeId: pulumi.String("string"),
})
var storedInfoTypeResource = new StoredInfoType("storedInfoTypeResource", StoredInfoTypeArgs.builder()
.config(GooglePrivacyDlpV2StoredInfoTypeConfigArgs.builder()
.description("string")
.dictionary(GooglePrivacyDlpV2DictionaryArgs.builder()
.cloudStoragePath(GooglePrivacyDlpV2CloudStoragePathArgs.builder()
.path("string")
.build())
.wordList(GooglePrivacyDlpV2WordListArgs.builder()
.words("string")
.build())
.build())
.displayName("string")
.largeCustomDictionary(GooglePrivacyDlpV2LargeCustomDictionaryConfigArgs.builder()
.bigQueryField(GooglePrivacyDlpV2BigQueryFieldArgs.builder()
.field(GooglePrivacyDlpV2FieldIdArgs.builder()
.name("string")
.build())
.table(GooglePrivacyDlpV2BigQueryTableArgs.builder()
.datasetId("string")
.project("string")
.tableId("string")
.build())
.build())
.cloudStorageFileSet(GooglePrivacyDlpV2CloudStorageFileSetArgs.builder()
.url("string")
.build())
.outputPath(GooglePrivacyDlpV2CloudStoragePathArgs.builder()
.path("string")
.build())
.build())
.regex(GooglePrivacyDlpV2RegexArgs.builder()
.groupIndexes(0)
.pattern("string")
.build())
.build())
.project("string")
.storedInfoTypeId("string")
.build());
stored_info_type_resource = google_native.dlp.v2.StoredInfoType("storedInfoTypeResource",
config=google_native.dlp.v2.GooglePrivacyDlpV2StoredInfoTypeConfigArgs(
description="string",
dictionary=google_native.dlp.v2.GooglePrivacyDlpV2DictionaryArgs(
cloud_storage_path=google_native.dlp.v2.GooglePrivacyDlpV2CloudStoragePathArgs(
path="string",
),
word_list=google_native.dlp.v2.GooglePrivacyDlpV2WordListArgs(
words=["string"],
),
),
display_name="string",
large_custom_dictionary=google_native.dlp.v2.GooglePrivacyDlpV2LargeCustomDictionaryConfigArgs(
big_query_field=google_native.dlp.v2.GooglePrivacyDlpV2BigQueryFieldArgs(
field=google_native.dlp.v2.GooglePrivacyDlpV2FieldIdArgs(
name="string",
),
table=google_native.dlp.v2.GooglePrivacyDlpV2BigQueryTableArgs(
dataset_id="string",
project="string",
table_id="string",
),
),
cloud_storage_file_set=google_native.dlp.v2.GooglePrivacyDlpV2CloudStorageFileSetArgs(
url="string",
),
output_path=google_native.dlp.v2.GooglePrivacyDlpV2CloudStoragePathArgs(
path="string",
),
),
regex=google_native.dlp.v2.GooglePrivacyDlpV2RegexArgs(
group_indexes=[0],
pattern="string",
),
),
project="string",
stored_info_type_id="string")
const storedInfoTypeResource = new google_native.dlp.v2.StoredInfoType("storedInfoTypeResource", {
config: {
description: "string",
dictionary: {
cloudStoragePath: {
path: "string",
},
wordList: {
words: ["string"],
},
},
displayName: "string",
largeCustomDictionary: {
bigQueryField: {
field: {
name: "string",
},
table: {
datasetId: "string",
project: "string",
tableId: "string",
},
},
cloudStorageFileSet: {
url: "string",
},
outputPath: {
path: "string",
},
},
regex: {
groupIndexes: [0],
pattern: "string",
},
},
project: "string",
storedInfoTypeId: "string",
});
type: google-native:dlp/v2:StoredInfoType
properties:
config:
description: string
dictionary:
cloudStoragePath:
path: string
wordList:
words:
- string
displayName: string
largeCustomDictionary:
bigQueryField:
field:
name: string
table:
datasetId: string
project: string
tableId: string
cloudStorageFileSet:
url: string
outputPath:
path: string
regex:
groupIndexes:
- 0
pattern: string
project: string
storedInfoTypeId: string
StoredInfoType Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The StoredInfoType resource accepts the following input properties:
- Config
Pulumi.
Google Native. DLP. V2. Inputs. Google Privacy Dlp V2Stored Info Type Config - Configuration of the storedInfoType to create.
- Location string
- Deprecated. This field has no effect.
- Project string
- Stored
Info stringType Id - The storedInfoType ID can contain uppercase and lowercase letters, numbers, and hyphens; that is, it must match the regular expression:
[a-zA-Z\d-_]+
. The maximum length is 100 characters. Can be empty to allow the system to generate one.
- Config
Google
Privacy Dlp V2Stored Info Type Config Args - Configuration of the storedInfoType to create.
- Location string
- Deprecated. This field has no effect.
- Project string
- Stored
Info stringType Id - The storedInfoType ID can contain uppercase and lowercase letters, numbers, and hyphens; that is, it must match the regular expression:
[a-zA-Z\d-_]+
. The maximum length is 100 characters. Can be empty to allow the system to generate one.
- config
Google
Privacy Dlp V2Stored Info Type Config - Configuration of the storedInfoType to create.
- location String
- Deprecated. This field has no effect.
- project String
- stored
Info StringType Id - The storedInfoType ID can contain uppercase and lowercase letters, numbers, and hyphens; that is, it must match the regular expression:
[a-zA-Z\d-_]+
. The maximum length is 100 characters. Can be empty to allow the system to generate one.
- config
Google
Privacy Dlp V2Stored Info Type Config - Configuration of the storedInfoType to create.
- location string
- Deprecated. This field has no effect.
- project string
- stored
Info stringType Id - The storedInfoType ID can contain uppercase and lowercase letters, numbers, and hyphens; that is, it must match the regular expression:
[a-zA-Z\d-_]+
. The maximum length is 100 characters. Can be empty to allow the system to generate one.
- config
Google
Privacy Dlp V2Stored Info Type Config Args - Configuration of the storedInfoType to create.
- location str
- Deprecated. This field has no effect.
- project str
- stored_
info_ strtype_ id - The storedInfoType ID can contain uppercase and lowercase letters, numbers, and hyphens; that is, it must match the regular expression:
[a-zA-Z\d-_]+
. The maximum length is 100 characters. Can be empty to allow the system to generate one.
- config Property Map
- Configuration of the storedInfoType to create.
- location String
- Deprecated. This field has no effect.
- project String
- stored
Info StringType Id - The storedInfoType ID can contain uppercase and lowercase letters, numbers, and hyphens; that is, it must match the regular expression:
[a-zA-Z\d-_]+
. The maximum length is 100 characters. Can be empty to allow the system to generate one.
Outputs
All input properties are implicitly available as output properties. Additionally, the StoredInfoType resource produces the following output properties:
- Current
Version Pulumi.Google Native. DLP. V2. Outputs. Google Privacy Dlp V2Stored Info Type Version Response - Current version of the stored info type.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Resource name.
- Pending
Versions List<Pulumi.Google Native. DLP. V2. Outputs. Google Privacy Dlp V2Stored Info Type Version Response> - Pending versions of the stored info type. Empty if no versions are pending.
- Current
Version GooglePrivacy Dlp V2Stored Info Type Version Response - Current version of the stored info type.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Resource name.
- Pending
Versions []GooglePrivacy Dlp V2Stored Info Type Version Response - Pending versions of the stored info type. Empty if no versions are pending.
- current
Version GooglePrivacy Dlp V2Stored Info Type Version Response - Current version of the stored info type.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Resource name.
- pending
Versions List<GooglePrivacy Dlp V2Stored Info Type Version Response> - Pending versions of the stored info type. Empty if no versions are pending.
- current
Version GooglePrivacy Dlp V2Stored Info Type Version Response - Current version of the stored info type.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Resource name.
- pending
Versions GooglePrivacy Dlp V2Stored Info Type Version Response[] - Pending versions of the stored info type. Empty if no versions are pending.
- current_
version GooglePrivacy Dlp V2Stored Info Type Version Response - Current version of the stored info type.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Resource name.
- pending_
versions Sequence[GooglePrivacy Dlp V2Stored Info Type Version Response] - Pending versions of the stored info type. Empty if no versions are pending.
- current
Version Property Map - Current version of the stored info type.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Resource name.
- pending
Versions List<Property Map> - Pending versions of the stored info type. Empty if no versions are pending.
Supporting Types
GooglePrivacyDlpV2BigQueryField, GooglePrivacyDlpV2BigQueryFieldArgs
- Field
Pulumi.
Google Native. DLP. V2. Inputs. Google Privacy Dlp V2Field Id - Designated field in the BigQuery table.
- Table
Pulumi.
Google Native. DLP. V2. Inputs. Google Privacy Dlp V2Big Query Table - Source table of the field.
- Field
Google
Privacy Dlp V2Field Id - Designated field in the BigQuery table.
- Table
Google
Privacy Dlp V2Big Query Table - Source table of the field.
- field
Google
Privacy Dlp V2Field Id - Designated field in the BigQuery table.
- table
Google
Privacy Dlp V2Big Query Table - Source table of the field.
- field
Google
Privacy Dlp V2Field Id - Designated field in the BigQuery table.
- table
Google
Privacy Dlp V2Big Query Table - Source table of the field.
- field
Google
Privacy Dlp V2Field Id - Designated field in the BigQuery table.
- table
Google
Privacy Dlp V2Big Query Table - Source table of the field.
- field Property Map
- Designated field in the BigQuery table.
- table Property Map
- Source table of the field.
GooglePrivacyDlpV2BigQueryFieldResponse, GooglePrivacyDlpV2BigQueryFieldResponseArgs
- Field
Pulumi.
Google Native. DLP. V2. Inputs. Google Privacy Dlp V2Field Id Response - Designated field in the BigQuery table.
- Table
Pulumi.
Google Native. DLP. V2. Inputs. Google Privacy Dlp V2Big Query Table Response - Source table of the field.
- Field
Google
Privacy Dlp V2Field Id Response - Designated field in the BigQuery table.
- Table
Google
Privacy Dlp V2Big Query Table Response - Source table of the field.
- field
Google
Privacy Dlp V2Field Id Response - Designated field in the BigQuery table.
- table
Google
Privacy Dlp V2Big Query Table Response - Source table of the field.
- field
Google
Privacy Dlp V2Field Id Response - Designated field in the BigQuery table.
- table
Google
Privacy Dlp V2Big Query Table Response - Source table of the field.
- field
Google
Privacy Dlp V2Field Id Response - Designated field in the BigQuery table.
- table
Google
Privacy Dlp V2Big Query Table Response - Source table of the field.
- field Property Map
- Designated field in the BigQuery table.
- table Property Map
- Source table of the field.
GooglePrivacyDlpV2BigQueryTable, GooglePrivacyDlpV2BigQueryTableArgs
- dataset_
id str - Dataset ID of the table.
- project str
- The Google Cloud Platform project ID of the project containing the table. If omitted, project ID is inferred from the API call.
- table_
id str - Name of the table.
GooglePrivacyDlpV2BigQueryTableResponse, GooglePrivacyDlpV2BigQueryTableResponseArgs
- dataset_
id str - Dataset ID of the table.
- project str
- The Google Cloud Platform project ID of the project containing the table. If omitted, project ID is inferred from the API call.
- table_
id str - Name of the table.
GooglePrivacyDlpV2CloudStorageFileSet, GooglePrivacyDlpV2CloudStorageFileSetArgs
- Url string
- The url, in the format
gs:///
. Trailing wildcard in the path is allowed.
- Url string
- The url, in the format
gs:///
. Trailing wildcard in the path is allowed.
- url String
- The url, in the format
gs:///
. Trailing wildcard in the path is allowed.
- url string
- The url, in the format
gs:///
. Trailing wildcard in the path is allowed.
- url str
- The url, in the format
gs:///
. Trailing wildcard in the path is allowed.
- url String
- The url, in the format
gs:///
. Trailing wildcard in the path is allowed.
GooglePrivacyDlpV2CloudStorageFileSetResponse, GooglePrivacyDlpV2CloudStorageFileSetResponseArgs
- Url string
- The url, in the format
gs:///
. Trailing wildcard in the path is allowed.
- Url string
- The url, in the format
gs:///
. Trailing wildcard in the path is allowed.
- url String
- The url, in the format
gs:///
. Trailing wildcard in the path is allowed.
- url string
- The url, in the format
gs:///
. Trailing wildcard in the path is allowed.
- url str
- The url, in the format
gs:///
. Trailing wildcard in the path is allowed.
- url String
- The url, in the format
gs:///
. Trailing wildcard in the path is allowed.
GooglePrivacyDlpV2CloudStoragePath, GooglePrivacyDlpV2CloudStoragePathArgs
- Path string
- A url representing a file or path (no wildcards) in Cloud Storage. Example: gs://[BUCKET_NAME]/dictionary.txt
- Path string
- A url representing a file or path (no wildcards) in Cloud Storage. Example: gs://[BUCKET_NAME]/dictionary.txt
- path String
- A url representing a file or path (no wildcards) in Cloud Storage. Example: gs://[BUCKET_NAME]/dictionary.txt
- path string
- A url representing a file or path (no wildcards) in Cloud Storage. Example: gs://[BUCKET_NAME]/dictionary.txt
- path str
- A url representing a file or path (no wildcards) in Cloud Storage. Example: gs://[BUCKET_NAME]/dictionary.txt
- path String
- A url representing a file or path (no wildcards) in Cloud Storage. Example: gs://[BUCKET_NAME]/dictionary.txt
GooglePrivacyDlpV2CloudStoragePathResponse, GooglePrivacyDlpV2CloudStoragePathResponseArgs
- Path string
- A url representing a file or path (no wildcards) in Cloud Storage. Example: gs://[BUCKET_NAME]/dictionary.txt
- Path string
- A url representing a file or path (no wildcards) in Cloud Storage. Example: gs://[BUCKET_NAME]/dictionary.txt
- path String
- A url representing a file or path (no wildcards) in Cloud Storage. Example: gs://[BUCKET_NAME]/dictionary.txt
- path string
- A url representing a file or path (no wildcards) in Cloud Storage. Example: gs://[BUCKET_NAME]/dictionary.txt
- path str
- A url representing a file or path (no wildcards) in Cloud Storage. Example: gs://[BUCKET_NAME]/dictionary.txt
- path String
- A url representing a file or path (no wildcards) in Cloud Storage. Example: gs://[BUCKET_NAME]/dictionary.txt
GooglePrivacyDlpV2Dictionary, GooglePrivacyDlpV2DictionaryArgs
- Cloud
Storage Pulumi.Path Google Native. DLP. V2. Inputs. Google Privacy Dlp V2Cloud Storage Path - Newline-delimited file of words in Cloud Storage. Only a single file is accepted.
- Word
List Pulumi.Google Native. DLP. V2. Inputs. Google Privacy Dlp V2Word List - List of words or phrases to search for.
- Cloud
Storage GooglePath Privacy Dlp V2Cloud Storage Path - Newline-delimited file of words in Cloud Storage. Only a single file is accepted.
- Word
List GooglePrivacy Dlp V2Word List - List of words or phrases to search for.
- cloud
Storage GooglePath Privacy Dlp V2Cloud Storage Path - Newline-delimited file of words in Cloud Storage. Only a single file is accepted.
- word
List GooglePrivacy Dlp V2Word List - List of words or phrases to search for.
- cloud
Storage GooglePath Privacy Dlp V2Cloud Storage Path - Newline-delimited file of words in Cloud Storage. Only a single file is accepted.
- word
List GooglePrivacy Dlp V2Word List - List of words or phrases to search for.
- cloud_
storage_ Googlepath Privacy Dlp V2Cloud Storage Path - Newline-delimited file of words in Cloud Storage. Only a single file is accepted.
- word_
list GooglePrivacy Dlp V2Word List - List of words or phrases to search for.
- cloud
Storage Property MapPath - Newline-delimited file of words in Cloud Storage. Only a single file is accepted.
- word
List Property Map - List of words or phrases to search for.
GooglePrivacyDlpV2DictionaryResponse, GooglePrivacyDlpV2DictionaryResponseArgs
- Cloud
Storage Pulumi.Path Google Native. DLP. V2. Inputs. Google Privacy Dlp V2Cloud Storage Path Response - Newline-delimited file of words in Cloud Storage. Only a single file is accepted.
- Word
List Pulumi.Google Native. DLP. V2. Inputs. Google Privacy Dlp V2Word List Response - List of words or phrases to search for.
- Cloud
Storage GooglePath Privacy Dlp V2Cloud Storage Path Response - Newline-delimited file of words in Cloud Storage. Only a single file is accepted.
- Word
List GooglePrivacy Dlp V2Word List Response - List of words or phrases to search for.
- cloud
Storage GooglePath Privacy Dlp V2Cloud Storage Path Response - Newline-delimited file of words in Cloud Storage. Only a single file is accepted.
- word
List GooglePrivacy Dlp V2Word List Response - List of words or phrases to search for.
- cloud
Storage GooglePath Privacy Dlp V2Cloud Storage Path Response - Newline-delimited file of words in Cloud Storage. Only a single file is accepted.
- word
List GooglePrivacy Dlp V2Word List Response - List of words or phrases to search for.
- cloud_
storage_ Googlepath Privacy Dlp V2Cloud Storage Path Response - Newline-delimited file of words in Cloud Storage. Only a single file is accepted.
- word_
list GooglePrivacy Dlp V2Word List Response - List of words or phrases to search for.
- cloud
Storage Property MapPath - Newline-delimited file of words in Cloud Storage. Only a single file is accepted.
- word
List Property Map - List of words or phrases to search for.
GooglePrivacyDlpV2ErrorResponse, GooglePrivacyDlpV2ErrorResponseArgs
- Details
Pulumi.
Google Native. DLP. V2. Inputs. Google Rpc Status Response - Detailed error codes and messages.
- Timestamps List<string>
- The times the error occurred. List includes the oldest timestamp and the last 9 timestamps.
- Details
Google
Rpc Status Response - Detailed error codes and messages.
- Timestamps []string
- The times the error occurred. List includes the oldest timestamp and the last 9 timestamps.
- details
Google
Rpc Status Response - Detailed error codes and messages.
- timestamps List<String>
- The times the error occurred. List includes the oldest timestamp and the last 9 timestamps.
- details
Google
Rpc Status Response - Detailed error codes and messages.
- timestamps string[]
- The times the error occurred. List includes the oldest timestamp and the last 9 timestamps.
- details
Google
Rpc Status Response - Detailed error codes and messages.
- timestamps Sequence[str]
- The times the error occurred. List includes the oldest timestamp and the last 9 timestamps.
- details Property Map
- Detailed error codes and messages.
- timestamps List<String>
- The times the error occurred. List includes the oldest timestamp and the last 9 timestamps.
GooglePrivacyDlpV2FieldId, GooglePrivacyDlpV2FieldIdArgs
- Name string
- Name describing the field.
- Name string
- Name describing the field.
- name String
- Name describing the field.
- name string
- Name describing the field.
- name str
- Name describing the field.
- name String
- Name describing the field.
GooglePrivacyDlpV2FieldIdResponse, GooglePrivacyDlpV2FieldIdResponseArgs
- Name string
- Name describing the field.
- Name string
- Name describing the field.
- name String
- Name describing the field.
- name string
- Name describing the field.
- name str
- Name describing the field.
- name String
- Name describing the field.
GooglePrivacyDlpV2LargeCustomDictionaryConfig, GooglePrivacyDlpV2LargeCustomDictionaryConfigArgs
- Big
Query Pulumi.Field Google Native. DLP. V2. Inputs. Google Privacy Dlp V2Big Query Field - Field in a BigQuery table where each cell represents a dictionary phrase.
- Cloud
Storage Pulumi.File Set Google Native. DLP. V2. Inputs. Google Privacy Dlp V2Cloud Storage File Set - Set of files containing newline-delimited lists of dictionary phrases.
- Output
Path Pulumi.Google Native. DLP. V2. Inputs. Google Privacy Dlp V2Cloud Storage Path - Location to store dictionary artifacts in Cloud Storage. These files will only be accessible by project owners and the DLP API. If any of these artifacts are modified, the dictionary is considered invalid and can no longer be used.
- Big
Query GoogleField Privacy Dlp V2Big Query Field - Field in a BigQuery table where each cell represents a dictionary phrase.
- Cloud
Storage GoogleFile Set Privacy Dlp V2Cloud Storage File Set - Set of files containing newline-delimited lists of dictionary phrases.
- Output
Path GooglePrivacy Dlp V2Cloud Storage Path - Location to store dictionary artifacts in Cloud Storage. These files will only be accessible by project owners and the DLP API. If any of these artifacts are modified, the dictionary is considered invalid and can no longer be used.
- big
Query GoogleField Privacy Dlp V2Big Query Field - Field in a BigQuery table where each cell represents a dictionary phrase.
- cloud
Storage GoogleFile Set Privacy Dlp V2Cloud Storage File Set - Set of files containing newline-delimited lists of dictionary phrases.
- output
Path GooglePrivacy Dlp V2Cloud Storage Path - Location to store dictionary artifacts in Cloud Storage. These files will only be accessible by project owners and the DLP API. If any of these artifacts are modified, the dictionary is considered invalid and can no longer be used.
- big
Query GoogleField Privacy Dlp V2Big Query Field - Field in a BigQuery table where each cell represents a dictionary phrase.
- cloud
Storage GoogleFile Set Privacy Dlp V2Cloud Storage File Set - Set of files containing newline-delimited lists of dictionary phrases.
- output
Path GooglePrivacy Dlp V2Cloud Storage Path - Location to store dictionary artifacts in Cloud Storage. These files will only be accessible by project owners and the DLP API. If any of these artifacts are modified, the dictionary is considered invalid and can no longer be used.
- big_
query_ Googlefield Privacy Dlp V2Big Query Field - Field in a BigQuery table where each cell represents a dictionary phrase.
- cloud_
storage_ Googlefile_ set Privacy Dlp V2Cloud Storage File Set - Set of files containing newline-delimited lists of dictionary phrases.
- output_
path GooglePrivacy Dlp V2Cloud Storage Path - Location to store dictionary artifacts in Cloud Storage. These files will only be accessible by project owners and the DLP API. If any of these artifacts are modified, the dictionary is considered invalid and can no longer be used.
- big
Query Property MapField - Field in a BigQuery table where each cell represents a dictionary phrase.
- cloud
Storage Property MapFile Set - Set of files containing newline-delimited lists of dictionary phrases.
- output
Path Property Map - Location to store dictionary artifacts in Cloud Storage. These files will only be accessible by project owners and the DLP API. If any of these artifacts are modified, the dictionary is considered invalid and can no longer be used.
GooglePrivacyDlpV2LargeCustomDictionaryConfigResponse, GooglePrivacyDlpV2LargeCustomDictionaryConfigResponseArgs
- Big
Query Pulumi.Field Google Native. DLP. V2. Inputs. Google Privacy Dlp V2Big Query Field Response - Field in a BigQuery table where each cell represents a dictionary phrase.
- Cloud
Storage Pulumi.File Set Google Native. DLP. V2. Inputs. Google Privacy Dlp V2Cloud Storage File Set Response - Set of files containing newline-delimited lists of dictionary phrases.
- Output
Path Pulumi.Google Native. DLP. V2. Inputs. Google Privacy Dlp V2Cloud Storage Path Response - Location to store dictionary artifacts in Cloud Storage. These files will only be accessible by project owners and the DLP API. If any of these artifacts are modified, the dictionary is considered invalid and can no longer be used.
- Big
Query GoogleField Privacy Dlp V2Big Query Field Response - Field in a BigQuery table where each cell represents a dictionary phrase.
- Cloud
Storage GoogleFile Set Privacy Dlp V2Cloud Storage File Set Response - Set of files containing newline-delimited lists of dictionary phrases.
- Output
Path GooglePrivacy Dlp V2Cloud Storage Path Response - Location to store dictionary artifacts in Cloud Storage. These files will only be accessible by project owners and the DLP API. If any of these artifacts are modified, the dictionary is considered invalid and can no longer be used.
- big
Query GoogleField Privacy Dlp V2Big Query Field Response - Field in a BigQuery table where each cell represents a dictionary phrase.
- cloud
Storage GoogleFile Set Privacy Dlp V2Cloud Storage File Set Response - Set of files containing newline-delimited lists of dictionary phrases.
- output
Path GooglePrivacy Dlp V2Cloud Storage Path Response - Location to store dictionary artifacts in Cloud Storage. These files will only be accessible by project owners and the DLP API. If any of these artifacts are modified, the dictionary is considered invalid and can no longer be used.
- big
Query GoogleField Privacy Dlp V2Big Query Field Response - Field in a BigQuery table where each cell represents a dictionary phrase.
- cloud
Storage GoogleFile Set Privacy Dlp V2Cloud Storage File Set Response - Set of files containing newline-delimited lists of dictionary phrases.
- output
Path GooglePrivacy Dlp V2Cloud Storage Path Response - Location to store dictionary artifacts in Cloud Storage. These files will only be accessible by project owners and the DLP API. If any of these artifacts are modified, the dictionary is considered invalid and can no longer be used.
- big_
query_ Googlefield Privacy Dlp V2Big Query Field Response - Field in a BigQuery table where each cell represents a dictionary phrase.
- cloud_
storage_ Googlefile_ set Privacy Dlp V2Cloud Storage File Set Response - Set of files containing newline-delimited lists of dictionary phrases.
- output_
path GooglePrivacy Dlp V2Cloud Storage Path Response - Location to store dictionary artifacts in Cloud Storage. These files will only be accessible by project owners and the DLP API. If any of these artifacts are modified, the dictionary is considered invalid and can no longer be used.
- big
Query Property MapField - Field in a BigQuery table where each cell represents a dictionary phrase.
- cloud
Storage Property MapFile Set - Set of files containing newline-delimited lists of dictionary phrases.
- output
Path Property Map - Location to store dictionary artifacts in Cloud Storage. These files will only be accessible by project owners and the DLP API. If any of these artifacts are modified, the dictionary is considered invalid and can no longer be used.
GooglePrivacyDlpV2LargeCustomDictionaryStatsResponse, GooglePrivacyDlpV2LargeCustomDictionaryStatsResponseArgs
- Approx
Num stringPhrases - Approximate number of distinct phrases in the dictionary.
- Approx
Num stringPhrases - Approximate number of distinct phrases in the dictionary.
- approx
Num StringPhrases - Approximate number of distinct phrases in the dictionary.
- approx
Num stringPhrases - Approximate number of distinct phrases in the dictionary.
- approx_
num_ strphrases - Approximate number of distinct phrases in the dictionary.
- approx
Num StringPhrases - Approximate number of distinct phrases in the dictionary.
GooglePrivacyDlpV2Regex, GooglePrivacyDlpV2RegexArgs
- Group
Indexes List<int> - The index of the submatch to extract as findings. When not specified, the entire match is returned. No more than 3 may be included.
- Pattern string
- Pattern defining the regular expression. Its syntax (https://github.com/google/re2/wiki/Syntax) can be found under the google/re2 repository on GitHub.
- Group
Indexes []int - The index of the submatch to extract as findings. When not specified, the entire match is returned. No more than 3 may be included.
- Pattern string
- Pattern defining the regular expression. Its syntax (https://github.com/google/re2/wiki/Syntax) can be found under the google/re2 repository on GitHub.
- group
Indexes List<Integer> - The index of the submatch to extract as findings. When not specified, the entire match is returned. No more than 3 may be included.
- pattern String
- Pattern defining the regular expression. Its syntax (https://github.com/google/re2/wiki/Syntax) can be found under the google/re2 repository on GitHub.
- group
Indexes number[] - The index of the submatch to extract as findings. When not specified, the entire match is returned. No more than 3 may be included.
- pattern string
- Pattern defining the regular expression. Its syntax (https://github.com/google/re2/wiki/Syntax) can be found under the google/re2 repository on GitHub.
- group_
indexes Sequence[int] - The index of the submatch to extract as findings. When not specified, the entire match is returned. No more than 3 may be included.
- pattern str
- Pattern defining the regular expression. Its syntax (https://github.com/google/re2/wiki/Syntax) can be found under the google/re2 repository on GitHub.
- group
Indexes List<Number> - The index of the submatch to extract as findings. When not specified, the entire match is returned. No more than 3 may be included.
- pattern String
- Pattern defining the regular expression. Its syntax (https://github.com/google/re2/wiki/Syntax) can be found under the google/re2 repository on GitHub.
GooglePrivacyDlpV2RegexResponse, GooglePrivacyDlpV2RegexResponseArgs
- Group
Indexes List<int> - The index of the submatch to extract as findings. When not specified, the entire match is returned. No more than 3 may be included.
- Pattern string
- Pattern defining the regular expression. Its syntax (https://github.com/google/re2/wiki/Syntax) can be found under the google/re2 repository on GitHub.
- Group
Indexes []int - The index of the submatch to extract as findings. When not specified, the entire match is returned. No more than 3 may be included.
- Pattern string
- Pattern defining the regular expression. Its syntax (https://github.com/google/re2/wiki/Syntax) can be found under the google/re2 repository on GitHub.
- group
Indexes List<Integer> - The index of the submatch to extract as findings. When not specified, the entire match is returned. No more than 3 may be included.
- pattern String
- Pattern defining the regular expression. Its syntax (https://github.com/google/re2/wiki/Syntax) can be found under the google/re2 repository on GitHub.
- group
Indexes number[] - The index of the submatch to extract as findings. When not specified, the entire match is returned. No more than 3 may be included.
- pattern string
- Pattern defining the regular expression. Its syntax (https://github.com/google/re2/wiki/Syntax) can be found under the google/re2 repository on GitHub.
- group_
indexes Sequence[int] - The index of the submatch to extract as findings. When not specified, the entire match is returned. No more than 3 may be included.
- pattern str
- Pattern defining the regular expression. Its syntax (https://github.com/google/re2/wiki/Syntax) can be found under the google/re2 repository on GitHub.
- group
Indexes List<Number> - The index of the submatch to extract as findings. When not specified, the entire match is returned. No more than 3 may be included.
- pattern String
- Pattern defining the regular expression. Its syntax (https://github.com/google/re2/wiki/Syntax) can be found under the google/re2 repository on GitHub.
GooglePrivacyDlpV2StoredInfoTypeConfig, GooglePrivacyDlpV2StoredInfoTypeConfigArgs
- Description string
- Description of the StoredInfoType (max 256 characters).
- Dictionary
Pulumi.
Google Native. DLP. V2. Inputs. Google Privacy Dlp V2Dictionary - Store dictionary-based CustomInfoType.
- Display
Name string - Display name of the StoredInfoType (max 256 characters).
- Large
Custom Pulumi.Dictionary Google Native. DLP. V2. Inputs. Google Privacy Dlp V2Large Custom Dictionary Config - StoredInfoType where findings are defined by a dictionary of phrases.
- Regex
Pulumi.
Google Native. DLP. V2. Inputs. Google Privacy Dlp V2Regex - Store regular expression-based StoredInfoType.
- Description string
- Description of the StoredInfoType (max 256 characters).
- Dictionary
Google
Privacy Dlp V2Dictionary - Store dictionary-based CustomInfoType.
- Display
Name string - Display name of the StoredInfoType (max 256 characters).
- Large
Custom GoogleDictionary Privacy Dlp V2Large Custom Dictionary Config - StoredInfoType where findings are defined by a dictionary of phrases.
- Regex
Google
Privacy Dlp V2Regex - Store regular expression-based StoredInfoType.
- description String
- Description of the StoredInfoType (max 256 characters).
- dictionary
Google
Privacy Dlp V2Dictionary - Store dictionary-based CustomInfoType.
- display
Name String - Display name of the StoredInfoType (max 256 characters).
- large
Custom GoogleDictionary Privacy Dlp V2Large Custom Dictionary Config - StoredInfoType where findings are defined by a dictionary of phrases.
- regex
Google
Privacy Dlp V2Regex - Store regular expression-based StoredInfoType.
- description string
- Description of the StoredInfoType (max 256 characters).
- dictionary
Google
Privacy Dlp V2Dictionary - Store dictionary-based CustomInfoType.
- display
Name string - Display name of the StoredInfoType (max 256 characters).
- large
Custom GoogleDictionary Privacy Dlp V2Large Custom Dictionary Config - StoredInfoType where findings are defined by a dictionary of phrases.
- regex
Google
Privacy Dlp V2Regex - Store regular expression-based StoredInfoType.
- description str
- Description of the StoredInfoType (max 256 characters).
- dictionary
Google
Privacy Dlp V2Dictionary - Store dictionary-based CustomInfoType.
- display_
name str - Display name of the StoredInfoType (max 256 characters).
- large_
custom_ Googledictionary Privacy Dlp V2Large Custom Dictionary Config - StoredInfoType where findings are defined by a dictionary of phrases.
- regex
Google
Privacy Dlp V2Regex - Store regular expression-based StoredInfoType.
- description String
- Description of the StoredInfoType (max 256 characters).
- dictionary Property Map
- Store dictionary-based CustomInfoType.
- display
Name String - Display name of the StoredInfoType (max 256 characters).
- large
Custom Property MapDictionary - StoredInfoType where findings are defined by a dictionary of phrases.
- regex Property Map
- Store regular expression-based StoredInfoType.
GooglePrivacyDlpV2StoredInfoTypeConfigResponse, GooglePrivacyDlpV2StoredInfoTypeConfigResponseArgs
- Description string
- Description of the StoredInfoType (max 256 characters).
- Dictionary
Pulumi.
Google Native. DLP. V2. Inputs. Google Privacy Dlp V2Dictionary Response - Store dictionary-based CustomInfoType.
- Display
Name string - Display name of the StoredInfoType (max 256 characters).
- Large
Custom Pulumi.Dictionary Google Native. DLP. V2. Inputs. Google Privacy Dlp V2Large Custom Dictionary Config Response - StoredInfoType where findings are defined by a dictionary of phrases.
- Regex
Pulumi.
Google Native. DLP. V2. Inputs. Google Privacy Dlp V2Regex Response - Store regular expression-based StoredInfoType.
- Description string
- Description of the StoredInfoType (max 256 characters).
- Dictionary
Google
Privacy Dlp V2Dictionary Response - Store dictionary-based CustomInfoType.
- Display
Name string - Display name of the StoredInfoType (max 256 characters).
- Large
Custom GoogleDictionary Privacy Dlp V2Large Custom Dictionary Config Response - StoredInfoType where findings are defined by a dictionary of phrases.
- Regex
Google
Privacy Dlp V2Regex Response - Store regular expression-based StoredInfoType.
- description String
- Description of the StoredInfoType (max 256 characters).
- dictionary
Google
Privacy Dlp V2Dictionary Response - Store dictionary-based CustomInfoType.
- display
Name String - Display name of the StoredInfoType (max 256 characters).
- large
Custom GoogleDictionary Privacy Dlp V2Large Custom Dictionary Config Response - StoredInfoType where findings are defined by a dictionary of phrases.
- regex
Google
Privacy Dlp V2Regex Response - Store regular expression-based StoredInfoType.
- description string
- Description of the StoredInfoType (max 256 characters).
- dictionary
Google
Privacy Dlp V2Dictionary Response - Store dictionary-based CustomInfoType.
- display
Name string - Display name of the StoredInfoType (max 256 characters).
- large
Custom GoogleDictionary Privacy Dlp V2Large Custom Dictionary Config Response - StoredInfoType where findings are defined by a dictionary of phrases.
- regex
Google
Privacy Dlp V2Regex Response - Store regular expression-based StoredInfoType.
- description str
- Description of the StoredInfoType (max 256 characters).
- dictionary
Google
Privacy Dlp V2Dictionary Response - Store dictionary-based CustomInfoType.
- display_
name str - Display name of the StoredInfoType (max 256 characters).
- large_
custom_ Googledictionary Privacy Dlp V2Large Custom Dictionary Config Response - StoredInfoType where findings are defined by a dictionary of phrases.
- regex
Google
Privacy Dlp V2Regex Response - Store regular expression-based StoredInfoType.
- description String
- Description of the StoredInfoType (max 256 characters).
- dictionary Property Map
- Store dictionary-based CustomInfoType.
- display
Name String - Display name of the StoredInfoType (max 256 characters).
- large
Custom Property MapDictionary - StoredInfoType where findings are defined by a dictionary of phrases.
- regex Property Map
- Store regular expression-based StoredInfoType.
GooglePrivacyDlpV2StoredInfoTypeStatsResponse, GooglePrivacyDlpV2StoredInfoTypeStatsResponseArgs
- Large
Custom Pulumi.Dictionary Google Native. DLP. V2. Inputs. Google Privacy Dlp V2Large Custom Dictionary Stats Response - StoredInfoType where findings are defined by a dictionary of phrases.
- Large
Custom GoogleDictionary Privacy Dlp V2Large Custom Dictionary Stats Response - StoredInfoType where findings are defined by a dictionary of phrases.
- large
Custom GoogleDictionary Privacy Dlp V2Large Custom Dictionary Stats Response - StoredInfoType where findings are defined by a dictionary of phrases.
- large
Custom GoogleDictionary Privacy Dlp V2Large Custom Dictionary Stats Response - StoredInfoType where findings are defined by a dictionary of phrases.
- large_
custom_ Googledictionary Privacy Dlp V2Large Custom Dictionary Stats Response - StoredInfoType where findings are defined by a dictionary of phrases.
- large
Custom Property MapDictionary - StoredInfoType where findings are defined by a dictionary of phrases.
GooglePrivacyDlpV2StoredInfoTypeVersionResponse, GooglePrivacyDlpV2StoredInfoTypeVersionResponseArgs
- Config
Pulumi.
Google Native. DLP. V2. Inputs. Google Privacy Dlp V2Stored Info Type Config Response - StoredInfoType configuration.
- Create
Time string - Create timestamp of the version. Read-only, determined by the system when the version is created.
- Errors
List<Pulumi.
Google Native. DLP. V2. Inputs. Google Privacy Dlp V2Error Response> - Errors that occurred when creating this storedInfoType version, or anomalies detected in the storedInfoType data that render it unusable. Only the five most recent errors will be displayed, with the most recent error appearing first. For example, some of the data for stored custom dictionaries is put in the user's Cloud Storage bucket, and if this data is modified or deleted by the user or another system, the dictionary becomes invalid. If any errors occur, fix the problem indicated by the error message and use the UpdateStoredInfoType API method to create another version of the storedInfoType to continue using it, reusing the same
config
if it was not the source of the error. - State string
- Stored info type version state. Read-only, updated by the system during dictionary creation.
- Stats
Pulumi.
Google Native. DLP. V2. Inputs. Google Privacy Dlp V2Stored Info Type Stats Response - Statistics about this storedInfoType version.
- Config
Google
Privacy Dlp V2Stored Info Type Config Response - StoredInfoType configuration.
- Create
Time string - Create timestamp of the version. Read-only, determined by the system when the version is created.
- Errors
[]Google
Privacy Dlp V2Error Response - Errors that occurred when creating this storedInfoType version, or anomalies detected in the storedInfoType data that render it unusable. Only the five most recent errors will be displayed, with the most recent error appearing first. For example, some of the data for stored custom dictionaries is put in the user's Cloud Storage bucket, and if this data is modified or deleted by the user or another system, the dictionary becomes invalid. If any errors occur, fix the problem indicated by the error message and use the UpdateStoredInfoType API method to create another version of the storedInfoType to continue using it, reusing the same
config
if it was not the source of the error. - State string
- Stored info type version state. Read-only, updated by the system during dictionary creation.
- Stats
Google
Privacy Dlp V2Stored Info Type Stats Response - Statistics about this storedInfoType version.
- config
Google
Privacy Dlp V2Stored Info Type Config Response - StoredInfoType configuration.
- create
Time String - Create timestamp of the version. Read-only, determined by the system when the version is created.
- errors
List<Google
Privacy Dlp V2Error Response> - Errors that occurred when creating this storedInfoType version, or anomalies detected in the storedInfoType data that render it unusable. Only the five most recent errors will be displayed, with the most recent error appearing first. For example, some of the data for stored custom dictionaries is put in the user's Cloud Storage bucket, and if this data is modified or deleted by the user or another system, the dictionary becomes invalid. If any errors occur, fix the problem indicated by the error message and use the UpdateStoredInfoType API method to create another version of the storedInfoType to continue using it, reusing the same
config
if it was not the source of the error. - state String
- Stored info type version state. Read-only, updated by the system during dictionary creation.
- stats
Google
Privacy Dlp V2Stored Info Type Stats Response - Statistics about this storedInfoType version.
- config
Google
Privacy Dlp V2Stored Info Type Config Response - StoredInfoType configuration.
- create
Time string - Create timestamp of the version. Read-only, determined by the system when the version is created.
- errors
Google
Privacy Dlp V2Error Response[] - Errors that occurred when creating this storedInfoType version, or anomalies detected in the storedInfoType data that render it unusable. Only the five most recent errors will be displayed, with the most recent error appearing first. For example, some of the data for stored custom dictionaries is put in the user's Cloud Storage bucket, and if this data is modified or deleted by the user or another system, the dictionary becomes invalid. If any errors occur, fix the problem indicated by the error message and use the UpdateStoredInfoType API method to create another version of the storedInfoType to continue using it, reusing the same
config
if it was not the source of the error. - state string
- Stored info type version state. Read-only, updated by the system during dictionary creation.
- stats
Google
Privacy Dlp V2Stored Info Type Stats Response - Statistics about this storedInfoType version.
- config
Google
Privacy Dlp V2Stored Info Type Config Response - StoredInfoType configuration.
- create_
time str - Create timestamp of the version. Read-only, determined by the system when the version is created.
- errors
Sequence[Google
Privacy Dlp V2Error Response] - Errors that occurred when creating this storedInfoType version, or anomalies detected in the storedInfoType data that render it unusable. Only the five most recent errors will be displayed, with the most recent error appearing first. For example, some of the data for stored custom dictionaries is put in the user's Cloud Storage bucket, and if this data is modified or deleted by the user or another system, the dictionary becomes invalid. If any errors occur, fix the problem indicated by the error message and use the UpdateStoredInfoType API method to create another version of the storedInfoType to continue using it, reusing the same
config
if it was not the source of the error. - state str
- Stored info type version state. Read-only, updated by the system during dictionary creation.
- stats
Google
Privacy Dlp V2Stored Info Type Stats Response - Statistics about this storedInfoType version.
- config Property Map
- StoredInfoType configuration.
- create
Time String - Create timestamp of the version. Read-only, determined by the system when the version is created.
- errors List<Property Map>
- Errors that occurred when creating this storedInfoType version, or anomalies detected in the storedInfoType data that render it unusable. Only the five most recent errors will be displayed, with the most recent error appearing first. For example, some of the data for stored custom dictionaries is put in the user's Cloud Storage bucket, and if this data is modified or deleted by the user or another system, the dictionary becomes invalid. If any errors occur, fix the problem indicated by the error message and use the UpdateStoredInfoType API method to create another version of the storedInfoType to continue using it, reusing the same
config
if it was not the source of the error. - state String
- Stored info type version state. Read-only, updated by the system during dictionary creation.
- stats Property Map
- Statistics about this storedInfoType version.
GooglePrivacyDlpV2WordList, GooglePrivacyDlpV2WordListArgs
- Words List<string>
- Words or phrases defining the dictionary. The dictionary must contain at least one phrase and every phrase must contain at least 2 characters that are letters or digits. [required]
- Words []string
- Words or phrases defining the dictionary. The dictionary must contain at least one phrase and every phrase must contain at least 2 characters that are letters or digits. [required]
- words List<String>
- Words or phrases defining the dictionary. The dictionary must contain at least one phrase and every phrase must contain at least 2 characters that are letters or digits. [required]
- words string[]
- Words or phrases defining the dictionary. The dictionary must contain at least one phrase and every phrase must contain at least 2 characters that are letters or digits. [required]
- words Sequence[str]
- Words or phrases defining the dictionary. The dictionary must contain at least one phrase and every phrase must contain at least 2 characters that are letters or digits. [required]
- words List<String>
- Words or phrases defining the dictionary. The dictionary must contain at least one phrase and every phrase must contain at least 2 characters that are letters or digits. [required]
GooglePrivacyDlpV2WordListResponse, GooglePrivacyDlpV2WordListResponseArgs
- Words List<string>
- Words or phrases defining the dictionary. The dictionary must contain at least one phrase and every phrase must contain at least 2 characters that are letters or digits. [required]
- Words []string
- Words or phrases defining the dictionary. The dictionary must contain at least one phrase and every phrase must contain at least 2 characters that are letters or digits. [required]
- words List<String>
- Words or phrases defining the dictionary. The dictionary must contain at least one phrase and every phrase must contain at least 2 characters that are letters or digits. [required]
- words string[]
- Words or phrases defining the dictionary. The dictionary must contain at least one phrase and every phrase must contain at least 2 characters that are letters or digits. [required]
- words Sequence[str]
- Words or phrases defining the dictionary. The dictionary must contain at least one phrase and every phrase must contain at least 2 characters that are letters or digits. [required]
- words List<String>
- Words or phrases defining the dictionary. The dictionary must contain at least one phrase and every phrase must contain at least 2 characters that are letters or digits. [required]
GoogleRpcStatusResponse, GoogleRpcStatusResponseArgs
- Code int
- The status code, which should be an enum value of google.rpc.Code.
- Details
List<Immutable
Dictionary<string, string>> - A list of messages that carry the error details. There is a common set of message types for APIs to use.
- Message string
- A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
- Code int
- The status code, which should be an enum value of google.rpc.Code.
- Details []map[string]string
- A list of messages that carry the error details. There is a common set of message types for APIs to use.
- Message string
- A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
- code Integer
- The status code, which should be an enum value of google.rpc.Code.
- details List<Map<String,String>>
- A list of messages that carry the error details. There is a common set of message types for APIs to use.
- message String
- A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
- code number
- The status code, which should be an enum value of google.rpc.Code.
- details {[key: string]: string}[]
- A list of messages that carry the error details. There is a common set of message types for APIs to use.
- message string
- A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
- code int
- The status code, which should be an enum value of google.rpc.Code.
- details Sequence[Mapping[str, str]]
- A list of messages that carry the error details. There is a common set of message types for APIs to use.
- message str
- A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
- code Number
- The status code, which should be an enum value of google.rpc.Code.
- details List<Map<String>>
- A list of messages that carry the error details. There is a common set of message types for APIs to use.
- message String
- A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
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.