| 27 | ) |
| 28 | |
| 29 | type AzuredevopsOptions struct { |
| 30 | ConnectionId uint64 `json:"connectionId" mapstructure:"connectionId,omitempty"` |
| 31 | ProjectId string `json:"projectId" mapstructure:"projectId,omitempty"` |
| 32 | OrganizationId string `json:"organizationId" mapstructure:"organizationId,omitempty"` |
| 33 | RepositoryId string `json:"repositoryId" mapstructure:"repositoryId,omitempty"` |
| 34 | RepositoryType string `json:"repositoryType" mapstructure:"repositoryType,omitempty"` |
| 35 | ExternalId string `json:"externalId" mapstructure:"externalId,omitempty"` |
| 36 | |
| 37 | ScopeConfigId uint64 `json:"scopeConfigId" mapstructure:"scopeConfigId,omitempty"` |
| 38 | TimeAfter string `json:"timeAfter" mapstructure:"timeAfter,omitempty"` |
| 39 | ScopeConfig *models.AzuredevopsScopeConfig `mapstructure:"scopeConfig,omitempty" json:"scopeConfig"` |
| 40 | } |
| 41 | |
| 42 | type AzuredevopsTaskData struct { |
| 43 | Options *AzuredevopsOptions |
nothing calls this directly
no outgoing calls
no test coverage detected