Package com.pulumi.resources
Class ResourceTransformation.Result
- java.lang.Object
-
- com.pulumi.resources.ResourceTransformation.Result
-
- Enclosing interface:
- ResourceTransformation
@ParametersAreNonnullByDefault public static class ResourceTransformation.Result extends java.lang.Object
the result that must be returned by a resource transformation callback. It includes new values to use for the "properties" and "options" of theResource
in place of the originally provided values.- See Also:
ResourceTransformation.apply(Args)
-
-
Constructor Summary
Constructors Constructor Description Result(ResourceArgs args, ResourceOptions options)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ResourceArgs
args()
ResourceOptions
options()
-
-
-
Constructor Detail
-
Result
public Result(ResourceArgs args, ResourceOptions options)
-
-
Method Detail
-
args
public ResourceArgs args()
- Returns:
- the original properties passed to the Resource constructor.
-
options
public ResourceOptions options()
- Returns:
- the original resource options passed to the Resource constructor.
-
-