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=google_native.dataplex.v1.GoogleCloudDataplexV1ZoneResourceSpecArgs(
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=google_native.dataplex.v1.GoogleCloudDataplexV1ZoneDiscoverySpecArgs(
enabled=False,
csv_options=google_native.dataplex.v1.GoogleCloudDataplexV1ZoneDiscoverySpecCsvOptionsArgs(
delimiter="string",
disable_type_inference=False,
encoding="string",
header_rows=0,
),
exclude_patterns=["string"],
include_patterns=["string"],
json_options=google_native.dataplex.v1.GoogleCloudDataplexV1ZoneDiscoverySpecJsonOptionsArgs(
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
The Zone resource accepts the following input properties:
- Lake
Id string - Resource
Spec 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.
- Zone
Id 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.
- Discovery
Spec Pulumi.Google Native. Dataplex. V1. Inputs. Google Cloud Dataplex V1Zone Discovery Spec - Optional. Specification of the discovery feature applied to data in this zone.
- Display
Name string - Optional. User friendly display name.
- Labels Dictionary<string, string>
- Optional. User defined labels for the zone.
- Location string
- Project string
- Lake
Id string - Resource
Spec GoogleCloud Dataplex V1Zone Resource Spec Args - Specification of the resources that are referenced by the assets within this zone.
- Type
Zone
Type - Immutable. The type of the zone.
- Zone
Id 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.
- Discovery
Spec GoogleCloud Dataplex V1Zone Discovery Spec Args - Optional. Specification of the discovery feature applied to data in this zone.
- Display
Name string - Optional. User friendly display name.
- Labels map[string]string
- Optional. User defined labels for the zone.
- Location string
- Project string
- lake
Id String - resource
Spec GoogleCloud Dataplex V1Zone Resource Spec - Specification of the resources that are referenced by the assets within this zone.
- type
Zone
Type - Immutable. The type of the zone.
- zone
Id 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.
- discovery
Spec GoogleCloud Dataplex V1Zone Discovery Spec - Optional. Specification of the discovery feature applied to data in this zone.
- display
Name String - Optional. User friendly display name.
- labels Map<String,String>
- Optional. User defined labels for the zone.
- location String
- project String
- lake
Id string - resource
Spec GoogleCloud Dataplex V1Zone Resource Spec - Specification of the resources that are referenced by the assets within this zone.
- type
Zone
Type - Immutable. The type of the zone.
- zone
Id 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.
- discovery
Spec GoogleCloud Dataplex V1Zone Discovery Spec - Optional. Specification of the discovery feature applied to data in this zone.
- display
Name 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
Zone
Type - 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
- lake
Id String - resource
Spec 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.
- zone
Id 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.
- discovery
Spec Property Map - Optional. Specification of the discovery feature applied to data in this zone.
- display
Name 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:
- Asset
Status Pulumi.Google Native. Dataplex. V1. Outputs. Google Cloud Dataplex V1Asset Status Response - Aggregated status of the underlying assets of the zone.
- Create
Time 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.
- Update
Time 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 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.
- Update
Time 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 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.
- update
Time 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 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.
- update
Time 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.
- asset
Status Property Map - Aggregated status of the underlying assets of the zone.
- create
Time 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.
- update
Time String - The time when the zone was last updated.
Supporting Types
GoogleCloudDataplexV1AssetStatusResponse, GoogleCloudDataplexV1AssetStatusResponseArgs
- 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 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 string - Last update time of the status.
- active
Assets Integer - Number of active assets.
- security
Policy IntegerApplying Assets - Number of assets that are in process of updating the security policy on attached resources.
- update
Time String - Last update time of the status.
- active
Assets number - Number of active assets.
- security
Policy numberApplying Assets - Number of assets that are in process of updating the security policy on attached resources.
- update
Time 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.
- active
Assets Number - Number of active assets.
- security
Policy NumberApplying Assets - Number of assets that are in process of updating the security policy on attached resources.
- update
Time String - Last update time of the status.
GoogleCloudDataplexV1ZoneDiscoverySpec, GoogleCloudDataplexV1ZoneDiscoverySpecArgs
- Enabled bool
- Whether discovery is enabled.
- Csv
Options Pulumi.Google Native. Dataplex. V1. Inputs. Google Cloud Dataplex V1Zone Discovery Spec Csv Options - Optional. Configuration for CSV data.
- 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 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 []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 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.
- csv
Options GoogleCloud Dataplex V1Zone Discovery Spec Csv Options - Optional. Configuration for CSV data.
- 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 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.
- csv
Options GoogleCloud Dataplex V1Zone Discovery Spec Csv Options - Optional. Configuration for CSV data.
- 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 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.
- csv
Options Property Map - Optional. Configuration for CSV data.
- 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 * * * *.
GoogleCloudDataplexV1ZoneDiscoverySpecCsvOptions, GoogleCloudDataplexV1ZoneDiscoverySpecCsvOptionsArgs
- 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.
GoogleCloudDataplexV1ZoneDiscoverySpecCsvOptionsResponse, GoogleCloudDataplexV1ZoneDiscoverySpecCsvOptionsResponseArgs
- 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.
GoogleCloudDataplexV1ZoneDiscoverySpecJsonOptions, GoogleCloudDataplexV1ZoneDiscoverySpecJsonOptionsArgs
- 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.
GoogleCloudDataplexV1ZoneDiscoverySpecJsonOptionsResponse, GoogleCloudDataplexV1ZoneDiscoverySpecJsonOptionsResponseArgs
- 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.
GoogleCloudDataplexV1ZoneDiscoverySpecResponse, GoogleCloudDataplexV1ZoneDiscoverySpecResponseArgs
- Csv
Options 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.
- 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 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 []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 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 Boolean
- 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 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 boolean
- 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 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 * * * *.
- csv
Options Property Map - Optional. Configuration for CSV data.
- enabled Boolean
- 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 * * * *.
GoogleCloudDataplexV1ZoneResourceSpec, GoogleCloudDataplexV1ZoneResourceSpecArgs
- Location
Type 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.
- 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.
- 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.
- 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.
- 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.
- location
Type "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
- 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.
- Google
Cloud Dataplex V1Zone Resource Spec Location Type Location Type Unspecified - LOCATION_TYPE_UNSPECIFIEDUnspecified location type.
- Google
Cloud Dataplex V1Zone Resource Spec Location Type Single Region - SINGLE_REGIONResources that are associated with a single region.
- Google
Cloud Dataplex V1Zone Resource Spec Location Type 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.
- 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.
- "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
- Location
Type string - Immutable. The location type of the resources that are allowed to be attached to the assets within this zone.
- Location
Type string - Immutable. The location type of the resources that are allowed to be attached to the assets within this zone.
- location
Type String - Immutable. The location type of the resources that are allowed to be attached to the assets within this zone.
- location
Type 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.
- location
Type String - Immutable. The location type of the resources that are allowed to be attached to the assets within this zone.
ZoneType, ZoneTypeArgs
- 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.
- Zone
Type Type Unspecified - TYPE_UNSPECIFIEDZone type not specified.
- Zone
Type Raw - RAWA zone that contains data that needs further processing before it is considered generally ready for consumption and analytics workloads.
- Zone
Type 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.
- 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.