Delegate TransformationAction
TransformationAction is the callback signature for YAML-related resources (ConfigFileArgs, ConfigGroupArgs, BaseChartArgs). A transformation is passed a dictionary of resource arguments, resource options, and should return back alternate values for the properties prior to the resource actually being created. The effect will be as though those properties were passed in place of the original call to the Resource constructor.
Namespace: Pulumi.Kubernetes.Yaml
Assembly: Pulumi.Kubernetes.dll
Syntax
public delegate ImmutableDictionary<string, object> TransformationAction(ImmutableDictionary<string, object> args, CustomResourceOptions options);
Parameters
| Type | Name | Description |
|---|---|---|
| System.Collections.Immutable.ImmutableDictionary<System.String, System.Object> | args | |
| CustomResourceOptions | options |
Returns
| Type | Description |
|---|---|
| System.Collections.Immutable.ImmutableDictionary<System.String, System.Object> | The new values to use for the |