Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 26 additions & 22 deletions components/schemas/pipelines/ResourceLocation.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,29 @@
title: StepResourceLocation
type: object
description: Either a details ID or details from where the ID is an identifier for an existing resource and a from is an identifier from a previous step in this pipeline.
oneOf:
type: object
description: Either a details ID or details from where the ID is an identifier for an existing resource and a from is an identifier from a previous step in this pipeline.
oneOf:
- title: DetailsId
type: object
properties:
id:
type: string
description: The ID of an existing resource that exists before the pipeline is run.
- title: DetailsFrom
type: object
properties:
from:
type: object
type: object
required:
- id
properties:
id:
type: string
description: The ID of an existing resource that exists before the pipeline is run.
- title: DetailsFrom
type: object
required:
- from
properties:
from:
type: object
description: The stage and step to report on.
required:
- step
properties:
stage:
type: string
description: An identifier for the stage the step being reported on resides in.
step:
type: string
description: An identifier for the step to be reported on.
required:
- step
properties:
stage:
type: string
description: An identifier for the stage the step being reported on resides in.
step:
type: string
description: An identifier for the step to be reported on.