TransactionNodeArgs

data class TransactionNodeArgs(val blockchainMemberName: Output<String>? = null, val firewallRules: Output<List<FirewallRuleArgs>>? = null, val location: Output<String>? = null, val password: Output<String>? = null, val resourceGroupName: Output<String>? = null, val transactionNodeName: Output<String>? = null) : ConvertibleToJava<TransactionNodeArgs>

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

Constructors

Link copied to clipboard
constructor(blockchainMemberName: Output<String>? = null, firewallRules: Output<List<FirewallRuleArgs>>? = null, location: Output<String>? = null, password: Output<String>? = null, resourceGroupName: Output<String>? = null, transactionNodeName: Output<String>? = null)

Properties

Link copied to clipboard
val blockchainMemberName: Output<String>? = null

Blockchain member name.

Link copied to clipboard
val firewallRules: Output<List<FirewallRuleArgs>>? = null

Gets or sets the firewall rules.

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

Gets or sets the transaction node location.

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

Sets the transaction node dns endpoint basic auth password.

Link copied to clipboard
val resourceGroupName: Output<String>? = null

The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.

Link copied to clipboard
val transactionNodeName: Output<String>? = null

Transaction node name.

Functions

Link copied to clipboard
open override fun toJava(): TransactionNodeArgs