Skip to main content

retryDataPoolSetupByName

Retries to set up the Data Pool identified by the given unique name.

Arguments


Returns

Nullable DataPool

The Data Pool object. Data Pools are Propel's high-speed data store and cache

Learn more about Data Pools.

  • 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 Pool'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 Pool'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 Timestamp

    The Data Pool's primary timestamp column.

  • retryDataPoolSetupByName.tenant nullable Tenant

    The Data Pool's tenant ID, if configured.

  • retryDataPoolSetupByName.uniqueId nullable UniqueId

    The Data Pool's unique ID column. Propel uses the primary timestamp and a unique ID to compose a primary key for determining whether records should be inserted, deleted, or updated within the Data Pool.

  • 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 DataPoolColumnConnection

    The Data Pool's columns.

  • retryDataPoolSetupByName.availableMeasures nullable DataPoolColumnConnection

    The list of measures (numeric columns) in the Data Pool.

  • retryDataPoolSetupByName.setupTasks nullable array of DataPoolSetupTask

    A list of setup tasks performed on the Data Pool during its most recent setup attempt.

  • retryDataPoolSetupByName.syncing non-null DataPoolSyncing

    Settings related to Data Pool syncing.

  • retryDataPoolSetupByName.syncs nullable SyncConnection

    The list of Syncs of the Data Pool.

    • retryDataPoolSetupByName.syncs.filter optional SyncsFilter

      The filter to apply when listing the Syncs for a Data Pool.

      • EMPTY

        Returns only Syncs with empty records.

      • NOT_EMPTY

        Returns only Syncs that contain one or more records.

      • ALL

        Returns all Syncs, regardless of whether they contain records or not.

    • retryDataPoolSetupByName.syncs.first optional Int

    • retryDataPoolSetupByName.syncs.after optional String

    • retryDataPoolSetupByName.syncs.last optional Int

    • retryDataPoolSetupByName.syncs.before optional String

  • retryDataPoolSetupByName.metrics nullable MetricConnection

    The list of Metrics powered by the Data Pool.

  • retryDataPoolSetupByName.deletionJobs nullable DeletionJobConnection

    The Deletion Jobs that were historically issued to this Data Pool, sorted by creation time, in descending order.

  • retryDataPoolSetupByName.accessControlEnabled non-null Boolean

    Whether the Data Pool has access control enabled or not.

    If the Data Pool has access control enabled, Applications must be assigned Data Pool Access Policies in order to query the Data Pool and its Metrics.

  • retryDataPoolSetupByName.dataPoolAccessPolicies non-null DataPoolAccessPolicyConnection

    A paginated list of Data Pool Access Policies available on the Data Pool.

  • retryDataPoolSetupByName.validateExpression non-null ValidateExpressionResult

    Validates a custom expression against the Data Pool's available columns. If the provided expression is invalid, the ValidateExpressionResult response will contain a reason explaining why.