# README

Go API client for openapi

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)

Overview

This API client was generated by the OpenAPI Generator project. By using the OpenAPI-spec from a remote server, you can easily generate an API client.

  • API version: v1
  • Package version: 1.0.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

Installation

Install the following dependencies:

go get github.com/stretchr/testify/assert
go get golang.org/x/net/context

Put the package under your project folder and add the following in import:

import openapi "github.com/GIT_USER_ID/GIT_REPO_ID"

To use a proxy, set the environment variable HTTP_PROXY:

os.Setenv("HTTP_PROXY", "http://proxy_name:proxy_port")

Configuration of Server URL

Default configuration comes with Servers field that contains server objects as defined in the OpenAPI specification.

Select Server Configuration

For using other server than the one defined on index 0 set context value sw.ContextServerIndex of type int.

ctx := context.WithValue(context.Background(), openapi.ContextServerIndex, 1)

Templated Server URL

Templated server URL is formatted using default variables from configuration or from context value sw.ContextServerVariables of type map[string]string.

ctx := context.WithValue(context.Background(), openapi.ContextServerVariables, map[string]string{
	"basePath": "v2",
})

Note, enum values are always validated and all unused variables are silently ignored.

URLs Configuration per Operation

Each operation can use different server URL defined using OperationServers map in the Configuration. An operation is uniquely identified by "{classname}Service.{nickname}" string. Similar rules for overriding default operation server index and variables applies by using sw.ContextOperationServerIndices and sw.ContextOperationServerVariables context maps.

ctx := context.WithValue(context.Background(), openapi.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), openapi.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to http://localhost:5516

