| 12345678910111213141516171819202122 |
- package types
- import "github.com/porter-dev/porter/internal/models/integrations"
- type Registry struct {
- ID uint `json:"id"`
- // The project that this integration belongs to
- ProjectID uint `json:"project_id"`
- // Name of the registry
- Name string `json:"name"`
- // URL of the registry
- URL string `json:"url"`
- // The integration service for this registry
- Service integrations.IntegrationService `json:"service"`
- // The infra id, if registry was provisioned with Porter
- InfraID uint `json:"infra_id"`
- }
|