TransactionNode

class TransactionNode : KotlinCustomResource

Payload of the transaction node which is the request/response of the resource provider. API Version: 2018-06-01-preview.

Example Usage

TransactionNodes_Create

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var transactionNode = new AzureNative.Blockchain.TransactionNode("transactionNode", new()
{
BlockchainMemberName = "contosemember1",
Location = "southeastasia",
Password = "<password>",
ResourceGroupName = "mygroup",
TransactionNodeName = "txnode2",
});
});
package main
import (
blockchain "github.com/pulumi/pulumi-azure-native-sdk/blockchain"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := blockchain.NewTransactionNode(ctx, "transactionNode", &blockchain.TransactionNodeArgs{
BlockchainMemberName: pulumi.String("contosemember1"),
Location: pulumi.String("southeastasia"),
Password: pulumi.String("<password>"),
ResourceGroupName: pulumi.String("mygroup"),
TransactionNodeName: pulumi.String("txnode2"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.blockchain.TransactionNode;
import com.pulumi.azurenative.blockchain.TransactionNodeArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var transactionNode = new TransactionNode("transactionNode", TransactionNodeArgs.builder()
.blockchainMemberName("contosemember1")
.location("southeastasia")
.password("<password>")
.resourceGroupName("mygroup")
.transactionNodeName("txnode2")
.build());
}
}

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:blockchain:TransactionNode txnode2 /subscriptions/51766542-3ed7-4a72-a187-0c8ab644ddab/resourceGroups/mygroup/providers/Microsoft.Blockchain/blockchainMembers/contosemember1/transactionNodes/txnode2

Properties

Link copied to clipboard
val dns: Output<String>

Gets or sets the transaction node dns endpoint.

Link copied to clipboard

Gets or sets the firewall rules.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val location: Output<String>?

Gets or sets the transaction node location.

Link copied to clipboard
val name: Output<String>

The name of the resource.

Link copied to clipboard
val password: Output<String>?

Sets the transaction node dns endpoint basic auth password.

Link copied to clipboard

Gets or sets the blockchain member provision state.

Link copied to clipboard
val publicKey: Output<String>

Gets or sets the transaction node public key.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val type: Output<String>

The type of the service - e.g. "Microsoft.Blockchain"

Link copied to clipboard
val urn: Output<String>
Link copied to clipboard
val userName: Output<String>

Gets or sets the transaction node dns endpoint basic auth user name.