ClassMethodHTTP requestDescription
ActivityLogsApiGetActivityLogsGet /api/v1/activities/{containerId}
ApplicationApiCreateApplicationPost /api/v1/applications
ApplicationApiDeleteApplicationDelete /api/v1/applications/{applicationId}
ApplicationApiGetApplicationGet /api/v1/applications/{applicationId}
ApplicationApiSearchApplicationsPost /api/v1/applications/search
ApplicationApiUpdateApplicationPut /api/v1/applications/{applicationId}
ConfigurationApiAddConfigurationPost /api/v1/config
ConfigurationApiAddGlobalVariablePost /api/v1/config/Configuration/variables/global
ConfigurationApiCheckStatusPost /api/v1/config/status
ConfigurationApiCheckStatus1Post /api/v1/config/{configurationId}/status
ConfigurationApiDeleteConfigurationDelete /api/v1/config/{configurationId}
ConfigurationApiDeleteGlobalVariableDelete /api/v1/config/{variableId}
ConfigurationApiGetConfigurationGet /api/v1/config/{configurationId}
ConfigurationApiGetGlobalVariableGet /api/v1/config/{variableId}
ConfigurationApiGetGlobalVariableValuesGet /api/v1/config/Configuration/variableValues/global
ConfigurationApiGetGlobalVariablesGet /api/v1/config/Configuration/variables/global
ConfigurationApiGetSystemMessageGet /api/v1/config/system-message
ConfigurationApiSearchByTypeAndTitleGet /api/v1/config/byTypeAndTitle
ConfigurationApiUpdateConfigurationPut /api/v1/config/{configurationId}
ConfigurationApiUpdateGlobalVariablePut /api/v1/config/{variableId}
ConfigurationApiUpdateSystemMessagePut /api/v1/config/system-message
DeliveryApiCompleteStagePost /api/v1/deliveries/{stageId}/complete
DeliveryApiCompleteTrackedItemPut /api/v1/deliveries/{stageId}/{itemId}/complete
DeliveryApiCompleteTransitionPost /api/v1/deliveries/{transitionId}/complete
DeliveryApiCreateTrackedItemInDeliveryPost /api/v1/deliveries/{deliveryId}/tracked-items
DeliveryApiDeleteDeliveryDelete /api/v1/deliveries/{deliveryId}
DeliveryApiDeleteTrackedItemDeliveryDelete /api/v1/deliveries/{itemId}
DeliveryApiDescopeTrackedItemPut /api/v1/deliveries/{itemId}/descope
DeliveryApiGetDeliveryGet /api/v1/deliveries/{deliveryId}
DeliveryApiGetDeliveryTimelineGet /api/v1/deliveries/{deliveryId}/timeline
DeliveryApiGetReleasesForDeliveryGet /api/v1/deliveries/{deliveryId}/releases
DeliveryApiGetStagesInDeliveryGet /api/v1/deliveries/{deliveryId}/stages
DeliveryApiGetTrackedItemsinDeliveryGet /api/v1/deliveries/{deliveryId}/tracked-items
DeliveryApiReopenStagePost /api/v1/deliveries/{stageId}/reopen
DeliveryApiRescopeTrackedItemPut /api/v1/deliveries/{itemId}/rescope
DeliveryApiResetTrackedItemPut /api/v1/deliveries/{stageId}/{itemId}/reset
DeliveryApiSearchDeliveriesPost /api/v1/deliveries/search
DeliveryApiSkipTrackedItemPut /api/v1/deliveries/{stageId}/{itemId}/skip
DeliveryApiUpdateDeliveryPut /api/v1/deliveries/{deliveryId}
DeliveryApiUpdateStageInDeliveryPut /api/v1/deliveries/{stageId}
DeliveryApiUpdateTrackedItemInDeliveryPut /api/v1/deliveries/{itemId}
DeliveryApiUpdateTransitionInDeliveryPut /api/v1/deliveries/{transitionId}
DeliveryPatternApiCheckTitlePost /api/v1/delivery-patterns/checkTitle
DeliveryPatternApiCreateDeliveryFromPatternPost /api/v1/delivery-patterns/{patternId}/create
DeliveryPatternApiCreatePatternPost /api/v1/delivery-patterns
DeliveryPatternApiCreateStagePost /api/v1/delivery-patterns/{patternId}/createStage
DeliveryPatternApiCreateStage1Post /api/v1/delivery-patterns/{patternId}/stages
DeliveryPatternApiCreateStage2Post /api/v1/delivery-patterns/{patternId}/stages/{position}
DeliveryPatternApiCreateTrackedItemInPatternPost /api/v1/delivery-patterns/{patternId}/tracked-items
DeliveryPatternApiCreateTransitionPost /api/v1/delivery-patterns/{stageId}/transitions
DeliveryPatternApiDeletePatternDelete /api/v1/delivery-patterns/{patternId}
DeliveryPatternApiDeleteStageDelete /api/v1/delivery-patterns/{stageId}
DeliveryPatternApiDeleteTrackedItemDeliveryPatternDelete /api/v1/delivery-patterns/{itemId}
DeliveryPatternApiDeleteTransitionDelete /api/v1/delivery-patterns/{transitionId}
DeliveryPatternApiDuplicatePatternPost /api/v1/delivery-patterns/{patternId}/duplicate
DeliveryPatternApiGetPatternGet /api/v1/delivery-patterns/{patternId}
DeliveryPatternApiGetPatternByIdOrTitleGet /api/v1/delivery-patterns/{patternIdOrTitle}
DeliveryPatternApiGetStagesInPatternGet /api/v1/delivery-patterns/{patternId}/stages
DeliveryPatternApiGetTrackedItemsInPatternGet /api/v1/delivery-patterns/{patternId}/tracked-items
DeliveryPatternApiSearchPatternsPost /api/v1/delivery-patterns/search
DeliveryPatternApiUpdatePatternPut /api/v1/delivery-patterns/{patternId}
DeliveryPatternApiUpdateStageFromBatchPut /api/v1/delivery-patterns/{stageId}/batched
DeliveryPatternApiUpdateStageInPatternPut /api/v1/delivery-patterns/{stageId}
DeliveryPatternApiUpdateTrackedItemInPatternPut /api/v1/delivery-patterns/{itemId}
DeliveryPatternApiUpdateTransitionInPatternPut /api/v1/delivery-patterns/{transitionId}
DslApiExportTemplateToXFileGet /api/v1/dsl/export/{templateId}
DslApiPreviewExportTemplateToXFileGet /api/v1/dsl/preview/{templateId}
EnvironmentApiCreateEnvironmentPost /api/v1/environments
EnvironmentApiDeleteEnvironmentDelete /api/v1/environments/{environmentId}
EnvironmentApiGetDeployableApplicationsForEnvironmentGet /api/v1/environments/{environmentId}/applications
EnvironmentApiGetEnvironmentGet /api/v1/environments/{environmentId}
EnvironmentApiGetReservationsForEnvironmentGet /api/v1/environments/{environmentId}/reservations
EnvironmentApiSearchEnvironmentsPost /api/v1/environments/search
EnvironmentApiUpdateEnvironmentPut /api/v1/environments/{environmentId}
EnvironmentLabelApiCreateLabelPost /api/v1/environments/labels
EnvironmentLabelApiDeleteEnvironmentLabelDelete /api/v1/environments/labels/{environmentLabelId}
EnvironmentLabelApiGetLabelByIdGet /api/v1/environments/labels/{environmentLabelId}
EnvironmentLabelApiSearchLabelsPost /api/v1/environments/labels/search
EnvironmentLabelApiUpdateLabelPut /api/v1/environments/labels/{environmentLabelId}
EnvironmentReservationApiAddApplicationPost /api/v1/environments/reservations/{environmentReservationId}
EnvironmentReservationApiCreateReservationPost /api/v1/environments/reservations
EnvironmentReservationApiDeleteEnvironmentReservationDelete /api/v1/environments/reservations/{environmentReservationId}
EnvironmentReservationApiGetReservationGet /api/v1/environments/reservations/{environmentReservationId}
EnvironmentReservationApiSearchReservationsPost /api/v1/environments/reservations/search
EnvironmentReservationApiUpdateReservationPut /api/v1/environments/reservations/{environmentReservationId}
EnvironmentStageApiCreateStage3Post /api/v1/environments/stages
EnvironmentStageApiDeleteEnvironmentStageDelete /api/v1/environments/stages/{environmentStageId}
EnvironmentStageApiGetStageByIdGet /api/v1/environments/stages/{environmentStageId}
EnvironmentStageApiSearchStagesPost /api/v1/environments/stages/search
EnvironmentStageApiUpdateStageInEnvironmentPut /api/v1/environments/stages/{environmentStageId}
FacetApiCreateFacetPost /api/v1/facets
FacetApiDeleteFacetDelete /api/v1/facets/{facetId}
FacetApiGetFacetGet /api/v1/facets/{facetId}
FacetApiGetFacetTypesGet /api/v1/facets/types
FacetApiSearchFacetsPost /api/v1/facets/search
FacetApiUpdateFacetPut /api/v1/facets/{facetId}
FolderApiAddFolderPost /api/v1/folders/{folderId}
FolderApiCreateFolderVariablePost /api/v1/folders/{folderId}/variables
FolderApiDeleteFolderDelete /api/v1/folders/{folderId}
FolderApiDeleteFolderVariableDelete /api/v1/folders/{folderId}/{variableId}
FolderApiFindGet /api/v1/folders/find
FolderApiGetFolderGet /api/v1/folders/{folderId}
FolderApiGetFolderPermissionsGet /api/v1/folders/permissions
FolderApiGetFolderTeamsGet /api/v1/folders/{folderId}/teams
FolderApiGetFolderTemplatesGet /api/v1/folders/{folderId}/templates
FolderApiGetFolderVariableGet /api/v1/folders/{folderId}/{variableId}
FolderApiIsFolderOwnerGet /api/v1/folders/{folderId}/folderOwner
FolderApiListGet /api/v1/folders/{folderId}/list
FolderApiListRootGet /api/v1/folders/list
FolderApiListVariableValuesGet /api/v1/folders/{folderId}/variableValues
FolderApiListVariablesGet /api/v1/folders/{folderId}/variables
FolderApiMovePost /api/v1/folders/{folderId}/move
FolderApiMoveTemplatePost /api/v1/folders/{folderId}/templates/{templateId}
FolderApiRenameFolderPost /api/v1/folders/{folderId}/rename
FolderApiSearchReleasesFolderPost /api/v1/folders/{folderId}/releases
FolderApiSetFolderTeamsPost /api/v1/folders/{folderId}/teams
FolderApiUpdateFolderVariablePut /api/v1/folders/{folderId}/{variableId}
PermissionsApiGetGlobalPermissionsGet /api/v1/global-permissions
PhaseApiAddPhasePost /api/v1/phases/{releaseId}/phase
PhaseApiAddTaskToContainerPost /api/v1/phases/{containerId}/tasks
PhaseApiCopyPhasePost /api/v1/phases/{phaseId}/copy
PhaseApiDeletePhaseDelete /api/v1/phases/{phaseId}
PhaseApiGetPhaseGet /api/v1/phases/{phaseId}
PhaseApiSearchPhasesGet /api/v1/phases/search
PhaseApiSearchPhasesByTitleGet /api/v1/phases/byTitle
PhaseApiUpdatePhasePut /api/v1/phases/{phaseId}
PlannerApiGetActiveReleasesGet /api/v1/analytics/planner/active
PlannerApiGetCompletedReleasesGet /api/v1/analytics/planner/completed
PlannerApiGetReleasesByIdsPost /api/v1/analytics/planner/byIds
ReleaseApiAbortPost /api/v1/releases/{releaseId}/abort
ReleaseApiCountReleasesPost /api/v1/releases/count
ReleaseApiCreateReleaseVariablePost /api/v1/releases/{releaseId}/variables
ReleaseApiDeleteReleaseDelete /api/v1/releases/{releaseId}
ReleaseApiDeleteReleaseVariableDelete /api/v1/releases/{variableId}
ReleaseApiDownloadAttachmentGet /api/v1/releases/attachments/{attachmentId}
ReleaseApiFullSearchReleasesPost /api/v1/releases/fullSearch
ReleaseApiGetActiveTasksGet /api/v1/releases/{releaseId}/active-tasks
ReleaseApiGetArchivedReleaseGet /api/v1/releases/archived/{releaseId}
ReleaseApiGetPossibleReleaseVariableValuesGet /api/v1/releases/{variableId}/possibleValues
ReleaseApiGetReleaseGet /api/v1/releases/{releaseId}
ReleaseApiGetReleasePermissionsGet /api/v1/releases/permissions
ReleaseApiGetReleaseTeamsGet /api/v1/releases/{releaseId}/teams
ReleaseApiGetReleaseVariableGet /api/v1/releases/{variableId}
ReleaseApiGetReleaseVariablesGet /api/v1/releases/{releaseId}/variables
ReleaseApiGetReleasesGet /api/v1/releases
ReleaseApiGetVariableValuesGet /api/v1/releases/{releaseId}/variableValues
ReleaseApiIsVariableUsedReleaseGet /api/v1/releases/{variableId}/used
ReleaseApiReplaceReleaseVariablesPost /api/v1/releases/{variableId}/replace
ReleaseApiRestartPhasesPost /api/v1/releases/{releaseId}/restart
ReleaseApiResumePost /api/v1/releases/{releaseId}/resume
ReleaseApiSearchReleasesByTitleGet /api/v1/releases/byTitle
ReleaseApiSearchReleasesReleasePost /api/v1/releases/search
ReleaseApiSetReleaseTeamsPost /api/v1/releases/{releaseId}/teams
ReleaseApiStartReleasePost /api/v1/releases/{releaseId}/start
ReleaseApiUpdateReleasePut /api/v1/releases/{releaseId}
ReleaseApiUpdateReleaseVariablePut /api/v1/releases/{variableId}
ReleaseApiUpdateReleaseVariablesPut /api/v1/releases/{releaseId}/variables
ReleaseGroupApiAddMembersToGroupPost /api/v1/release-groups/{groupId}/members
ReleaseGroupApiCreateGroupPost /api/v1/release-groups
ReleaseGroupApiDeleteGroupDelete /api/v1/release-groups/{groupId}
ReleaseGroupApiGetGroupGet /api/v1/release-groups/{groupId}
ReleaseGroupApiGetMembersGet /api/v1/release-groups/{groupId}/members
ReleaseGroupApiGetReleaseGroupTimelineGet /api/v1/release-groups/{groupId}/timeline
ReleaseGroupApiRemoveMembersFromGroupDelete /api/v1/release-groups/{groupId}/members
ReleaseGroupApiSearchGroupsPost /api/v1/release-groups/search
ReleaseGroupApiUpdateGroupPut /api/v1/release-groups/{groupId}
ReportApiDownloadReleaseReportGet /api/v1/reports/download/{reportType}/{releaseId}
ReportApiGetRecordsForReleaseGet /api/v1/reports/records/{releaseId}
ReportApiGetRecordsForTaskGet /api/v1/reports/records/{taskId}
ReportApiSearchRecordsPost /api/v1/reports/records/search
RiskApiCopyRiskProfilePost /api/v1/risks/profiles/{riskProfileId}/copy
RiskApiCreateRiskProfilePost /api/v1/risks/profiles
RiskApiDeleteRiskProfileDelete /api/v1/risks/profiles/{riskProfileId}
RiskApiGetAllRiskAssessorsGet /api/v1/risks/assessors
RiskApiGetRiskGet /api/v1/risks/{riskId}
RiskApiGetRiskGlobalThresholdsGet /api/v1/risks/config
RiskApiGetRiskProfileGet /api/v1/risks/profiles/{riskProfileId}
RiskApiGetRiskProfilesGet /api/v1/risks/profiles
RiskApiUpdateRiskGlobalThresholdsPut /api/v1/risks/config
RiskApiUpdateRiskProfilePut /api/v1/risks/profiles/{riskProfileId}
RiskAssessmentApiGetAssessmentGet /api/v1/risks/assessments/{riskAssessmentId}
RolesApiCreateRolesPost /api/v1/roles
RolesApiCreateRoles1Post /api/v1/roles/{roleName}
RolesApiDeleteRolesDelete /api/v1/roles/{roleName}
RolesApiGetRoleGet /api/v1/roles/{roleName}
RolesApiGetRolesGet /api/v1/roles
RolesApiRenameRolesPost /api/v1/roles/{roleName}/rename
RolesApiUpdateRolesPut /api/v1/roles
RolesApiUpdateRoles1Put /api/v1/roles/{roleName}
TaskApiAbortTaskPost /api/v1/tasks/{taskId}/abort
TaskApiAddAttachmentsPost /api/v1/tasks/{taskId}/attachments
TaskApiAddConditionPost /api/v1/tasks/{taskId}/conditions
TaskApiAddDependencyPost /api/v1/tasks/{taskId}/dependencies/{targetId}
TaskApiAddTaskTaskPost /api/v1/tasks/{containerId}/tasks
TaskApiAssignTaskPost /api/v1/tasks/{taskId}/assign/{username}
TaskApiChangeTaskTypePost /api/v1/tasks/{taskId}/changeType
TaskApiCommentTaskPost /api/v1/tasks/{taskId}/comment
TaskApiCompleteTaskPost /api/v1/tasks/{taskId}/complete
TaskApiCopyTaskPost /api/v1/tasks/{taskId}/copy
TaskApiDeleteAttachmentDelete /api/v1/tasks/{taskId}/attachments/{attachmentId}
TaskApiDeleteConditionDelete /api/v1/tasks/{conditionId}
TaskApiDeleteDependencyDelete /api/v1/tasks/{dependencyId}
TaskApiDeleteTaskDelete /api/v1/tasks/{taskId}
TaskApiFailTaskPost /api/v1/tasks/{taskId}/fail
TaskApiGetTaskGet /api/v1/tasks/{taskId}
TaskApiGetTaskVariablesGet /api/v1/tasks/{taskId}/variables
TaskApiLockTaskPut /api/v1/tasks/{taskId}/lock
TaskApiReopenTaskPost /api/v1/tasks/{taskId}/reopen
TaskApiRetryTaskPost /api/v1/tasks/{taskId}/retry
TaskApiSearchTasksByTitleGet /api/v1/tasks/byTitle
TaskApiSkipTaskPost /api/v1/tasks/{taskId}/skip
TaskApiStartTaskPost /api/v1/tasks/{taskId}/start
TaskApiStartTask1Post /api/v1/tasks/{taskId}/startNow
TaskApiUnlockTaskDelete /api/v1/tasks/{taskId}/lock
TaskApiUpdateConditionPost /api/v1/tasks/{conditionId}
TaskApiUpdateInputVariablesPut /api/v1/tasks/{taskId}/variables
TaskApiUpdateTaskPut /api/v1/tasks/{taskId}
TemplateApiCopyTemplatePost /api/v1/templates/{templateId}/copy
TemplateApiCreateTemplatePost /api/v1/templates
TemplateApiCreateTemplate1Post /api/v1/templates/{templateId}/create
TemplateApiCreateTemplateVariablePost /api/v1/templates/{templateId}/variables
TemplateApiDeleteTemplateDelete /api/v1/templates/{templateId}
TemplateApiDeleteTemplateVariableDelete /api/v1/templates/{variableId}
TemplateApiExportTemplateToZipGet /api/v1/templates/zip/{templateId}
TemplateApiGetPossibleTemplateVariableValuesGet /api/v1/templates/{variableId}/possibleValues
TemplateApiGetTemplateGet /api/v1/templates/{templateId}
TemplateApiGetTemplatePermissionsGet /api/v1/templates/permissions
TemplateApiGetTemplateTeamsGet /api/v1/templates/{templateId}/teams
TemplateApiGetTemplateVariableGet /api/v1/templates/{variableId}
TemplateApiGetTemplateVariablesGet /api/v1/templates/{templateId}/variables
TemplateApiGetTemplatesGet /api/v1/templates
TemplateApiImportTemplatePost /api/v1/templates/import
TemplateApiIsVariableUsedTemplateGet /api/v1/templates/{variableId}/used
TemplateApiReplaceTemplateVariablesPost /api/v1/templates/{variableId}/replace
TemplateApiSetTemplateTeamsPost /api/v1/templates/{templateId}/teams
TemplateApiStartTemplatePost /api/v1/templates/{templateId}/start
TemplateApiUpdateTemplatePut /api/v1/templates/{templateId}
TemplateApiUpdateTemplateVariablePut /api/v1/templates/{variableId}
TemplateApiUpdateTemplateVariablesPut /api/v1/templates/{releaseId}/variables
TriggersApiAddTriggerPost /api/v1/triggers
TriggersApiDisableAllTriggersPost /api/v1/triggers/disable/all
TriggersApiDisableTriggerPut /api/v1/triggers/{triggerId}/disable
TriggersApiDisableTriggersPost /api/v1/triggers/disable
TriggersApiEnableAllTriggersPost /api/v1/triggers/enable/all
TriggersApiEnableTriggerPut /api/v1/triggers/{triggerId}/enable
TriggersApiEnableTriggersPost /api/v1/triggers/enable
TriggersApiGetTriggerGet /api/v1/triggers/{triggerId}
TriggersApiGetTypesGet /api/v1/triggers/types
TriggersApiRemoveTriggerDelete /api/v1/triggers/{triggerId}
TriggersApiRunTriggerPost /api/v1/triggers/{triggerId}/run
TriggersApiSearchTriggersGet /api/v1/triggers
TriggersApiUpdateTriggerPut /api/v1/triggers/{triggerId}
UserApiCreateUserPost /api/v1/users/{username}
UserApiDeleteUserRestDelete /api/v1/users/{username}
UserApiFindUsersGet /api/v1/users
UserApiGetUserGet /api/v1/users/{username}
UserApiUpdatePasswordPost /api/v1/users/{username}/password
UserApiUpdateUserPut /api/v1/users/{username}
UserApiUpdateUsersRestPut /api/v1/users

