Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Function Classes (Incoming Webhooks)

Class

Description

FLEXDEPLOY

Functions for performing actions in FlexDeploy

HMAC

Functions for generating an HMAC string

LOG

Functions for printing log messages

GITHUB

Functions for getting information from a GitHub payload

BITBUCKET

Functions for getting information from a Bitbucket payload

SLACK

Utility functions for interacting with Slack

GITLAB

Functions for getting information from a GitLab payload

BITBUCKET_SERVER

Functions for getting information from a Bitbucket Server payload

AZURE

Functions for getting information from an Azure Git payload

MICROSOFTTEAMS

Functions for receiving Approvals from Teams

EMAIL

Functions for formatting and sending emails

SALESFORCE

Functions for getting files Salesforce Org and commiting to Git.

Function Classes (Outgoing Webhooks)

Class

Description

FLEXDEPLOY

Functions for performing actions in FlexDeploy

EMAIL

Functions for formatting and sending emails

LOG

Functions for printing log messages

REST

Object exposing REST functions. For more info see Using the REST object.

MICROSOFTTEAMS

Functions for formatting and sending Teams messages

SLACK

Functions for formatting and sending Slack messages

FLEXDEPLOY Function Incompatible Changes for 6.0

  • Removed Methods

Code Block
languagejava
# ChangeManagementSystemService object is no longer available
ChangeManagementSystemService FLEXDEPLOY.getCMSService(Long pCMSInstanceId)

ChangeManagementSystemService FLEXDEPLOY.findCMSService(String pCode, String pName)
  • Replaced by following methods

Code Block
languagejava
ChangeManagementSystem FLEXDEPLOY.getChangeManagementSystemByInstanceCode(String pInstanceCode)

ChangeManagementSystem FLEXDEPLOY.getChangeManagementSystemByInstanceName(String pInstanceName)

CMSObject FLEXDEPLOY.createIncidentForWorklowRequest(Long pWorkflowRequestId, Map<String, Serializable> pIncidentFields, String pCMSInstanceCode, String pCMSInstanceName)

CMSObject FLEXDEPLOY.createIncidentByWorkflowType(Long pWorkflowRequestId, Map<String, Serializable> pIncidentFields)

ChangeManagementSystem FLEXDEPLOY.getChangeManagementSystemByInstanceId(Long pCMSInstanceId)