Google Cloud Native is in preview. Google Cloud Classic is fully supported.
google-native.dataplex/v1.Zone
Explore with Pulumi AI
Google Cloud Native is in preview. Google Cloud Classic is fully supported.
Creates a zone resource within a lake. Auto-naming is currently not supported for this resource.
Create Zone Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Zone(name: string, args: ZoneArgs, opts?: CustomResourceOptions);@overload
def Zone(resource_name: str,
         args: ZoneArgs,
         opts: Optional[ResourceOptions] = None)
@overload
def Zone(resource_name: str,
         opts: Optional[ResourceOptions] = None,
         lake_id: Optional[str] = None,
         resource_spec: Optional[GoogleCloudDataplexV1ZoneResourceSpecArgs] = None,
         type: Optional[ZoneType] = None,
         zone_id: Optional[str] = None,
         description: Optional[str] = None,
         discovery_spec: Optional[GoogleCloudDataplexV1ZoneDiscoverySpecArgs] = None,
         display_name: Optional[str] = None,
         labels: Optional[Mapping[str, str]] = None,
         location: Optional[str] = None,
         project: Optional[str] = None)func NewZone(ctx *Context, name string, args ZoneArgs, opts ...ResourceOption) (*Zone, error)public Zone(string name, ZoneArgs args, CustomResourceOptions? opts = null)type: google-native:dataplex/v1:Zone
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 ZoneArgs
- 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 ZoneArgs
- 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 ZoneArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ZoneArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ZoneArgs
- 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 zoneResource = new GoogleNative.Dataplex.V1.Zone("zoneResource", new()
{
    LakeId = "string",
    ResourceSpec = new GoogleNative.Dataplex.V1.Inputs.GoogleCloudDataplexV1ZoneResourceSpecArgs
    {
        LocationType = GoogleNative.Dataplex.V1.GoogleCloudDataplexV1ZoneResourceSpecLocationType.LocationTypeUnspecified,
    },
    Type = GoogleNative.Dataplex.V1.ZoneType.TypeUnspecified,
    ZoneId = "string",
    Description = "string",
    DiscoverySpec = new GoogleNative.Dataplex.V1.Inputs.GoogleCloudDataplexV1ZoneDiscoverySpecArgs
    {
        Enabled = false,
        CsvOptions = new GoogleNative.Dataplex.V1.Inputs.GoogleCloudDataplexV1ZoneDiscoverySpecCsvOptionsArgs
        {
            Delimiter = "string",
            DisableTypeInference = false,
            Encoding = "string",
            HeaderRows = 0,
        },
        ExcludePatterns = new[]
        {
            "string",
        },
        IncludePatterns = new[]
        {
            "string",
        },
        JsonOptions = new GoogleNative.Dataplex.V1.Inputs.GoogleCloudDataplexV1ZoneDiscoverySpecJsonOptionsArgs
        {
            DisableTypeInference = false,
            Encoding = "string",
        },
        Schedule = "string",
    },
    DisplayName = "string",
    Labels = 
    {
        { "string", "string" },
    },
    Location = "string",
    Project = "string",
});
example, err := dataplex.NewZone(ctx, "zoneResource", &dataplex.ZoneArgs{
	LakeId: pulumi.String("string"),
	ResourceSpec: &dataplex.GoogleCloudDataplexV1ZoneResourceSpecArgs{
		LocationType: dataplex.GoogleCloudDataplexV1ZoneResourceSpecLocationTypeLocationTypeUnspecified,
	},
	Type:        dataplex.ZoneTypeTypeUnspecified,
	ZoneId:      pulumi.String("string"),
	Description: pulumi.String("string"),
	DiscoverySpec: &dataplex.GoogleCloudDataplexV1ZoneDiscoverySpecArgs{
		Enabled: pulumi.Bool(false),
		CsvOptions: &dataplex.GoogleCloudDataplexV1ZoneDiscoverySpecCsvOptionsArgs{
			Delimiter:            pulumi.String("string"),
			DisableTypeInference: pulumi.Bool(false),
			Encoding:             pulumi.String("string"),
			HeaderRows:           pulumi.Int(0),
		},
		ExcludePatterns: pulumi.StringArray{
			pulumi.String("string"),
		},
		IncludePatterns: pulumi.StringArray{
			pulumi.String("string"),
		},
		JsonOptions: &dataplex.GoogleCloudDataplexV1ZoneDiscoverySpecJsonOptionsArgs{
			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"),
})
var zoneResource = new Zone("zoneResource", ZoneArgs.builder()
    .lakeId("string")
    .resourceSpec(GoogleCloudDataplexV1ZoneResourceSpecArgs.builder()
        .locationType("LOCATION_TYPE_UNSPECIFIED")
        .build())
    .type("TYPE_UNSPECIFIED")
    .zoneId("string")
    .description("string")
    .discoverySpec(GoogleCloudDataplexV1ZoneDiscoverySpecArgs.builder()
        .enabled(false)
        .csvOptions(GoogleCloudDataplexV1ZoneDiscoverySpecCsvOptionsArgs.builder()
            .delimiter("string")
            .disableTypeInference(false)
            .encoding("string")
            .headerRows(0)
            .build())
        .excludePatterns("string")
        .includePatterns("string")
        .jsonOptions(GoogleCloudDataplexV1ZoneDiscoverySpecJsonOptionsArgs.builder()
            .disableTypeInference(false)
            .encoding("string")
            .build())
        .schedule("string")
        .build())
    .displayName("string")
    .labels(Map.of("string", "string"))
    .location("string")
    .project("string")
    .build());
zone_resource = google_native.dataplex.v1.Zone("zoneResource",
    lake_id="string",
    resource_spec={
        "location_type": google_native.dataplex.v1.GoogleCloudDataplexV1ZoneResourceSpecLocationType.LOCATION_TYPE_UNSPECIFIED,
    },
    type=google_native.dataplex.v1.ZoneType.TYPE_UNSPECIFIED,
    zone_id="string",
    description="string",
    discovery_spec={
        "enabled": False,
        "csv_options": {
            "delimiter": "string",
            "disable_type_inference": False,
            "encoding": "string",
            "header_rows": 0,
        },
        "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")
const zoneResource = new google_native.dataplex.v1.Zone("zoneResource", {
    lakeId: "string",
    resourceSpec: {
        locationType: google_native.dataplex.v1.GoogleCloudDataplexV1ZoneResourceSpecLocationType.LocationTypeUnspecified,
    },
    type: google_native.dataplex.v1.ZoneType.TypeUnspecified,
    zoneId: "string",
    description: "string",
    discoverySpec: {
        enabled: false,
        csvOptions: {
            delimiter: "string",
            disableTypeInference: false,
            encoding: "string",
            headerRows: 0,
        },
        excludePatterns: ["string"],
        includePatterns: ["string"],
        jsonOptions: {
            disableTypeInference: false,
            encoding: "string",
        },
        schedule: "string",
    },
    displayName: "string",
    labels: {
        string: "string",
    },
    location: "string",
    project: "string",
});
type: google-native:dataplex/v1:Zone
properties:
    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:
        locationType: LOCATION_TYPE_UNSPECIFIED
    type: TYPE_UNSPECIFIED
    zoneId: string
Zone 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 Zone resource accepts the following input properties:
- LakeId string
- ResourceSpec Pulumi.Google Native. Dataplex. V1. Inputs. Google Cloud Dataplex V1Zone Resource Spec 
- Specification of the resources that are referenced by the assets within this zone.
- Type
Pulumi.Google Native. Dataplex. V1. Zone Type 
- Immutable. The type of the zone.
- ZoneId string
- Required. Zone identifier. This ID will be used to generate names such as database and dataset 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 across all lakes from all locations in a project. * Must not be one of the reserved IDs (i.e. "default", "global-temp")
- Description string
- Optional. Description of the zone.
- DiscoverySpec Pulumi.Google Native. Dataplex. V1. Inputs. Google Cloud Dataplex V1Zone Discovery Spec 
- Optional. Specification of the discovery feature applied to data in this zone.
- DisplayName string
- Optional. User friendly display name.
- Labels Dictionary<string, string>
- Optional. User defined labels for the zone.
- Location string
- Project string
- LakeId string
- ResourceSpec GoogleCloud Dataplex V1Zone Resource Spec Args 
- Specification of the resources that are referenced by the assets within this zone.
- Type
ZoneType 
- Immutable. The type of the zone.
- ZoneId string
- Required. Zone identifier. This ID will be used to generate names such as database and dataset 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 across all lakes from all locations in a project. * Must not be one of the reserved IDs (i.e. "default", "global-temp")
- Description string
- Optional. Description of the zone.
- DiscoverySpec GoogleCloud Dataplex V1Zone Discovery Spec Args 
- Optional. Specification of the discovery feature applied to data in this zone.
- DisplayName string
- Optional. User friendly display name.
- Labels map[string]string
- Optional. User defined labels for the zone.
- Location string
- Project string
- lakeId String
- resourceSpec GoogleCloud Dataplex V1Zone Resource Spec 
- Specification of the resources that are referenced by the assets within this zone.
- type
ZoneType 
- Immutable. The type of the zone.
- zoneId String
- Required. Zone identifier. This ID will be used to generate names such as database and dataset 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 across all lakes from all locations in a project. * Must not be one of the reserved IDs (i.e. "default", "global-temp")
- description String
- Optional. Description of the zone.
- discoverySpec GoogleCloud Dataplex V1Zone Discovery Spec 
- Optional. Specification of the discovery feature applied to data in this zone.
- displayName String
- Optional. User friendly display name.
- labels Map<String,String>
- Optional. User defined labels for the zone.
- location String
- project String
- lakeId string
- resourceSpec GoogleCloud Dataplex V1Zone Resource Spec 
- Specification of the resources that are referenced by the assets within this zone.
- type
ZoneType 
- Immutable. The type of the zone.
- zoneId string
- Required. Zone identifier. This ID will be used to generate names such as database and dataset 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 across all lakes from all locations in a project. * Must not be one of the reserved IDs (i.e. "default", "global-temp")
- description string
- Optional. Description of the zone.
- discoverySpec GoogleCloud Dataplex V1Zone Discovery Spec 
- Optional. Specification of the discovery feature applied to data in this zone.
- displayName string
- Optional. User friendly display name.
- labels {[key: string]: string}
- Optional. User defined labels for the zone.
- location string
- project string
- lake_id str
- resource_spec GoogleCloud Dataplex V1Zone Resource Spec Args 
- Specification of the resources that are referenced by the assets within this zone.
- type
ZoneType 
- Immutable. The type of the zone.
- zone_id str
- Required. Zone identifier. This ID will be used to generate names such as database and dataset 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 across all lakes from all locations in a project. * Must not be one of the reserved IDs (i.e. "default", "global-temp")
- description str
- Optional. Description of the zone.
- discovery_spec GoogleCloud Dataplex V1Zone Discovery Spec Args 
- Optional. Specification of the discovery feature applied to data in this zone.
- display_name str
- Optional. User friendly display name.
- labels Mapping[str, str]
- Optional. User defined labels for the zone.
- location str
- project str
- lakeId String
- resourceSpec Property Map
- Specification of the resources that are referenced by the assets within this zone.
- type "TYPE_UNSPECIFIED" | "RAW" | "CURATED"
- Immutable. The type of the zone.
- zoneId String
- Required. Zone identifier. This ID will be used to generate names such as database and dataset 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 across all lakes from all locations in a project. * Must not be one of the reserved IDs (i.e. "default", "global-temp")
- description String
- Optional. Description of the zone.
- discoverySpec Property Map
- Optional. Specification of the discovery feature applied to data in this zone.
- displayName String
- Optional. User friendly display name.
- labels Map<String>
- Optional. User defined labels for the zone.
- location String
- project String
Outputs
All input properties are implicitly available as output properties. Additionally, the Zone resource produces the following output properties:
- AssetStatus Pulumi.Google Native. Dataplex. V1. Outputs. Google Cloud Dataplex V1Asset Status Response 
- Aggregated status of the underlying assets of the zone.
- CreateTime string
- The time when the zone was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The relative resource name of the zone, of the form: projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}.
- State string
- Current state of the zone.
- Uid string
- System generated globally unique ID for the zone. This ID will be different if the zone is deleted and re-created with the same name.
- UpdateTime string
- The time when the zone was last updated.
- AssetStatus GoogleCloud Dataplex V1Asset Status Response 
- Aggregated status of the underlying assets of the zone.
- CreateTime string
- The time when the zone was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The relative resource name of the zone, of the form: projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}.
- State string
- Current state of the zone.
- Uid string
- System generated globally unique ID for the zone. This ID will be different if the zone is deleted and re-created with the same name.
- UpdateTime string
- The time when the zone was last updated.
- assetStatus GoogleCloud Dataplex V1Asset Status Response 
- Aggregated status of the underlying assets of the zone.
- createTime String
- The time when the zone was created.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The relative resource name of the zone, of the form: projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}.
- state String
- Current state of the zone.
- uid String
- System generated globally unique ID for the zone. This ID will be different if the zone is deleted and re-created with the same name.
- updateTime String
- The time when the zone was last updated.
- assetStatus GoogleCloud Dataplex V1Asset Status Response 
- Aggregated status of the underlying assets of the zone.
- createTime string
- The time when the zone was created.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The relative resource name of the zone, of the form: projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}.
- state string
- Current state of the zone.
- uid string
- System generated globally unique ID for the zone. This ID will be different if the zone is deleted and re-created with the same name.
- updateTime string
- The time when the zone was last updated.
- asset_status GoogleCloud Dataplex V1Asset Status Response 
- Aggregated status of the underlying assets of the zone.
- create_time str
- The time when the zone was created.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The relative resource name of the zone, of the form: projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}.
- state str
- Current state of the zone.
- uid str
- System generated globally unique ID for the zone. This ID will be different if the zone is deleted and re-created with the same name.
- update_time str
- The time when the zone was last updated.
- assetStatus Property Map
- Aggregated status of the underlying assets of the zone.
- createTime String
- The time when the zone was created.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The relative resource name of the zone, of the form: projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}.
- state String
- Current state of the zone.
- uid String
- System generated globally unique ID for the zone. This ID will be different if the zone is deleted and re-created with the same name.
- updateTime String
- The time when the zone was last updated.
Supporting Types
GoogleCloudDataplexV1AssetStatusResponse, GoogleCloudDataplexV1AssetStatusResponseArgs            
- ActiveAssets int
- Number of active assets.
- SecurityPolicy intApplying Assets 
- Number of assets that are in process of updating the security policy on attached resources.
- UpdateTime string
- Last update time of the status.
- ActiveAssets int
- Number of active assets.
- SecurityPolicy intApplying Assets 
- Number of assets that are in process of updating the security policy on attached resources.
- UpdateTime string
- Last update time of the status.
- activeAssets Integer
- Number of active assets.
- securityPolicy IntegerApplying Assets 
- Number of assets that are in process of updating the security policy on attached resources.
- updateTime String
- Last update time of the status.
- activeAssets number
- Number of active assets.
- securityPolicy numberApplying Assets 
- Number of assets that are in process of updating the security policy on attached resources.
- updateTime string
- Last update time of the status.
- active_assets int
- Number of active assets.
- security_policy_ intapplying_ assets 
- Number of assets that are in process of updating the security policy on attached resources.
- update_time str
- Last update time of the status.
- activeAssets Number
- Number of active assets.
- securityPolicy NumberApplying Assets 
- Number of assets that are in process of updating the security policy on attached resources.
- updateTime String
- Last update time of the status.
GoogleCloudDataplexV1ZoneDiscoverySpec, GoogleCloudDataplexV1ZoneDiscoverySpecArgs            
- Enabled bool
- Whether discovery is enabled.
- CsvOptions Pulumi.Google Native. Dataplex. V1. Inputs. Google Cloud Dataplex V1Zone Discovery Spec Csv Options 
- Optional. Configuration for CSV data.
- ExcludePatterns 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.
- IncludePatterns 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.
- JsonOptions Pulumi.Google Native. Dataplex. V1. Inputs. Google Cloud Dataplex V1Zone 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 * * * *.
- Enabled bool
- Whether discovery is enabled.
- CsvOptions GoogleCloud Dataplex V1Zone Discovery Spec Csv Options 
- Optional. Configuration for CSV data.
- ExcludePatterns []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.
- IncludePatterns []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.
- JsonOptions GoogleCloud Dataplex V1Zone 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 * * * *.
- enabled Boolean
- Whether discovery is enabled.
- csvOptions GoogleCloud Dataplex V1Zone Discovery Spec Csv Options 
- Optional. Configuration for CSV data.
- excludePatterns 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.
- includePatterns 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.
- jsonOptions GoogleCloud Dataplex V1Zone 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 * * * *.
- enabled boolean
- Whether discovery is enabled.
- csvOptions GoogleCloud Dataplex V1Zone Discovery Spec Csv Options 
- Optional. Configuration for CSV data.
- excludePatterns 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.
- includePatterns 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.
- jsonOptions GoogleCloud Dataplex V1Zone 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 * * * *.
- enabled bool
- Whether discovery is enabled.
- csv_options GoogleCloud Dataplex V1Zone Discovery Spec Csv Options 
- Optional. Configuration for CSV data.
- 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 V1Zone 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 * * * *.
- enabled Boolean
- Whether discovery is enabled.
- csvOptions Property Map
- Optional. Configuration for CSV data.
- excludePatterns 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.
- includePatterns 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.
- jsonOptions 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 * * * *.
GoogleCloudDataplexV1ZoneDiscoverySpecCsvOptions, GoogleCloudDataplexV1ZoneDiscoverySpecCsvOptionsArgs                
- Delimiter string
- Optional. The delimiter being used to separate values. This defaults to ','.
- DisableType 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.
- HeaderRows 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 ','.
- DisableType 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.
- HeaderRows 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 ','.
- disableType 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.
- headerRows 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 ','.
- disableType 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.
- headerRows 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 ','.
- disableType 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.
- headerRows Number
- Optional. The number of rows to interpret as header rows that should be skipped when reading data rows.
GoogleCloudDataplexV1ZoneDiscoverySpecCsvOptionsResponse, GoogleCloudDataplexV1ZoneDiscoverySpecCsvOptionsResponseArgs                  
- Delimiter string
- Optional. The delimiter being used to separate values. This defaults to ','.
- DisableType 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.
- HeaderRows 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 ','.
- DisableType 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.
- HeaderRows 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 ','.
- disableType 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.
- headerRows 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 ','.
- disableType 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.
- headerRows 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 ','.
- disableType 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.
- headerRows Number
- Optional. The number of rows to interpret as header rows that should be skipped when reading data rows.
GoogleCloudDataplexV1ZoneDiscoverySpecJsonOptions, GoogleCloudDataplexV1ZoneDiscoverySpecJsonOptionsArgs                
- DisableType 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.
- DisableType 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.
- disableType 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.
- disableType 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.
- disableType 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.
GoogleCloudDataplexV1ZoneDiscoverySpecJsonOptionsResponse, GoogleCloudDataplexV1ZoneDiscoverySpecJsonOptionsResponseArgs                  
- DisableType 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.
- DisableType 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.
- disableType 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.
- disableType 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.
- disableType 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.
GoogleCloudDataplexV1ZoneDiscoverySpecResponse, GoogleCloudDataplexV1ZoneDiscoverySpecResponseArgs              
- CsvOptions Pulumi.Google Native. Dataplex. V1. Inputs. Google Cloud Dataplex V1Zone Discovery Spec Csv Options Response 
- Optional. Configuration for CSV data.
- Enabled bool
- Whether discovery is enabled.
- ExcludePatterns 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.
- IncludePatterns 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.
- JsonOptions Pulumi.Google Native. Dataplex. V1. Inputs. Google Cloud Dataplex V1Zone Discovery Spec Json Options Response 
- 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 * * * *.
- CsvOptions GoogleCloud Dataplex V1Zone Discovery Spec Csv Options Response 
- Optional. Configuration for CSV data.
- Enabled bool
- Whether discovery is enabled.
- ExcludePatterns []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.
- IncludePatterns []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.
- JsonOptions GoogleCloud Dataplex V1Zone Discovery Spec Json Options Response 
- 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 * * * *.
- csvOptions GoogleCloud Dataplex V1Zone Discovery Spec Csv Options Response 
- Optional. Configuration for CSV data.
- enabled Boolean
- Whether discovery is enabled.
- excludePatterns 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.
- includePatterns 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.
- jsonOptions GoogleCloud Dataplex V1Zone Discovery Spec Json Options Response 
- 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 * * * *.
- csvOptions GoogleCloud Dataplex V1Zone Discovery Spec Csv Options Response 
- Optional. Configuration for CSV data.
- enabled boolean
- Whether discovery is enabled.
- excludePatterns 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.
- includePatterns 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.
- jsonOptions GoogleCloud Dataplex V1Zone Discovery Spec Json Options Response 
- 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 V1Zone Discovery Spec Csv Options Response 
- Optional. Configuration for CSV data.
- enabled bool
- 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 V1Zone Discovery Spec Json Options Response 
- 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 * * * *.
- csvOptions Property Map
- Optional. Configuration for CSV data.
- enabled Boolean
- Whether discovery is enabled.
- excludePatterns 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.
- includePatterns 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.
- jsonOptions 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 * * * *.
GoogleCloudDataplexV1ZoneResourceSpec, GoogleCloudDataplexV1ZoneResourceSpecArgs            
- LocationType Pulumi.Google Native. Dataplex. V1. Google Cloud Dataplex V1Zone Resource Spec Location Type 
- Immutable. The location type of the resources that are allowed to be attached to the assets within this zone.
- LocationType GoogleCloud Dataplex V1Zone Resource Spec Location Type 
- Immutable. The location type of the resources that are allowed to be attached to the assets within this zone.
- locationType GoogleCloud Dataplex V1Zone Resource Spec Location Type 
- Immutable. The location type of the resources that are allowed to be attached to the assets within this zone.
- locationType GoogleCloud Dataplex V1Zone Resource Spec Location Type 
- Immutable. The location type of the resources that are allowed to be attached to the assets within this zone.
- location_type GoogleCloud Dataplex V1Zone Resource Spec Location Type 
- Immutable. The location type of the resources that are allowed to be attached to the assets within this zone.
- locationType "LOCATION_TYPE_UNSPECIFIED" | "SINGLE_REGION" | "MULTI_REGION"
- Immutable. The location type of the resources that are allowed to be attached to the assets within this zone.
GoogleCloudDataplexV1ZoneResourceSpecLocationType, GoogleCloudDataplexV1ZoneResourceSpecLocationTypeArgs                
- LocationType Unspecified 
- LOCATION_TYPE_UNSPECIFIEDUnspecified location type.
- SingleRegion 
- SINGLE_REGIONResources that are associated with a single region.
- MultiRegion 
- MULTI_REGIONResources that are associated with a multi-region location.
- GoogleCloud Dataplex V1Zone Resource Spec Location Type Location Type Unspecified 
- LOCATION_TYPE_UNSPECIFIEDUnspecified location type.
- GoogleCloud Dataplex V1Zone Resource Spec Location Type Single Region 
- SINGLE_REGIONResources that are associated with a single region.
- GoogleCloud Dataplex V1Zone Resource Spec Location Type Multi Region 
- MULTI_REGIONResources that are associated with a multi-region location.
- LocationType Unspecified 
- LOCATION_TYPE_UNSPECIFIEDUnspecified location type.
- SingleRegion 
- SINGLE_REGIONResources that are associated with a single region.
- MultiRegion 
- MULTI_REGIONResources that are associated with a multi-region location.
- LocationType Unspecified 
- LOCATION_TYPE_UNSPECIFIEDUnspecified location type.
- SingleRegion 
- SINGLE_REGIONResources that are associated with a single region.
- MultiRegion 
- MULTI_REGIONResources that are associated with a multi-region location.
- LOCATION_TYPE_UNSPECIFIED
- LOCATION_TYPE_UNSPECIFIEDUnspecified location type.
- SINGLE_REGION
- SINGLE_REGIONResources that are associated with a single region.
- MULTI_REGION
- MULTI_REGIONResources that are associated with a multi-region location.
- "LOCATION_TYPE_UNSPECIFIED"
- LOCATION_TYPE_UNSPECIFIEDUnspecified location type.
- "SINGLE_REGION"
- SINGLE_REGIONResources that are associated with a single region.
- "MULTI_REGION"
- MULTI_REGIONResources that are associated with a multi-region location.
GoogleCloudDataplexV1ZoneResourceSpecResponse, GoogleCloudDataplexV1ZoneResourceSpecResponseArgs              
- LocationType string
- Immutable. The location type of the resources that are allowed to be attached to the assets within this zone.
- LocationType string
- Immutable. The location type of the resources that are allowed to be attached to the assets within this zone.
- locationType String
- Immutable. The location type of the resources that are allowed to be attached to the assets within this zone.
- locationType string
- Immutable. The location type of the resources that are allowed to be attached to the assets within this zone.
- location_type str
- Immutable. The location type of the resources that are allowed to be attached to the assets within this zone.
- locationType String
- Immutable. The location type of the resources that are allowed to be attached to the assets within this zone.
ZoneType, ZoneTypeArgs    
- TypeUnspecified 
- TYPE_UNSPECIFIEDZone type not specified.
- Raw
- RAWA zone that contains data that needs further processing before it is considered generally ready for consumption and analytics workloads.
- Curated
- CURATEDA zone that contains data that is considered to be ready for broader consumption and analytics workloads. Curated structured data stored in Cloud Storage must conform to certain file formats (parquet, avro and orc) and organized in a hive-compatible directory layout.
- ZoneType Type Unspecified 
- TYPE_UNSPECIFIEDZone type not specified.
- ZoneType Raw 
- RAWA zone that contains data that needs further processing before it is considered generally ready for consumption and analytics workloads.
- ZoneType Curated 
- CURATEDA zone that contains data that is considered to be ready for broader consumption and analytics workloads. Curated structured data stored in Cloud Storage must conform to certain file formats (parquet, avro and orc) and organized in a hive-compatible directory layout.
- TypeUnspecified 
- TYPE_UNSPECIFIEDZone type not specified.
- Raw
- RAWA zone that contains data that needs further processing before it is considered generally ready for consumption and analytics workloads.
- Curated
- CURATEDA zone that contains data that is considered to be ready for broader consumption and analytics workloads. Curated structured data stored in Cloud Storage must conform to certain file formats (parquet, avro and orc) and organized in a hive-compatible directory layout.
- TypeUnspecified 
- TYPE_UNSPECIFIEDZone type not specified.
- Raw
- RAWA zone that contains data that needs further processing before it is considered generally ready for consumption and analytics workloads.
- Curated
- CURATEDA zone that contains data that is considered to be ready for broader consumption and analytics workloads. Curated structured data stored in Cloud Storage must conform to certain file formats (parquet, avro and orc) and organized in a hive-compatible directory layout.
- TYPE_UNSPECIFIED
- TYPE_UNSPECIFIEDZone type not specified.
- RAW
- RAWA zone that contains data that needs further processing before it is considered generally ready for consumption and analytics workloads.
- CURATED
- CURATEDA zone that contains data that is considered to be ready for broader consumption and analytics workloads. Curated structured data stored in Cloud Storage must conform to certain file formats (parquet, avro and orc) and organized in a hive-compatible directory layout.
- "TYPE_UNSPECIFIED"
- TYPE_UNSPECIFIEDZone type not specified.
- "RAW"
- RAWA zone that contains data that needs further processing before it is considered generally ready for consumption and analytics workloads.
- "CURATED"
- CURATEDA zone that contains data that is considered to be ready for broader consumption and analytics workloads. Curated structured data stored in Cloud Storage must conform to certain file formats (parquet, avro and orc) and organized in a hive-compatible directory layout.
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.