Documentation For Models

Documentation For Authorization

basicAuth

  • Type: HTTP basic authentication

Example

auth := context.WithValue(context.Background(), sw.ContextBasicAuth, sw.BasicAuth{
    UserName: "username",
    Password: "password",
})
r, err := client.Service.Operation(auth, args)

patAuth

  • Type: API key
  • API key parameter name: x-release-personal-token
  • Location: HTTP header

Note, each API key must be added to a map of map[string]APIKey where the key is: x-release-personal-token and passed in as the auth context for each request.

Documentation for Utility Methods

Due to the fact that model structure members are all pointers, this package contains a number of utility functions to easily obtain pointers to values of basic types. Each of these functions takes a value of the given basic type and returns a pointer to it:

  • PtrBool
  • PtrInt
  • PtrInt32
  • PtrInt64
  • PtrFloat
  • PtrFloat32
  • PtrFloat64
  • PtrString
  • PtrTime

Author

# Packages

No description provided by the author

# Functions

CacheExpires helper function to determine remaining time before repeating a request.
IsNil checks if an input is nil.
NewAbortRelease instantiates a new AbortRelease object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAbortReleaseWithDefaults instantiates a new AbortRelease object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewActivityLogEntry instantiates a new ActivityLogEntry object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewActivityLogEntryWithDefaults instantiates a new ActivityLogEntry object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAPIClient creates a new API client.
NewAPIResponse returns a new APIResponse object.
NewAPIResponseWithError returns a new APIResponse object with the provided error message.
NewApplicationFilters instantiates a new ApplicationFilters object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewApplicationFiltersWithDefaults instantiates a new ApplicationFilters object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewApplicationForm instantiates a new ApplicationForm object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewApplicationFormWithDefaults instantiates a new ApplicationForm object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewApplicationView instantiates a new ApplicationView object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewApplicationViewWithDefaults instantiates a new ApplicationView object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAttachment instantiates a new Attachment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAttachmentWithDefaults instantiates a new Attachment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBaseApplicationView instantiates a new BaseApplicationView object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBaseApplicationViewWithDefaults instantiates a new BaseApplicationView object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBaseEnvironmentView instantiates a new BaseEnvironmentView object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBaseEnvironmentViewWithDefaults instantiates a new BaseEnvironmentView object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBlackoutMetadata instantiates a new BlackoutMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBlackoutMetadataWithDefaults instantiates a new BlackoutMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBlackoutPeriod instantiates a new BlackoutPeriod object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBlackoutPeriodWithDefaults instantiates a new BlackoutPeriod object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBulkActionResultView instantiates a new BulkActionResultView object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBulkActionResultViewWithDefaults instantiates a new BulkActionResultView object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewChangePasswordView instantiates a new ChangePasswordView object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewChangePasswordViewWithDefaults instantiates a new ChangePasswordView object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCiProperty instantiates a new CiProperty object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCiPropertyWithDefaults instantiates a new CiProperty object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewComment instantiates a new Comment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComment1 instantiates a new Comment1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewComment1WithDefaults instantiates a new Comment1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCommentWithDefaults instantiates a new Comment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCompleteTransition instantiates a new CompleteTransition object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCompleteTransitionWithDefaults instantiates a new CompleteTransition object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCondition instantiates a new Condition object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCondition1 instantiates a new Condition1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCondition1WithDefaults instantiates a new Condition1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConditionWithDefaults instantiates a new Condition object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfiguration returns a new Configuration object.
NewConfigurationFacet instantiates a new ConfigurationFacet object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfigurationFacetWithDefaults instantiates a new ConfigurationFacet object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfigurationView instantiates a new ConfigurationView object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfigurationViewWithDefaults instantiates a new ConfigurationView object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCopyTemplate instantiates a new CopyTemplate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCopyTemplateWithDefaults instantiates a new CopyTemplate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateDelivery instantiates a new CreateDelivery object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateDeliveryStage instantiates a new CreateDeliveryStage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateDeliveryStageWithDefaults instantiates a new CreateDeliveryStage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateDeliveryWithDefaults instantiates a new CreateDelivery object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateRelease instantiates a new CreateRelease object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateReleaseWithDefaults instantiates a new CreateRelease object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDelivery instantiates a new Delivery object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeliveryFilters instantiates a new DeliveryFilters object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeliveryFiltersWithDefaults instantiates a new DeliveryFilters object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeliveryFlowReleaseInfo instantiates a new DeliveryFlowReleaseInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeliveryFlowReleaseInfoWithDefaults instantiates a new DeliveryFlowReleaseInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeliveryOrderModeFromValue returns a pointer to a valid DeliveryOrderMode for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewDeliveryPatternFilters instantiates a new DeliveryPatternFilters object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeliveryPatternFiltersWithDefaults instantiates a new DeliveryPatternFilters object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeliveryStatusFromValue returns a pointer to a valid DeliveryStatus for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewDeliveryTimeline instantiates a new DeliveryTimeline object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeliveryTimelineWithDefaults instantiates a new DeliveryTimeline object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeliveryWithDefaults instantiates a new Delivery object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDependency instantiates a new Dependency object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDependencyWithDefaults instantiates a new Dependency object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDuplicateDeliveryPattern instantiates a new DuplicateDeliveryPattern object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDuplicateDeliveryPatternWithDefaults instantiates a new DuplicateDeliveryPattern object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnvironmentFilters instantiates a new EnvironmentFilters object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnvironmentFiltersWithDefaults instantiates a new EnvironmentFilters object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnvironmentForm instantiates a new EnvironmentForm object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnvironmentFormWithDefaults instantiates a new EnvironmentForm object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnvironmentLabelFilters instantiates a new EnvironmentLabelFilters object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnvironmentLabelFiltersWithDefaults instantiates a new EnvironmentLabelFilters object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnvironmentLabelForm instantiates a new EnvironmentLabelForm object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnvironmentLabelFormWithDefaults instantiates a new EnvironmentLabelForm object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnvironmentLabelView instantiates a new EnvironmentLabelView object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnvironmentLabelViewWithDefaults instantiates a new EnvironmentLabelView object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnvironmentReservationForm instantiates a new EnvironmentReservationForm object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnvironmentReservationFormWithDefaults instantiates a new EnvironmentReservationForm object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnvironmentReservationSearchView instantiates a new EnvironmentReservationSearchView object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnvironmentReservationSearchViewWithDefaults instantiates a new EnvironmentReservationSearchView object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnvironmentReservationView instantiates a new EnvironmentReservationView object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnvironmentReservationViewWithDefaults instantiates a new EnvironmentReservationView object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnvironmentStageFilters instantiates a new EnvironmentStageFilters object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnvironmentStageFiltersWithDefaults instantiates a new EnvironmentStageFilters object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnvironmentStageForm instantiates a new EnvironmentStageForm object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnvironmentStageFormWithDefaults instantiates a new EnvironmentStageForm object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnvironmentStageView instantiates a new EnvironmentStageView object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnvironmentStageViewWithDefaults instantiates a new EnvironmentStageView object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEnvironmentView instantiates a new EnvironmentView object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEnvironmentViewWithDefaults instantiates a new EnvironmentView object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExternalVariableValue instantiates a new ExternalVariableValue object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExternalVariableValueWithDefaults instantiates a new ExternalVariableValue object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFacet instantiates a new Facet object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFacetFilters instantiates a new FacetFilters object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFacetFiltersWithDefaults instantiates a new FacetFilters object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFacetScopeFromValue returns a pointer to a valid FacetScope for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewFacetWithDefaults instantiates a new Facet object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFlagStatusFromValue returns a pointer to a valid FlagStatus for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewFolder instantiates a new Folder object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFolderVariables instantiates a new FolderVariables object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFolderVariablesWithDefaults instantiates a new FolderVariables object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFolderWithDefaults instantiates a new Folder object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGateCondition instantiates a new GateCondition object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGateConditionWithDefaults instantiates a new GateCondition object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGateTask instantiates a new GateTask object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGateTaskWithDefaults instantiates a new GateTask object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGlobalVariables instantiates a new GlobalVariables object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGlobalVariablesWithDefaults instantiates a new GlobalVariables object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewImportResult instantiates a new ImportResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewImportResultWithDefaults instantiates a new ImportResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMemberTypeFromValue returns a pointer to a valid MemberType for the value passed as argument, or an error if the value passed is not allowed by the enum.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
NewPhase instantiates a new Phase object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPhaseStatusFromValue returns a pointer to a valid PhaseStatus for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewPhaseTimeline instantiates a new PhaseTimeline object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPhaseTimelineWithDefaults instantiates a new PhaseTimeline object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPhaseVersionFromValue returns a pointer to a valid PhaseVersion for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewPhaseWithDefaults instantiates a new Phase object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPlanItem instantiates a new PlanItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPlanItemWithDefaults instantiates a new PlanItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPollTypeFromValue returns a pointer to a valid PollType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewPrincipalView instantiates a new PrincipalView object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPrincipalViewWithDefaults instantiates a new PrincipalView object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProjectedPhase instantiates a new ProjectedPhase object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProjectedPhaseWithDefaults instantiates a new ProjectedPhase object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProjectedRelease instantiates a new ProjectedRelease object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProjectedReleaseWithDefaults instantiates a new ProjectedRelease object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProjectedTask instantiates a new ProjectedTask object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProjectedTaskWithDefaults instantiates a new ProjectedTask object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProperty instantiates a new Property object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPropertyWithDefaults instantiates a new Property object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRelease instantiates a new Release object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewReleaseConfiguration instantiates a new ReleaseConfiguration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewReleaseConfigurationWithDefaults instantiates a new ReleaseConfiguration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewReleaseCountResult instantiates a new ReleaseCountResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewReleaseCountResults instantiates a new ReleaseCountResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewReleaseCountResultsWithDefaults instantiates a new ReleaseCountResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewReleaseCountResultWithDefaults instantiates a new ReleaseCountResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewReleaseExtension instantiates a new ReleaseExtension object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewReleaseExtensionWithDefaults instantiates a new ReleaseExtension object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewReleaseFullSearchResult instantiates a new ReleaseFullSearchResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewReleaseFullSearchResultWithDefaults instantiates a new ReleaseFullSearchResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewReleaseGroup instantiates a new ReleaseGroup object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewReleaseGroupFilters instantiates a new ReleaseGroupFilters object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewReleaseGroupFiltersWithDefaults instantiates a new ReleaseGroupFilters object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewReleaseGroupOrderModeFromValue returns a pointer to a valid ReleaseGroupOrderMode for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewReleaseGroupStatusFromValue returns a pointer to a valid ReleaseGroupStatus for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewReleaseGroupTimeline instantiates a new ReleaseGroupTimeline object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewReleaseGroupTimelineWithDefaults instantiates a new ReleaseGroupTimeline object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewReleaseGroupWithDefaults instantiates a new ReleaseGroup object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewReleaseOrderDirectionFromValue returns a pointer to a valid ReleaseOrderDirection for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewReleaseOrderModeFromValue returns a pointer to a valid ReleaseOrderMode for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewReleaseSearchResult instantiates a new ReleaseSearchResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewReleaseSearchResultWithDefaults instantiates a new ReleaseSearchResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewReleasesFilters instantiates a new ReleasesFilters object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewReleasesFiltersWithDefaults instantiates a new ReleasesFilters object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewReleaseStatusFromValue returns a pointer to a valid ReleaseStatus for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewReleaseTimeline instantiates a new ReleaseTimeline object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewReleaseTimelineWithDefaults instantiates a new ReleaseTimeline object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewReleaseTrigger instantiates a new ReleaseTrigger object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewReleaseTriggerWithDefaults instantiates a new ReleaseTrigger object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewReleaseWithDefaults instantiates a new Release object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewReservationFilters instantiates a new ReservationFilters object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewReservationFiltersWithDefaults instantiates a new ReservationFilters object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewReservationSearchView instantiates a new ReservationSearchView object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewReservationSearchViewWithDefaults instantiates a new ReservationSearchView object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRisk instantiates a new Risk object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRiskAssessment instantiates a new RiskAssessment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRiskAssessmentWithDefaults instantiates a new RiskAssessment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRiskAssessor instantiates a new RiskAssessor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRiskAssessorWithDefaults instantiates a new RiskAssessor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRiskGlobalThresholds instantiates a new RiskGlobalThresholds object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRiskGlobalThresholdsWithDefaults instantiates a new RiskGlobalThresholds object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRiskProfile instantiates a new RiskProfile object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRiskProfileWithDefaults instantiates a new RiskProfile object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRiskStatusFromValue returns a pointer to a valid RiskStatus for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewRiskStatusWithThresholds instantiates a new RiskStatusWithThresholds object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRiskStatusWithThresholdsWithDefaults instantiates a new RiskStatusWithThresholds object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRiskWithDefaults instantiates a new Risk object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRoleView instantiates a new RoleView object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRoleViewWithDefaults instantiates a new RoleView object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSharedConfigurationStatusResponse instantiates a new SharedConfigurationStatusResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSharedConfigurationStatusResponseWithDefaults instantiates a new SharedConfigurationStatusResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStage instantiates a new Stage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStageStatusFromValue returns a pointer to a valid StageStatus for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewStageTrackedItem instantiates a new StageTrackedItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStageTrackedItemWithDefaults instantiates a new StageTrackedItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStageWithDefaults instantiates a new Stage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStartRelease instantiates a new StartRelease object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStartReleaseWithDefaults instantiates a new StartRelease object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStartTask instantiates a new StartTask object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStartTaskWithDefaults instantiates a new StartTask object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSubscriber instantiates a new Subscriber object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSubscriberWithDefaults instantiates a new Subscriber object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSystemMessageSettings instantiates a new SystemMessageSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSystemMessageSettingsWithDefaults instantiates a new SystemMessageSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTask instantiates a new Task object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTaskContainer instantiates a new TaskContainer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTaskContainerWithDefaults instantiates a new TaskContainer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTaskRecoverOpFromValue returns a pointer to a valid TaskRecoverOp for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewTaskReportingRecord instantiates a new TaskReportingRecord object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTaskReportingRecordWithDefaults instantiates a new TaskReportingRecord object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTaskStatusFromValue returns a pointer to a valid TaskStatus for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewTaskWithDefaults instantiates a new Task object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTeam instantiates a new Team object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTeamMemberView instantiates a new TeamMemberView object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTeamMemberViewWithDefaults instantiates a new TeamMemberView object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTeamView instantiates a new TeamView object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTeamViewWithDefaults instantiates a new TeamView object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTeamWithDefaults instantiates a new Team object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTimeFrameFromValue returns a pointer to a valid TimeFrame for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewTrackedItem instantiates a new TrackedItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTrackedItemStatusFromValue returns a pointer to a valid TrackedItemStatus for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewTrackedItemWithDefaults instantiates a new TrackedItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTransition instantiates a new Transition object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTransitionWithDefaults instantiates a new Transition object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTrigger instantiates a new Trigger object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTriggerExecutionStatusFromValue returns a pointer to a valid TriggerExecutionStatus for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewTriggerWithDefaults instantiates a new Trigger object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsagePoint instantiates a new UsagePoint object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsagePointWithDefaults instantiates a new UsagePoint object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserAccount instantiates a new UserAccount object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserAccountWithDefaults instantiates a new UserAccount object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserInputTask instantiates a new UserInputTask object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserInputTaskWithDefaults instantiates a new UserInputTask object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewValidatePattern instantiates a new ValidatePattern object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewValidatePatternWithDefaults instantiates a new ValidatePattern object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewValueProviderConfiguration instantiates a new ValueProviderConfiguration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewValueProviderConfigurationWithDefaults instantiates a new ValueProviderConfiguration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewValueWithInterpolation instantiates a new ValueWithInterpolation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewValueWithInterpolationWithDefaults instantiates a new ValueWithInterpolation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVariable instantiates a new Variable object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVariable1 instantiates a new Variable1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVariable1WithDefaults instantiates a new Variable1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVariableOrValue instantiates a new VariableOrValue object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVariableOrValueWithDefaults instantiates a new VariableOrValue object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVariableWithDefaults instantiates a new Variable object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
PtrBool is a helper routine that returns a pointer to given boolean value.
PtrFloat32 is a helper routine that returns a pointer to given float value.
PtrFloat64 is a helper routine that returns a pointer to given float value.
PtrInt is a helper routine that returns a pointer to given integer value.
PtrInt32 is a helper routine that returns a pointer to given integer value.
PtrInt64 is a helper routine that returns a pointer to given integer value.
PtrString is a helper routine that returns a pointer to given string value.
PtrTime is helper routine that returns a pointer to given Time value.

