Documentation
¶
Index ¶
- type ActivateWorkflow
- type AllowlistRequest
- type BatchPauseWorkflow
- type Changeset
- type ChangesetFile
- type DeleteWorkflow
- type LinkOwner
- type UnlinkOwner
- type UpsertWorkflow
- type UserAllowlistRequestInput
- type UserLinkOwnerInput
- type UserUnlinkOwnerInput
- type UserWorkflowActivateInput
- type UserWorkflowBatchPauseInput
- type UserWorkflowDeleteInput
- type UserWorkflowUpsertInput
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ActivateWorkflow ¶
type ActivateWorkflow struct {
Payload changeset.UserWorkflowActivateInput `json:"payload,omitempty"`
}
type AllowlistRequest ¶
type AllowlistRequest struct {
Payload changeset.UserAllowlistRequestInput `json:"payload,omitempty"`
}
type BatchPauseWorkflow ¶
type BatchPauseWorkflow struct {
Payload changeset.UserWorkflowBatchPauseInput `json:"payload,omitempty"`
}
type Changeset ¶
type Changeset struct {
LinkOwner *LinkOwner `json:"LinkOwner,omitempty"`
UnlinkOwner *UnlinkOwner `json:"UnlinkOwner,omitempty"`
UpsertWorkflow *UpsertWorkflow `json:"UpsertWorkflow,omitempty"`
BatchPauseWorkflow *BatchPauseWorkflow `json:"BatchPauseWorkflow,omitempty"`
ActivateWorkflow *ActivateWorkflow `json:"ActivateWorkflow,omitempty"`
DeleteWorkflow *DeleteWorkflow `json:"DeleteWorkflow,omitempty"`
AllowlistRequest *AllowlistRequest `json:"AllowlistRequest,omitempty"`
}
type ChangesetFile ¶
type ChangesetFile struct {
Environment string `json:"environment"`
Domain string `json:"domain"`
MergeProposals bool `json:"merge-proposals"`
Changesets []Changeset `json:"changesets"`
}
func NewChangesetFile ¶
func NewChangesetFile(env, domain string, mergeProposals bool, changesets []Changeset) *ChangesetFile
type DeleteWorkflow ¶
type DeleteWorkflow struct {
Payload changeset.UserWorkflowDeleteInput `json:"payload,omitempty"`
}
type LinkOwner ¶
type LinkOwner struct {
Payload changeset.UserLinkOwnerInput `json:"payload,omitempty"`
}
type UnlinkOwner ¶
type UnlinkOwner struct {
Payload changeset.UserUnlinkOwnerInput `json:"payload,omitempty"`
}
type UpsertWorkflow ¶
type UpsertWorkflow struct {
Payload changeset.UserWorkflowUpsertInput `json:"payload,omitempty"`
}
type UserAllowlistRequestInput ¶
type UserAllowlistRequestInput = changeset.UserAllowlistRequestInput
type UserLinkOwnerInput ¶
type UserLinkOwnerInput = changeset.UserLinkOwnerInput
type UserUnlinkOwnerInput ¶
type UserUnlinkOwnerInput = changeset.UserUnlinkOwnerInput
type UserWorkflowActivateInput ¶
type UserWorkflowActivateInput = changeset.UserWorkflowActivateInput
type UserWorkflowBatchPauseInput ¶
type UserWorkflowBatchPauseInput = changeset.UserWorkflowBatchPauseInput
type UserWorkflowDeleteInput ¶
type UserWorkflowDeleteInput = changeset.UserWorkflowDeleteInput
type UserWorkflowUpsertInput ¶
type UserWorkflowUpsertInput = changeset.UserWorkflowUpsertInput
Click to show internal directories.
Click to hide internal directories.