Interface DataplexAssetDiscoverySpec
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
DataplexAssetDiscoverySpec.Jsii$Proxy
@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-31T03:59:20.583Z") @Stability(Stable) public interface DataplexAssetDiscoverySpec extends software.amazon.jsii.JsiiSerializable
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classDataplexAssetDiscoverySpec.BuilderA builder forDataplexAssetDiscoverySpecstatic classDataplexAssetDiscoverySpec.Jsii$ProxyAn implementation forDataplexAssetDiscoverySpec
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static DataplexAssetDiscoverySpec.Builderbuilder()default DataplexAssetDiscoverySpecCsvOptionsgetCsvOptions()csv_options block.ObjectgetEnabled()Required.default List<String>getExcludePatterns()Optional.default List<String>getIncludePatterns()Optional.default DataplexAssetDiscoverySpecJsonOptionsgetJsonOptions()json_options block.default StringgetSchedule()Optional.
-
-
-
Method Detail
-
getEnabled
@Stability(Stable) @NotNull Object getEnabled()
Required. Whether discovery is enabled.Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/dataplex_asset#enabled DataplexAsset#enabled}
-
getCsvOptions
@Stability(Stable) @Nullable default DataplexAssetDiscoverySpecCsvOptions getCsvOptions()
csv_options block.Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/dataplex_asset#csv_options DataplexAsset#csv_options}
-
getExcludePatterns
@Stability(Stable) @Nullable default List<String> getExcludePatterns()
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. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/dataplex_asset#exclude_patterns DataplexAsset#exclude_patterns}
-
getIncludePatterns
@Stability(Stable) @Nullable default List<String> getIncludePatterns()
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. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/dataplex_asset#include_patterns DataplexAsset#include_patterns}
-
getJsonOptions
@Stability(Stable) @Nullable default DataplexAssetDiscoverySpecJsonOptions getJsonOptions()
json_options block.Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/dataplex_asset#json_options DataplexAsset#json_options}
-
getSchedule
@Stability(Stable) @Nullable default String getSchedule()
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 * * * *". Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/dataplex_asset#schedule DataplexAsset#schedule}
-
builder
@Stability(Stable) static DataplexAssetDiscoverySpec.Builder builder()
- Returns:
- a
DataplexAssetDiscoverySpec.BuilderofDataplexAssetDiscoverySpec
-
-