gcp.blockchainnodeengine.BlockchainNodes
Explore with Pulumi AI
A representation of a blockchain node.
To get more information about BlockchainNodes, see:
- API documentation
- How-to Guides
Example Usage
Blockchain Nodes Basic
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const defaultNode = new gcp.blockchainnodeengine.BlockchainNodes("default_node", {
location: "us-central1",
blockchainType: "ETHEREUM",
blockchainNodeId: "blockchain_basic_node",
ethereumDetails: {
apiEnableAdmin: true,
apiEnableDebug: true,
validatorConfig: {
mevRelayUrls: [
"https://mev1.example.org/",
"https://mev2.example.org/",
],
},
nodeType: "ARCHIVE",
consensusClient: "LIGHTHOUSE",
executionClient: "ERIGON",
network: "MAINNET",
},
labels: {
environment: "dev",
},
});
import pulumi
import pulumi_gcp as gcp
default_node = gcp.blockchainnodeengine.BlockchainNodes("default_node",
location="us-central1",
blockchain_type="ETHEREUM",
blockchain_node_id="blockchain_basic_node",
ethereum_details={
"api_enable_admin": True,
"api_enable_debug": True,
"validator_config": {
"mev_relay_urls": [
"https://mev1.example.org/",
"https://mev2.example.org/",
],
},
"node_type": "ARCHIVE",
"consensus_client": "LIGHTHOUSE",
"execution_client": "ERIGON",
"network": "MAINNET",
},
labels={
"environment": "dev",
})
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/blockchainnodeengine"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := blockchainnodeengine.NewBlockchainNodes(ctx, "default_node", &blockchainnodeengine.BlockchainNodesArgs{
Location: pulumi.String("us-central1"),
BlockchainType: pulumi.String("ETHEREUM"),
BlockchainNodeId: pulumi.String("blockchain_basic_node"),
EthereumDetails: &blockchainnodeengine.BlockchainNodesEthereumDetailsArgs{
ApiEnableAdmin: pulumi.Bool(true),
ApiEnableDebug: pulumi.Bool(true),
ValidatorConfig: &blockchainnodeengine.BlockchainNodesEthereumDetailsValidatorConfigArgs{
MevRelayUrls: pulumi.StringArray{
pulumi.String("https://mev1.example.org/"),
pulumi.String("https://mev2.example.org/"),
},
},
NodeType: pulumi.String("ARCHIVE"),
ConsensusClient: pulumi.String("LIGHTHOUSE"),
ExecutionClient: pulumi.String("ERIGON"),
Network: pulumi.String("MAINNET"),
},
Labels: pulumi.StringMap{
"environment": pulumi.String("dev"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var defaultNode = new Gcp.BlockchainNodeEngine.BlockchainNodes("default_node", new()
{
Location = "us-central1",
BlockchainType = "ETHEREUM",
BlockchainNodeId = "blockchain_basic_node",
EthereumDetails = new Gcp.BlockchainNodeEngine.Inputs.BlockchainNodesEthereumDetailsArgs
{
ApiEnableAdmin = true,
ApiEnableDebug = true,
ValidatorConfig = new Gcp.BlockchainNodeEngine.Inputs.BlockchainNodesEthereumDetailsValidatorConfigArgs
{
MevRelayUrls = new[]
{
"https://mev1.example.org/",
"https://mev2.example.org/",
},
},
NodeType = "ARCHIVE",
ConsensusClient = "LIGHTHOUSE",
ExecutionClient = "ERIGON",
Network = "MAINNET",
},
Labels =
{
{ "environment", "dev" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.blockchainnodeengine.BlockchainNodes;
import com.pulumi.gcp.blockchainnodeengine.BlockchainNodesArgs;
import com.pulumi.gcp.blockchainnodeengine.inputs.BlockchainNodesEthereumDetailsArgs;
import com.pulumi.gcp.blockchainnodeengine.inputs.BlockchainNodesEthereumDetailsValidatorConfigArgs;
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 defaultNode = new BlockchainNodes("defaultNode", BlockchainNodesArgs.builder()
.location("us-central1")
.blockchainType("ETHEREUM")
.blockchainNodeId("blockchain_basic_node")
.ethereumDetails(BlockchainNodesEthereumDetailsArgs.builder()
.apiEnableAdmin(true)
.apiEnableDebug(true)
.validatorConfig(BlockchainNodesEthereumDetailsValidatorConfigArgs.builder()
.mevRelayUrls(
"https://mev1.example.org/",
"https://mev2.example.org/")
.build())
.nodeType("ARCHIVE")
.consensusClient("LIGHTHOUSE")
.executionClient("ERIGON")
.network("MAINNET")
.build())
.labels(Map.of("environment", "dev"))
.build());
}
}
resources:
defaultNode:
type: gcp:blockchainnodeengine:BlockchainNodes
name: default_node
properties:
location: us-central1
blockchainType: ETHEREUM
blockchainNodeId: blockchain_basic_node
ethereumDetails:
apiEnableAdmin: true
apiEnableDebug: true
validatorConfig:
mevRelayUrls:
- https://mev1.example.org/
- https://mev2.example.org/
nodeType: ARCHIVE
consensusClient: LIGHTHOUSE
executionClient: ERIGON
network: MAINNET
labels:
environment: dev
Blockchain Nodes Geth Details
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const defaultNodeGeth = new gcp.blockchainnodeengine.BlockchainNodes("default_node_geth", {
location: "us-central1",
blockchainType: "ETHEREUM",
blockchainNodeId: "blockchain_geth_node",
ethereumDetails: {
apiEnableAdmin: true,
apiEnableDebug: true,
validatorConfig: {
mevRelayUrls: [
"https://mev1.example.org/",
"https://mev2.example.org/",
],
},
nodeType: "FULL",
consensusClient: "LIGHTHOUSE",
executionClient: "GETH",
network: "MAINNET",
gethDetails: {
garbageCollectionMode: "FULL",
},
},
labels: {
environment: "dev",
},
});
import pulumi
import pulumi_gcp as gcp
default_node_geth = gcp.blockchainnodeengine.BlockchainNodes("default_node_geth",
location="us-central1",
blockchain_type="ETHEREUM",
blockchain_node_id="blockchain_geth_node",
ethereum_details={
"api_enable_admin": True,
"api_enable_debug": True,
"validator_config": {
"mev_relay_urls": [
"https://mev1.example.org/",
"https://mev2.example.org/",
],
},
"node_type": "FULL",
"consensus_client": "LIGHTHOUSE",
"execution_client": "GETH",
"network": "MAINNET",
"geth_details": {
"garbage_collection_mode": "FULL",
},
},
labels={
"environment": "dev",
})
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/blockchainnodeengine"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := blockchainnodeengine.NewBlockchainNodes(ctx, "default_node_geth", &blockchainnodeengine.BlockchainNodesArgs{
Location: pulumi.String("us-central1"),
BlockchainType: pulumi.String("ETHEREUM"),
BlockchainNodeId: pulumi.String("blockchain_geth_node"),
EthereumDetails: &blockchainnodeengine.BlockchainNodesEthereumDetailsArgs{
ApiEnableAdmin: pulumi.Bool(true),
ApiEnableDebug: pulumi.Bool(true),
ValidatorConfig: &blockchainnodeengine.BlockchainNodesEthereumDetailsValidatorConfigArgs{
MevRelayUrls: pulumi.StringArray{
pulumi.String("https://mev1.example.org/"),
pulumi.String("https://mev2.example.org/"),
},
},
NodeType: pulumi.String("FULL"),
ConsensusClient: pulumi.String("LIGHTHOUSE"),
ExecutionClient: pulumi.String("GETH"),
Network: pulumi.String("MAINNET"),
GethDetails: &blockchainnodeengine.BlockchainNodesEthereumDetailsGethDetailsArgs{
GarbageCollectionMode: pulumi.String("FULL"),
},
},
Labels: pulumi.StringMap{
"environment": pulumi.String("dev"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var defaultNodeGeth = new Gcp.BlockchainNodeEngine.BlockchainNodes("default_node_geth", new()
{
Location = "us-central1",
BlockchainType = "ETHEREUM",
BlockchainNodeId = "blockchain_geth_node",
EthereumDetails = new Gcp.BlockchainNodeEngine.Inputs.BlockchainNodesEthereumDetailsArgs
{
ApiEnableAdmin = true,
ApiEnableDebug = true,
ValidatorConfig = new Gcp.BlockchainNodeEngine.Inputs.BlockchainNodesEthereumDetailsValidatorConfigArgs
{
MevRelayUrls = new[]
{
"https://mev1.example.org/",
"https://mev2.example.org/",
},
},
NodeType = "FULL",
ConsensusClient = "LIGHTHOUSE",
ExecutionClient = "GETH",
Network = "MAINNET",
GethDetails = new Gcp.BlockchainNodeEngine.Inputs.BlockchainNodesEthereumDetailsGethDetailsArgs
{
GarbageCollectionMode = "FULL",
},
},
Labels =
{
{ "environment", "dev" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.blockchainnodeengine.BlockchainNodes;
import com.pulumi.gcp.blockchainnodeengine.BlockchainNodesArgs;
import com.pulumi.gcp.blockchainnodeengine.inputs.BlockchainNodesEthereumDetailsArgs;
import com.pulumi.gcp.blockchainnodeengine.inputs.BlockchainNodesEthereumDetailsValidatorConfigArgs;
import com.pulumi.gcp.blockchainnodeengine.inputs.BlockchainNodesEthereumDetailsGethDetailsArgs;
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 defaultNodeGeth = new BlockchainNodes("defaultNodeGeth", BlockchainNodesArgs.builder()
.location("us-central1")
.blockchainType("ETHEREUM")
.blockchainNodeId("blockchain_geth_node")
.ethereumDetails(BlockchainNodesEthereumDetailsArgs.builder()
.apiEnableAdmin(true)
.apiEnableDebug(true)
.validatorConfig(BlockchainNodesEthereumDetailsValidatorConfigArgs.builder()
.mevRelayUrls(
"https://mev1.example.org/",
"https://mev2.example.org/")
.build())
.nodeType("FULL")
.consensusClient("LIGHTHOUSE")
.executionClient("GETH")
.network("MAINNET")
.gethDetails(BlockchainNodesEthereumDetailsGethDetailsArgs.builder()
.garbageCollectionMode("FULL")
.build())
.build())
.labels(Map.of("environment", "dev"))
.build());
}
}
resources:
defaultNodeGeth:
type: gcp:blockchainnodeengine:BlockchainNodes
name: default_node_geth
properties:
location: us-central1
blockchainType: ETHEREUM
blockchainNodeId: blockchain_geth_node
ethereumDetails:
apiEnableAdmin: true
apiEnableDebug: true
validatorConfig:
mevRelayUrls:
- https://mev1.example.org/
- https://mev2.example.org/
nodeType: FULL
consensusClient: LIGHTHOUSE
executionClient: GETH
network: MAINNET
gethDetails:
garbageCollectionMode: FULL
labels:
environment: dev
Create BlockchainNodes Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new BlockchainNodes(name: string, args: BlockchainNodesArgs, opts?: CustomResourceOptions);
@overload
def BlockchainNodes(resource_name: str,
args: BlockchainNodesArgs,
opts: Optional[ResourceOptions] = None)
@overload
def BlockchainNodes(resource_name: str,
opts: Optional[ResourceOptions] = None,
blockchain_node_id: Optional[str] = None,
location: Optional[str] = None,
blockchain_type: Optional[str] = None,
ethereum_details: Optional[BlockchainNodesEthereumDetailsArgs] = None,
labels: Optional[Mapping[str, str]] = None,
project: Optional[str] = None)
func NewBlockchainNodes(ctx *Context, name string, args BlockchainNodesArgs, opts ...ResourceOption) (*BlockchainNodes, error)
public BlockchainNodes(string name, BlockchainNodesArgs args, CustomResourceOptions? opts = null)
public BlockchainNodes(String name, BlockchainNodesArgs args)
public BlockchainNodes(String name, BlockchainNodesArgs args, CustomResourceOptions options)
type: gcp:blockchainnodeengine:BlockchainNodes
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 BlockchainNodesArgs
- 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 BlockchainNodesArgs
- 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 BlockchainNodesArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BlockchainNodesArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BlockchainNodesArgs
- 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 blockchainNodesResource = new Gcp.BlockchainNodeEngine.BlockchainNodes("blockchainNodesResource", new()
{
BlockchainNodeId = "string",
Location = "string",
BlockchainType = "string",
EthereumDetails = new Gcp.BlockchainNodeEngine.Inputs.BlockchainNodesEthereumDetailsArgs
{
AdditionalEndpoints = new[]
{
new Gcp.BlockchainNodeEngine.Inputs.BlockchainNodesEthereumDetailsAdditionalEndpointArgs
{
BeaconApiEndpoint = "string",
BeaconPrometheusMetricsApiEndpoint = "string",
ExecutionClientPrometheusMetricsApiEndpoint = "string",
},
},
ApiEnableAdmin = false,
ApiEnableDebug = false,
ConsensusClient = "string",
ExecutionClient = "string",
GethDetails = new Gcp.BlockchainNodeEngine.Inputs.BlockchainNodesEthereumDetailsGethDetailsArgs
{
GarbageCollectionMode = "string",
},
Network = "string",
NodeType = "string",
ValidatorConfig = new Gcp.BlockchainNodeEngine.Inputs.BlockchainNodesEthereumDetailsValidatorConfigArgs
{
MevRelayUrls = new[]
{
"string",
},
},
},
Labels =
{
{ "string", "string" },
},
Project = "string",
});
example, err := blockchainnodeengine.NewBlockchainNodes(ctx, "blockchainNodesResource", &blockchainnodeengine.BlockchainNodesArgs{
BlockchainNodeId: pulumi.String("string"),
Location: pulumi.String("string"),
BlockchainType: pulumi.String("string"),
EthereumDetails: &blockchainnodeengine.BlockchainNodesEthereumDetailsArgs{
AdditionalEndpoints: blockchainnodeengine.BlockchainNodesEthereumDetailsAdditionalEndpointArray{
&blockchainnodeengine.BlockchainNodesEthereumDetailsAdditionalEndpointArgs{
BeaconApiEndpoint: pulumi.String("string"),
BeaconPrometheusMetricsApiEndpoint: pulumi.String("string"),
ExecutionClientPrometheusMetricsApiEndpoint: pulumi.String("string"),
},
},
ApiEnableAdmin: pulumi.Bool(false),
ApiEnableDebug: pulumi.Bool(false),
ConsensusClient: pulumi.String("string"),
ExecutionClient: pulumi.String("string"),
GethDetails: &blockchainnodeengine.BlockchainNodesEthereumDetailsGethDetailsArgs{
GarbageCollectionMode: pulumi.String("string"),
},
Network: pulumi.String("string"),
NodeType: pulumi.String("string"),
ValidatorConfig: &blockchainnodeengine.BlockchainNodesEthereumDetailsValidatorConfigArgs{
MevRelayUrls: pulumi.StringArray{
pulumi.String("string"),
},
},
},
Labels: pulumi.StringMap{
"string": pulumi.String("string"),
},
Project: pulumi.String("string"),
})
var blockchainNodesResource = new BlockchainNodes("blockchainNodesResource", BlockchainNodesArgs.builder()
.blockchainNodeId("string")
.location("string")
.blockchainType("string")
.ethereumDetails(BlockchainNodesEthereumDetailsArgs.builder()
.additionalEndpoints(BlockchainNodesEthereumDetailsAdditionalEndpointArgs.builder()
.beaconApiEndpoint("string")
.beaconPrometheusMetricsApiEndpoint("string")
.executionClientPrometheusMetricsApiEndpoint("string")
.build())
.apiEnableAdmin(false)
.apiEnableDebug(false)
.consensusClient("string")
.executionClient("string")
.gethDetails(BlockchainNodesEthereumDetailsGethDetailsArgs.builder()
.garbageCollectionMode("string")
.build())
.network("string")
.nodeType("string")
.validatorConfig(BlockchainNodesEthereumDetailsValidatorConfigArgs.builder()
.mevRelayUrls("string")
.build())
.build())
.labels(Map.of("string", "string"))
.project("string")
.build());
blockchain_nodes_resource = gcp.blockchainnodeengine.BlockchainNodes("blockchainNodesResource",
blockchain_node_id="string",
location="string",
blockchain_type="string",
ethereum_details={
"additionalEndpoints": [{
"beaconApiEndpoint": "string",
"beaconPrometheusMetricsApiEndpoint": "string",
"executionClientPrometheusMetricsApiEndpoint": "string",
}],
"apiEnableAdmin": False,
"apiEnableDebug": False,
"consensusClient": "string",
"executionClient": "string",
"gethDetails": {
"garbageCollectionMode": "string",
},
"network": "string",
"nodeType": "string",
"validatorConfig": {
"mevRelayUrls": ["string"],
},
},
labels={
"string": "string",
},
project="string")
const blockchainNodesResource = new gcp.blockchainnodeengine.BlockchainNodes("blockchainNodesResource", {
blockchainNodeId: "string",
location: "string",
blockchainType: "string",
ethereumDetails: {
additionalEndpoints: [{
beaconApiEndpoint: "string",
beaconPrometheusMetricsApiEndpoint: "string",
executionClientPrometheusMetricsApiEndpoint: "string",
}],
apiEnableAdmin: false,
apiEnableDebug: false,
consensusClient: "string",
executionClient: "string",
gethDetails: {
garbageCollectionMode: "string",
},
network: "string",
nodeType: "string",
validatorConfig: {
mevRelayUrls: ["string"],
},
},
labels: {
string: "string",
},
project: "string",
});
type: gcp:blockchainnodeengine:BlockchainNodes
properties:
blockchainNodeId: string
blockchainType: string
ethereumDetails:
additionalEndpoints:
- beaconApiEndpoint: string
beaconPrometheusMetricsApiEndpoint: string
executionClientPrometheusMetricsApiEndpoint: string
apiEnableAdmin: false
apiEnableDebug: false
consensusClient: string
executionClient: string
gethDetails:
garbageCollectionMode: string
network: string
nodeType: string
validatorConfig:
mevRelayUrls:
- string
labels:
string: string
location: string
project: string
BlockchainNodes 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 BlockchainNodes resource accepts the following input properties:
- Blockchain
Node stringId - ID of the requesting object.
- Location string
- Location of Blockchain Node being created.
- Blockchain
Type string - User-provided key-value pairs
Possible values are:
ETHEREUM
. - Ethereum
Details BlockchainNodes Ethereum Details - User-provided key-value pairs Structure is documented below.
- Labels Dictionary<string, string>
User-provided key-value pairs
Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field
effective_labels
for all of the labels present on the resource.- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Blockchain
Node stringId - ID of the requesting object.
- Location string
- Location of Blockchain Node being created.
- Blockchain
Type string - User-provided key-value pairs
Possible values are:
ETHEREUM
. - Ethereum
Details BlockchainNodes Ethereum Details Args - User-provided key-value pairs Structure is documented below.
- Labels map[string]string
User-provided key-value pairs
Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field
effective_labels
for all of the labels present on the resource.- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- blockchain
Node StringId - ID of the requesting object.
- location String
- Location of Blockchain Node being created.
- blockchain
Type String - User-provided key-value pairs
Possible values are:
ETHEREUM
. - ethereum
Details BlockchainNodes Ethereum Details - User-provided key-value pairs Structure is documented below.
- labels Map<String,String>
User-provided key-value pairs
Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field
effective_labels
for all of the labels present on the resource.- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- blockchain
Node stringId - ID of the requesting object.
- location string
- Location of Blockchain Node being created.
- blockchain
Type string - User-provided key-value pairs
Possible values are:
ETHEREUM
. - ethereum
Details BlockchainNodes Ethereum Details - User-provided key-value pairs Structure is documented below.
- labels {[key: string]: string}
User-provided key-value pairs
Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field
effective_labels
for all of the labels present on the resource.- project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- blockchain_
node_ strid - ID of the requesting object.
- location str
- Location of Blockchain Node being created.
- blockchain_
type str - User-provided key-value pairs
Possible values are:
ETHEREUM
. - ethereum_
details BlockchainNodes Ethereum Details Args - User-provided key-value pairs Structure is documented below.
- labels Mapping[str, str]
User-provided key-value pairs
Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field
effective_labels
for all of the labels present on the resource.- project str
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- blockchain
Node StringId - ID of the requesting object.
- location String
- Location of Blockchain Node being created.
- blockchain
Type String - User-provided key-value pairs
Possible values are:
ETHEREUM
. - ethereum
Details Property Map - User-provided key-value pairs Structure is documented below.
- labels Map<String>
User-provided key-value pairs
Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field
effective_labels
for all of the labels present on the resource.- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
Outputs
All input properties are implicitly available as output properties. Additionally, the BlockchainNodes resource produces the following output properties:
- Connection
Infos List<BlockchainNodes Connection Info> - The connection information through which to interact with a blockchain node. Structure is documented below.
- Create
Time string - The timestamp at which the blockchain node was first created.
- Effective
Labels Dictionary<string, string> - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The fully qualified name of the blockchain node. e.g. projects/my-project/locations/us-central1/blockchainNodes/my-node.
- Pulumi
Labels Dictionary<string, string> - The combination of labels configured directly on the resource and default labels configured on the provider.
- Update
Time string - The timestamp at which the blockchain node was last updated.
- Connection
Infos []BlockchainNodes Connection Info - The connection information through which to interact with a blockchain node. Structure is documented below.
- Create
Time string - The timestamp at which the blockchain node was first created.
- Effective
Labels map[string]string - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The fully qualified name of the blockchain node. e.g. projects/my-project/locations/us-central1/blockchainNodes/my-node.
- Pulumi
Labels map[string]string - The combination of labels configured directly on the resource and default labels configured on the provider.
- Update
Time string - The timestamp at which the blockchain node was last updated.
- connection
Infos List<BlockchainNodes Connection Info> - The connection information through which to interact with a blockchain node. Structure is documented below.
- create
Time String - The timestamp at which the blockchain node was first created.
- effective
Labels Map<String,String> - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The fully qualified name of the blockchain node. e.g. projects/my-project/locations/us-central1/blockchainNodes/my-node.
- pulumi
Labels Map<String,String> - The combination of labels configured directly on the resource and default labels configured on the provider.
- update
Time String - The timestamp at which the blockchain node was last updated.
- connection
Infos BlockchainNodes Connection Info[] - The connection information through which to interact with a blockchain node. Structure is documented below.
- create
Time string - The timestamp at which the blockchain node was first created.
- effective
Labels {[key: string]: string} - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The fully qualified name of the blockchain node. e.g. projects/my-project/locations/us-central1/blockchainNodes/my-node.
- pulumi
Labels {[key: string]: string} - The combination of labels configured directly on the resource and default labels configured on the provider.
- update
Time string - The timestamp at which the blockchain node was last updated.
- connection_
infos Sequence[BlockchainNodes Connection Info] - The connection information through which to interact with a blockchain node. Structure is documented below.
- create_
time str - The timestamp at which the blockchain node was first created.
- effective_
labels Mapping[str, str] - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The fully qualified name of the blockchain node. e.g. projects/my-project/locations/us-central1/blockchainNodes/my-node.
- pulumi_
labels Mapping[str, str] - The combination of labels configured directly on the resource and default labels configured on the provider.
- update_
time str - The timestamp at which the blockchain node was last updated.
- connection
Infos List<Property Map> - The connection information through which to interact with a blockchain node. Structure is documented below.
- create
Time String - The timestamp at which the blockchain node was first created.
- effective
Labels Map<String> - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The fully qualified name of the blockchain node. e.g. projects/my-project/locations/us-central1/blockchainNodes/my-node.
- pulumi
Labels Map<String> - The combination of labels configured directly on the resource and default labels configured on the provider.
- update
Time String - The timestamp at which the blockchain node was last updated.
Look up Existing BlockchainNodes Resource
Get an existing BlockchainNodes resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: BlockchainNodesState, opts?: CustomResourceOptions): BlockchainNodes
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
blockchain_node_id: Optional[str] = None,
blockchain_type: Optional[str] = None,
connection_infos: Optional[Sequence[BlockchainNodesConnectionInfoArgs]] = None,
create_time: Optional[str] = None,
effective_labels: Optional[Mapping[str, str]] = None,
ethereum_details: Optional[BlockchainNodesEthereumDetailsArgs] = None,
labels: Optional[Mapping[str, str]] = None,
location: Optional[str] = None,
name: Optional[str] = None,
project: Optional[str] = None,
pulumi_labels: Optional[Mapping[str, str]] = None,
update_time: Optional[str] = None) -> BlockchainNodes
func GetBlockchainNodes(ctx *Context, name string, id IDInput, state *BlockchainNodesState, opts ...ResourceOption) (*BlockchainNodes, error)
public static BlockchainNodes Get(string name, Input<string> id, BlockchainNodesState? state, CustomResourceOptions? opts = null)
public static BlockchainNodes get(String name, Output<String> id, BlockchainNodesState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Blockchain
Node stringId - ID of the requesting object.
- Blockchain
Type string - User-provided key-value pairs
Possible values are:
ETHEREUM
. - Connection
Infos List<BlockchainNodes Connection Info> - The connection information through which to interact with a blockchain node. Structure is documented below.
- Create
Time string - The timestamp at which the blockchain node was first created.
- Effective
Labels Dictionary<string, string> - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- Ethereum
Details BlockchainNodes Ethereum Details - User-provided key-value pairs Structure is documented below.
- Labels Dictionary<string, string>
User-provided key-value pairs
Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field
effective_labels
for all of the labels present on the resource.- Location string
- Location of Blockchain Node being created.
- Name string
- The fully qualified name of the blockchain node. e.g. projects/my-project/locations/us-central1/blockchainNodes/my-node.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Pulumi
Labels Dictionary<string, string> - The combination of labels configured directly on the resource and default labels configured on the provider.
- Update
Time string - The timestamp at which the blockchain node was last updated.
- Blockchain
Node stringId - ID of the requesting object.
- Blockchain
Type string - User-provided key-value pairs
Possible values are:
ETHEREUM
. - Connection
Infos []BlockchainNodes Connection Info Args - The connection information through which to interact with a blockchain node. Structure is documented below.
- Create
Time string - The timestamp at which the blockchain node was first created.
- Effective
Labels map[string]string - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- Ethereum
Details BlockchainNodes Ethereum Details Args - User-provided key-value pairs Structure is documented below.
- Labels map[string]string
User-provided key-value pairs
Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field
effective_labels
for all of the labels present on the resource.- Location string
- Location of Blockchain Node being created.
- Name string
- The fully qualified name of the blockchain node. e.g. projects/my-project/locations/us-central1/blockchainNodes/my-node.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Pulumi
Labels map[string]string - The combination of labels configured directly on the resource and default labels configured on the provider.
- Update
Time string - The timestamp at which the blockchain node was last updated.
- blockchain
Node StringId - ID of the requesting object.
- blockchain
Type String - User-provided key-value pairs
Possible values are:
ETHEREUM
. - connection
Infos List<BlockchainNodes Connection Info> - The connection information through which to interact with a blockchain node. Structure is documented below.
- create
Time String - The timestamp at which the blockchain node was first created.
- effective
Labels Map<String,String> - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- ethereum
Details BlockchainNodes Ethereum Details - User-provided key-value pairs Structure is documented below.
- labels Map<String,String>
User-provided key-value pairs
Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field
effective_labels
for all of the labels present on the resource.- location String
- Location of Blockchain Node being created.
- name String
- The fully qualified name of the blockchain node. e.g. projects/my-project/locations/us-central1/blockchainNodes/my-node.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- pulumi
Labels Map<String,String> - The combination of labels configured directly on the resource and default labels configured on the provider.
- update
Time String - The timestamp at which the blockchain node was last updated.
- blockchain
Node stringId - ID of the requesting object.
- blockchain
Type string - User-provided key-value pairs
Possible values are:
ETHEREUM
. - connection
Infos BlockchainNodes Connection Info[] - The connection information through which to interact with a blockchain node. Structure is documented below.
- create
Time string - The timestamp at which the blockchain node was first created.
- effective
Labels {[key: string]: string} - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- ethereum
Details BlockchainNodes Ethereum Details - User-provided key-value pairs Structure is documented below.
- labels {[key: string]: string}
User-provided key-value pairs
Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field
effective_labels
for all of the labels present on the resource.- location string
- Location of Blockchain Node being created.
- name string
- The fully qualified name of the blockchain node. e.g. projects/my-project/locations/us-central1/blockchainNodes/my-node.
- project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- pulumi
Labels {[key: string]: string} - The combination of labels configured directly on the resource and default labels configured on the provider.
- update
Time string - The timestamp at which the blockchain node was last updated.
- blockchain_
node_ strid - ID of the requesting object.
- blockchain_
type str - User-provided key-value pairs
Possible values are:
ETHEREUM
. - connection_
infos Sequence[BlockchainNodes Connection Info Args] - The connection information through which to interact with a blockchain node. Structure is documented below.
- create_
time str - The timestamp at which the blockchain node was first created.
- effective_
labels Mapping[str, str] - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- ethereum_
details BlockchainNodes Ethereum Details Args - User-provided key-value pairs Structure is documented below.
- labels Mapping[str, str]
User-provided key-value pairs
Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field
effective_labels
for all of the labels present on the resource.- location str
- Location of Blockchain Node being created.
- name str
- The fully qualified name of the blockchain node. e.g. projects/my-project/locations/us-central1/blockchainNodes/my-node.
- project str
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- pulumi_
labels Mapping[str, str] - The combination of labels configured directly on the resource and default labels configured on the provider.
- update_
time str - The timestamp at which the blockchain node was last updated.
- blockchain
Node StringId - ID of the requesting object.
- blockchain
Type String - User-provided key-value pairs
Possible values are:
ETHEREUM
. - connection
Infos List<Property Map> - The connection information through which to interact with a blockchain node. Structure is documented below.
- create
Time String - The timestamp at which the blockchain node was first created.
- effective
Labels Map<String> - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- ethereum
Details Property Map - User-provided key-value pairs Structure is documented below.
- labels Map<String>
User-provided key-value pairs
Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field
effective_labels
for all of the labels present on the resource.- location String
- Location of Blockchain Node being created.
- name String
- The fully qualified name of the blockchain node. e.g. projects/my-project/locations/us-central1/blockchainNodes/my-node.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- pulumi
Labels Map<String> - The combination of labels configured directly on the resource and default labels configured on the provider.
- update
Time String - The timestamp at which the blockchain node was last updated.
Supporting Types
BlockchainNodesConnectionInfo, BlockchainNodesConnectionInfoArgs
- Endpoint
Infos List<BlockchainNodes Connection Info Endpoint Info> - (Output) The endpoint information through which to interact with a blockchain node. Structure is documented below.
- Service
Attachment string - (Output) A service attachment that exposes a node, and has the following format: projects/{project}/regions/{region}/serviceAttachments/{service_attachment_name}
- Endpoint
Infos []BlockchainNodes Connection Info Endpoint Info - (Output) The endpoint information through which to interact with a blockchain node. Structure is documented below.
- Service
Attachment string - (Output) A service attachment that exposes a node, and has the following format: projects/{project}/regions/{region}/serviceAttachments/{service_attachment_name}
- endpoint
Infos List<BlockchainNodes Connection Info Endpoint Info> - (Output) The endpoint information through which to interact with a blockchain node. Structure is documented below.
- service
Attachment String - (Output) A service attachment that exposes a node, and has the following format: projects/{project}/regions/{region}/serviceAttachments/{service_attachment_name}
- endpoint
Infos BlockchainNodes Connection Info Endpoint Info[] - (Output) The endpoint information through which to interact with a blockchain node. Structure is documented below.
- service
Attachment string - (Output) A service attachment that exposes a node, and has the following format: projects/{project}/regions/{region}/serviceAttachments/{service_attachment_name}
- endpoint_
infos Sequence[BlockchainNodes Connection Info Endpoint Info] - (Output) The endpoint information through which to interact with a blockchain node. Structure is documented below.
- service_
attachment str - (Output) A service attachment that exposes a node, and has the following format: projects/{project}/regions/{region}/serviceAttachments/{service_attachment_name}
- endpoint
Infos List<Property Map> - (Output) The endpoint information through which to interact with a blockchain node. Structure is documented below.
- service
Attachment String - (Output) A service attachment that exposes a node, and has the following format: projects/{project}/regions/{region}/serviceAttachments/{service_attachment_name}
BlockchainNodesConnectionInfoEndpointInfo, BlockchainNodesConnectionInfoEndpointInfoArgs
- Json
Rpc stringApi Endpoint - (Output) The assigned URL for the node JSON-RPC API endpoint.
- Websockets
Api stringEndpoint - (Output) The assigned URL for the node WebSockets API endpoint.
- Json
Rpc stringApi Endpoint - (Output) The assigned URL for the node JSON-RPC API endpoint.
- Websockets
Api stringEndpoint - (Output) The assigned URL for the node WebSockets API endpoint.
- json
Rpc StringApi Endpoint - (Output) The assigned URL for the node JSON-RPC API endpoint.
- websockets
Api StringEndpoint - (Output) The assigned URL for the node WebSockets API endpoint.
- json
Rpc stringApi Endpoint - (Output) The assigned URL for the node JSON-RPC API endpoint.
- websockets
Api stringEndpoint - (Output) The assigned URL for the node WebSockets API endpoint.
- json_
rpc_ strapi_ endpoint - (Output) The assigned URL for the node JSON-RPC API endpoint.
- websockets_
api_ strendpoint - (Output) The assigned URL for the node WebSockets API endpoint.
- json
Rpc StringApi Endpoint - (Output) The assigned URL for the node JSON-RPC API endpoint.
- websockets
Api StringEndpoint - (Output) The assigned URL for the node WebSockets API endpoint.
BlockchainNodesEthereumDetails, BlockchainNodesEthereumDetailsArgs
- Additional
Endpoints List<BlockchainNodes Ethereum Details Additional Endpoint> - (Output) User-provided key-value pairs Structure is documented below.
- Api
Enable boolAdmin - Enables JSON-RPC access to functions in the admin namespace. Defaults to false.
- Api
Enable boolDebug - Enables JSON-RPC access to functions in the debug namespace. Defaults to false.
- Consensus
Client string - The consensus client
Possible values are:
CONSENSUS_CLIENT_UNSPECIFIED
,LIGHTHOUSE
. - Execution
Client string - The execution client
Possible values are:
EXECUTION_CLIENT_UNSPECIFIED
,GETH
,ERIGON
. - Geth
Details BlockchainNodes Ethereum Details Geth Details - User-provided key-value pairs Structure is documented below.
- Network string
- The Ethereum environment being accessed.
Possible values are:
MAINNET
,TESTNET_GOERLI_PRATER
,TESTNET_SEPOLIA
. - Node
Type string - The type of Ethereum node.
Possible values are:
LIGHT
,FULL
,ARCHIVE
. - Validator
Config BlockchainNodes Ethereum Details Validator Config - Configuration for validator-related parameters on the beacon client, and for any managed validator client. Structure is documented below.
- Additional
Endpoints []BlockchainNodes Ethereum Details Additional Endpoint - (Output) User-provided key-value pairs Structure is documented below.
- Api
Enable boolAdmin - Enables JSON-RPC access to functions in the admin namespace. Defaults to false.
- Api
Enable boolDebug - Enables JSON-RPC access to functions in the debug namespace. Defaults to false.
- Consensus
Client string - The consensus client
Possible values are:
CONSENSUS_CLIENT_UNSPECIFIED
,LIGHTHOUSE
. - Execution
Client string - The execution client
Possible values are:
EXECUTION_CLIENT_UNSPECIFIED
,GETH
,ERIGON
. - Geth
Details BlockchainNodes Ethereum Details Geth Details - User-provided key-value pairs Structure is documented below.
- Network string
- The Ethereum environment being accessed.
Possible values are:
MAINNET
,TESTNET_GOERLI_PRATER
,TESTNET_SEPOLIA
. - Node
Type string - The type of Ethereum node.
Possible values are:
LIGHT
,FULL
,ARCHIVE
. - Validator
Config BlockchainNodes Ethereum Details Validator Config - Configuration for validator-related parameters on the beacon client, and for any managed validator client. Structure is documented below.
- additional
Endpoints List<BlockchainNodes Ethereum Details Additional Endpoint> - (Output) User-provided key-value pairs Structure is documented below.
- api
Enable BooleanAdmin - Enables JSON-RPC access to functions in the admin namespace. Defaults to false.
- api
Enable BooleanDebug - Enables JSON-RPC access to functions in the debug namespace. Defaults to false.
- consensus
Client String - The consensus client
Possible values are:
CONSENSUS_CLIENT_UNSPECIFIED
,LIGHTHOUSE
. - execution
Client String - The execution client
Possible values are:
EXECUTION_CLIENT_UNSPECIFIED
,GETH
,ERIGON
. - geth
Details BlockchainNodes Ethereum Details Geth Details - User-provided key-value pairs Structure is documented below.
- network String
- The Ethereum environment being accessed.
Possible values are:
MAINNET
,TESTNET_GOERLI_PRATER
,TESTNET_SEPOLIA
. - node
Type String - The type of Ethereum node.
Possible values are:
LIGHT
,FULL
,ARCHIVE
. - validator
Config BlockchainNodes Ethereum Details Validator Config - Configuration for validator-related parameters on the beacon client, and for any managed validator client. Structure is documented below.
- additional
Endpoints BlockchainNodes Ethereum Details Additional Endpoint[] - (Output) User-provided key-value pairs Structure is documented below.
- api
Enable booleanAdmin - Enables JSON-RPC access to functions in the admin namespace. Defaults to false.
- api
Enable booleanDebug - Enables JSON-RPC access to functions in the debug namespace. Defaults to false.
- consensus
Client string - The consensus client
Possible values are:
CONSENSUS_CLIENT_UNSPECIFIED
,LIGHTHOUSE
. - execution
Client string - The execution client
Possible values are:
EXECUTION_CLIENT_UNSPECIFIED
,GETH
,ERIGON
. - geth
Details BlockchainNodes Ethereum Details Geth Details - User-provided key-value pairs Structure is documented below.
- network string
- The Ethereum environment being accessed.
Possible values are:
MAINNET
,TESTNET_GOERLI_PRATER
,TESTNET_SEPOLIA
. - node
Type string - The type of Ethereum node.
Possible values are:
LIGHT
,FULL
,ARCHIVE
. - validator
Config BlockchainNodes Ethereum Details Validator Config - Configuration for validator-related parameters on the beacon client, and for any managed validator client. Structure is documented below.
- additional_
endpoints Sequence[BlockchainNodes Ethereum Details Additional Endpoint] - (Output) User-provided key-value pairs Structure is documented below.
- api_
enable_ booladmin - Enables JSON-RPC access to functions in the admin namespace. Defaults to false.
- api_
enable_ booldebug - Enables JSON-RPC access to functions in the debug namespace. Defaults to false.
- consensus_
client str - The consensus client
Possible values are:
CONSENSUS_CLIENT_UNSPECIFIED
,LIGHTHOUSE
. - execution_
client str - The execution client
Possible values are:
EXECUTION_CLIENT_UNSPECIFIED
,GETH
,ERIGON
. - geth_
details BlockchainNodes Ethereum Details Geth Details - User-provided key-value pairs Structure is documented below.
- network str
- The Ethereum environment being accessed.
Possible values are:
MAINNET
,TESTNET_GOERLI_PRATER
,TESTNET_SEPOLIA
. - node_
type str - The type of Ethereum node.
Possible values are:
LIGHT
,FULL
,ARCHIVE
. - validator_
config BlockchainNodes Ethereum Details Validator Config - Configuration for validator-related parameters on the beacon client, and for any managed validator client. Structure is documented below.
- additional
Endpoints List<Property Map> - (Output) User-provided key-value pairs Structure is documented below.
- api
Enable BooleanAdmin - Enables JSON-RPC access to functions in the admin namespace. Defaults to false.
- api
Enable BooleanDebug - Enables JSON-RPC access to functions in the debug namespace. Defaults to false.
- consensus
Client String - The consensus client
Possible values are:
CONSENSUS_CLIENT_UNSPECIFIED
,LIGHTHOUSE
. - execution
Client String - The execution client
Possible values are:
EXECUTION_CLIENT_UNSPECIFIED
,GETH
,ERIGON
. - geth
Details Property Map - User-provided key-value pairs Structure is documented below.
- network String
- The Ethereum environment being accessed.
Possible values are:
MAINNET
,TESTNET_GOERLI_PRATER
,TESTNET_SEPOLIA
. - node
Type String - The type of Ethereum node.
Possible values are:
LIGHT
,FULL
,ARCHIVE
. - validator
Config Property Map - Configuration for validator-related parameters on the beacon client, and for any managed validator client. Structure is documented below.
BlockchainNodesEthereumDetailsAdditionalEndpoint, BlockchainNodesEthereumDetailsAdditionalEndpointArgs
- Beacon
Api stringEndpoint - The assigned URL for the node's Beacon API endpoint.
- Beacon
Prometheus stringMetrics Api Endpoint - The assigned URL for the node's Beacon Prometheus metrics endpoint.
- Execution
Client stringPrometheus Metrics Api Endpoint - The assigned URL for the node's execution client's Prometheus metrics endpoint.
- Beacon
Api stringEndpoint - The assigned URL for the node's Beacon API endpoint.
- Beacon
Prometheus stringMetrics Api Endpoint - The assigned URL for the node's Beacon Prometheus metrics endpoint.
- Execution
Client stringPrometheus Metrics Api Endpoint - The assigned URL for the node's execution client's Prometheus metrics endpoint.
- beacon
Api StringEndpoint - The assigned URL for the node's Beacon API endpoint.
- beacon
Prometheus StringMetrics Api Endpoint - The assigned URL for the node's Beacon Prometheus metrics endpoint.
- execution
Client StringPrometheus Metrics Api Endpoint - The assigned URL for the node's execution client's Prometheus metrics endpoint.
- beacon
Api stringEndpoint - The assigned URL for the node's Beacon API endpoint.
- beacon
Prometheus stringMetrics Api Endpoint - The assigned URL for the node's Beacon Prometheus metrics endpoint.
- execution
Client stringPrometheus Metrics Api Endpoint - The assigned URL for the node's execution client's Prometheus metrics endpoint.
- beacon_
api_ strendpoint - The assigned URL for the node's Beacon API endpoint.
- beacon_
prometheus_ strmetrics_ api_ endpoint - The assigned URL for the node's Beacon Prometheus metrics endpoint.
- execution_
client_ strprometheus_ metrics_ api_ endpoint - The assigned URL for the node's execution client's Prometheus metrics endpoint.
- beacon
Api StringEndpoint - The assigned URL for the node's Beacon API endpoint.
- beacon
Prometheus StringMetrics Api Endpoint - The assigned URL for the node's Beacon Prometheus metrics endpoint.
- execution
Client StringPrometheus Metrics Api Endpoint - The assigned URL for the node's execution client's Prometheus metrics endpoint.
BlockchainNodesEthereumDetailsGethDetails, BlockchainNodesEthereumDetailsGethDetailsArgs
- Garbage
Collection stringMode Blockchain garbage collection modes. Only applicable when NodeType is FULL or ARCHIVE. Possible values are:
FULL
,ARCHIVE
.The
additional_endpoints
block contains:
- Garbage
Collection stringMode Blockchain garbage collection modes. Only applicable when NodeType is FULL or ARCHIVE. Possible values are:
FULL
,ARCHIVE
.The
additional_endpoints
block contains:
- garbage
Collection StringMode Blockchain garbage collection modes. Only applicable when NodeType is FULL or ARCHIVE. Possible values are:
FULL
,ARCHIVE
.The
additional_endpoints
block contains:
- garbage
Collection stringMode Blockchain garbage collection modes. Only applicable when NodeType is FULL or ARCHIVE. Possible values are:
FULL
,ARCHIVE
.The
additional_endpoints
block contains:
- garbage_
collection_ strmode Blockchain garbage collection modes. Only applicable when NodeType is FULL or ARCHIVE. Possible values are:
FULL
,ARCHIVE
.The
additional_endpoints
block contains:
- garbage
Collection StringMode Blockchain garbage collection modes. Only applicable when NodeType is FULL or ARCHIVE. Possible values are:
FULL
,ARCHIVE
.The
additional_endpoints
block contains:
BlockchainNodesEthereumDetailsValidatorConfig, BlockchainNodesEthereumDetailsValidatorConfigArgs
- Mev
Relay List<string>Urls - URLs for MEV-relay services to use for block building. When set, a managed MEV-boost service is configured on the beacon client.
- Mev
Relay []stringUrls - URLs for MEV-relay services to use for block building. When set, a managed MEV-boost service is configured on the beacon client.
- mev
Relay List<String>Urls - URLs for MEV-relay services to use for block building. When set, a managed MEV-boost service is configured on the beacon client.
- mev
Relay string[]Urls - URLs for MEV-relay services to use for block building. When set, a managed MEV-boost service is configured on the beacon client.
- mev_
relay_ Sequence[str]urls - URLs for MEV-relay services to use for block building. When set, a managed MEV-boost service is configured on the beacon client.
- mev
Relay List<String>Urls - URLs for MEV-relay services to use for block building. When set, a managed MEV-boost service is configured on the beacon client.
Import
BlockchainNodes can be imported using any of these accepted formats:
projects/{{project}}/locations/{{location}}/blockchainNodes/{{blockchain_node_id}}
{{project}}/{{location}}/{{blockchain_node_id}}
{{location}}/{{blockchain_node_id}}
When using the pulumi import
command, BlockchainNodes can be imported using one of the formats above. For example:
$ pulumi import gcp:blockchainnodeengine/blockchainNodes:BlockchainNodes default projects/{{project}}/locations/{{location}}/blockchainNodes/{{blockchain_node_id}}
$ pulumi import gcp:blockchainnodeengine/blockchainNodes:BlockchainNodes default {{project}}/{{location}}/{{blockchain_node_id}}
$ pulumi import gcp:blockchainnodeengine/blockchainNodes:BlockchainNodes default {{location}}/{{blockchain_node_id}}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Google Cloud (GCP) Classic pulumi/pulumi-gcp
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
google-beta
Terraform Provider.