# Constants

List of DeliveryOrderMode.
List of DeliveryOrderMode.
List of DeliveryOrderMode.
List of DeliveryStatus.
List of DeliveryStatus.
List of DeliveryStatus.
List of FacetScope.
List of FlagStatus.
List of FlagStatus.
List of FlagStatus.
List of MemberType.
List of MemberType.
List of PhaseStatus.
List of PhaseStatus.
List of PhaseStatus.
List of PhaseStatus.
List of PhaseStatus.
List of PhaseStatus.
List of PhaseStatus.
List of PhaseVersion.
List of PhaseVersion.
List of PhaseVersion.
List of PollType.
List of PollType.
List of ReleaseGroupOrderMode.
List of ReleaseGroupOrderMode.
List of ReleaseGroupOrderMode.
List of ReleaseGroupStatus.
List of ReleaseGroupStatus.
List of ReleaseGroupStatus.
List of ReleaseGroupStatus.
List of ReleaseGroupStatus.
List of ReleaseGroupStatus.
List of ReleaseGroupStatus.
List of ReleaseOrderDirection.
List of ReleaseOrderDirection.
List of ReleaseOrderMode.
List of ReleaseOrderMode.
List of ReleaseOrderMode.
List of ReleaseOrderMode.
List of ReleaseStatus.
List of ReleaseStatus.
List of ReleaseStatus.
List of ReleaseStatus.
List of ReleaseStatus.
List of ReleaseStatus.
List of ReleaseStatus.
List of ReleaseStatus.
List of RiskStatus.
List of RiskStatus.
List of RiskStatus.
List of StageStatus.
List of StageStatus.
List of TaskRecoverOp.
List of TaskRecoverOp.
List of TaskRecoverOp.
List of TaskStatus.
List of TaskStatus.
List of TaskStatus.
List of TaskStatus.
List of TaskStatus.
List of TaskStatus.
List of TaskStatus.
List of TaskStatus.
List of TaskStatus.
List of TaskStatus.
List of TaskStatus.
List of TaskStatus.
List of TaskStatus.
List of TaskStatus.
List of TaskStatus.
List of TaskStatus.
List of TaskStatus.
List of TaskStatus.
List of TimeFrame.
List of TimeFrame.
List of TimeFrame.
List of TimeFrame.
List of TimeFrame.
List of TimeFrame.
List of TrackedItemStatus.
List of TrackedItemStatus.
List of TrackedItemStatus.
List of TriggerExecutionStatus.
List of TriggerExecutionStatus.

