(step: CustomCloudbuildStep)
| 37 | } |
| 38 | |
| 39 | function removeCustomProps(step: CustomCloudbuildStep): CloudbuildStep { |
| 40 | return Object.fromEntries( |
| 41 | Object.entries(step).filter(([k, ]) => !CUSTOM_PROPS.has(k)) |
| 42 | ) as CloudbuildStep; |
| 43 | } |
| 44 | |
| 45 | interface CloudbuildSecret { |
| 46 | kmsKeyName: string, |
nothing calls this directly
no test coverage detected
searching dependent graphs…