Domain Detective

API Reference

Class

CmdletGetTlsRptReportsTimeSeries

Namespace DomainDetective.PowerShell
Assembly DomainDetective.PowerShell
Base PSCmdlet
Modifiers sealed
Attributes
Cmdlet("Get", "DDTlsRptReportsTimeSeries") Alias(["Get-TlsRptReportsTimeSeries"]) OutputType([typeof(TlsRptReportsTimeSeriesInfo)])

Builds a TLS-RPT Reports time-series view from stored snapshots.

Inheritance

  • PSCmdlet
  • CmdletGetTlsRptReportsTimeSeries

Examples

Build a per-domain TLS-RPT Reports section from a store


Get-DDTlsRptReportsTimeSeries -DomainName example.com -StorePath .\Store
        

Constructors

Methods

ProcessRecord() #

Executes the cmdlet.

Properties

public String[] DomainName { get; set; } #
Parameter(Mandatory = true, Position = 0, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true) ValidateNotNullOrEmpty ValidateDomainName

Domain(s) to load.

public String StorePath { get; set; } #
Parameter(Mandatory = true) ValidateNotNullOrEmpty

Root directory for snapshot storage.

public Nullable<DateTime> SinceUtc { get; set; } #
Parameter(Mandatory = false)

Only include snapshots with end time on/after this UTC date/time.

public Int32 Days { get; set; } #
Parameter(Mandatory = false)

Convenience override for -SinceUtc (UTC): include snapshots from the last N days.

{{ include "footer" }}