retryDataPoolSetupByName
Retries to set up the Data Pool identified by the given unique name.
Arguments
uniqueName required String
Returns
Nullable DataPool
The Data Pool object.
A Data Pool is a cached table hydrated from your data warehouse optimized for high-concurrency and low-latency queries.
retryDataPoolSetupByName.id non-null ID
The Data Pool's unique identifier.
retryDataPoolSetupByName.uniqueName non-null String
The Data Pool's unique name.
retryDataPoolSetupByName.description non-null String
The Data Pool's description.
retryDataPoolSetupByName.account non-null Account
The Data Pool's Account.
retryDataPoolSetupByName.environment non-null Environment
The Data Pool's Environment.
retryDataPoolSetupByName.createdAt non-null DateTime
The Data Pool's creation date and time in UTC.
retryDataPoolSetupByName.modifiedAt non-null DateTime
The Data Pool's last modification date and time in UTC.
retryDataPoolSetupByName.createdBy non-null String
The Data Pools's creator. It can be either a User ID, an Application ID, or "system" if it was created by Propel.
retryDataPoolSetupByName.modifiedBy non-null String
The Data Pools's last modifier. It can be either a User ID, an Application ID, or "system" if it was modified by Propel.
retryDataPoolSetupByName.dataSource non-null DataSource
The Data Pool's Data Source.
retryDataPoolSetupByName.status non-null DataPoolStatus
The Data Pool's status.
The status of a Data Pool.
CREATED
The Data Pool has been created and will be set up soon.
PENDING
Propel is attempting to set up the Data Pool.
LIVE
The Data Pool is set up and serving data. Check its Syncs to monitor data ingestion.
SETUP_FAILED
The Data Pool setup failed. Check its Setup Tasks before re-attempting setup.
DELETING
Propel is deleting the Data Pool and all of its associated data.
retryDataPoolSetupByName.dataRetentionInDays non-null Int
The Data Pool's data retention in days (not yet supported).
retryDataPoolSetupByName.table non-null String
The name of the Data Pool's table.
retryDataPoolSetupByName.timestamp non-null Dimension
The Data Pool's timestamp column.
retryDataPoolSetupByName.tenant nullable Tenant
The Data Pool's Tenant ID, if configured.
retryDataPoolSetupByName.recordCount nullable String
The number of records in the Data Pool.
retryDataPoolSetupByName.sizeInTerabytes nullable Float
The amount of storage in terabytes used by the Data Pool.
retryDataPoolSetupByName.columns nullable ColumnConnection
A list of columns included in the Data Pool. The specified columns from the underlying table will by synced to the Data Pool.
This list does not include any excluded columns. You can access those via
excludedColumns
.retryDataPoolSetupByName.availableMeasures nullable ColumnConnection
A list of measures (numeric columns) available to Metrics.
This list does not include any excluded columns.
retryDataPoolSetupByName.setupTasks nullable array of DataPoolSetupTask
A list of setup tasks performed on the Data Pool during its most recent setup attempt.
retryDataPoolSetupByName.syncing nullable DataPoolSyncStatus
Indicates whether or not syncing records is enabled for the Data Pool.
The Data Pool Sync Status. It indicates whether a Data Pool is syncing data or not.
ENABLED
Syncing is enabled for the Data Pool.
DISABLING
Propel is disabling syncing for the Data Pool.
DISABLED
Syncing is disabled for the Data Pool.
ENABLING
Propel is re-enabling syncing for the Data Pool.
retryDataPoolSetupByName.syncs nullable SyncConnection
retryDataPoolSetupByName.metrics nullable MetricConnection
retryDataPoolSetupByName.excludedColumns nullable ColumnConnection
A list of columns to exclude from the Data Pool. The specified columns from the underlying table will not be synced to the Data Pool.