1. Packages
  2. Packages
  3. Thoth
  4. API Docs
  5. governance
  6. EvidenceBackfill
Viewing docs for Thoth v0.1.15
published on Thursday, Jul 23, 2026 by Aten Security
thoth logo
Viewing docs for Thoth v0.1.15
published on Thursday, Jul 23, 2026 by Aten Security

    Create EvidenceBackfill Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new EvidenceBackfill(name: string, args?: EvidenceBackfillArgs, opts?: CustomResourceOptions);
    @overload
    def EvidenceBackfill(resource_name: str,
                         args: Optional[EvidenceBackfillArgs] = None,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def EvidenceBackfill(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         dry_run: Optional[bool] = None,
                         include_blocked_events: Optional[bool] = None,
                         integration_id: Optional[str] = None,
                         limit: Optional[int] = None,
                         trigger: Optional[str] = None)
    func NewEvidenceBackfill(ctx *Context, name string, args *EvidenceBackfillArgs, opts ...ResourceOption) (*EvidenceBackfill, error)
    public EvidenceBackfill(string name, EvidenceBackfillArgs? args = null, CustomResourceOptions? opts = null)
    public EvidenceBackfill(String name, EvidenceBackfillArgs args)
    public EvidenceBackfill(String name, EvidenceBackfillArgs args, CustomResourceOptions options)
    
    type: thoth:governance:EvidenceBackfill
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "thoth_governance_evidence_backfill" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args EvidenceBackfillArgs
    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 EvidenceBackfillArgs
    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 EvidenceBackfillArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args EvidenceBackfillArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args EvidenceBackfillArgs
    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 evidenceBackfillResource = new Thoth.Governance.EvidenceBackfill("evidenceBackfillResource", new()
    {
        DryRun = false,
        IncludeBlockedEvents = false,
        IntegrationId = "string",
        Limit = 0,
        Trigger = "string",
    });
    
    example, err := governance.NewEvidenceBackfill(ctx, "evidenceBackfillResource", &governance.EvidenceBackfillArgs{
    	DryRun:               pulumi.Bool(false),
    	IncludeBlockedEvents: pulumi.Bool(false),
    	IntegrationId:        pulumi.String("string"),
    	Limit:                pulumi.Int(0),
    	Trigger:              pulumi.String("string"),
    })
    
    resource "thoth_governance_evidence_backfill" "evidenceBackfillResource" {
      lifecycle {
        create_before_destroy = true
      }
      dry_run                = false
      include_blocked_events = false
      integration_id         = "string"
      limit                  = 0
      trigger                = "string"
    }
    
    var evidenceBackfillResource = new EvidenceBackfill("evidenceBackfillResource", EvidenceBackfillArgs.builder()
        .dryRun(false)
        .includeBlockedEvents(false)
        .integrationId("string")
        .limit(0)
        .trigger("string")
        .build());
    
    evidence_backfill_resource = thoth.governance.EvidenceBackfill("evidenceBackfillResource",
        dry_run=False,
        include_blocked_events=False,
        integration_id="string",
        limit=0,
        trigger="string")
    
    const evidenceBackfillResource = new thoth.governance.EvidenceBackfill("evidenceBackfillResource", {
        dryRun: false,
        includeBlockedEvents: false,
        integrationId: "string",
        limit: 0,
        trigger: "string",
    });
    
    type: thoth:governance:EvidenceBackfill
    properties:
        dryRun: false
        includeBlockedEvents: false
        integrationId: string
        limit: 0
        trigger: string
    

    EvidenceBackfill 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 EvidenceBackfill resource accepts the following input properties:

    DryRun bool
    When true, preview records without persisting evidence.
    IncludeBlockedEvents bool
    Include blocked decisions in addition to explicit violations.
    IntegrationId string
    Optional integration ID stamped on created evidence records.
    Limit int
    Maximum number of candidate events to evaluate (1-1000).
    Trigger string
    Change this value to force a re-run.
    DryRun bool
    When true, preview records without persisting evidence.
    IncludeBlockedEvents bool
    Include blocked decisions in addition to explicit violations.
    IntegrationId string
    Optional integration ID stamped on created evidence records.
    Limit int
    Maximum number of candidate events to evaluate (1-1000).
    Trigger string
    Change this value to force a re-run.
    dry_run bool
    When true, preview records without persisting evidence.
    include_blocked_events bool
    Include blocked decisions in addition to explicit violations.
    integration_id string
    Optional integration ID stamped on created evidence records.
    limit number
    Maximum number of candidate events to evaluate (1-1000).
    trigger string
    Change this value to force a re-run.
    dryRun Boolean
    When true, preview records without persisting evidence.
    includeBlockedEvents Boolean
    Include blocked decisions in addition to explicit violations.
    integrationId String
    Optional integration ID stamped on created evidence records.
    limit Integer
    Maximum number of candidate events to evaluate (1-1000).
    trigger String
    Change this value to force a re-run.
    dryRun boolean
    When true, preview records without persisting evidence.
    includeBlockedEvents boolean
    Include blocked decisions in addition to explicit violations.
    integrationId string
    Optional integration ID stamped on created evidence records.
    limit number
    Maximum number of candidate events to evaluate (1-1000).
    trigger string
    Change this value to force a re-run.
    dry_run bool
    When true, preview records without persisting evidence.
    include_blocked_events bool
    Include blocked decisions in addition to explicit violations.
    integration_id str
    Optional integration ID stamped on created evidence records.
    limit int
    Maximum number of candidate events to evaluate (1-1000).
    trigger str
    Change this value to force a re-run.
    dryRun Boolean
    When true, preview records without persisting evidence.
    includeBlockedEvents Boolean
    Include blocked decisions in addition to explicit violations.
    integrationId String
    Optional integration ID stamped on created evidence records.
    limit Number
    Maximum number of candidate events to evaluate (1-1000).
    trigger String
    Change this value to force a re-run.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the EvidenceBackfill resource produces the following output properties:

    Candidates int
    Number of events that qualified for backfill.
    Created int
    Number of new evidence records created.
    EvidenceIdsJson string
    Created or candidate evidence IDs as JSON array.
    Examined int
    Number of source events examined.
    ExecutedAt string
    Timestamp when backfill was executed.
    Id string
    The provider-assigned unique ID for this managed resource.
    SkippedExisting int
    Number of candidates skipped due to existing evidence.
    SourceCollection string
    Source collection used by the backfill endpoint.
    TenantId string
    Tenant ID from provider configuration.
    WouldCreate int
    Number of records that would be created in dry-run mode.
    Candidates int
    Number of events that qualified for backfill.
    Created int
    Number of new evidence records created.
    EvidenceIdsJson string
    Created or candidate evidence IDs as JSON array.
    Examined int
    Number of source events examined.
    ExecutedAt string
    Timestamp when backfill was executed.
    Id string
    The provider-assigned unique ID for this managed resource.
    SkippedExisting int
    Number of candidates skipped due to existing evidence.
    SourceCollection string
    Source collection used by the backfill endpoint.
    TenantId string
    Tenant ID from provider configuration.
    WouldCreate int
    Number of records that would be created in dry-run mode.
    candidates number
    Number of events that qualified for backfill.
    created number
    Number of new evidence records created.
    evidence_ids_json string
    Created or candidate evidence IDs as JSON array.
    examined number
    Number of source events examined.
    executed_at string
    Timestamp when backfill was executed.
    id string
    The provider-assigned unique ID for this managed resource.
    skipped_existing number
    Number of candidates skipped due to existing evidence.
    source_collection string
    Source collection used by the backfill endpoint.
    tenant_id string
    Tenant ID from provider configuration.
    would_create number
    Number of records that would be created in dry-run mode.
    candidates Integer
    Number of events that qualified for backfill.
    created Integer
    Number of new evidence records created.
    evidenceIdsJson String
    Created or candidate evidence IDs as JSON array.
    examined Integer
    Number of source events examined.
    executedAt String
    Timestamp when backfill was executed.
    id String
    The provider-assigned unique ID for this managed resource.
    skippedExisting Integer
    Number of candidates skipped due to existing evidence.
    sourceCollection String
    Source collection used by the backfill endpoint.
    tenantId String
    Tenant ID from provider configuration.
    wouldCreate Integer
    Number of records that would be created in dry-run mode.
    candidates number
    Number of events that qualified for backfill.
    created number
    Number of new evidence records created.
    evidenceIdsJson string
    Created or candidate evidence IDs as JSON array.
    examined number
    Number of source events examined.
    executedAt string
    Timestamp when backfill was executed.
    id string
    The provider-assigned unique ID for this managed resource.
    skippedExisting number
    Number of candidates skipped due to existing evidence.
    sourceCollection string
    Source collection used by the backfill endpoint.
    tenantId string
    Tenant ID from provider configuration.
    wouldCreate number
    Number of records that would be created in dry-run mode.
    candidates int
    Number of events that qualified for backfill.
    created int
    Number of new evidence records created.
    evidence_ids_json str
    Created or candidate evidence IDs as JSON array.
    examined int
    Number of source events examined.
    executed_at str
    Timestamp when backfill was executed.
    id str
    The provider-assigned unique ID for this managed resource.
    skipped_existing int
    Number of candidates skipped due to existing evidence.
    source_collection str
    Source collection used by the backfill endpoint.
    tenant_id str
    Tenant ID from provider configuration.
    would_create int
    Number of records that would be created in dry-run mode.
    candidates Number
    Number of events that qualified for backfill.
    created Number
    Number of new evidence records created.
    evidenceIdsJson String
    Created or candidate evidence IDs as JSON array.
    examined Number
    Number of source events examined.
    executedAt String
    Timestamp when backfill was executed.
    id String
    The provider-assigned unique ID for this managed resource.
    skippedExisting Number
    Number of candidates skipped due to existing evidence.
    sourceCollection String
    Source collection used by the backfill endpoint.
    tenantId String
    Tenant ID from provider configuration.
    wouldCreate Number
    Number of records that would be created in dry-run mode.

    Look up Existing EvidenceBackfill Resource

    Get an existing EvidenceBackfill resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: EvidenceBackfillState, opts?: CustomResourceOptions): EvidenceBackfill
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            candidates: Optional[int] = None,
            created: Optional[int] = None,
            dry_run: Optional[bool] = None,
            evidence_ids_json: Optional[str] = None,
            examined: Optional[int] = None,
            executed_at: Optional[str] = None,
            include_blocked_events: Optional[bool] = None,
            integration_id: Optional[str] = None,
            limit: Optional[int] = None,
            skipped_existing: Optional[int] = None,
            source_collection: Optional[str] = None,
            tenant_id: Optional[str] = None,
            trigger: Optional[str] = None,
            would_create: Optional[int] = None) -> EvidenceBackfill
    func GetEvidenceBackfill(ctx *Context, name string, id IDInput, state *EvidenceBackfillState, opts ...ResourceOption) (*EvidenceBackfill, error)
    public static EvidenceBackfill Get(string name, Input<string> id, EvidenceBackfillState? state, CustomResourceOptions? opts = null)
    public static EvidenceBackfill get(String name, Output<String> id, EvidenceBackfillState state, CustomResourceOptions options)
    resources:  _:    type: thoth:governance:EvidenceBackfill    get:      id: ${id}
    import {
      to = thoth_governance_evidence_backfill.example
      id = "${id}"
    }
    
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Candidates int
    Number of events that qualified for backfill.
    Created int
    Number of new evidence records created.
    DryRun bool
    When true, preview records without persisting evidence.
    EvidenceIdsJson string
    Created or candidate evidence IDs as JSON array.
    Examined int
    Number of source events examined.
    ExecutedAt string
    Timestamp when backfill was executed.
    IncludeBlockedEvents bool
    Include blocked decisions in addition to explicit violations.
    IntegrationId string
    Optional integration ID stamped on created evidence records.
    Limit int
    Maximum number of candidate events to evaluate (1-1000).
    SkippedExisting int
    Number of candidates skipped due to existing evidence.
    SourceCollection string
    Source collection used by the backfill endpoint.
    TenantId string
    Tenant ID from provider configuration.
    Trigger string
    Change this value to force a re-run.
    WouldCreate int
    Number of records that would be created in dry-run mode.
    Candidates int
    Number of events that qualified for backfill.
    Created int
    Number of new evidence records created.
    DryRun bool
    When true, preview records without persisting evidence.
    EvidenceIdsJson string
    Created or candidate evidence IDs as JSON array.
    Examined int
    Number of source events examined.
    ExecutedAt string
    Timestamp when backfill was executed.
    IncludeBlockedEvents bool
    Include blocked decisions in addition to explicit violations.
    IntegrationId string
    Optional integration ID stamped on created evidence records.
    Limit int
    Maximum number of candidate events to evaluate (1-1000).
    SkippedExisting int
    Number of candidates skipped due to existing evidence.
    SourceCollection string
    Source collection used by the backfill endpoint.
    TenantId string
    Tenant ID from provider configuration.
    Trigger string
    Change this value to force a re-run.
    WouldCreate int
    Number of records that would be created in dry-run mode.
    candidates number
    Number of events that qualified for backfill.
    created number
    Number of new evidence records created.
    dry_run bool
    When true, preview records without persisting evidence.
    evidence_ids_json string
    Created or candidate evidence IDs as JSON array.
    examined number
    Number of source events examined.
    executed_at string
    Timestamp when backfill was executed.
    include_blocked_events bool
    Include blocked decisions in addition to explicit violations.
    integration_id string
    Optional integration ID stamped on created evidence records.
    limit number
    Maximum number of candidate events to evaluate (1-1000).
    skipped_existing number
    Number of candidates skipped due to existing evidence.
    source_collection string
    Source collection used by the backfill endpoint.
    tenant_id string
    Tenant ID from provider configuration.
    trigger string
    Change this value to force a re-run.
    would_create number
    Number of records that would be created in dry-run mode.
    candidates Integer
    Number of events that qualified for backfill.
    created Integer
    Number of new evidence records created.
    dryRun Boolean
    When true, preview records without persisting evidence.
    evidenceIdsJson String
    Created or candidate evidence IDs as JSON array.
    examined Integer
    Number of source events examined.
    executedAt String
    Timestamp when backfill was executed.
    includeBlockedEvents Boolean
    Include blocked decisions in addition to explicit violations.
    integrationId String
    Optional integration ID stamped on created evidence records.
    limit Integer
    Maximum number of candidate events to evaluate (1-1000).
    skippedExisting Integer
    Number of candidates skipped due to existing evidence.
    sourceCollection String
    Source collection used by the backfill endpoint.
    tenantId String
    Tenant ID from provider configuration.
    trigger String
    Change this value to force a re-run.
    wouldCreate Integer
    Number of records that would be created in dry-run mode.
    candidates number
    Number of events that qualified for backfill.
    created number
    Number of new evidence records created.
    dryRun boolean
    When true, preview records without persisting evidence.
    evidenceIdsJson string
    Created or candidate evidence IDs as JSON array.
    examined number
    Number of source events examined.
    executedAt string
    Timestamp when backfill was executed.
    includeBlockedEvents boolean
    Include blocked decisions in addition to explicit violations.
    integrationId string
    Optional integration ID stamped on created evidence records.
    limit number
    Maximum number of candidate events to evaluate (1-1000).
    skippedExisting number
    Number of candidates skipped due to existing evidence.
    sourceCollection string
    Source collection used by the backfill endpoint.
    tenantId string
    Tenant ID from provider configuration.
    trigger string
    Change this value to force a re-run.
    wouldCreate number
    Number of records that would be created in dry-run mode.
    candidates int
    Number of events that qualified for backfill.
    created int
    Number of new evidence records created.
    dry_run bool
    When true, preview records without persisting evidence.
    evidence_ids_json str
    Created or candidate evidence IDs as JSON array.
    examined int
    Number of source events examined.
    executed_at str
    Timestamp when backfill was executed.
    include_blocked_events bool
    Include blocked decisions in addition to explicit violations.
    integration_id str
    Optional integration ID stamped on created evidence records.
    limit int
    Maximum number of candidate events to evaluate (1-1000).
    skipped_existing int
    Number of candidates skipped due to existing evidence.
    source_collection str
    Source collection used by the backfill endpoint.
    tenant_id str
    Tenant ID from provider configuration.
    trigger str
    Change this value to force a re-run.
    would_create int
    Number of records that would be created in dry-run mode.
    candidates Number
    Number of events that qualified for backfill.
    created Number
    Number of new evidence records created.
    dryRun Boolean
    When true, preview records without persisting evidence.
    evidenceIdsJson String
    Created or candidate evidence IDs as JSON array.
    examined Number
    Number of source events examined.
    executedAt String
    Timestamp when backfill was executed.
    includeBlockedEvents Boolean
    Include blocked decisions in addition to explicit violations.
    integrationId String
    Optional integration ID stamped on created evidence records.
    limit Number
    Maximum number of candidate events to evaluate (1-1000).
    skippedExisting Number
    Number of candidates skipped due to existing evidence.
    sourceCollection String
    Source collection used by the backfill endpoint.
    tenantId String
    Tenant ID from provider configuration.
    trigger String
    Change this value to force a re-run.
    wouldCreate Number
    Number of records that would be created in dry-run mode.

    Package Details

    Repository
    thoth atensecurity/pulumi-thoth
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the thoth Terraform Provider.
    thoth logo
    Viewing docs for Thoth v0.1.15
    published on Thursday, Jul 23, 2026 by Aten Security

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial