PulumiAttrMapping maps a canonical pricing attribute to a Pulumi input field.
| 149 | |
| 150 | // PulumiAttrMapping maps a canonical pricing attribute to a Pulumi input field. |
| 151 | type PulumiAttrMapping struct { |
| 152 | Input string `json:"input,omitempty"` // Pulumi input property name (supports dot-path like "sku.name") |
| 153 | Default string `json:"default,omitempty"` // fallback value when input is missing |
| 154 | Map map[string]string `json:"map,omitempty"` // optional value translation (e.g. "postgres" → "PostgreSQL") |
| 155 | } |
| 156 | |
| 157 | // GenerateTokenResponse is the response from POST /api/auth/generate-token. |
| 158 | type GenerateTokenResponse struct { |
nothing calls this directly
no outgoing calls
no test coverage detected