PulumiResourceDef describes how to decode a Pulumi resource type for pricing.
| 142 | |
| 143 | // PulumiResourceDef describes how to decode a Pulumi resource type for pricing. |
| 144 | type PulumiResourceDef struct { |
| 145 | Provider string `json:"provider"` |
| 146 | Product string `json:"product,omitempty"` |
| 147 | Attrs map[string]PulumiAttrMapping `json:"attrs"` |
| 148 | } |
| 149 | |
| 150 | // PulumiAttrMapping maps a canonical pricing attribute to a Pulumi input field. |
| 151 | type PulumiAttrMapping struct { |
nothing calls this directly
no outgoing calls
no test coverage detected