Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/jira/src/agile/parameters/submitDeployments.ts>SubmitDeployments

A JavaScript/TypeScript wrapper for the JIRA Cloud, Service Desk and Agile REST API
Latest
interface SubmitDeployments
import { type SubmitDeployments } from "https://deno.land/x/jira@v3.0.2/src/agile/parameters/submitDeployments.ts";

Properties

optional
properties: { }

Properties assigned to deployment data that can then be used for delete / query operations.

Examples might be an account or user ID that can then be used to clean up data if an account is removed from the Provider system.

Properties are supplied as key/value pairs, and a maximum of 5 properties can be supplied, keys cannot contain ':' or start with '_'.

optional
deployments: { deploymentSequenceNumber: number; updateSequenceNumber: number; associations: any[]; displayName: string; url: string; description: string; lastUpdated: string; label?: string; state:
| "unknown"
| "pending"
| "in_progress"
| "cancelled"
| "failed"
| "rolled_back"
| "successful"
| string
; pipeline: { id: string; displayName: string; url: string; }; environment: { id: string; displayName: string; type:
| "unmapped"
| "development"
| "testing"
| "staging"
| "production"
| string
; }; commands?: { command?: string; }[]; schemaVersion?: "1.0" | string; triggeredBy?: { email?: string; }; }[]

A list of deployments to submit to Jira.

Each deployment may be associated with one or more Jira issue keys, and will be associated with any properties included in this request.

optional
providerMetadata: { product?: string; }

Information about the provider. This is useful for auditing, logging, debugging, and other internal uses. It is not considered private information. Hence, it may not contain personally identifiable information.