azure-native.blockchain.BlockchainMember
Explore with Pulumi AI
Payload of the blockchain member which is exposed in the request/response of the resource provider. API Version: 2018-06-01-preview.
Example Usage
BlockchainMembers_Create
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var blockchainMember = new AzureNative.Blockchain.BlockchainMember("blockchainMember", new()
{
BlockchainMemberName = "contosemember1",
Consortium = "ContoseConsortium",
ConsortiumManagementAccountPassword = "<consortiumManagementAccountPassword>",
Location = "southeastasia",
Password = "<password>",
Protocol = "Quorum",
ResourceGroupName = "mygroup",
ValidatorNodesSku = new AzureNative.Blockchain.Inputs.BlockchainMemberNodesSkuArgs
{
Capacity = 2,
},
});
});
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.NewBlockchainMember(ctx, "blockchainMember", &blockchain.BlockchainMemberArgs{
BlockchainMemberName: pulumi.String("contosemember1"),
Consortium: pulumi.String("ContoseConsortium"),
ConsortiumManagementAccountPassword: pulumi.String("<consortiumManagementAccountPassword>"),
Location: pulumi.String("southeastasia"),
Password: pulumi.String("<password>"),
Protocol: pulumi.String("Quorum"),
ResourceGroupName: pulumi.String("mygroup"),
ValidatorNodesSku: &blockchain.BlockchainMemberNodesSkuArgs{
Capacity: pulumi.Int(2),
},
})
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.BlockchainMember;
import com.pulumi.azurenative.blockchain.BlockchainMemberArgs;
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 blockchainMember = new BlockchainMember("blockchainMember", BlockchainMemberArgs.builder()
.blockchainMemberName("contosemember1")
.consortium("ContoseConsortium")
.consortiumManagementAccountPassword("<consortiumManagementAccountPassword>")
.location("southeastasia")
.password("<password>")
.protocol("Quorum")
.resourceGroupName("mygroup")
.validatorNodesSku(Map.of("capacity", 2))
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
blockchain_member = azure_native.blockchain.BlockchainMember("blockchainMember",
blockchain_member_name="contosemember1",
consortium="ContoseConsortium",
consortium_management_account_password="<consortiumManagementAccountPassword>",
location="southeastasia",
password="<password>",
protocol="Quorum",
resource_group_name="mygroup",
validator_nodes_sku=azure_native.blockchain.BlockchainMemberNodesSkuArgs(
capacity=2,
))
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const blockchainMember = new azure_native.blockchain.BlockchainMember("blockchainMember", {
blockchainMemberName: "contosemember1",
consortium: "ContoseConsortium",
consortiumManagementAccountPassword: "<consortiumManagementAccountPassword>",
location: "southeastasia",
password: "<password>",
protocol: "Quorum",
resourceGroupName: "mygroup",
validatorNodesSku: {
capacity: 2,
},
});
resources:
blockchainMember:
type: azure-native:blockchain:BlockchainMember
properties:
blockchainMemberName: contosemember1
consortium: ContoseConsortium
consortiumManagementAccountPassword: <consortiumManagementAccountPassword>
location: southeastasia
password: <password>
protocol: Quorum
resourceGroupName: mygroup
validatorNodesSku:
capacity: 2
Create BlockchainMember Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new BlockchainMember(name: string, args: BlockchainMemberArgs, opts?: CustomResourceOptions);
@overload
def BlockchainMember(resource_name: str,
args: BlockchainMemberArgs,
opts: Optional[ResourceOptions] = None)
@overload
def BlockchainMember(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
consortium_member_display_name: Optional[str] = None,
consortium_management_account_password: Optional[str] = None,
blockchain_member_name: Optional[str] = None,
consortium_role: Optional[str] = None,
firewall_rules: Optional[Sequence[FirewallRuleArgs]] = None,
location: Optional[str] = None,
password: Optional[str] = None,
protocol: Optional[Union[str, BlockchainProtocol]] = None,
consortium: Optional[str] = None,
sku: Optional[SkuArgs] = None,
tags: Optional[Mapping[str, str]] = None,
validator_nodes_sku: Optional[BlockchainMemberNodesSkuArgs] = None)
func NewBlockchainMember(ctx *Context, name string, args BlockchainMemberArgs, opts ...ResourceOption) (*BlockchainMember, error)
public BlockchainMember(string name, BlockchainMemberArgs args, CustomResourceOptions? opts = null)
public BlockchainMember(String name, BlockchainMemberArgs args)
public BlockchainMember(String name, BlockchainMemberArgs args, CustomResourceOptions options)
type: azure-native:blockchain:BlockchainMember
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args BlockchainMemberArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args BlockchainMemberArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args BlockchainMemberArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BlockchainMemberArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BlockchainMemberArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var blockchainMemberResource = new AzureNative.Blockchain.BlockchainMember("blockchainMemberResource", new()
{
ResourceGroupName = "string",
ConsortiumMemberDisplayName = "string",
ConsortiumManagementAccountPassword = "string",
BlockchainMemberName = "string",
ConsortiumRole = "string",
FirewallRules = new[]
{
{
{ "endIpAddress", "string" },
{ "ruleName", "string" },
{ "startIpAddress", "string" },
},
},
Location = "string",
Password = "string",
Protocol = "string",
Consortium = "string",
Sku =
{
{ "name", "string" },
{ "tier", "string" },
},
Tags =
{
{ "string", "string" },
},
ValidatorNodesSku =
{
{ "capacity", 0 },
},
});
example, err := blockchain.NewBlockchainMember(ctx, "blockchainMemberResource", &blockchain.BlockchainMemberArgs{
ResourceGroupName: "string",
ConsortiumMemberDisplayName: "string",
ConsortiumManagementAccountPassword: "string",
BlockchainMemberName: "string",
ConsortiumRole: "string",
FirewallRules: []map[string]interface{}{
map[string]interface{}{
"endIpAddress": "string",
"ruleName": "string",
"startIpAddress": "string",
},
},
Location: "string",
Password: "string",
Protocol: "string",
Consortium: "string",
Sku: map[string]interface{}{
"name": "string",
"tier": "string",
},
Tags: map[string]interface{}{
"string": "string",
},
ValidatorNodesSku: map[string]interface{}{
"capacity": 0,
},
})
var blockchainMemberResource = new BlockchainMember("blockchainMemberResource", BlockchainMemberArgs.builder()
.resourceGroupName("string")
.consortiumMemberDisplayName("string")
.consortiumManagementAccountPassword("string")
.blockchainMemberName("string")
.consortiumRole("string")
.firewallRules(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.location("string")
.password("string")
.protocol("string")
.consortium("string")
.sku(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.validatorNodesSku(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build());
blockchain_member_resource = azure_native.blockchain.BlockchainMember("blockchainMemberResource",
resource_group_name=string,
consortium_member_display_name=string,
consortium_management_account_password=string,
blockchain_member_name=string,
consortium_role=string,
firewall_rules=[{
endIpAddress: string,
ruleName: string,
startIpAddress: string,
}],
location=string,
password=string,
protocol=string,
consortium=string,
sku={
name: string,
tier: string,
},
tags={
string: string,
},
validator_nodes_sku={
capacity: 0,
})
const blockchainMemberResource = new azure_native.blockchain.BlockchainMember("blockchainMemberResource", {
resourceGroupName: "string",
consortiumMemberDisplayName: "string",
consortiumManagementAccountPassword: "string",
blockchainMemberName: "string",
consortiumRole: "string",
firewallRules: [{
endIpAddress: "string",
ruleName: "string",
startIpAddress: "string",
}],
location: "string",
password: "string",
protocol: "string",
consortium: "string",
sku: {
name: "string",
tier: "string",
},
tags: {
string: "string",
},
validatorNodesSku: {
capacity: 0,
},
});
type: azure-native:blockchain:BlockchainMember
properties:
blockchainMemberName: string
consortium: string
consortiumManagementAccountPassword: string
consortiumMemberDisplayName: string
consortiumRole: string
firewallRules:
- endIpAddress: string
ruleName: string
startIpAddress: string
location: string
password: string
protocol: string
resourceGroupName: string
sku:
name: string
tier: string
tags:
string: string
validatorNodesSku:
capacity: 0
BlockchainMember Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The BlockchainMember resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- Blockchain
Member stringName - Blockchain member name.
- Consortium string
- Gets or sets the consortium for the blockchain member.
- Consortium
Management stringAccount Password - Sets the managed consortium management account password.
- Consortium
Member stringDisplay Name - Gets the display name of the member in the consortium.
- Consortium
Role string - Gets the role of the member in the consortium.
- Firewall
Rules List<Pulumi.Azure Native. Blockchain. Inputs. Firewall Rule> - Gets or sets firewall rules
- Location string
- The GEO location of the blockchain service.
- Password string
- Sets the basic auth password of the blockchain member.
- Protocol
string | Pulumi.
Azure Native. Blockchain. Blockchain Protocol - Gets or sets the blockchain protocol.
- Sku
Pulumi.
Azure Native. Blockchain. Inputs. Sku - Gets or sets the blockchain member Sku.
- Dictionary<string, string>
- Tags of the service which is a list of key value pairs that describes the resource.
- Validator
Nodes Pulumi.Sku Azure Native. Blockchain. Inputs. Blockchain Member Nodes Sku - Gets or sets the blockchain validator nodes Sku.
- Resource
Group stringName - The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- Blockchain
Member stringName - Blockchain member name.
- Consortium string
- Gets or sets the consortium for the blockchain member.
- Consortium
Management stringAccount Password - Sets the managed consortium management account password.
- Consortium
Member stringDisplay Name - Gets the display name of the member in the consortium.
- Consortium
Role string - Gets the role of the member in the consortium.
- Firewall
Rules []FirewallRule Args - Gets or sets firewall rules
- Location string
- The GEO location of the blockchain service.
- Password string
- Sets the basic auth password of the blockchain member.
- Protocol
string | Blockchain
Protocol - Gets or sets the blockchain protocol.
- Sku
Sku
Args - Gets or sets the blockchain member Sku.
- map[string]string
- Tags of the service which is a list of key value pairs that describes the resource.
- Validator
Nodes BlockchainSku Member Nodes Sku Args - Gets or sets the blockchain validator nodes Sku.
- resource
Group StringName - The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- blockchain
Member StringName - Blockchain member name.
- consortium String
- Gets or sets the consortium for the blockchain member.
- consortium
Management StringAccount Password - Sets the managed consortium management account password.
- consortium
Member StringDisplay Name - Gets the display name of the member in the consortium.
- consortium
Role String - Gets the role of the member in the consortium.
- firewall
Rules List<FirewallRule> - Gets or sets firewall rules
- location String
- The GEO location of the blockchain service.
- password String
- Sets the basic auth password of the blockchain member.
- protocol
String | Blockchain
Protocol - Gets or sets the blockchain protocol.
- sku Sku
- Gets or sets the blockchain member Sku.
- Map<String,String>
- Tags of the service which is a list of key value pairs that describes the resource.
- validator
Nodes BlockchainSku Member Nodes Sku - Gets or sets the blockchain validator nodes Sku.
- resource
Group stringName - The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- blockchain
Member stringName - Blockchain member name.
- consortium string
- Gets or sets the consortium for the blockchain member.
- consortium
Management stringAccount Password - Sets the managed consortium management account password.
- consortium
Member stringDisplay Name - Gets the display name of the member in the consortium.
- consortium
Role string - Gets the role of the member in the consortium.
- firewall
Rules FirewallRule[] - Gets or sets firewall rules
- location string
- The GEO location of the blockchain service.
- password string
- Sets the basic auth password of the blockchain member.
- protocol
string | Blockchain
Protocol - Gets or sets the blockchain protocol.
- sku Sku
- Gets or sets the blockchain member Sku.
- {[key: string]: string}
- Tags of the service which is a list of key value pairs that describes the resource.
- validator
Nodes BlockchainSku Member Nodes Sku - Gets or sets the blockchain validator nodes Sku.
- resource_
group_ strname - The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- blockchain_
member_ strname - Blockchain member name.
- consortium str
- Gets or sets the consortium for the blockchain member.
- consortium_
management_ straccount_ password - Sets the managed consortium management account password.
- consortium_
member_ strdisplay_ name - Gets the display name of the member in the consortium.
- consortium_
role str - Gets the role of the member in the consortium.
- firewall_
rules Sequence[FirewallRule Args] - Gets or sets firewall rules
- location str
- The GEO location of the blockchain service.
- password str
- Sets the basic auth password of the blockchain member.
- protocol
str | Blockchain
Protocol - Gets or sets the blockchain protocol.
- sku
Sku
Args - Gets or sets the blockchain member Sku.
- Mapping[str, str]
- Tags of the service which is a list of key value pairs that describes the resource.
- validator_
nodes_ Blockchainsku Member Nodes Sku Args - Gets or sets the blockchain validator nodes Sku.
- resource
Group StringName - The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- blockchain
Member StringName - Blockchain member name.
- consortium String
- Gets or sets the consortium for the blockchain member.
- consortium
Management StringAccount Password - Sets the managed consortium management account password.
- consortium
Member StringDisplay Name - Gets the display name of the member in the consortium.
- consortium
Role String - Gets the role of the member in the consortium.
- firewall
Rules List<Property Map> - Gets or sets firewall rules
- location String
- The GEO location of the blockchain service.
- password String
- Sets the basic auth password of the blockchain member.
- protocol
String | "Not
Specified" | "Parity" | "Quorum" | "Corda" - Gets or sets the blockchain protocol.
- sku Property Map
- Gets or sets the blockchain member Sku.
- Map<String>
- Tags of the service which is a list of key value pairs that describes the resource.
- validator
Nodes Property MapSku - Gets or sets the blockchain validator nodes Sku.
Outputs
All input properties are implicitly available as output properties. Additionally, the BlockchainMember resource produces the following output properties:
- Consortium
Management stringAccount Address - Gets the managed consortium management account address.
- Dns string
- Gets the dns endpoint of the blockchain member.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource.
- Provisioning
State string - Gets or sets the blockchain member provision state.
- Public
Key string - Gets the public key of the blockchain member (default transaction node).
- Root
Contract stringAddress - Gets the Ethereum root contract address of the blockchain.
- Type string
- The type of the service - e.g. "Microsoft.Blockchain"
- User
Name string - Gets the auth user name of the blockchain member.
- Consortium
Management stringAccount Address - Gets the managed consortium management account address.
- Dns string
- Gets the dns endpoint of the blockchain member.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource.
- Provisioning
State string - Gets or sets the blockchain member provision state.
- Public
Key string - Gets the public key of the blockchain member (default transaction node).
- Root
Contract stringAddress - Gets the Ethereum root contract address of the blockchain.
- Type string
- The type of the service - e.g. "Microsoft.Blockchain"
- User
Name string - Gets the auth user name of the blockchain member.
- consortium
Management StringAccount Address - Gets the managed consortium management account address.
- dns String
- Gets the dns endpoint of the blockchain member.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource.
- provisioning
State String - Gets or sets the blockchain member provision state.
- public
Key String - Gets the public key of the blockchain member (default transaction node).
- root
Contract StringAddress - Gets the Ethereum root contract address of the blockchain.
- type String
- The type of the service - e.g. "Microsoft.Blockchain"
- user
Name String - Gets the auth user name of the blockchain member.
- consortium
Management stringAccount Address - Gets the managed consortium management account address.
- dns string
- Gets the dns endpoint of the blockchain member.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource.
- provisioning
State string - Gets or sets the blockchain member provision state.
- public
Key string - Gets the public key of the blockchain member (default transaction node).
- root
Contract stringAddress - Gets the Ethereum root contract address of the blockchain.
- type string
- The type of the service - e.g. "Microsoft.Blockchain"
- user
Name string - Gets the auth user name of the blockchain member.
- consortium_
management_ straccount_ address - Gets the managed consortium management account address.
- dns str
- Gets the dns endpoint of the blockchain member.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource.
- provisioning_
state str - Gets or sets the blockchain member provision state.
- public_
key str - Gets the public key of the blockchain member (default transaction node).
- root_
contract_ straddress - Gets the Ethereum root contract address of the blockchain.
- type str
- The type of the service - e.g. "Microsoft.Blockchain"
- user_
name str - Gets the auth user name of the blockchain member.
- consortium
Management StringAccount Address - Gets the managed consortium management account address.
- dns String
- Gets the dns endpoint of the blockchain member.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource.
- provisioning
State String - Gets or sets the blockchain member provision state.
- public
Key String - Gets the public key of the blockchain member (default transaction node).
- root
Contract StringAddress - Gets the Ethereum root contract address of the blockchain.
- type String
- The type of the service - e.g. "Microsoft.Blockchain"
- user
Name String - Gets the auth user name of the blockchain member.
Supporting Types
BlockchainMemberNodesSku, BlockchainMemberNodesSkuArgs
- Capacity int
- Gets or sets the nodes capacity.
- Capacity int
- Gets or sets the nodes capacity.
- capacity Integer
- Gets or sets the nodes capacity.
- capacity number
- Gets or sets the nodes capacity.
- capacity int
- Gets or sets the nodes capacity.
- capacity Number
- Gets or sets the nodes capacity.
BlockchainMemberNodesSkuResponse, BlockchainMemberNodesSkuResponseArgs
- Capacity int
- Gets or sets the nodes capacity.
- Capacity int
- Gets or sets the nodes capacity.
- capacity Integer
- Gets or sets the nodes capacity.
- capacity number
- Gets or sets the nodes capacity.
- capacity int
- Gets or sets the nodes capacity.
- capacity Number
- Gets or sets the nodes capacity.
BlockchainProtocol, BlockchainProtocolArgs
- Not
Specified - NotSpecified
- Parity
- Parity
- Quorum
- Quorum
- Corda
- Corda
- Blockchain
Protocol Not Specified - NotSpecified
- Blockchain
Protocol Parity - Parity
- Blockchain
Protocol Quorum - Quorum
- Blockchain
Protocol Corda - Corda
- Not
Specified - NotSpecified
- Parity
- Parity
- Quorum
- Quorum
- Corda
- Corda
- Not
Specified - NotSpecified
- Parity
- Parity
- Quorum
- Quorum
- Corda
- Corda
- NOT_SPECIFIED
- NotSpecified
- PARITY
- Parity
- QUORUM
- Quorum
- CORDA
- Corda
- "Not
Specified" - NotSpecified
- "Parity"
- Parity
- "Quorum"
- Quorum
- "Corda"
- Corda
FirewallRule, FirewallRuleArgs
- End
Ip stringAddress - Gets or sets the end IP address of the firewall rule range.
- Rule
Name string - Gets or sets the name of the firewall rules.
- Start
Ip stringAddress - Gets or sets the start IP address of the firewall rule range.
- End
Ip stringAddress - Gets or sets the end IP address of the firewall rule range.
- Rule
Name string - Gets or sets the name of the firewall rules.
- Start
Ip stringAddress - Gets or sets the start IP address of the firewall rule range.
- end
Ip StringAddress - Gets or sets the end IP address of the firewall rule range.
- rule
Name String - Gets or sets the name of the firewall rules.
- start
Ip StringAddress - Gets or sets the start IP address of the firewall rule range.
- end
Ip stringAddress - Gets or sets the end IP address of the firewall rule range.
- rule
Name string - Gets or sets the name of the firewall rules.
- start
Ip stringAddress - Gets or sets the start IP address of the firewall rule range.
- end_
ip_ straddress - Gets or sets the end IP address of the firewall rule range.
- rule_
name str - Gets or sets the name of the firewall rules.
- start_
ip_ straddress - Gets or sets the start IP address of the firewall rule range.
- end
Ip StringAddress - Gets or sets the end IP address of the firewall rule range.
- rule
Name String - Gets or sets the name of the firewall rules.
- start
Ip StringAddress - Gets or sets the start IP address of the firewall rule range.
FirewallRuleResponse, FirewallRuleResponseArgs
- End
Ip stringAddress - Gets or sets the end IP address of the firewall rule range.
- Rule
Name string - Gets or sets the name of the firewall rules.
- Start
Ip stringAddress - Gets or sets the start IP address of the firewall rule range.
- End
Ip stringAddress - Gets or sets the end IP address of the firewall rule range.
- Rule
Name string - Gets or sets the name of the firewall rules.
- Start
Ip stringAddress - Gets or sets the start IP address of the firewall rule range.
- end
Ip StringAddress - Gets or sets the end IP address of the firewall rule range.
- rule
Name String - Gets or sets the name of the firewall rules.
- start
Ip StringAddress - Gets or sets the start IP address of the firewall rule range.
- end
Ip stringAddress - Gets or sets the end IP address of the firewall rule range.
- rule
Name string - Gets or sets the name of the firewall rules.
- start
Ip stringAddress - Gets or sets the start IP address of the firewall rule range.
- end_
ip_ straddress - Gets or sets the end IP address of the firewall rule range.
- rule_
name str - Gets or sets the name of the firewall rules.
- start_
ip_ straddress - Gets or sets the start IP address of the firewall rule range.
- end
Ip StringAddress - Gets or sets the end IP address of the firewall rule range.
- rule
Name String - Gets or sets the name of the firewall rules.
- start
Ip StringAddress - Gets or sets the start IP address of the firewall rule range.
Sku, SkuArgs
SkuResponse, SkuResponseArgs
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:blockchain:BlockchainMember contosemember1 /subscriptions/51766542-3ed7-4a72-a187-0c8ab644ddab/resourceGroups/mygroup/providers/Microsoft.Blockchain/blockchainMembers/contosemember1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0