# Variables

All allowed values of DeliveryOrderMode enum.
All allowed values of DeliveryStatus enum.
All allowed values of FacetScope enum.
All allowed values of FlagStatus enum.
All allowed values of MemberType enum.
All allowed values of PhaseStatus enum.
All allowed values of PhaseVersion enum.
All allowed values of PollType enum.
All allowed values of ReleaseGroupOrderMode enum.
All allowed values of ReleaseGroupStatus enum.
All allowed values of ReleaseOrderDirection enum.
All allowed values of ReleaseOrderMode enum.
All allowed values of ReleaseStatus enum.
All allowed values of RiskStatus enum.
All allowed values of StageStatus enum.
All allowed values of TaskRecoverOp enum.
All allowed values of TaskStatus enum.
All allowed values of TimeFrame enum.
All allowed values of TrackedItemStatus enum.
All allowed values of TriggerExecutionStatus enum.
ContextAPIKeys takes a string apikey as authentication for the request.
ContextBasicAuth takes BasicAuth as authentication for the request.
ContextOperationServerIndices uses a server configuration from the index mapping.
ContextOperationServerVariables overrides a server configuration variables using operation specific values.
ContextServerIndex uses a server configuration from the index.
ContextServerVariables overrides a server configuration variables.

# Structs

AbortRelease struct for AbortRelease.
ActivityLogEntry struct for ActivityLogEntry.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIClient manages communication with the Digital.ai Release API API vv1 In most cases there should be only one, shared, APIClient.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIKey provides API key based authentication to a request passed via context using ContextAPIKey.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIResponse stores the API response returned by the server.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
ApplicationFilters struct for ApplicationFilters.
ApplicationForm struct for ApplicationForm.
ApplicationView struct for ApplicationView.
Attachment struct for Attachment.
BaseApplicationView struct for BaseApplicationView.
BaseEnvironmentView struct for BaseEnvironmentView.
BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth.
BlackoutMetadata struct for BlackoutMetadata.
BlackoutPeriod struct for BlackoutPeriod.
BulkActionResultView struct for BulkActionResultView.
ChangePasswordView struct for ChangePasswordView.
CiProperty struct for CiProperty.
Comment struct for Comment.
Comment1 struct for Comment1.
CompleteTransition struct for CompleteTransition.
Condition struct for Condition.
Condition1 struct for Condition1.
Configuration stores the configuration of the API client.
ConfigurationFacet struct for ConfigurationFacet.
ConfigurationView struct for ConfigurationView.
CopyTemplate struct for CopyTemplate.
CreateDelivery struct for CreateDelivery.
CreateDeliveryStage struct for CreateDeliveryStage.
CreateRelease struct for CreateRelease.
Delivery struct for Delivery.
DeliveryFilters struct for DeliveryFilters.
DeliveryFlowReleaseInfo struct for DeliveryFlowReleaseInfo.
DeliveryPatternFilters struct for DeliveryPatternFilters.
DeliveryTimeline struct for DeliveryTimeline.
Dependency struct for Dependency.
DuplicateDeliveryPattern struct for DuplicateDeliveryPattern.
EnvironmentFilters struct for EnvironmentFilters.
EnvironmentForm struct for EnvironmentForm.
EnvironmentLabelFilters struct for EnvironmentLabelFilters.
EnvironmentLabelForm struct for EnvironmentLabelForm.
EnvironmentLabelView struct for EnvironmentLabelView.
EnvironmentReservationForm struct for EnvironmentReservationForm.
EnvironmentReservationSearchView struct for EnvironmentReservationSearchView.
EnvironmentReservationView struct for EnvironmentReservationView.
EnvironmentStageFilters struct for EnvironmentStageFilters.
EnvironmentStageForm struct for EnvironmentStageForm.
EnvironmentStageView struct for EnvironmentStageView.
EnvironmentView struct for EnvironmentView.
ExternalVariableValue struct for ExternalVariableValue.
Facet struct for Facet.
FacetFilters struct for FacetFilters.
Folder struct for Folder.
FolderVariables struct for FolderVariables.
GateCondition struct for GateCondition.
GateTask struct for GateTask.
GenericOpenAPIError Provides access to the body, error and model on returned errors.
GlobalVariables struct for GlobalVariables.
ImportResult struct for ImportResult.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Phase struct for Phase.
PhaseTimeline struct for PhaseTimeline.
PlanItem struct for PlanItem.
PrincipalView struct for PrincipalView.
ProjectedPhase struct for ProjectedPhase.
ProjectedRelease struct for ProjectedRelease.
ProjectedTask struct for ProjectedTask.
Property struct for Property.
Release struct for Release.
ReleaseConfiguration struct for ReleaseConfiguration.
ReleaseCountResult struct for ReleaseCountResult.
ReleaseCountResults struct for ReleaseCountResults.
ReleaseExtension struct for ReleaseExtension.
ReleaseFullSearchResult struct for ReleaseFullSearchResult.
ReleaseGroup struct for ReleaseGroup.
ReleaseGroupFilters struct for ReleaseGroupFilters.
ReleaseGroupTimeline struct for ReleaseGroupTimeline.
ReleaseSearchResult struct for ReleaseSearchResult.
ReleasesFilters struct for ReleasesFilters.
ReleaseTimeline struct for ReleaseTimeline.
ReleaseTrigger struct for ReleaseTrigger.
ReservationFilters struct for ReservationFilters.
ReservationSearchView struct for ReservationSearchView.
Risk struct for Risk.
RiskAssessment struct for RiskAssessment.
RiskAssessor struct for RiskAssessor.
RiskGlobalThresholds struct for RiskGlobalThresholds.
RiskProfile struct for RiskProfile.
RiskStatusWithThresholds struct for RiskStatusWithThresholds.
RoleView struct for RoleView.
ServerConfiguration stores the information about a server.
ServerVariable stores the information about a server variable.
SharedConfigurationStatusResponse struct for SharedConfigurationStatusResponse.
Stage struct for Stage.
StageTrackedItem struct for StageTrackedItem.
StartRelease struct for StartRelease.
StartTask struct for StartTask.
Subscriber struct for Subscriber.
SystemMessageSettings struct for SystemMessageSettings.
Task struct for Task.
TaskContainer struct for TaskContainer.
TaskReportingRecord struct for TaskReportingRecord.
Team struct for Team.
TeamMemberView struct for TeamMemberView.
TeamView struct for TeamView.
TrackedItem struct for TrackedItem.
Transition struct for Transition.
Trigger struct for Trigger.
UsagePoint struct for UsagePoint.
UserAccount struct for UserAccount.
UserInputTask struct for UserInputTask.
ValidatePattern struct for ValidatePattern.
ValueProviderConfiguration struct for ValueProviderConfiguration.
ValueWithInterpolation struct for ValueWithInterpolation.
Variable struct for Variable.
Variable1 struct for Variable1.
VariableOrValue struct for VariableOrValue.

