Skip to content
Docs Try Aspire

PipelineStep

Handle TypeScript
📦 Aspire.Hosting.PostgreSQL v13.2.0-preview.1.26159.1
interface PipelineStep {
dependsOnSteps: List<string>;
description: string;
name: string;
requiredBySteps: List<string>;
tags: List<string>;
dependsOn(stepName: string): void;
requiredBy(stepName: string): void;
}

Properties

property dependsOnSteps List<string> get · set
Gets the DependsOnSteps property
property description string get · set
Gets the Description property
property name string get · set
Gets the Name property
property requiredBySteps List<string> get · set
Gets the RequiredBySteps property
property tags List<string> get · set
Gets the Tags property

Methods

method dependsOn
Adds a dependency on another step by name
dependsOn(stepName: string): void
stepName string
method requiredBy
Specifies that another step requires this step by name
requiredBy(stepName: string): void
stepName string