pulumi-gcp 7.8.0a1706905467__py3-none-any.whl → 7.8.0a1707416007__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- pulumi_gcp/__init__.py +43 -0
- pulumi_gcp/alloydb/instance.py +1 -1
- pulumi_gcp/blockchainnodeengine/__init__.py +10 -0
- pulumi_gcp/blockchainnodeengine/_inputs.py +388 -0
- pulumi_gcp/blockchainnodeengine/blockchain_nodes.py +791 -0
- pulumi_gcp/blockchainnodeengine/outputs.py +441 -0
- pulumi_gcp/compute/__init__.py +2 -0
- pulumi_gcp/compute/disk.py +28 -0
- pulumi_gcp/compute/get_disk.py +11 -1
- pulumi_gcp/compute/get_instance_group_manager.py +11 -1
- pulumi_gcp/compute/get_machine_types.py +143 -0
- pulumi_gcp/compute/instance_group_manager.py +28 -0
- pulumi_gcp/compute/interconnect_attachment.py +75 -0
- pulumi_gcp/compute/outputs.py +219 -0
- pulumi_gcp/compute/region_instance_group_manager.py +28 -0
- pulumi_gcp/compute/region_network_endpoint.py +556 -0
- pulumi_gcp/compute/region_network_endpoint_group.py +128 -71
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/discoveryengine/__init__.py +4 -0
- pulumi_gcp/discoveryengine/_inputs.py +237 -0
- pulumi_gcp/discoveryengine/chat_engine.py +822 -0
- pulumi_gcp/discoveryengine/outputs.py +304 -0
- pulumi_gcp/discoveryengine/search_engine.py +752 -0
- pulumi_gcp/filestore/_inputs.py +1 -3
- pulumi_gcp/filestore/outputs.py +1 -3
- pulumi_gcp/memcache/instance.py +61 -0
- pulumi_gcp/netapp/__init__.py +1 -0
- pulumi_gcp/netapp/storage_pool.py +34 -6
- pulumi_gcp/netapp/volume.py +65 -2
- pulumi_gcp/netapp/volume_snapshot.py +625 -0
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/vmwareengine/private_cloud.py +0 -7
- {pulumi_gcp-7.8.0a1706905467.dist-info → pulumi_gcp-7.8.0a1707416007.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.8.0a1706905467.dist-info → pulumi_gcp-7.8.0a1707416007.dist-info}/RECORD +37 -26
- {pulumi_gcp-7.8.0a1706905467.dist-info → pulumi_gcp-7.8.0a1707416007.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.8.0a1706905467.dist-info → pulumi_gcp-7.8.0a1707416007.dist-info}/top_level.txt +0 -0
pulumi_gcp/__init__.py
CHANGED
@@ -46,6 +46,8 @@ if typing.TYPE_CHECKING:
|
|
46
46
|
billing = __billing
|
47
47
|
import pulumi_gcp.binaryauthorization as __binaryauthorization
|
48
48
|
binaryauthorization = __binaryauthorization
|
49
|
+
import pulumi_gcp.blockchainnodeengine as __blockchainnodeengine
|
50
|
+
blockchainnodeengine = __blockchainnodeengine
|
49
51
|
import pulumi_gcp.certificateauthority as __certificateauthority
|
50
52
|
certificateauthority = __certificateauthority
|
51
53
|
import pulumi_gcp.certificatemanager as __certificatemanager
|
@@ -255,6 +257,7 @@ else:
|
|
255
257
|
bigtable = _utilities.lazy_import('pulumi_gcp.bigtable')
|
256
258
|
billing = _utilities.lazy_import('pulumi_gcp.billing')
|
257
259
|
binaryauthorization = _utilities.lazy_import('pulumi_gcp.binaryauthorization')
|
260
|
+
blockchainnodeengine = _utilities.lazy_import('pulumi_gcp.blockchainnodeengine')
|
258
261
|
certificateauthority = _utilities.lazy_import('pulumi_gcp.certificateauthority')
|
259
262
|
certificatemanager = _utilities.lazy_import('pulumi_gcp.certificatemanager')
|
260
263
|
cloudasset = _utilities.lazy_import('pulumi_gcp.cloudasset')
|
@@ -1402,6 +1405,14 @@ _utilities.register(
|
|
1402
1405
|
"gcp:binaryauthorization/policy:Policy": "Policy"
|
1403
1406
|
}
|
1404
1407
|
},
|
1408
|
+
{
|
1409
|
+
"pkg": "gcp",
|
1410
|
+
"mod": "blockchainnodeengine/blockchainNodes",
|
1411
|
+
"fqn": "pulumi_gcp.blockchainnodeengine",
|
1412
|
+
"classes": {
|
1413
|
+
"gcp:blockchainnodeengine/blockchainNodes:BlockchainNodes": "BlockchainNodes"
|
1414
|
+
}
|
1415
|
+
},
|
1405
1416
|
{
|
1406
1417
|
"pkg": "gcp",
|
1407
1418
|
"mod": "certificateauthority/authority",
|
@@ -2634,6 +2645,14 @@ _utilities.register(
|
|
2634
2645
|
"gcp:compute/regionInstanceTemplate:RegionInstanceTemplate": "RegionInstanceTemplate"
|
2635
2646
|
}
|
2636
2647
|
},
|
2648
|
+
{
|
2649
|
+
"pkg": "gcp",
|
2650
|
+
"mod": "compute/regionNetworkEndpoint",
|
2651
|
+
"fqn": "pulumi_gcp.compute",
|
2652
|
+
"classes": {
|
2653
|
+
"gcp:compute/regionNetworkEndpoint:RegionNetworkEndpoint": "RegionNetworkEndpoint"
|
2654
|
+
}
|
2655
|
+
},
|
2637
2656
|
{
|
2638
2657
|
"pkg": "gcp",
|
2639
2658
|
"mod": "compute/regionNetworkEndpointGroup",
|
@@ -3858,6 +3877,14 @@ _utilities.register(
|
|
3858
3877
|
"gcp:diagflow/intent:Intent": "Intent"
|
3859
3878
|
}
|
3860
3879
|
},
|
3880
|
+
{
|
3881
|
+
"pkg": "gcp",
|
3882
|
+
"mod": "discoveryengine/chatEngine",
|
3883
|
+
"fqn": "pulumi_gcp.discoveryengine",
|
3884
|
+
"classes": {
|
3885
|
+
"gcp:discoveryengine/chatEngine:ChatEngine": "ChatEngine"
|
3886
|
+
}
|
3887
|
+
},
|
3861
3888
|
{
|
3862
3889
|
"pkg": "gcp",
|
3863
3890
|
"mod": "discoveryengine/dataStore",
|
@@ -3866,6 +3893,14 @@ _utilities.register(
|
|
3866
3893
|
"gcp:discoveryengine/dataStore:DataStore": "DataStore"
|
3867
3894
|
}
|
3868
3895
|
},
|
3896
|
+
{
|
3897
|
+
"pkg": "gcp",
|
3898
|
+
"mod": "discoveryengine/searchEngine",
|
3899
|
+
"fqn": "pulumi_gcp.discoveryengine",
|
3900
|
+
"classes": {
|
3901
|
+
"gcp:discoveryengine/searchEngine:SearchEngine": "SearchEngine"
|
3902
|
+
}
|
3903
|
+
},
|
3869
3904
|
{
|
3870
3905
|
"pkg": "gcp",
|
3871
3906
|
"mod": "dns/dnsManagedZoneIamBinding",
|
@@ -5474,6 +5509,14 @@ _utilities.register(
|
|
5474
5509
|
"gcp:netapp/volume:Volume": "Volume"
|
5475
5510
|
}
|
5476
5511
|
},
|
5512
|
+
{
|
5513
|
+
"pkg": "gcp",
|
5514
|
+
"mod": "netapp/volumeSnapshot",
|
5515
|
+
"fqn": "pulumi_gcp.netapp",
|
5516
|
+
"classes": {
|
5517
|
+
"gcp:netapp/volumeSnapshot:VolumeSnapshot": "VolumeSnapshot"
|
5518
|
+
}
|
5519
|
+
},
|
5477
5520
|
{
|
5478
5521
|
"pkg": "gcp",
|
5479
5522
|
"mod": "networkconnectivity/hub",
|
pulumi_gcp/alloydb/instance.py
CHANGED
@@ -1224,7 +1224,7 @@ class Instance(pulumi.CustomResource):
|
|
1224
1224
|
|
1225
1225
|
@property
|
1226
1226
|
@pulumi.getter(name="databaseFlags")
|
1227
|
-
def database_flags(self) -> pulumi.Output[
|
1227
|
+
def database_flags(self) -> pulumi.Output[Mapping[str, str]]:
|
1228
1228
|
"""
|
1229
1229
|
Database flags. Set at instance level. * They are copied from primary instance on read instance creation. * Read instances can set new or override existing flags that are relevant for reads, e.g. for enabling columnar cache on a read instance. Flags set on read instance may or may not be present on primary.
|
1230
1230
|
"""
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
from .. import _utilities
|
6
|
+
import typing
|
7
|
+
# Export this package's modules as members:
|
8
|
+
from .blockchain_nodes import *
|
9
|
+
from ._inputs import *
|
10
|
+
from . import outputs
|
@@ -0,0 +1,388 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import pulumi
|
8
|
+
import pulumi.runtime
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
10
|
+
from .. import _utilities
|
11
|
+
|
12
|
+
__all__ = [
|
13
|
+
'BlockchainNodesConnectionInfoArgs',
|
14
|
+
'BlockchainNodesConnectionInfoEndpointInfoArgs',
|
15
|
+
'BlockchainNodesEthereumDetailsArgs',
|
16
|
+
'BlockchainNodesEthereumDetailsAdditionalEndpointArgs',
|
17
|
+
'BlockchainNodesEthereumDetailsGethDetailsArgs',
|
18
|
+
'BlockchainNodesEthereumDetailsValidatorConfigArgs',
|
19
|
+
]
|
20
|
+
|
21
|
+
@pulumi.input_type
|
22
|
+
class BlockchainNodesConnectionInfoArgs:
|
23
|
+
def __init__(__self__, *,
|
24
|
+
endpoint_infos: Optional[pulumi.Input[Sequence[pulumi.Input['BlockchainNodesConnectionInfoEndpointInfoArgs']]]] = None,
|
25
|
+
service_attachment: Optional[pulumi.Input[str]] = None):
|
26
|
+
"""
|
27
|
+
:param pulumi.Input[Sequence[pulumi.Input['BlockchainNodesConnectionInfoEndpointInfoArgs']]] endpoint_infos: (Output)
|
28
|
+
The endpoint information through which to interact with a blockchain node.
|
29
|
+
Structure is documented below.
|
30
|
+
:param pulumi.Input[str] service_attachment: (Output)
|
31
|
+
A service attachment that exposes a node, and has the following format: projects/{project}/regions/{region}/serviceAttachments/{service_attachment_name}
|
32
|
+
"""
|
33
|
+
if endpoint_infos is not None:
|
34
|
+
pulumi.set(__self__, "endpoint_infos", endpoint_infos)
|
35
|
+
if service_attachment is not None:
|
36
|
+
pulumi.set(__self__, "service_attachment", service_attachment)
|
37
|
+
|
38
|
+
@property
|
39
|
+
@pulumi.getter(name="endpointInfos")
|
40
|
+
def endpoint_infos(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['BlockchainNodesConnectionInfoEndpointInfoArgs']]]]:
|
41
|
+
"""
|
42
|
+
(Output)
|
43
|
+
The endpoint information through which to interact with a blockchain node.
|
44
|
+
Structure is documented below.
|
45
|
+
"""
|
46
|
+
return pulumi.get(self, "endpoint_infos")
|
47
|
+
|
48
|
+
@endpoint_infos.setter
|
49
|
+
def endpoint_infos(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['BlockchainNodesConnectionInfoEndpointInfoArgs']]]]):
|
50
|
+
pulumi.set(self, "endpoint_infos", value)
|
51
|
+
|
52
|
+
@property
|
53
|
+
@pulumi.getter(name="serviceAttachment")
|
54
|
+
def service_attachment(self) -> Optional[pulumi.Input[str]]:
|
55
|
+
"""
|
56
|
+
(Output)
|
57
|
+
A service attachment that exposes a node, and has the following format: projects/{project}/regions/{region}/serviceAttachments/{service_attachment_name}
|
58
|
+
"""
|
59
|
+
return pulumi.get(self, "service_attachment")
|
60
|
+
|
61
|
+
@service_attachment.setter
|
62
|
+
def service_attachment(self, value: Optional[pulumi.Input[str]]):
|
63
|
+
pulumi.set(self, "service_attachment", value)
|
64
|
+
|
65
|
+
|
66
|
+
@pulumi.input_type
|
67
|
+
class BlockchainNodesConnectionInfoEndpointInfoArgs:
|
68
|
+
def __init__(__self__, *,
|
69
|
+
json_rpc_api_endpoint: Optional[pulumi.Input[str]] = None,
|
70
|
+
websockets_api_endpoint: Optional[pulumi.Input[str]] = None):
|
71
|
+
"""
|
72
|
+
:param pulumi.Input[str] json_rpc_api_endpoint: (Output)
|
73
|
+
The assigned URL for the node JSON-RPC API endpoint.
|
74
|
+
:param pulumi.Input[str] websockets_api_endpoint: (Output)
|
75
|
+
The assigned URL for the node WebSockets API endpoint.
|
76
|
+
"""
|
77
|
+
if json_rpc_api_endpoint is not None:
|
78
|
+
pulumi.set(__self__, "json_rpc_api_endpoint", json_rpc_api_endpoint)
|
79
|
+
if websockets_api_endpoint is not None:
|
80
|
+
pulumi.set(__self__, "websockets_api_endpoint", websockets_api_endpoint)
|
81
|
+
|
82
|
+
@property
|
83
|
+
@pulumi.getter(name="jsonRpcApiEndpoint")
|
84
|
+
def json_rpc_api_endpoint(self) -> Optional[pulumi.Input[str]]:
|
85
|
+
"""
|
86
|
+
(Output)
|
87
|
+
The assigned URL for the node JSON-RPC API endpoint.
|
88
|
+
"""
|
89
|
+
return pulumi.get(self, "json_rpc_api_endpoint")
|
90
|
+
|
91
|
+
@json_rpc_api_endpoint.setter
|
92
|
+
def json_rpc_api_endpoint(self, value: Optional[pulumi.Input[str]]):
|
93
|
+
pulumi.set(self, "json_rpc_api_endpoint", value)
|
94
|
+
|
95
|
+
@property
|
96
|
+
@pulumi.getter(name="websocketsApiEndpoint")
|
97
|
+
def websockets_api_endpoint(self) -> Optional[pulumi.Input[str]]:
|
98
|
+
"""
|
99
|
+
(Output)
|
100
|
+
The assigned URL for the node WebSockets API endpoint.
|
101
|
+
"""
|
102
|
+
return pulumi.get(self, "websockets_api_endpoint")
|
103
|
+
|
104
|
+
@websockets_api_endpoint.setter
|
105
|
+
def websockets_api_endpoint(self, value: Optional[pulumi.Input[str]]):
|
106
|
+
pulumi.set(self, "websockets_api_endpoint", value)
|
107
|
+
|
108
|
+
|
109
|
+
@pulumi.input_type
|
110
|
+
class BlockchainNodesEthereumDetailsArgs:
|
111
|
+
def __init__(__self__, *,
|
112
|
+
additional_endpoints: Optional[pulumi.Input[Sequence[pulumi.Input['BlockchainNodesEthereumDetailsAdditionalEndpointArgs']]]] = None,
|
113
|
+
api_enable_admin: Optional[pulumi.Input[bool]] = None,
|
114
|
+
api_enable_debug: Optional[pulumi.Input[bool]] = None,
|
115
|
+
consensus_client: Optional[pulumi.Input[str]] = None,
|
116
|
+
execution_client: Optional[pulumi.Input[str]] = None,
|
117
|
+
geth_details: Optional[pulumi.Input['BlockchainNodesEthereumDetailsGethDetailsArgs']] = None,
|
118
|
+
network: Optional[pulumi.Input[str]] = None,
|
119
|
+
node_type: Optional[pulumi.Input[str]] = None,
|
120
|
+
validator_config: Optional[pulumi.Input['BlockchainNodesEthereumDetailsValidatorConfigArgs']] = None):
|
121
|
+
"""
|
122
|
+
:param pulumi.Input[Sequence[pulumi.Input['BlockchainNodesEthereumDetailsAdditionalEndpointArgs']]] additional_endpoints: (Output)
|
123
|
+
User-provided key-value pairs
|
124
|
+
Structure is documented below.
|
125
|
+
:param pulumi.Input[bool] api_enable_admin: Enables JSON-RPC access to functions in the admin namespace. Defaults to false.
|
126
|
+
:param pulumi.Input[bool] api_enable_debug: Enables JSON-RPC access to functions in the debug namespace. Defaults to false.
|
127
|
+
:param pulumi.Input[str] consensus_client: The consensus client
|
128
|
+
Possible values are: `CONSENSUS_CLIENT_UNSPECIFIED`, `LIGHTHOUSE`.
|
129
|
+
:param pulumi.Input[str] execution_client: The execution client
|
130
|
+
Possible values are: `EXECUTION_CLIENT_UNSPECIFIED`, `GETH`, `ERIGON`.
|
131
|
+
:param pulumi.Input['BlockchainNodesEthereumDetailsGethDetailsArgs'] geth_details: User-provided key-value pairs
|
132
|
+
Structure is documented below.
|
133
|
+
:param pulumi.Input[str] network: The Ethereum environment being accessed.
|
134
|
+
Possible values are: `MAINNET`, `TESTNET_GOERLI_PRATER`, `TESTNET_SEPOLIA`.
|
135
|
+
:param pulumi.Input[str] node_type: The type of Ethereum node.
|
136
|
+
Possible values are: `LIGHT`, `FULL`, `ARCHIVE`.
|
137
|
+
:param pulumi.Input['BlockchainNodesEthereumDetailsValidatorConfigArgs'] validator_config: Configuration for validator-related parameters on the beacon client, and for any managed validator client.
|
138
|
+
Structure is documented below.
|
139
|
+
"""
|
140
|
+
if additional_endpoints is not None:
|
141
|
+
pulumi.set(__self__, "additional_endpoints", additional_endpoints)
|
142
|
+
if api_enable_admin is not None:
|
143
|
+
pulumi.set(__self__, "api_enable_admin", api_enable_admin)
|
144
|
+
if api_enable_debug is not None:
|
145
|
+
pulumi.set(__self__, "api_enable_debug", api_enable_debug)
|
146
|
+
if consensus_client is not None:
|
147
|
+
pulumi.set(__self__, "consensus_client", consensus_client)
|
148
|
+
if execution_client is not None:
|
149
|
+
pulumi.set(__self__, "execution_client", execution_client)
|
150
|
+
if geth_details is not None:
|
151
|
+
pulumi.set(__self__, "geth_details", geth_details)
|
152
|
+
if network is not None:
|
153
|
+
pulumi.set(__self__, "network", network)
|
154
|
+
if node_type is not None:
|
155
|
+
pulumi.set(__self__, "node_type", node_type)
|
156
|
+
if validator_config is not None:
|
157
|
+
pulumi.set(__self__, "validator_config", validator_config)
|
158
|
+
|
159
|
+
@property
|
160
|
+
@pulumi.getter(name="additionalEndpoints")
|
161
|
+
def additional_endpoints(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['BlockchainNodesEthereumDetailsAdditionalEndpointArgs']]]]:
|
162
|
+
"""
|
163
|
+
(Output)
|
164
|
+
User-provided key-value pairs
|
165
|
+
Structure is documented below.
|
166
|
+
"""
|
167
|
+
return pulumi.get(self, "additional_endpoints")
|
168
|
+
|
169
|
+
@additional_endpoints.setter
|
170
|
+
def additional_endpoints(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['BlockchainNodesEthereumDetailsAdditionalEndpointArgs']]]]):
|
171
|
+
pulumi.set(self, "additional_endpoints", value)
|
172
|
+
|
173
|
+
@property
|
174
|
+
@pulumi.getter(name="apiEnableAdmin")
|
175
|
+
def api_enable_admin(self) -> Optional[pulumi.Input[bool]]:
|
176
|
+
"""
|
177
|
+
Enables JSON-RPC access to functions in the admin namespace. Defaults to false.
|
178
|
+
"""
|
179
|
+
return pulumi.get(self, "api_enable_admin")
|
180
|
+
|
181
|
+
@api_enable_admin.setter
|
182
|
+
def api_enable_admin(self, value: Optional[pulumi.Input[bool]]):
|
183
|
+
pulumi.set(self, "api_enable_admin", value)
|
184
|
+
|
185
|
+
@property
|
186
|
+
@pulumi.getter(name="apiEnableDebug")
|
187
|
+
def api_enable_debug(self) -> Optional[pulumi.Input[bool]]:
|
188
|
+
"""
|
189
|
+
Enables JSON-RPC access to functions in the debug namespace. Defaults to false.
|
190
|
+
"""
|
191
|
+
return pulumi.get(self, "api_enable_debug")
|
192
|
+
|
193
|
+
@api_enable_debug.setter
|
194
|
+
def api_enable_debug(self, value: Optional[pulumi.Input[bool]]):
|
195
|
+
pulumi.set(self, "api_enable_debug", value)
|
196
|
+
|
197
|
+
@property
|
198
|
+
@pulumi.getter(name="consensusClient")
|
199
|
+
def consensus_client(self) -> Optional[pulumi.Input[str]]:
|
200
|
+
"""
|
201
|
+
The consensus client
|
202
|
+
Possible values are: `CONSENSUS_CLIENT_UNSPECIFIED`, `LIGHTHOUSE`.
|
203
|
+
"""
|
204
|
+
return pulumi.get(self, "consensus_client")
|
205
|
+
|
206
|
+
@consensus_client.setter
|
207
|
+
def consensus_client(self, value: Optional[pulumi.Input[str]]):
|
208
|
+
pulumi.set(self, "consensus_client", value)
|
209
|
+
|
210
|
+
@property
|
211
|
+
@pulumi.getter(name="executionClient")
|
212
|
+
def execution_client(self) -> Optional[pulumi.Input[str]]:
|
213
|
+
"""
|
214
|
+
The execution client
|
215
|
+
Possible values are: `EXECUTION_CLIENT_UNSPECIFIED`, `GETH`, `ERIGON`.
|
216
|
+
"""
|
217
|
+
return pulumi.get(self, "execution_client")
|
218
|
+
|
219
|
+
@execution_client.setter
|
220
|
+
def execution_client(self, value: Optional[pulumi.Input[str]]):
|
221
|
+
pulumi.set(self, "execution_client", value)
|
222
|
+
|
223
|
+
@property
|
224
|
+
@pulumi.getter(name="gethDetails")
|
225
|
+
def geth_details(self) -> Optional[pulumi.Input['BlockchainNodesEthereumDetailsGethDetailsArgs']]:
|
226
|
+
"""
|
227
|
+
User-provided key-value pairs
|
228
|
+
Structure is documented below.
|
229
|
+
"""
|
230
|
+
return pulumi.get(self, "geth_details")
|
231
|
+
|
232
|
+
@geth_details.setter
|
233
|
+
def geth_details(self, value: Optional[pulumi.Input['BlockchainNodesEthereumDetailsGethDetailsArgs']]):
|
234
|
+
pulumi.set(self, "geth_details", value)
|
235
|
+
|
236
|
+
@property
|
237
|
+
@pulumi.getter
|
238
|
+
def network(self) -> Optional[pulumi.Input[str]]:
|
239
|
+
"""
|
240
|
+
The Ethereum environment being accessed.
|
241
|
+
Possible values are: `MAINNET`, `TESTNET_GOERLI_PRATER`, `TESTNET_SEPOLIA`.
|
242
|
+
"""
|
243
|
+
return pulumi.get(self, "network")
|
244
|
+
|
245
|
+
@network.setter
|
246
|
+
def network(self, value: Optional[pulumi.Input[str]]):
|
247
|
+
pulumi.set(self, "network", value)
|
248
|
+
|
249
|
+
@property
|
250
|
+
@pulumi.getter(name="nodeType")
|
251
|
+
def node_type(self) -> Optional[pulumi.Input[str]]:
|
252
|
+
"""
|
253
|
+
The type of Ethereum node.
|
254
|
+
Possible values are: `LIGHT`, `FULL`, `ARCHIVE`.
|
255
|
+
"""
|
256
|
+
return pulumi.get(self, "node_type")
|
257
|
+
|
258
|
+
@node_type.setter
|
259
|
+
def node_type(self, value: Optional[pulumi.Input[str]]):
|
260
|
+
pulumi.set(self, "node_type", value)
|
261
|
+
|
262
|
+
@property
|
263
|
+
@pulumi.getter(name="validatorConfig")
|
264
|
+
def validator_config(self) -> Optional[pulumi.Input['BlockchainNodesEthereumDetailsValidatorConfigArgs']]:
|
265
|
+
"""
|
266
|
+
Configuration for validator-related parameters on the beacon client, and for any managed validator client.
|
267
|
+
Structure is documented below.
|
268
|
+
"""
|
269
|
+
return pulumi.get(self, "validator_config")
|
270
|
+
|
271
|
+
@validator_config.setter
|
272
|
+
def validator_config(self, value: Optional[pulumi.Input['BlockchainNodesEthereumDetailsValidatorConfigArgs']]):
|
273
|
+
pulumi.set(self, "validator_config", value)
|
274
|
+
|
275
|
+
|
276
|
+
@pulumi.input_type
|
277
|
+
class BlockchainNodesEthereumDetailsAdditionalEndpointArgs:
|
278
|
+
def __init__(__self__, *,
|
279
|
+
beacon_api_endpoint: Optional[pulumi.Input[str]] = None,
|
280
|
+
beacon_prometheus_metrics_api_endpoint: Optional[pulumi.Input[str]] = None,
|
281
|
+
execution_client_prometheus_metrics_api_endpoint: Optional[pulumi.Input[str]] = None):
|
282
|
+
"""
|
283
|
+
:param pulumi.Input[str] beacon_api_endpoint: (Output)
|
284
|
+
The assigned URL for the node's Beacon API endpoint.
|
285
|
+
:param pulumi.Input[str] beacon_prometheus_metrics_api_endpoint: (Output)
|
286
|
+
The assigned URL for the node's Beacon Prometheus metrics endpoint.
|
287
|
+
:param pulumi.Input[str] execution_client_prometheus_metrics_api_endpoint: (Output)
|
288
|
+
The assigned URL for the node's execution client's Prometheus metrics endpoint.
|
289
|
+
"""
|
290
|
+
if beacon_api_endpoint is not None:
|
291
|
+
pulumi.set(__self__, "beacon_api_endpoint", beacon_api_endpoint)
|
292
|
+
if beacon_prometheus_metrics_api_endpoint is not None:
|
293
|
+
pulumi.set(__self__, "beacon_prometheus_metrics_api_endpoint", beacon_prometheus_metrics_api_endpoint)
|
294
|
+
if execution_client_prometheus_metrics_api_endpoint is not None:
|
295
|
+
pulumi.set(__self__, "execution_client_prometheus_metrics_api_endpoint", execution_client_prometheus_metrics_api_endpoint)
|
296
|
+
|
297
|
+
@property
|
298
|
+
@pulumi.getter(name="beaconApiEndpoint")
|
299
|
+
def beacon_api_endpoint(self) -> Optional[pulumi.Input[str]]:
|
300
|
+
"""
|
301
|
+
(Output)
|
302
|
+
The assigned URL for the node's Beacon API endpoint.
|
303
|
+
"""
|
304
|
+
return pulumi.get(self, "beacon_api_endpoint")
|
305
|
+
|
306
|
+
@beacon_api_endpoint.setter
|
307
|
+
def beacon_api_endpoint(self, value: Optional[pulumi.Input[str]]):
|
308
|
+
pulumi.set(self, "beacon_api_endpoint", value)
|
309
|
+
|
310
|
+
@property
|
311
|
+
@pulumi.getter(name="beaconPrometheusMetricsApiEndpoint")
|
312
|
+
def beacon_prometheus_metrics_api_endpoint(self) -> Optional[pulumi.Input[str]]:
|
313
|
+
"""
|
314
|
+
(Output)
|
315
|
+
The assigned URL for the node's Beacon Prometheus metrics endpoint.
|
316
|
+
"""
|
317
|
+
return pulumi.get(self, "beacon_prometheus_metrics_api_endpoint")
|
318
|
+
|
319
|
+
@beacon_prometheus_metrics_api_endpoint.setter
|
320
|
+
def beacon_prometheus_metrics_api_endpoint(self, value: Optional[pulumi.Input[str]]):
|
321
|
+
pulumi.set(self, "beacon_prometheus_metrics_api_endpoint", value)
|
322
|
+
|
323
|
+
@property
|
324
|
+
@pulumi.getter(name="executionClientPrometheusMetricsApiEndpoint")
|
325
|
+
def execution_client_prometheus_metrics_api_endpoint(self) -> Optional[pulumi.Input[str]]:
|
326
|
+
"""
|
327
|
+
(Output)
|
328
|
+
The assigned URL for the node's execution client's Prometheus metrics endpoint.
|
329
|
+
"""
|
330
|
+
return pulumi.get(self, "execution_client_prometheus_metrics_api_endpoint")
|
331
|
+
|
332
|
+
@execution_client_prometheus_metrics_api_endpoint.setter
|
333
|
+
def execution_client_prometheus_metrics_api_endpoint(self, value: Optional[pulumi.Input[str]]):
|
334
|
+
pulumi.set(self, "execution_client_prometheus_metrics_api_endpoint", value)
|
335
|
+
|
336
|
+
|
337
|
+
@pulumi.input_type
|
338
|
+
class BlockchainNodesEthereumDetailsGethDetailsArgs:
|
339
|
+
def __init__(__self__, *,
|
340
|
+
garbage_collection_mode: Optional[pulumi.Input[str]] = None):
|
341
|
+
"""
|
342
|
+
:param pulumi.Input[str] garbage_collection_mode: Blockchain garbage collection modes. Only applicable when NodeType is FULL or ARCHIVE.
|
343
|
+
Possible values are: `FULL`, `ARCHIVE`.
|
344
|
+
|
345
|
+
<a name="nested_additional_endpoints"></a>The `additional_endpoints` block contains:
|
346
|
+
"""
|
347
|
+
if garbage_collection_mode is not None:
|
348
|
+
pulumi.set(__self__, "garbage_collection_mode", garbage_collection_mode)
|
349
|
+
|
350
|
+
@property
|
351
|
+
@pulumi.getter(name="garbageCollectionMode")
|
352
|
+
def garbage_collection_mode(self) -> Optional[pulumi.Input[str]]:
|
353
|
+
"""
|
354
|
+
Blockchain garbage collection modes. Only applicable when NodeType is FULL or ARCHIVE.
|
355
|
+
Possible values are: `FULL`, `ARCHIVE`.
|
356
|
+
|
357
|
+
<a name="nested_additional_endpoints"></a>The `additional_endpoints` block contains:
|
358
|
+
"""
|
359
|
+
return pulumi.get(self, "garbage_collection_mode")
|
360
|
+
|
361
|
+
@garbage_collection_mode.setter
|
362
|
+
def garbage_collection_mode(self, value: Optional[pulumi.Input[str]]):
|
363
|
+
pulumi.set(self, "garbage_collection_mode", value)
|
364
|
+
|
365
|
+
|
366
|
+
@pulumi.input_type
|
367
|
+
class BlockchainNodesEthereumDetailsValidatorConfigArgs:
|
368
|
+
def __init__(__self__, *,
|
369
|
+
mev_relay_urls: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
370
|
+
"""
|
371
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] mev_relay_urls: URLs for MEV-relay services to use for block building. When set, a managed MEV-boost service is configured on the beacon client.
|
372
|
+
"""
|
373
|
+
if mev_relay_urls is not None:
|
374
|
+
pulumi.set(__self__, "mev_relay_urls", mev_relay_urls)
|
375
|
+
|
376
|
+
@property
|
377
|
+
@pulumi.getter(name="mevRelayUrls")
|
378
|
+
def mev_relay_urls(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
379
|
+
"""
|
380
|
+
URLs for MEV-relay services to use for block building. When set, a managed MEV-boost service is configured on the beacon client.
|
381
|
+
"""
|
382
|
+
return pulumi.get(self, "mev_relay_urls")
|
383
|
+
|
384
|
+
@mev_relay_urls.setter
|
385
|
+
def mev_relay_urls(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
386
|
+
pulumi.set(self, "mev_relay_urls", value)
|
387
|
+
|
388
|
+
|