# Interfaces

No description provided by the author

# Type aliases

ActivityLogsApiService ActivityLogsApi service.
ApplicationApiService ApplicationApi service.
ConfigurationApiService ConfigurationApi service.
DeliveryApiService DeliveryApi service.
DeliveryOrderMode the model 'DeliveryOrderMode'.
DeliveryPatternApiService DeliveryPatternApi service.
DeliveryStatus the model 'DeliveryStatus'.
DslApiService DslApi service.
EnvironmentApiService EnvironmentApi service.
EnvironmentLabelApiService EnvironmentLabelApi service.
EnvironmentReservationApiService EnvironmentReservationApi service.
EnvironmentStageApiService EnvironmentStageApi service.
FacetApiService FacetApi service.
FacetScope the model 'FacetScope'.
FlagStatus the model 'FlagStatus'.
FolderApiService FolderApi service.
MemberType the model 'MemberType'.
PermissionsApiService PermissionsApi service.
PhaseApiService PhaseApi service.
PhaseStatus the model 'PhaseStatus'.
PhaseVersion the model 'PhaseVersion'.
PlannerApiService PlannerApi service.
PollType the model 'PollType'.
ReleaseApiService ReleaseApi service.
ReleaseGroupApiService ReleaseGroupApi service.
ReleaseGroupOrderMode the model 'ReleaseGroupOrderMode'.
ReleaseGroupStatus the model 'ReleaseGroupStatus'.
ReleaseOrderDirection the model 'ReleaseOrderDirection'.
ReleaseOrderMode the model 'ReleaseOrderMode'.
ReleaseStatus the model 'ReleaseStatus'.
ReportApiService ReportApi service.
RiskApiService RiskApi service.
RiskAssessmentApiService RiskAssessmentApi service.
RiskStatus the model 'RiskStatus'.
RolesApiService RolesApi service.
ServerConfigurations stores multiple ServerConfiguration items.
StageStatus the model 'StageStatus'.
TaskApiService TaskApi service.
TaskRecoverOp the model 'TaskRecoverOp'.
TaskStatus the model 'TaskStatus'.
TemplateApiService TemplateApi service.
TimeFrame the model 'TimeFrame'.
TrackedItemStatus the model 'TrackedItemStatus'.
TriggerExecutionStatus the model 'TriggerExecutionStatus'.
TriggersApiService TriggersApi service.
UserApiService UserApi service.