Google Cloud Native is in preview. Google Cloud Classic is fully supported.
google-native.dataplex/v1.Asset
Explore with Pulumi AI
Google Cloud Native is in preview. Google Cloud Classic is fully supported.
Creates an asset resource. Auto-naming is currently not supported for this resource.
Create Asset Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Asset(name: string, args: AssetArgs, opts?: CustomResourceOptions);
@overload
def Asset(resource_name: str,
args: AssetArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Asset(resource_name: str,
opts: Optional[ResourceOptions] = None,
asset_id: Optional[str] = None,
lake_id: Optional[str] = None,
resource_spec: Optional[GoogleCloudDataplexV1AssetResourceSpecArgs] = None,
description: Optional[str] = None,
discovery_spec: Optional[GoogleCloudDataplexV1AssetDiscoverySpecArgs] = None,
display_name: Optional[str] = None,
labels: Optional[Mapping[str, str]] = None,
location: Optional[str] = None,
project: Optional[str] = None,
zone: Optional[str] = None)
func NewAsset(ctx *Context, name string, args AssetArgs, opts ...ResourceOption) (*Asset, error)
public Asset(string name, AssetArgs args, CustomResourceOptions? opts = null)
type: google-native:dataplex/v1:Asset
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. AssetArgs - 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. AssetArgs - 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. AssetArgs - 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. AssetArgs - 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. AssetArgs - 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 assetResource = new GoogleNative.Dataplex.V1.Asset("assetResource", new()
{
AssetId = "string",
LakeId = "string",
ResourceSpec = new GoogleNative.Dataplex.V1.Inputs.GoogleCloudDataplexV1AssetResourceSpecArgs
{
Type = GoogleNative.Dataplex.V1.GoogleCloudDataplexV1AssetResourceSpecType.TypeUnspecified,
Name = "string",
ReadAccessMode = GoogleNative.Dataplex.V1.GoogleCloudDataplexV1AssetResourceSpecReadAccessMode.AccessModeUnspecified,
},
Description = "string",
DiscoverySpec = new GoogleNative.Dataplex.V1.Inputs.GoogleCloudDataplexV1AssetDiscoverySpecArgs
{
CsvOptions = new GoogleNative.Dataplex.V1.Inputs.GoogleCloudDataplexV1AssetDiscoverySpecCsvOptionsArgs
{
Delimiter = "string",
DisableTypeInference = false,
Encoding = "string",
HeaderRows = 0,
},
Enabled = false,
ExcludePatterns = new[]
{
"string",
},
IncludePatterns = new[]
{
"string",
},
JsonOptions = new GoogleNative.Dataplex.V1.Inputs.GoogleCloudDataplexV1AssetDiscoverySpecJsonOptionsArgs
{
DisableTypeInference = false,
Encoding = "string",
},
Schedule = "string",
},
DisplayName = "string",
Labels =
{
{ "string", "string" },
},
Location = "string",
Project = "string",
Zone = "string",
});
example, err := dataplex.NewAsset(ctx, "assetResource", &dataplex.AssetArgs{
AssetId: pulumi.String("string"),
LakeId: pulumi.String("string"),
ResourceSpec: &dataplex.GoogleCloudDataplexV1AssetResourceSpecArgs{
Type: dataplex.GoogleCloudDataplexV1AssetResourceSpecTypeTypeUnspecified,
Name: pulumi.String("string"),
ReadAccessMode: dataplex.GoogleCloudDataplexV1AssetResourceSpecReadAccessModeAccessModeUnspecified,
},
Description: pulumi.String("string"),
DiscoverySpec: &dataplex.GoogleCloudDataplexV1AssetDiscoverySpecArgs{
CsvOptions: &dataplex.GoogleCloudDataplexV1AssetDiscoverySpecCsvOptionsArgs{
Delimiter: pulumi.String("string"),
DisableTypeInference: pulumi.Bool(false),
Encoding: pulumi.String("string"),
HeaderRows: pulumi.Int(0),
},
Enabled: pulumi.Bool(false),
ExcludePatterns: pulumi.StringArray{
pulumi.String("string"),
},
IncludePatterns: pulumi.StringArray{
pulumi.String("string"),
},
JsonOptions: &dataplex.GoogleCloudDataplexV1AssetDiscoverySpecJsonOptionsArgs{
DisableTypeInference: pulumi.Bool(false),
Encoding: pulumi.String("string"),
},
Schedule: pulumi.String("string"),
},
DisplayName: pulumi.String("string"),
Labels: pulumi.StringMap{
"string": pulumi.String("string"),
},
Location: pulumi.String("string"),
Project: pulumi.String("string"),
Zone: pulumi.String("string"),
})
var assetResource = new Asset("assetResource", AssetArgs.builder()
.assetId("string")
.lakeId("string")
.resourceSpec(GoogleCloudDataplexV1AssetResourceSpecArgs.builder()
.type("TYPE_UNSPECIFIED")
.name("string")
.readAccessMode("ACCESS_MODE_UNSPECIFIED")
.build())
.description("string")
.discoverySpec(GoogleCloudDataplexV1AssetDiscoverySpecArgs.builder()
.csvOptions(GoogleCloudDataplexV1AssetDiscoverySpecCsvOptionsArgs.builder()
.delimiter("string")
.disableTypeInference(false)
.encoding("string")
.headerRows(0)
.build())
.enabled(false)
.excludePatterns("string")
.includePatterns("string")
.jsonOptions(GoogleCloudDataplexV1AssetDiscoverySpecJsonOptionsArgs.builder()
.disableTypeInference(false)
.encoding("string")
.build())
.schedule("string")
.build())
.displayName("string")
.labels(Map.of("string", "string"))
.location("string")
.project("string")
.zone("string")
.build());
asset_resource = google_native.dataplex.v1.Asset("assetResource",
asset_id="string",
lake_id="string",
resource_spec={
"type": google_native.dataplex.v1.GoogleCloudDataplexV1AssetResourceSpecType.TYPE_UNSPECIFIED,
"name": "string",
"read_access_mode": google_native.dataplex.v1.GoogleCloudDataplexV1AssetResourceSpecReadAccessMode.ACCESS_MODE_UNSPECIFIED,
},
description="string",
discovery_spec={
"csv_options": {
"delimiter": "string",
"disable_type_inference": False,
"encoding": "string",
"header_rows": 0,
},
"enabled": False,
"exclude_patterns": ["string"],
"include_patterns": ["string"],
"json_options": {
"disable_type_inference": False,
"encoding": "string",
},
"schedule": "string",
},
display_name="string",
labels={
"string": "string",
},
location="string",
project="string",
zone="string")
const assetResource = new google_native.dataplex.v1.Asset("assetResource", {
assetId: "string",
lakeId: "string",
resourceSpec: {
type: google_native.dataplex.v1.GoogleCloudDataplexV1AssetResourceSpecType.TypeUnspecified,
name: "string",
readAccessMode: google_native.dataplex.v1.GoogleCloudDataplexV1AssetResourceSpecReadAccessMode.AccessModeUnspecified,
},
description: "string",
discoverySpec: {
csvOptions: {
delimiter: "string",
disableTypeInference: false,
encoding: "string",
headerRows: 0,
},
enabled: false,
excludePatterns: ["string"],
includePatterns: ["string"],
jsonOptions: {
disableTypeInference: false,
encoding: "string",
},
schedule: "string",
},
displayName: "string",
labels: {
string: "string",
},
location: "string",
project: "string",
zone: "string",
});
type: google-native:dataplex/v1:Asset
properties:
assetId: string
description: string
discoverySpec:
csvOptions:
delimiter: string
disableTypeInference: false
encoding: string
headerRows: 0
enabled: false
excludePatterns:
- string
includePatterns:
- string
jsonOptions:
disableTypeInference: false
encoding: string
schedule: string
displayName: string
labels:
string: string
lakeId: string
location: string
project: string
resourceSpec:
name: string
readAccessMode: ACCESS_MODE_UNSPECIFIED
type: TYPE_UNSPECIFIED
zone: string
Asset 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 Asset resource accepts the following input properties:
- Asset
Id This property is required. Changes to this property will trigger replacement.
- Required. Asset identifier. This ID will be used to generate names such as table names when publishing metadata to Hive Metastore and BigQuery. * Must contain only lowercase letters, numbers and hyphens. * Must start with a letter. * Must end with a number or a letter. * Must be between 1-63 characters. * Must be unique within the zone.
- Lake
Id This property is required. Changes to this property will trigger replacement.
- Resource
Spec This property is required. Pulumi.Google Native. Dataplex. V1. Inputs. Google Cloud Dataplex V1Asset Resource Spec - Specification of the resource that is referenced by this asset.
- Description string
- Optional. Description of the asset.
- Discovery
Spec Pulumi.Google Native. Dataplex. V1. Inputs. Google Cloud Dataplex V1Asset Discovery Spec - Optional. Specification of the discovery feature applied to data referenced by this asset. When this spec is left unset, the asset will use the spec set on the parent zone.
- Display
Name string - Optional. User friendly display name.
- Labels Dictionary<string, string>
- Optional. User defined labels for the asset.
- Location
Changes to this property will trigger replacement.
- Project
Changes to this property will trigger replacement.
- Zone
Changes to this property will trigger replacement.
- Asset
Id This property is required. Changes to this property will trigger replacement.
- Required. Asset identifier. This ID will be used to generate names such as table names when publishing metadata to Hive Metastore and BigQuery. * Must contain only lowercase letters, numbers and hyphens. * Must start with a letter. * Must end with a number or a letter. * Must be between 1-63 characters. * Must be unique within the zone.
- Lake
Id This property is required. Changes to this property will trigger replacement.
- Resource
Spec This property is required. GoogleCloud Dataplex V1Asset Resource Spec Args - Specification of the resource that is referenced by this asset.
- Description string
- Optional. Description of the asset.
- Discovery
Spec GoogleCloud Dataplex V1Asset Discovery Spec Args - Optional. Specification of the discovery feature applied to data referenced by this asset. When this spec is left unset, the asset will use the spec set on the parent zone.
- Display
Name string - Optional. User friendly display name.
- Labels map[string]string
- Optional. User defined labels for the asset.
- Location
Changes to this property will trigger replacement.
- Project
Changes to this property will trigger replacement.
- Zone
Changes to this property will trigger replacement.
- asset
Id This property is required. Changes to this property will trigger replacement.
- Required. Asset identifier. This ID will be used to generate names such as table names when publishing metadata to Hive Metastore and BigQuery. * Must contain only lowercase letters, numbers and hyphens. * Must start with a letter. * Must end with a number or a letter. * Must be between 1-63 characters. * Must be unique within the zone.
- lake
Id This property is required. Changes to this property will trigger replacement.
- resource
Spec This property is required. GoogleCloud Dataplex V1Asset Resource Spec - Specification of the resource that is referenced by this asset.
- description String
- Optional. Description of the asset.
- discovery
Spec GoogleCloud Dataplex V1Asset Discovery Spec - Optional. Specification of the discovery feature applied to data referenced by this asset. When this spec is left unset, the asset will use the spec set on the parent zone.
- display
Name String - Optional. User friendly display name.
- labels Map<String,String>
- Optional. User defined labels for the asset.
- location
Changes to this property will trigger replacement.
- project
Changes to this property will trigger replacement.
- zone
Changes to this property will trigger replacement.
- asset
Id This property is required. Changes to this property will trigger replacement.
- Required. Asset identifier. This ID will be used to generate names such as table names when publishing metadata to Hive Metastore and BigQuery. * Must contain only lowercase letters, numbers and hyphens. * Must start with a letter. * Must end with a number or a letter. * Must be between 1-63 characters. * Must be unique within the zone.
- lake
Id This property is required. Changes to this property will trigger replacement.
- resource
Spec This property is required. GoogleCloud Dataplex V1Asset Resource Spec - Specification of the resource that is referenced by this asset.
- description string
- Optional. Description of the asset.
- discovery
Spec GoogleCloud Dataplex V1Asset Discovery Spec - Optional. Specification of the discovery feature applied to data referenced by this asset. When this spec is left unset, the asset will use the spec set on the parent zone.
- display
Name string - Optional. User friendly display name.
- labels {[key: string]: string}
- Optional. User defined labels for the asset.
- location
Changes to this property will trigger replacement.
- project
Changes to this property will trigger replacement.
- zone
Changes to this property will trigger replacement.
- asset_
id This property is required. Changes to this property will trigger replacement.
- Required. Asset identifier. This ID will be used to generate names such as table names when publishing metadata to Hive Metastore and BigQuery. * Must contain only lowercase letters, numbers and hyphens. * Must start with a letter. * Must end with a number or a letter. * Must be between 1-63 characters. * Must be unique within the zone.
- lake_
id This property is required. Changes to this property will trigger replacement.
- resource_
spec This property is required. GoogleCloud Dataplex V1Asset Resource Spec Args - Specification of the resource that is referenced by this asset.
- description str
- Optional. Description of the asset.
- discovery_
spec GoogleCloud Dataplex V1Asset Discovery Spec Args - Optional. Specification of the discovery feature applied to data referenced by this asset. When this spec is left unset, the asset will use the spec set on the parent zone.
- display_
name str - Optional. User friendly display name.
- labels Mapping[str, str]
- Optional. User defined labels for the asset.
- location
Changes to this property will trigger replacement.
- project
Changes to this property will trigger replacement.
- zone
Changes to this property will trigger replacement.
- asset
Id This property is required. Changes to this property will trigger replacement.
- Required. Asset identifier. This ID will be used to generate names such as table names when publishing metadata to Hive Metastore and BigQuery. * Must contain only lowercase letters, numbers and hyphens. * Must start with a letter. * Must end with a number or a letter. * Must be between 1-63 characters. * Must be unique within the zone.
- lake
Id This property is required. Changes to this property will trigger replacement.
- resource
Spec This property is required. Property Map - Specification of the resource that is referenced by this asset.
- description String
- Optional. Description of the asset.
- discovery
Spec Property Map - Optional. Specification of the discovery feature applied to data referenced by this asset. When this spec is left unset, the asset will use the spec set on the parent zone.
- display
Name String - Optional. User friendly display name.
- labels Map<String>
- Optional. User defined labels for the asset.
- location
Changes to this property will trigger replacement.
- project
Changes to this property will trigger replacement.
- zone
Changes to this property will trigger replacement.
Outputs
All input properties are implicitly available as output properties. Additionally, the Asset resource produces the following output properties:
- Create
Time string - The time when the asset was created.
- Discovery
Status Pulumi.Google Native. Dataplex. V1. Outputs. Google Cloud Dataplex V1Asset Discovery Status Response - Status of the discovery feature applied to data referenced by this asset.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The relative resource name of the asset, of the form: projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}/assets/{asset_id}.
- Resource
Status Pulumi.Google Native. Dataplex. V1. Outputs. Google Cloud Dataplex V1Asset Resource Status Response - Status of the resource referenced by this asset.
- Security
Status Pulumi.Google Native. Dataplex. V1. Outputs. Google Cloud Dataplex V1Asset Security Status Response - Status of the security policy applied to resource referenced by this asset.
- State string
- Current state of the asset.
- Uid string
- System generated globally unique ID for the asset. This ID will be different if the asset is deleted and re-created with the same name.
- Update
Time string - The time when the asset was last updated.
- Create
Time string - The time when the asset was created.
- Discovery
Status GoogleCloud Dataplex V1Asset Discovery Status Response - Status of the discovery feature applied to data referenced by this asset.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The relative resource name of the asset, of the form: projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}/assets/{asset_id}.
- Resource
Status GoogleCloud Dataplex V1Asset Resource Status Response - Status of the resource referenced by this asset.
- Security
Status GoogleCloud Dataplex V1Asset Security Status Response - Status of the security policy applied to resource referenced by this asset.
- State string
- Current state of the asset.
- Uid string
- System generated globally unique ID for the asset. This ID will be different if the asset is deleted and re-created with the same name.
- Update
Time string - The time when the asset was last updated.
- create
Time String - The time when the asset was created.
- discovery
Status GoogleCloud Dataplex V1Asset Discovery Status Response - Status of the discovery feature applied to data referenced by this asset.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The relative resource name of the asset, of the form: projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}/assets/{asset_id}.
- resource
Status GoogleCloud Dataplex V1Asset Resource Status Response - Status of the resource referenced by this asset.
- security
Status GoogleCloud Dataplex V1Asset Security Status Response - Status of the security policy applied to resource referenced by this asset.
- state String
- Current state of the asset.
- uid String
- System generated globally unique ID for the asset. This ID will be different if the asset is deleted and re-created with the same name.
- update
Time String - The time when the asset was last updated.
- create
Time string - The time when the asset was created.
- discovery
Status GoogleCloud Dataplex V1Asset Discovery Status Response - Status of the discovery feature applied to data referenced by this asset.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The relative resource name of the asset, of the form: projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}/assets/{asset_id}.
- resource
Status GoogleCloud Dataplex V1Asset Resource Status Response - Status of the resource referenced by this asset.
- security
Status GoogleCloud Dataplex V1Asset Security Status Response - Status of the security policy applied to resource referenced by this asset.
- state string
- Current state of the asset.
- uid string
- System generated globally unique ID for the asset. This ID will be different if the asset is deleted and re-created with the same name.
- update
Time string - The time when the asset was last updated.
- create_
time str - The time when the asset was created.
- discovery_
status GoogleCloud Dataplex V1Asset Discovery Status Response - Status of the discovery feature applied to data referenced by this asset.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The relative resource name of the asset, of the form: projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}/assets/{asset_id}.
- resource_
status GoogleCloud Dataplex V1Asset Resource Status Response - Status of the resource referenced by this asset.
- security_
status GoogleCloud Dataplex V1Asset Security Status Response - Status of the security policy applied to resource referenced by this asset.
- state str
- Current state of the asset.
- uid str
- System generated globally unique ID for the asset. This ID will be different if the asset is deleted and re-created with the same name.
- update_
time str - The time when the asset was last updated.
- create
Time String - The time when the asset was created.
- discovery
Status Property Map - Status of the discovery feature applied to data referenced by this asset.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The relative resource name of the asset, of the form: projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}/assets/{asset_id}.
- resource
Status Property Map - Status of the resource referenced by this asset.
- security
Status Property Map - Status of the security policy applied to resource referenced by this asset.
- state String
- Current state of the asset.
- uid String
- System generated globally unique ID for the asset. This ID will be different if the asset is deleted and re-created with the same name.
- update
Time String - The time when the asset was last updated.
Supporting Types
GoogleCloudDataplexV1AssetDiscoverySpec, GoogleCloudDataplexV1AssetDiscoverySpecArgs
- Csv
Options Pulumi.Google Native. Dataplex. V1. Inputs. Google Cloud Dataplex V1Asset Discovery Spec Csv Options - Optional. Configuration for CSV data.
- Enabled bool
- Optional. Whether discovery is enabled.
- Exclude
Patterns List<string> - Optional. The list of patterns to apply for selecting data to exclude during discovery. For Cloud Storage bucket assets, these are interpreted as glob patterns used to match object names. For BigQuery dataset assets, these are interpreted as patterns to match table names.
- Include
Patterns List<string> - Optional. The list of patterns to apply for selecting data to include during discovery if only a subset of the data should considered. For Cloud Storage bucket assets, these are interpreted as glob patterns used to match object names. For BigQuery dataset assets, these are interpreted as patterns to match table names.
- Json
Options Pulumi.Google Native. Dataplex. V1. Inputs. Google Cloud Dataplex V1Asset Discovery Spec Json Options - Optional. Configuration for Json data.
- Schedule string
- Optional. Cron schedule (https://en.wikipedia.org/wiki/Cron) for running discovery periodically. Successive discovery runs must be scheduled at least 60 minutes apart. The default value is to run discovery every 60 minutes. To explicitly set a timezone to the cron tab, apply a prefix in the cron tab: "CRON_TZ=${IANA_TIME_ZONE}" or TZ=${IANA_TIME_ZONE}". The ${IANA_TIME_ZONE} may only be a valid string from IANA time zone database. For example, CRON_TZ=America/New_York 1 * * * *, or TZ=America/New_York 1 * * * *.
- Csv
Options GoogleCloud Dataplex V1Asset Discovery Spec Csv Options - Optional. Configuration for CSV data.
- Enabled bool
- Optional. Whether discovery is enabled.
- Exclude
Patterns []string - Optional. The list of patterns to apply for selecting data to exclude during discovery. For Cloud Storage bucket assets, these are interpreted as glob patterns used to match object names. For BigQuery dataset assets, these are interpreted as patterns to match table names.
- Include
Patterns []string - Optional. The list of patterns to apply for selecting data to include during discovery if only a subset of the data should considered. For Cloud Storage bucket assets, these are interpreted as glob patterns used to match object names. For BigQuery dataset assets, these are interpreted as patterns to match table names.
- Json
Options GoogleCloud Dataplex V1Asset Discovery Spec Json Options - Optional. Configuration for Json data.
- Schedule string
- Optional. Cron schedule (https://en.wikipedia.org/wiki/Cron) for running discovery periodically. Successive discovery runs must be scheduled at least 60 minutes apart. The default value is to run discovery every 60 minutes. To explicitly set a timezone to the cron tab, apply a prefix in the cron tab: "CRON_TZ=${IANA_TIME_ZONE}" or TZ=${IANA_TIME_ZONE}". The ${IANA_TIME_ZONE} may only be a valid string from IANA time zone database. For example, CRON_TZ=America/New_York 1 * * * *, or TZ=America/New_York 1 * * * *.
- csv
Options GoogleCloud Dataplex V1Asset Discovery Spec Csv Options - Optional. Configuration for CSV data.
- enabled Boolean
- Optional. Whether discovery is enabled.
- exclude
Patterns List<String> - Optional. The list of patterns to apply for selecting data to exclude during discovery. For Cloud Storage bucket assets, these are interpreted as glob patterns used to match object names. For BigQuery dataset assets, these are interpreted as patterns to match table names.
- include
Patterns List<String> - Optional. The list of patterns to apply for selecting data to include during discovery if only a subset of the data should considered. For Cloud Storage bucket assets, these are interpreted as glob patterns used to match object names. For BigQuery dataset assets, these are interpreted as patterns to match table names.
- json
Options GoogleCloud Dataplex V1Asset Discovery Spec Json Options - Optional. Configuration for Json data.
- schedule String
- Optional. Cron schedule (https://en.wikipedia.org/wiki/Cron) for running discovery periodically. Successive discovery runs must be scheduled at least 60 minutes apart. The default value is to run discovery every 60 minutes. To explicitly set a timezone to the cron tab, apply a prefix in the cron tab: "CRON_TZ=${IANA_TIME_ZONE}" or TZ=${IANA_TIME_ZONE}". The ${IANA_TIME_ZONE} may only be a valid string from IANA time zone database. For example, CRON_TZ=America/New_York 1 * * * *, or TZ=America/New_York 1 * * * *.
- csv
Options GoogleCloud Dataplex V1Asset Discovery Spec Csv Options - Optional. Configuration for CSV data.
- enabled boolean
- Optional. Whether discovery is enabled.
- exclude
Patterns string[] - Optional. The list of patterns to apply for selecting data to exclude during discovery. For Cloud Storage bucket assets, these are interpreted as glob patterns used to match object names. For BigQuery dataset assets, these are interpreted as patterns to match table names.
- include
Patterns string[] - Optional. The list of patterns to apply for selecting data to include during discovery if only a subset of the data should considered. For Cloud Storage bucket assets, these are interpreted as glob patterns used to match object names. For BigQuery dataset assets, these are interpreted as patterns to match table names.
- json
Options GoogleCloud Dataplex V1Asset Discovery Spec Json Options - Optional. Configuration for Json data.
- schedule string
- Optional. Cron schedule (https://en.wikipedia.org/wiki/Cron) for running discovery periodically. Successive discovery runs must be scheduled at least 60 minutes apart. The default value is to run discovery every 60 minutes. To explicitly set a timezone to the cron tab, apply a prefix in the cron tab: "CRON_TZ=${IANA_TIME_ZONE}" or TZ=${IANA_TIME_ZONE}". The ${IANA_TIME_ZONE} may only be a valid string from IANA time zone database. For example, CRON_TZ=America/New_York 1 * * * *, or TZ=America/New_York 1 * * * *.
- csv_
options GoogleCloud Dataplex V1Asset Discovery Spec Csv Options - Optional. Configuration for CSV data.
- enabled bool
- Optional. Whether discovery is enabled.
- exclude_
patterns Sequence[str] - Optional. The list of patterns to apply for selecting data to exclude during discovery. For Cloud Storage bucket assets, these are interpreted as glob patterns used to match object names. For BigQuery dataset assets, these are interpreted as patterns to match table names.
- include_
patterns Sequence[str] - Optional. The list of patterns to apply for selecting data to include during discovery if only a subset of the data should considered. For Cloud Storage bucket assets, these are interpreted as glob patterns used to match object names. For BigQuery dataset assets, these are interpreted as patterns to match table names.
- json_
options GoogleCloud Dataplex V1Asset Discovery Spec Json Options - Optional. Configuration for Json data.
- schedule str
- Optional. Cron schedule (https://en.wikipedia.org/wiki/Cron) for running discovery periodically. Successive discovery runs must be scheduled at least 60 minutes apart. The default value is to run discovery every 60 minutes. To explicitly set a timezone to the cron tab, apply a prefix in the cron tab: "CRON_TZ=${IANA_TIME_ZONE}" or TZ=${IANA_TIME_ZONE}". The ${IANA_TIME_ZONE} may only be a valid string from IANA time zone database. For example, CRON_TZ=America/New_York 1 * * * *, or TZ=America/New_York 1 * * * *.
- csv
Options Property Map - Optional. Configuration for CSV data.
- enabled Boolean
- Optional. Whether discovery is enabled.
- exclude
Patterns List<String> - Optional. The list of patterns to apply for selecting data to exclude during discovery. For Cloud Storage bucket assets, these are interpreted as glob patterns used to match object names. For BigQuery dataset assets, these are interpreted as patterns to match table names.
- include
Patterns List<String> - Optional. The list of patterns to apply for selecting data to include during discovery if only a subset of the data should considered. For Cloud Storage bucket assets, these are interpreted as glob patterns used to match object names. For BigQuery dataset assets, these are interpreted as patterns to match table names.
- json
Options Property Map - Optional. Configuration for Json data.
- schedule String
- Optional. Cron schedule (https://en.wikipedia.org/wiki/Cron) for running discovery periodically. Successive discovery runs must be scheduled at least 60 minutes apart. The default value is to run discovery every 60 minutes. To explicitly set a timezone to the cron tab, apply a prefix in the cron tab: "CRON_TZ=${IANA_TIME_ZONE}" or TZ=${IANA_TIME_ZONE}". The ${IANA_TIME_ZONE} may only be a valid string from IANA time zone database. For example, CRON_TZ=America/New_York 1 * * * *, or TZ=America/New_York 1 * * * *.
GoogleCloudDataplexV1AssetDiscoverySpecCsvOptions, GoogleCloudDataplexV1AssetDiscoverySpecCsvOptionsArgs
- Delimiter string
- Optional. The delimiter being used to separate values. This defaults to ','.
- Disable
Type boolInference - Optional. Whether to disable the inference of data type for CSV data. If true, all columns will be registered as strings.
- Encoding string
- Optional. The character encoding of the data. The default is UTF-8.
- Header
Rows int - Optional. The number of rows to interpret as header rows that should be skipped when reading data rows.
- Delimiter string
- Optional. The delimiter being used to separate values. This defaults to ','.
- Disable
Type boolInference - Optional. Whether to disable the inference of data type for CSV data. If true, all columns will be registered as strings.
- Encoding string
- Optional. The character encoding of the data. The default is UTF-8.
- Header
Rows int - Optional. The number of rows to interpret as header rows that should be skipped when reading data rows.
- delimiter String
- Optional. The delimiter being used to separate values. This defaults to ','.
- disable
Type BooleanInference - Optional. Whether to disable the inference of data type for CSV data. If true, all columns will be registered as strings.
- encoding String
- Optional. The character encoding of the data. The default is UTF-8.
- header
Rows Integer - Optional. The number of rows to interpret as header rows that should be skipped when reading data rows.
- delimiter string
- Optional. The delimiter being used to separate values. This defaults to ','.
- disable
Type booleanInference - Optional. Whether to disable the inference of data type for CSV data. If true, all columns will be registered as strings.
- encoding string
- Optional. The character encoding of the data. The default is UTF-8.
- header
Rows number - Optional. The number of rows to interpret as header rows that should be skipped when reading data rows.
- delimiter str
- Optional. The delimiter being used to separate values. This defaults to ','.
- disable_
type_ boolinference - Optional. Whether to disable the inference of data type for CSV data. If true, all columns will be registered as strings.
- encoding str
- Optional. The character encoding of the data. The default is UTF-8.
- header_
rows int - Optional. The number of rows to interpret as header rows that should be skipped when reading data rows.
- delimiter String
- Optional. The delimiter being used to separate values. This defaults to ','.
- disable
Type BooleanInference - Optional. Whether to disable the inference of data type for CSV data. If true, all columns will be registered as strings.
- encoding String
- Optional. The character encoding of the data. The default is UTF-8.
- header
Rows Number - Optional. The number of rows to interpret as header rows that should be skipped when reading data rows.
GoogleCloudDataplexV1AssetDiscoverySpecCsvOptionsResponse, GoogleCloudDataplexV1AssetDiscoverySpecCsvOptionsResponseArgs
- Delimiter
This property is required. string - Optional. The delimiter being used to separate values. This defaults to ','.
- Disable
Type Inference This property is required. bool - Optional. Whether to disable the inference of data type for CSV data. If true, all columns will be registered as strings.
- Encoding
This property is required. string - Optional. The character encoding of the data. The default is UTF-8.
- Header
Rows This property is required. int - Optional. The number of rows to interpret as header rows that should be skipped when reading data rows.
- Delimiter
This property is required. string - Optional. The delimiter being used to separate values. This defaults to ','.
- Disable
Type Inference This property is required. bool - Optional. Whether to disable the inference of data type for CSV data. If true, all columns will be registered as strings.
- Encoding
This property is required. string - Optional. The character encoding of the data. The default is UTF-8.
- Header
Rows This property is required. int - Optional. The number of rows to interpret as header rows that should be skipped when reading data rows.
- delimiter
This property is required. String - Optional. The delimiter being used to separate values. This defaults to ','.
- disable
Type Inference This property is required. Boolean - Optional. Whether to disable the inference of data type for CSV data. If true, all columns will be registered as strings.
- encoding
This property is required. String - Optional. The character encoding of the data. The default is UTF-8.
- header
Rows This property is required. Integer - Optional. The number of rows to interpret as header rows that should be skipped when reading data rows.
- delimiter
This property is required. string - Optional. The delimiter being used to separate values. This defaults to ','.
- disable
Type Inference This property is required. boolean - Optional. Whether to disable the inference of data type for CSV data. If true, all columns will be registered as strings.
- encoding
This property is required. string - Optional. The character encoding of the data. The default is UTF-8.
- header
Rows This property is required. number - Optional. The number of rows to interpret as header rows that should be skipped when reading data rows.
- delimiter
This property is required. str - Optional. The delimiter being used to separate values. This defaults to ','.
- disable_
type_ inference This property is required. bool - Optional. Whether to disable the inference of data type for CSV data. If true, all columns will be registered as strings.
- encoding
This property is required. str - Optional. The character encoding of the data. The default is UTF-8.
- header_
rows This property is required. int - Optional. The number of rows to interpret as header rows that should be skipped when reading data rows.
- delimiter
This property is required. String - Optional. The delimiter being used to separate values. This defaults to ','.
- disable
Type Inference This property is required. Boolean - Optional. Whether to disable the inference of data type for CSV data. If true, all columns will be registered as strings.
- encoding
This property is required. String - Optional. The character encoding of the data. The default is UTF-8.
- header
Rows This property is required. Number - Optional. The number of rows to interpret as header rows that should be skipped when reading data rows.
GoogleCloudDataplexV1AssetDiscoverySpecJsonOptions, GoogleCloudDataplexV1AssetDiscoverySpecJsonOptionsArgs
- Disable
Type boolInference - Optional. Whether to disable the inference of data type for Json data. If true, all columns will be registered as their primitive types (strings, number or boolean).
- Encoding string
- Optional. The character encoding of the data. The default is UTF-8.
- Disable
Type boolInference - Optional. Whether to disable the inference of data type for Json data. If true, all columns will be registered as their primitive types (strings, number or boolean).
- Encoding string
- Optional. The character encoding of the data. The default is UTF-8.
- disable
Type BooleanInference - Optional. Whether to disable the inference of data type for Json data. If true, all columns will be registered as their primitive types (strings, number or boolean).
- encoding String
- Optional. The character encoding of the data. The default is UTF-8.
- disable
Type booleanInference - Optional. Whether to disable the inference of data type for Json data. If true, all columns will be registered as their primitive types (strings, number or boolean).
- encoding string
- Optional. The character encoding of the data. The default is UTF-8.
- disable_
type_ boolinference - Optional. Whether to disable the inference of data type for Json data. If true, all columns will be registered as their primitive types (strings, number or boolean).
- encoding str
- Optional. The character encoding of the data. The default is UTF-8.
- disable
Type BooleanInference - Optional. Whether to disable the inference of data type for Json data. If true, all columns will be registered as their primitive types (strings, number or boolean).
- encoding String
- Optional. The character encoding of the data. The default is UTF-8.
GoogleCloudDataplexV1AssetDiscoverySpecJsonOptionsResponse, GoogleCloudDataplexV1AssetDiscoverySpecJsonOptionsResponseArgs
- Disable
Type Inference This property is required. bool - Optional. Whether to disable the inference of data type for Json data. If true, all columns will be registered as their primitive types (strings, number or boolean).
- Encoding
This property is required. string - Optional. The character encoding of the data. The default is UTF-8.
- Disable
Type Inference This property is required. bool - Optional. Whether to disable the inference of data type for Json data. If true, all columns will be registered as their primitive types (strings, number or boolean).
- Encoding
This property is required. string - Optional. The character encoding of the data. The default is UTF-8.
- disable
Type Inference This property is required. Boolean - Optional. Whether to disable the inference of data type for Json data. If true, all columns will be registered as their primitive types (strings, number or boolean).
- encoding
This property is required. String - Optional. The character encoding of the data. The default is UTF-8.
- disable
Type Inference This property is required. boolean - Optional. Whether to disable the inference of data type for Json data. If true, all columns will be registered as their primitive types (strings, number or boolean).
- encoding
This property is required. string - Optional. The character encoding of the data. The default is UTF-8.
- disable_
type_ inference This property is required. bool - Optional. Whether to disable the inference of data type for Json data. If true, all columns will be registered as their primitive types (strings, number or boolean).
- encoding
This property is required. str - Optional. The character encoding of the data. The default is UTF-8.
- disable
Type Inference This property is required. Boolean - Optional. Whether to disable the inference of data type for Json data. If true, all columns will be registered as their primitive types (strings, number or boolean).
- encoding
This property is required. String - Optional. The character encoding of the data. The default is UTF-8.
GoogleCloudDataplexV1AssetDiscoverySpecResponse, GoogleCloudDataplexV1AssetDiscoverySpecResponseArgs
- Csv
Options This property is required. Pulumi.Google Native. Dataplex. V1. Inputs. Google Cloud Dataplex V1Asset Discovery Spec Csv Options Response - Optional. Configuration for CSV data.
- Enabled
This property is required. bool - Optional. Whether discovery is enabled.
- Exclude
Patterns This property is required. List<string> - Optional. The list of patterns to apply for selecting data to exclude during discovery. For Cloud Storage bucket assets, these are interpreted as glob patterns used to match object names. For BigQuery dataset assets, these are interpreted as patterns to match table names.
- Include
Patterns This property is required. List<string> - Optional. The list of patterns to apply for selecting data to include during discovery if only a subset of the data should considered. For Cloud Storage bucket assets, these are interpreted as glob patterns used to match object names. For BigQuery dataset assets, these are interpreted as patterns to match table names.
- Json
Options This property is required. Pulumi.Google Native. Dataplex. V1. Inputs. Google Cloud Dataplex V1Asset Discovery Spec Json Options Response - Optional. Configuration for Json data.
- Schedule
This property is required. string - Optional. Cron schedule (https://en.wikipedia.org/wiki/Cron) for running discovery periodically. Successive discovery runs must be scheduled at least 60 minutes apart. The default value is to run discovery every 60 minutes. To explicitly set a timezone to the cron tab, apply a prefix in the cron tab: "CRON_TZ=${IANA_TIME_ZONE}" or TZ=${IANA_TIME_ZONE}". The ${IANA_TIME_ZONE} may only be a valid string from IANA time zone database. For example, CRON_TZ=America/New_York 1 * * * *, or TZ=America/New_York 1 * * * *.
- Csv
Options This property is required. GoogleCloud Dataplex V1Asset Discovery Spec Csv Options Response - Optional. Configuration for CSV data.
- Enabled
This property is required. bool - Optional. Whether discovery is enabled.
- Exclude
Patterns This property is required. []string - Optional. The list of patterns to apply for selecting data to exclude during discovery. For Cloud Storage bucket assets, these are interpreted as glob patterns used to match object names. For BigQuery dataset assets, these are interpreted as patterns to match table names.
- Include
Patterns This property is required. []string - Optional. The list of patterns to apply for selecting data to include during discovery if only a subset of the data should considered. For Cloud Storage bucket assets, these are interpreted as glob patterns used to match object names. For BigQuery dataset assets, these are interpreted as patterns to match table names.
- Json
Options This property is required. GoogleCloud Dataplex V1Asset Discovery Spec Json Options Response - Optional. Configuration for Json data.
- Schedule
This property is required. string - Optional. Cron schedule (https://en.wikipedia.org/wiki/Cron) for running discovery periodically. Successive discovery runs must be scheduled at least 60 minutes apart. The default value is to run discovery every 60 minutes. To explicitly set a timezone to the cron tab, apply a prefix in the cron tab: "CRON_TZ=${IANA_TIME_ZONE}" or TZ=${IANA_TIME_ZONE}". The ${IANA_TIME_ZONE} may only be a valid string from IANA time zone database. For example, CRON_TZ=America/New_York 1 * * * *, or TZ=America/New_York 1 * * * *.
- csv
Options This property is required. GoogleCloud Dataplex V1Asset Discovery Spec Csv Options Response - Optional. Configuration for CSV data.
- enabled
This property is required. Boolean - Optional. Whether discovery is enabled.
- exclude
Patterns This property is required. List<String> - Optional. The list of patterns to apply for selecting data to exclude during discovery. For Cloud Storage bucket assets, these are interpreted as glob patterns used to match object names. For BigQuery dataset assets, these are interpreted as patterns to match table names.
- include
Patterns This property is required. List<String> - Optional. The list of patterns to apply for selecting data to include during discovery if only a subset of the data should considered. For Cloud Storage bucket assets, these are interpreted as glob patterns used to match object names. For BigQuery dataset assets, these are interpreted as patterns to match table names.
- json
Options This property is required. GoogleCloud Dataplex V1Asset Discovery Spec Json Options Response - Optional. Configuration for Json data.
- schedule
This property is required. String - Optional. Cron schedule (https://en.wikipedia.org/wiki/Cron) for running discovery periodically. Successive discovery runs must be scheduled at least 60 minutes apart. The default value is to run discovery every 60 minutes. To explicitly set a timezone to the cron tab, apply a prefix in the cron tab: "CRON_TZ=${IANA_TIME_ZONE}" or TZ=${IANA_TIME_ZONE}". The ${IANA_TIME_ZONE} may only be a valid string from IANA time zone database. For example, CRON_TZ=America/New_York 1 * * * *, or TZ=America/New_York 1 * * * *.
- csv
Options This property is required. GoogleCloud Dataplex V1Asset Discovery Spec Csv Options Response - Optional. Configuration for CSV data.
- enabled
This property is required. boolean - Optional. Whether discovery is enabled.
- exclude
Patterns This property is required. string[] - Optional. The list of patterns to apply for selecting data to exclude during discovery. For Cloud Storage bucket assets, these are interpreted as glob patterns used to match object names. For BigQuery dataset assets, these are interpreted as patterns to match table names.
- include
Patterns This property is required. string[] - Optional. The list of patterns to apply for selecting data to include during discovery if only a subset of the data should considered. For Cloud Storage bucket assets, these are interpreted as glob patterns used to match object names. For BigQuery dataset assets, these are interpreted as patterns to match table names.
- json
Options This property is required. GoogleCloud Dataplex V1Asset Discovery Spec Json Options Response - Optional. Configuration for Json data.
- schedule
This property is required. string - Optional. Cron schedule (https://en.wikipedia.org/wiki/Cron) for running discovery periodically. Successive discovery runs must be scheduled at least 60 minutes apart. The default value is to run discovery every 60 minutes. To explicitly set a timezone to the cron tab, apply a prefix in the cron tab: "CRON_TZ=${IANA_TIME_ZONE}" or TZ=${IANA_TIME_ZONE}". The ${IANA_TIME_ZONE} may only be a valid string from IANA time zone database. For example, CRON_TZ=America/New_York 1 * * * *, or TZ=America/New_York 1 * * * *.
- csv_
options This property is required. GoogleCloud Dataplex V1Asset Discovery Spec Csv Options Response - Optional. Configuration for CSV data.
- enabled
This property is required. bool - Optional. Whether discovery is enabled.
- exclude_
patterns This property is required. Sequence[str] - Optional. The list of patterns to apply for selecting data to exclude during discovery. For Cloud Storage bucket assets, these are interpreted as glob patterns used to match object names. For BigQuery dataset assets, these are interpreted as patterns to match table names.
- include_
patterns This property is required. Sequence[str] - Optional. The list of patterns to apply for selecting data to include during discovery if only a subset of the data should considered. For Cloud Storage bucket assets, these are interpreted as glob patterns used to match object names. For BigQuery dataset assets, these are interpreted as patterns to match table names.
- json_
options This property is required. GoogleCloud Dataplex V1Asset Discovery Spec Json Options Response - Optional. Configuration for Json data.
- schedule
This property is required. str - Optional. Cron schedule (https://en.wikipedia.org/wiki/Cron) for running discovery periodically. Successive discovery runs must be scheduled at least 60 minutes apart. The default value is to run discovery every 60 minutes. To explicitly set a timezone to the cron tab, apply a prefix in the cron tab: "CRON_TZ=${IANA_TIME_ZONE}" or TZ=${IANA_TIME_ZONE}". The ${IANA_TIME_ZONE} may only be a valid string from IANA time zone database. For example, CRON_TZ=America/New_York 1 * * * *, or TZ=America/New_York 1 * * * *.
- csv
Options This property is required. Property Map - Optional. Configuration for CSV data.
- enabled
This property is required. Boolean - Optional. Whether discovery is enabled.
- exclude
Patterns This property is required. List<String> - Optional. The list of patterns to apply for selecting data to exclude during discovery. For Cloud Storage bucket assets, these are interpreted as glob patterns used to match object names. For BigQuery dataset assets, these are interpreted as patterns to match table names.
- include
Patterns This property is required. List<String> - Optional. The list of patterns to apply for selecting data to include during discovery if only a subset of the data should considered. For Cloud Storage bucket assets, these are interpreted as glob patterns used to match object names. For BigQuery dataset assets, these are interpreted as patterns to match table names.
- json
Options This property is required. Property Map - Optional. Configuration for Json data.
- schedule
This property is required. String - Optional. Cron schedule (https://en.wikipedia.org/wiki/Cron) for running discovery periodically. Successive discovery runs must be scheduled at least 60 minutes apart. The default value is to run discovery every 60 minutes. To explicitly set a timezone to the cron tab, apply a prefix in the cron tab: "CRON_TZ=${IANA_TIME_ZONE}" or TZ=${IANA_TIME_ZONE}". The ${IANA_TIME_ZONE} may only be a valid string from IANA time zone database. For example, CRON_TZ=America/New_York 1 * * * *, or TZ=America/New_York 1 * * * *.
GoogleCloudDataplexV1AssetDiscoveryStatusResponse, GoogleCloudDataplexV1AssetDiscoveryStatusResponseArgs
- Last
Run Duration This property is required. string - The duration of the last discovery run.
- Last
Run Time This property is required. string - The start time of the last discovery run.
- Message
This property is required. string - Additional information about the current state.
- State
This property is required. string - The current status of the discovery feature.
- Stats
This property is required. Pulumi.Google Native. Dataplex. V1. Inputs. Google Cloud Dataplex V1Asset Discovery Status Stats Response - Data Stats of the asset reported by discovery.
- Update
Time This property is required. string - Last update time of the status.
- Last
Run Duration This property is required. string - The duration of the last discovery run.
- Last
Run Time This property is required. string - The start time of the last discovery run.
- Message
This property is required. string - Additional information about the current state.
- State
This property is required. string - The current status of the discovery feature.
- Stats
This property is required. GoogleCloud Dataplex V1Asset Discovery Status Stats Response - Data Stats of the asset reported by discovery.
- Update
Time This property is required. string - Last update time of the status.
- last
Run Duration This property is required. String - The duration of the last discovery run.
- last
Run Time This property is required. String - The start time of the last discovery run.
- message
This property is required. String - Additional information about the current state.
- state
This property is required. String - The current status of the discovery feature.
- stats
This property is required. GoogleCloud Dataplex V1Asset Discovery Status Stats Response - Data Stats of the asset reported by discovery.
- update
Time This property is required. String - Last update time of the status.
- last
Run Duration This property is required. string - The duration of the last discovery run.
- last
Run Time This property is required. string - The start time of the last discovery run.
- message
This property is required. string - Additional information about the current state.
- state
This property is required. string - The current status of the discovery feature.
- stats
This property is required. GoogleCloud Dataplex V1Asset Discovery Status Stats Response - Data Stats of the asset reported by discovery.
- update
Time This property is required. string - Last update time of the status.
- last_
run_ duration This property is required. str - The duration of the last discovery run.
- last_
run_ time This property is required. str - The start time of the last discovery run.
- message
This property is required. str - Additional information about the current state.
- state
This property is required. str - The current status of the discovery feature.
- stats
This property is required. GoogleCloud Dataplex V1Asset Discovery Status Stats Response - Data Stats of the asset reported by discovery.
- update_
time This property is required. str - Last update time of the status.
- last
Run Duration This property is required. String - The duration of the last discovery run.
- last
Run Time This property is required. String - The start time of the last discovery run.
- message
This property is required. String - Additional information about the current state.
- state
This property is required. String - The current status of the discovery feature.
- stats
This property is required. Property Map - Data Stats of the asset reported by discovery.
- update
Time This property is required. String - Last update time of the status.
GoogleCloudDataplexV1AssetDiscoveryStatusStatsResponse, GoogleCloudDataplexV1AssetDiscoveryStatusStatsResponseArgs
- Data
Items This property is required. string - The count of data items within the referenced resource.
- Data
Size This property is required. string - The number of stored data bytes within the referenced resource.
- Filesets
This property is required. string - The count of fileset entities within the referenced resource.
- Tables
This property is required. string - The count of table entities within the referenced resource.
- Data
Items This property is required. string - The count of data items within the referenced resource.
- Data
Size This property is required. string - The number of stored data bytes within the referenced resource.
- Filesets
This property is required. string - The count of fileset entities within the referenced resource.
- Tables
This property is required. string - The count of table entities within the referenced resource.
- data
Items This property is required. String - The count of data items within the referenced resource.
- data
Size This property is required. String - The number of stored data bytes within the referenced resource.
- filesets
This property is required. String - The count of fileset entities within the referenced resource.
- tables
This property is required. String - The count of table entities within the referenced resource.
- data
Items This property is required. string - The count of data items within the referenced resource.
- data
Size This property is required. string - The number of stored data bytes within the referenced resource.
- filesets
This property is required. string - The count of fileset entities within the referenced resource.
- tables
This property is required. string - The count of table entities within the referenced resource.
- data_
items This property is required. str - The count of data items within the referenced resource.
- data_
size This property is required. str - The number of stored data bytes within the referenced resource.
- filesets
This property is required. str - The count of fileset entities within the referenced resource.
- tables
This property is required. str - The count of table entities within the referenced resource.
- data
Items This property is required. String - The count of data items within the referenced resource.
- data
Size This property is required. String - The number of stored data bytes within the referenced resource.
- filesets
This property is required. String - The count of fileset entities within the referenced resource.
- tables
This property is required. String - The count of table entities within the referenced resource.
GoogleCloudDataplexV1AssetResourceSpec, GoogleCloudDataplexV1AssetResourceSpecArgs
- Type
This property is required. Pulumi.Google Native. Dataplex. V1. Google Cloud Dataplex V1Asset Resource Spec Type - Immutable. Type of resource.
- Name string
- Immutable. Relative name of the cloud resource that contains the data that is being managed within a lake. For example: projects/{project_number}/buckets/{bucket_id} projects/{project_number}/datasets/{dataset_id}
- Read
Access Pulumi.Mode Google Native. Dataplex. V1. Google Cloud Dataplex V1Asset Resource Spec Read Access Mode - Optional. Determines how read permissions are handled for each asset and their associated tables. Only available to storage buckets assets.
- Type
This property is required. GoogleCloud Dataplex V1Asset Resource Spec Type - Immutable. Type of resource.
- Name string
- Immutable. Relative name of the cloud resource that contains the data that is being managed within a lake. For example: projects/{project_number}/buckets/{bucket_id} projects/{project_number}/datasets/{dataset_id}
- Read
Access GoogleMode Cloud Dataplex V1Asset Resource Spec Read Access Mode - Optional. Determines how read permissions are handled for each asset and their associated tables. Only available to storage buckets assets.
- type
This property is required. GoogleCloud Dataplex V1Asset Resource Spec Type - Immutable. Type of resource.
- name String
- Immutable. Relative name of the cloud resource that contains the data that is being managed within a lake. For example: projects/{project_number}/buckets/{bucket_id} projects/{project_number}/datasets/{dataset_id}
- read
Access GoogleMode Cloud Dataplex V1Asset Resource Spec Read Access Mode - Optional. Determines how read permissions are handled for each asset and their associated tables. Only available to storage buckets assets.
- type
This property is required. GoogleCloud Dataplex V1Asset Resource Spec Type - Immutable. Type of resource.
- name string
- Immutable. Relative name of the cloud resource that contains the data that is being managed within a lake. For example: projects/{project_number}/buckets/{bucket_id} projects/{project_number}/datasets/{dataset_id}
- read
Access GoogleMode Cloud Dataplex V1Asset Resource Spec Read Access Mode - Optional. Determines how read permissions are handled for each asset and their associated tables. Only available to storage buckets assets.
- type
This property is required. GoogleCloud Dataplex V1Asset Resource Spec Type - Immutable. Type of resource.
- name str
- Immutable. Relative name of the cloud resource that contains the data that is being managed within a lake. For example: projects/{project_number}/buckets/{bucket_id} projects/{project_number}/datasets/{dataset_id}
- read_
access_ Googlemode Cloud Dataplex V1Asset Resource Spec Read Access Mode - Optional. Determines how read permissions are handled for each asset and their associated tables. Only available to storage buckets assets.
- type
This property is required. "TYPE_UNSPECIFIED" | "STORAGE_BUCKET" | "BIGQUERY_DATASET" - Immutable. Type of resource.
- name String
- Immutable. Relative name of the cloud resource that contains the data that is being managed within a lake. For example: projects/{project_number}/buckets/{bucket_id} projects/{project_number}/datasets/{dataset_id}
- read
Access "ACCESS_MODE_UNSPECIFIED" | "DIRECT" | "MANAGED"Mode - Optional. Determines how read permissions are handled for each asset and their associated tables. Only available to storage buckets assets.
GoogleCloudDataplexV1AssetResourceSpecReadAccessMode, GoogleCloudDataplexV1AssetResourceSpecReadAccessModeArgs
- Access
Mode Unspecified - ACCESS_MODE_UNSPECIFIEDAccess mode unspecified.
- Direct
- DIRECTDefault. Data is accessed directly using storage APIs.
- Managed
- MANAGEDData is accessed through a managed interface using BigQuery APIs.
- Google
Cloud Dataplex V1Asset Resource Spec Read Access Mode Access Mode Unspecified - ACCESS_MODE_UNSPECIFIEDAccess mode unspecified.
- Google
Cloud Dataplex V1Asset Resource Spec Read Access Mode Direct - DIRECTDefault. Data is accessed directly using storage APIs.
- Google
Cloud Dataplex V1Asset Resource Spec Read Access Mode Managed - MANAGEDData is accessed through a managed interface using BigQuery APIs.
- Access
Mode Unspecified - ACCESS_MODE_UNSPECIFIEDAccess mode unspecified.
- Direct
- DIRECTDefault. Data is accessed directly using storage APIs.
- Managed
- MANAGEDData is accessed through a managed interface using BigQuery APIs.
- Access
Mode Unspecified - ACCESS_MODE_UNSPECIFIEDAccess mode unspecified.
- Direct
- DIRECTDefault. Data is accessed directly using storage APIs.
- Managed
- MANAGEDData is accessed through a managed interface using BigQuery APIs.
- ACCESS_MODE_UNSPECIFIED
- ACCESS_MODE_UNSPECIFIEDAccess mode unspecified.
- DIRECT
- DIRECTDefault. Data is accessed directly using storage APIs.
- MANAGED
- MANAGEDData is accessed through a managed interface using BigQuery APIs.
- "ACCESS_MODE_UNSPECIFIED"
- ACCESS_MODE_UNSPECIFIEDAccess mode unspecified.
- "DIRECT"
- DIRECTDefault. Data is accessed directly using storage APIs.
- "MANAGED"
- MANAGEDData is accessed through a managed interface using BigQuery APIs.
GoogleCloudDataplexV1AssetResourceSpecResponse, GoogleCloudDataplexV1AssetResourceSpecResponseArgs
- Name
This property is required. string - Immutable. Relative name of the cloud resource that contains the data that is being managed within a lake. For example: projects/{project_number}/buckets/{bucket_id} projects/{project_number}/datasets/{dataset_id}
- Read
Access Mode This property is required. string - Optional. Determines how read permissions are handled for each asset and their associated tables. Only available to storage buckets assets.
- Type
This property is required. string - Immutable. Type of resource.
- Name
This property is required. string - Immutable. Relative name of the cloud resource that contains the data that is being managed within a lake. For example: projects/{project_number}/buckets/{bucket_id} projects/{project_number}/datasets/{dataset_id}
- Read
Access Mode This property is required. string - Optional. Determines how read permissions are handled for each asset and their associated tables. Only available to storage buckets assets.
- Type
This property is required. string - Immutable. Type of resource.
- name
This property is required. String - Immutable. Relative name of the cloud resource that contains the data that is being managed within a lake. For example: projects/{project_number}/buckets/{bucket_id} projects/{project_number}/datasets/{dataset_id}
- read
Access Mode This property is required. String - Optional. Determines how read permissions are handled for each asset and their associated tables. Only available to storage buckets assets.
- type
This property is required. String - Immutable. Type of resource.
- name
This property is required. string - Immutable. Relative name of the cloud resource that contains the data that is being managed within a lake. For example: projects/{project_number}/buckets/{bucket_id} projects/{project_number}/datasets/{dataset_id}
- read
Access Mode This property is required. string - Optional. Determines how read permissions are handled for each asset and their associated tables. Only available to storage buckets assets.
- type
This property is required. string - Immutable. Type of resource.
- name
This property is required. str - Immutable. Relative name of the cloud resource that contains the data that is being managed within a lake. For example: projects/{project_number}/buckets/{bucket_id} projects/{project_number}/datasets/{dataset_id}
- read_
access_ mode This property is required. str - Optional. Determines how read permissions are handled for each asset and their associated tables. Only available to storage buckets assets.
- type
This property is required. str - Immutable. Type of resource.
- name
This property is required. String - Immutable. Relative name of the cloud resource that contains the data that is being managed within a lake. For example: projects/{project_number}/buckets/{bucket_id} projects/{project_number}/datasets/{dataset_id}
- read
Access Mode This property is required. String - Optional. Determines how read permissions are handled for each asset and their associated tables. Only available to storage buckets assets.
- type
This property is required. String - Immutable. Type of resource.
GoogleCloudDataplexV1AssetResourceSpecType, GoogleCloudDataplexV1AssetResourceSpecTypeArgs
- Type
Unspecified - TYPE_UNSPECIFIEDType not specified.
- Storage
Bucket - STORAGE_BUCKETCloud Storage bucket.
- Bigquery
Dataset - BIGQUERY_DATASETBigQuery dataset.
- Google
Cloud Dataplex V1Asset Resource Spec Type Type Unspecified - TYPE_UNSPECIFIEDType not specified.
- Google
Cloud Dataplex V1Asset Resource Spec Type Storage Bucket - STORAGE_BUCKETCloud Storage bucket.
- Google
Cloud Dataplex V1Asset Resource Spec Type Bigquery Dataset - BIGQUERY_DATASETBigQuery dataset.
- Type
Unspecified - TYPE_UNSPECIFIEDType not specified.
- Storage
Bucket - STORAGE_BUCKETCloud Storage bucket.
- Bigquery
Dataset - BIGQUERY_DATASETBigQuery dataset.
- Type
Unspecified - TYPE_UNSPECIFIEDType not specified.
- Storage
Bucket - STORAGE_BUCKETCloud Storage bucket.
- Bigquery
Dataset - BIGQUERY_DATASETBigQuery dataset.
- TYPE_UNSPECIFIED
- TYPE_UNSPECIFIEDType not specified.
- STORAGE_BUCKET
- STORAGE_BUCKETCloud Storage bucket.
- BIGQUERY_DATASET
- BIGQUERY_DATASETBigQuery dataset.
- "TYPE_UNSPECIFIED"
- TYPE_UNSPECIFIEDType not specified.
- "STORAGE_BUCKET"
- STORAGE_BUCKETCloud Storage bucket.
- "BIGQUERY_DATASET"
- BIGQUERY_DATASETBigQuery dataset.
GoogleCloudDataplexV1AssetResourceStatusResponse, GoogleCloudDataplexV1AssetResourceStatusResponseArgs
- Managed
Access Identity This property is required. string - Service account associated with the BigQuery Connection.
- Message
This property is required. string - Additional information about the current state.
- State
This property is required. string - The current state of the managed resource.
- Update
Time This property is required. string - Last update time of the status.
- Managed
Access Identity This property is required. string - Service account associated with the BigQuery Connection.
- Message
This property is required. string - Additional information about the current state.
- State
This property is required. string - The current state of the managed resource.
- Update
Time This property is required. string - Last update time of the status.
- managed
Access Identity This property is required. String - Service account associated with the BigQuery Connection.
- message
This property is required. String - Additional information about the current state.
- state
This property is required. String - The current state of the managed resource.
- update
Time This property is required. String - Last update time of the status.
- managed
Access Identity This property is required. string - Service account associated with the BigQuery Connection.
- message
This property is required. string - Additional information about the current state.
- state
This property is required. string - The current state of the managed resource.
- update
Time This property is required. string - Last update time of the status.
- managed_
access_ identity This property is required. str - Service account associated with the BigQuery Connection.
- message
This property is required. str - Additional information about the current state.
- state
This property is required. str - The current state of the managed resource.
- update_
time This property is required. str - Last update time of the status.
- managed
Access Identity This property is required. String - Service account associated with the BigQuery Connection.
- message
This property is required. String - Additional information about the current state.
- state
This property is required. String - The current state of the managed resource.
- update
Time This property is required. String - Last update time of the status.
GoogleCloudDataplexV1AssetSecurityStatusResponse, GoogleCloudDataplexV1AssetSecurityStatusResponseArgs
- Message
This property is required. string - Additional information about the current state.
- State
This property is required. string - The current state of the security policy applied to the attached resource.
- Update
Time This property is required. string - Last update time of the status.
- Message
This property is required. string - Additional information about the current state.
- State
This property is required. string - The current state of the security policy applied to the attached resource.
- Update
Time This property is required. string - Last update time of the status.
- message
This property is required. String - Additional information about the current state.
- state
This property is required. String - The current state of the security policy applied to the attached resource.
- update
Time This property is required. String - Last update time of the status.
- message
This property is required. string - Additional information about the current state.
- state
This property is required. string - The current state of the security policy applied to the attached resource.
- update
Time This property is required. string - Last update time of the status.
- message
This property is required. str - Additional information about the current state.
- state
This property is required. str - The current state of the security policy applied to the attached resource.
- update_
time This property is required. str - Last update time of the status.
- message
This property is required. String - Additional information about the current state.
- state
This property is required. String - The current state of the security policy applied to the attached resource.
- update
Time This property is required. String - Last update time of the status.
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.