mirror of https://github.com/pulumi/pulumi.git
16 lines
445 B
Puppet
16 lines
445 B
Puppet
// properties field is bound to union case ServerPropertiesForReplica
|
|
resource replica "basic-unions:index:ExampleServer" {
|
|
properties = {
|
|
createMode = "Replica"
|
|
version = "0.1.0-dev"
|
|
}
|
|
}
|
|
|
|
// properties field is bound to union case ServerPropertiesForRestore
|
|
resource restore "basic-unions:index:ExampleServer" {
|
|
properties = {
|
|
createMode = "PointInTimeRestore"
|
|
restorePointInTime = "example"
|
|
}
|
|
}
|