1. Packages
  2. StrongDM
  3. API Docs
  4. getNode
StrongDM v1.12.0 published on Sunday, Apr 28, 2024 by Piers Karsenbarg

sdm.getNode

Explore with Pulumi AI

sdm logo
StrongDM v1.12.0 published on Sunday, Apr 28, 2024 by Piers Karsenbarg

    Nodes make up the strongDM network, and allow your users to connect securely to your resources. There are two types of nodes:

    1. Relay: creates connectivity to your datasources, while maintaining the egress-only nature of your firewall
    2. Gateways: a relay that also listens for connections from strongDM clients

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as sdm from "@pulumi/sdm";
    
    const gatewayQuery = sdm.getNode({
        tags: {
            env: "dev",
            region: "us-west",
        },
        type: "gateway",
    });
    
    import pulumi
    import pulumi_sdm as sdm
    
    gateway_query = sdm.get_node(tags={
            "env": "dev",
            "region": "us-west",
        },
        type="gateway")
    
    package main
    
    import (
    	"github.com/pierskarsenbarg/pulumi-sdm/sdk/go/sdm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := sdm.LookupNode(ctx, &sdm.LookupNodeArgs{
    			Tags: map[string]interface{}{
    				"env":    "dev",
    				"region": "us-west",
    			},
    			Type: pulumi.StringRef("gateway"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Sdm = Pulumi.Sdm;
    
    return await Deployment.RunAsync(() => 
    {
        var gatewayQuery = Sdm.GetNode.Invoke(new()
        {
            Tags = 
            {
                { "env", "dev" },
                { "region", "us-west" },
            },
            Type = "gateway",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.sdm.SdmFunctions;
    import com.pulumi.sdm.inputs.GetNodeArgs;
    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) {
            final var gatewayQuery = SdmFunctions.getNode(GetNodeArgs.builder()
                .tags(Map.ofEntries(
                    Map.entry("env", "dev"),
                    Map.entry("region", "us-west")
                ))
                .type("gateway")
                .build());
    
        }
    }
    
    variables:
      gatewayQuery:
        fn::invoke:
          Function: sdm:getNode
          Arguments:
            tags:
              env: dev
              region: us-west
            type: gateway
    

    Using getNode

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getNode(args: GetNodeArgs, opts?: InvokeOptions): Promise<GetNodeResult>
    function getNodeOutput(args: GetNodeOutputArgs, opts?: InvokeOptions): Output<GetNodeResult>
    def get_node(bind_address: Optional[str] = None,
                 id: Optional[str] = None,
                 listen_address: Optional[str] = None,
                 name: Optional[str] = None,
                 tags: Optional[Mapping[str, Any]] = None,
                 type: Optional[str] = None,
                 opts: Optional[InvokeOptions] = None) -> GetNodeResult
    def get_node_output(bind_address: Optional[pulumi.Input[str]] = None,
                 id: Optional[pulumi.Input[str]] = None,
                 listen_address: Optional[pulumi.Input[str]] = None,
                 name: Optional[pulumi.Input[str]] = None,
                 tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
                 type: Optional[pulumi.Input[str]] = None,
                 opts: Optional[InvokeOptions] = None) -> Output[GetNodeResult]
    func LookupNode(ctx *Context, args *LookupNodeArgs, opts ...InvokeOption) (*LookupNodeResult, error)
    func LookupNodeOutput(ctx *Context, args *LookupNodeOutputArgs, opts ...InvokeOption) LookupNodeResultOutput

    > Note: This function is named LookupNode in the Go SDK.

    public static class GetNode 
    {
        public static Task<GetNodeResult> InvokeAsync(GetNodeArgs args, InvokeOptions? opts = null)
        public static Output<GetNodeResult> Invoke(GetNodeInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetNodeResult> getNode(GetNodeArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: sdm:index/getNode:getNode
      arguments:
        # arguments dictionary

    The following arguments are supported:

    BindAddress string
    The hostname/port tuple which the gateway daemon will bind to. If not provided on create, set to "0.0.0.0:listen_address_port".
    Id string
    Unique identifier of the Relay.
    ListenAddress string
    The public hostname/port tuple at which the gateway will be accessible to clients.
    Name string
    Unique human-readable name of the Relay. Node names must include only letters, numbers, and hyphens (no spaces, underscores, or other special characters). Generated if not provided on create.
    Tags Dictionary<string, object>
    Tags is a map of key, value pairs.
    Type string
    a filter to select all items of a certain subtype. See the filter documentation for more information.
    BindAddress string
    The hostname/port tuple which the gateway daemon will bind to. If not provided on create, set to "0.0.0.0:listen_address_port".
    Id string
    Unique identifier of the Relay.
    ListenAddress string
    The public hostname/port tuple at which the gateway will be accessible to clients.
    Name string
    Unique human-readable name of the Relay. Node names must include only letters, numbers, and hyphens (no spaces, underscores, or other special characters). Generated if not provided on create.
    Tags map[string]interface{}
    Tags is a map of key, value pairs.
    Type string
    a filter to select all items of a certain subtype. See the filter documentation for more information.
    bindAddress String
    The hostname/port tuple which the gateway daemon will bind to. If not provided on create, set to "0.0.0.0:listen_address_port".
    id String
    Unique identifier of the Relay.
    listenAddress String
    The public hostname/port tuple at which the gateway will be accessible to clients.
    name String
    Unique human-readable name of the Relay. Node names must include only letters, numbers, and hyphens (no spaces, underscores, or other special characters). Generated if not provided on create.
    tags Map<String,Object>
    Tags is a map of key, value pairs.
    type String
    a filter to select all items of a certain subtype. See the filter documentation for more information.
    bindAddress string
    The hostname/port tuple which the gateway daemon will bind to. If not provided on create, set to "0.0.0.0:listen_address_port".
    id string
    Unique identifier of the Relay.
    listenAddress string
    The public hostname/port tuple at which the gateway will be accessible to clients.
    name string
    Unique human-readable name of the Relay. Node names must include only letters, numbers, and hyphens (no spaces, underscores, or other special characters). Generated if not provided on create.
    tags {[key: string]: any}
    Tags is a map of key, value pairs.
    type string
    a filter to select all items of a certain subtype. See the filter documentation for more information.
    bind_address str
    The hostname/port tuple which the gateway daemon will bind to. If not provided on create, set to "0.0.0.0:listen_address_port".
    id str
    Unique identifier of the Relay.
    listen_address str
    The public hostname/port tuple at which the gateway will be accessible to clients.
    name str
    Unique human-readable name of the Relay. Node names must include only letters, numbers, and hyphens (no spaces, underscores, or other special characters). Generated if not provided on create.
    tags Mapping[str, Any]
    Tags is a map of key, value pairs.
    type str
    a filter to select all items of a certain subtype. See the filter documentation for more information.
    bindAddress String
    The hostname/port tuple which the gateway daemon will bind to. If not provided on create, set to "0.0.0.0:listen_address_port".
    id String
    Unique identifier of the Relay.
    listenAddress String
    The public hostname/port tuple at which the gateway will be accessible to clients.
    name String
    Unique human-readable name of the Relay. Node names must include only letters, numbers, and hyphens (no spaces, underscores, or other special characters). Generated if not provided on create.
    tags Map<Any>
    Tags is a map of key, value pairs.
    type String
    a filter to select all items of a certain subtype. See the filter documentation for more information.

    getNode Result

    The following output properties are available:

    Ids List<string>
    a list of strings of ids of data sources that match the given arguments.
    Nodes List<PiersKarsenbarg.Sdm.Outputs.GetNodeNode>
    A single element list containing a map, where each key lists one of the following objects:

    • gateway:
    BindAddress string
    The hostname/port tuple which the gateway daemon will bind to. If not provided on create, set to "0.0.0.0:listen_address_port".
    Id string
    Unique identifier of the Relay.
    ListenAddress string
    The public hostname/port tuple at which the gateway will be accessible to clients.
    Name string
    Unique human-readable name of the Relay. Node names must include only letters, numbers, and hyphens (no spaces, underscores, or other special characters). Generated if not provided on create.
    Tags Dictionary<string, object>
    Tags is a map of key, value pairs.
    Type string
    Ids []string
    a list of strings of ids of data sources that match the given arguments.
    Nodes []GetNodeNode
    A single element list containing a map, where each key lists one of the following objects:

    • gateway:
    BindAddress string
    The hostname/port tuple which the gateway daemon will bind to. If not provided on create, set to "0.0.0.0:listen_address_port".
    Id string
    Unique identifier of the Relay.
    ListenAddress string
    The public hostname/port tuple at which the gateway will be accessible to clients.
    Name string
    Unique human-readable name of the Relay. Node names must include only letters, numbers, and hyphens (no spaces, underscores, or other special characters). Generated if not provided on create.
    Tags map[string]interface{}
    Tags is a map of key, value pairs.
    Type string
    ids List<String>
    a list of strings of ids of data sources that match the given arguments.
    nodes List<GetNodeNode>
    A single element list containing a map, where each key lists one of the following objects:

    • gateway:
    bindAddress String
    The hostname/port tuple which the gateway daemon will bind to. If not provided on create, set to "0.0.0.0:listen_address_port".
    id String
    Unique identifier of the Relay.
    listenAddress String
    The public hostname/port tuple at which the gateway will be accessible to clients.
    name String
    Unique human-readable name of the Relay. Node names must include only letters, numbers, and hyphens (no spaces, underscores, or other special characters). Generated if not provided on create.
    tags Map<String,Object>
    Tags is a map of key, value pairs.
    type String
    ids string[]
    a list of strings of ids of data sources that match the given arguments.
    nodes GetNodeNode[]
    A single element list containing a map, where each key lists one of the following objects:

    • gateway:
    bindAddress string
    The hostname/port tuple which the gateway daemon will bind to. If not provided on create, set to "0.0.0.0:listen_address_port".
    id string
    Unique identifier of the Relay.
    listenAddress string
    The public hostname/port tuple at which the gateway will be accessible to clients.
    name string
    Unique human-readable name of the Relay. Node names must include only letters, numbers, and hyphens (no spaces, underscores, or other special characters). Generated if not provided on create.
    tags {[key: string]: any}
    Tags is a map of key, value pairs.
    type string
    ids Sequence[str]
    a list of strings of ids of data sources that match the given arguments.
    nodes Sequence[GetNodeNode]
    A single element list containing a map, where each key lists one of the following objects:

    • gateway:
    bind_address str
    The hostname/port tuple which the gateway daemon will bind to. If not provided on create, set to "0.0.0.0:listen_address_port".
    id str
    Unique identifier of the Relay.
    listen_address str
    The public hostname/port tuple at which the gateway will be accessible to clients.
    name str
    Unique human-readable name of the Relay. Node names must include only letters, numbers, and hyphens (no spaces, underscores, or other special characters). Generated if not provided on create.
    tags Mapping[str, Any]
    Tags is a map of key, value pairs.
    type str
    ids List<String>
    a list of strings of ids of data sources that match the given arguments.
    nodes List<Property Map>
    A single element list containing a map, where each key lists one of the following objects:

    • gateway:
    bindAddress String
    The hostname/port tuple which the gateway daemon will bind to. If not provided on create, set to "0.0.0.0:listen_address_port".
    id String
    Unique identifier of the Relay.
    listenAddress String
    The public hostname/port tuple at which the gateway will be accessible to clients.
    name String
    Unique human-readable name of the Relay. Node names must include only letters, numbers, and hyphens (no spaces, underscores, or other special characters). Generated if not provided on create.
    tags Map<Any>
    Tags is a map of key, value pairs.
    type String

    Supporting Types

    GetNodeNode

    Gateways List<PiersKarsenbarg.Sdm.Inputs.GetNodeNodeGateway>
    Gateway represents a StrongDM CLI installation running in gateway mode.
    Relays List<PiersKarsenbarg.Sdm.Inputs.GetNodeNodeRelay>
    Relay represents a StrongDM CLI installation running in relay mode.
    Gateways []GetNodeNodeGateway
    Gateway represents a StrongDM CLI installation running in gateway mode.
    Relays []GetNodeNodeRelay
    Relay represents a StrongDM CLI installation running in relay mode.
    gateways List<GetNodeNodeGateway>
    Gateway represents a StrongDM CLI installation running in gateway mode.
    relays List<GetNodeNodeRelay>
    Relay represents a StrongDM CLI installation running in relay mode.
    gateways GetNodeNodeGateway[]
    Gateway represents a StrongDM CLI installation running in gateway mode.
    relays GetNodeNodeRelay[]
    Relay represents a StrongDM CLI installation running in relay mode.
    gateways Sequence[GetNodeNodeGateway]
    Gateway represents a StrongDM CLI installation running in gateway mode.
    relays Sequence[GetNodeNodeRelay]
    Relay represents a StrongDM CLI installation running in relay mode.
    gateways List<Property Map>
    Gateway represents a StrongDM CLI installation running in gateway mode.
    relays List<Property Map>
    Relay represents a StrongDM CLI installation running in relay mode.

    GetNodeNodeGateway

    Device string
    Device is a read only device name uploaded by the gateway process when it comes online.
    Location string
    Location is a read only network location uploaded by the gateway process when it comes online.
    Version string
    Version is a read only sdm binary version uploaded by the gateway process when it comes online.
    BindAddress string
    The hostname/port tuple which the gateway daemon will bind to. If not provided on create, set to "0.0.0.0:listen_address_port".
    GatewayFilter string
    GatewayFilter can be used to restrict the peering between relays and gateways. Deprecated.
    Id string
    Unique identifier of the Relay.
    ListenAddress string
    The public hostname/port tuple at which the gateway will be accessible to clients.
    MaintenanceWindows List<PiersKarsenbarg.Sdm.Inputs.GetNodeNodeGatewayMaintenanceWindow>
    Maintenance Windows define when this node is allowed to restart. If a node is requested to restart, it will check each window to determine if any of them permit it to restart, and if any do, it will. This check is repeated per window until the restart is successfully completed. If not set here, may be set on the command line or via an environment variable on the process itself; any server setting will take precedence over local settings. This setting is ineffective for nodes below version 38.44.0. If this setting is not applied via this remote configuration or via local configuration, the default setting is used: always allow restarts if serving no connections, and allow a restart even if serving connections between 7-8 UTC, any day.
    Name string
    Unique human-readable name of the Relay. Node names must include only letters, numbers, and hyphens (no spaces, underscores, or other special characters). Generated if not provided on create.
    Tags Dictionary<string, string>
    Tags is a map of key, value pairs.
    Device string
    Device is a read only device name uploaded by the gateway process when it comes online.
    Location string
    Location is a read only network location uploaded by the gateway process when it comes online.
    Version string
    Version is a read only sdm binary version uploaded by the gateway process when it comes online.
    BindAddress string
    The hostname/port tuple which the gateway daemon will bind to. If not provided on create, set to "0.0.0.0:listen_address_port".
    GatewayFilter string
    GatewayFilter can be used to restrict the peering between relays and gateways. Deprecated.
    Id string
    Unique identifier of the Relay.
    ListenAddress string
    The public hostname/port tuple at which the gateway will be accessible to clients.
    MaintenanceWindows []GetNodeNodeGatewayMaintenanceWindow
    Maintenance Windows define when this node is allowed to restart. If a node is requested to restart, it will check each window to determine if any of them permit it to restart, and if any do, it will. This check is repeated per window until the restart is successfully completed. If not set here, may be set on the command line or via an environment variable on the process itself; any server setting will take precedence over local settings. This setting is ineffective for nodes below version 38.44.0. If this setting is not applied via this remote configuration or via local configuration, the default setting is used: always allow restarts if serving no connections, and allow a restart even if serving connections between 7-8 UTC, any day.
    Name string
    Unique human-readable name of the Relay. Node names must include only letters, numbers, and hyphens (no spaces, underscores, or other special characters). Generated if not provided on create.
    Tags map[string]string
    Tags is a map of key, value pairs.
    device String
    Device is a read only device name uploaded by the gateway process when it comes online.
    location String
    Location is a read only network location uploaded by the gateway process when it comes online.
    version String
    Version is a read only sdm binary version uploaded by the gateway process when it comes online.
    bindAddress String
    The hostname/port tuple which the gateway daemon will bind to. If not provided on create, set to "0.0.0.0:listen_address_port".
    gatewayFilter String
    GatewayFilter can be used to restrict the peering between relays and gateways. Deprecated.
    id String
    Unique identifier of the Relay.
    listenAddress String
    The public hostname/port tuple at which the gateway will be accessible to clients.
    maintenanceWindows List<GetNodeNodeGatewayMaintenanceWindow>
    Maintenance Windows define when this node is allowed to restart. If a node is requested to restart, it will check each window to determine if any of them permit it to restart, and if any do, it will. This check is repeated per window until the restart is successfully completed. If not set here, may be set on the command line or via an environment variable on the process itself; any server setting will take precedence over local settings. This setting is ineffective for nodes below version 38.44.0. If this setting is not applied via this remote configuration or via local configuration, the default setting is used: always allow restarts if serving no connections, and allow a restart even if serving connections between 7-8 UTC, any day.
    name String
    Unique human-readable name of the Relay. Node names must include only letters, numbers, and hyphens (no spaces, underscores, or other special characters). Generated if not provided on create.
    tags Map<String,String>
    Tags is a map of key, value pairs.
    device string
    Device is a read only device name uploaded by the gateway process when it comes online.
    location string
    Location is a read only network location uploaded by the gateway process when it comes online.
    version string
    Version is a read only sdm binary version uploaded by the gateway process when it comes online.
    bindAddress string
    The hostname/port tuple which the gateway daemon will bind to. If not provided on create, set to "0.0.0.0:listen_address_port".
    gatewayFilter string
    GatewayFilter can be used to restrict the peering between relays and gateways. Deprecated.
    id string
    Unique identifier of the Relay.
    listenAddress string
    The public hostname/port tuple at which the gateway will be accessible to clients.
    maintenanceWindows GetNodeNodeGatewayMaintenanceWindow[]
    Maintenance Windows define when this node is allowed to restart. If a node is requested to restart, it will check each window to determine if any of them permit it to restart, and if any do, it will. This check is repeated per window until the restart is successfully completed. If not set here, may be set on the command line or via an environment variable on the process itself; any server setting will take precedence over local settings. This setting is ineffective for nodes below version 38.44.0. If this setting is not applied via this remote configuration or via local configuration, the default setting is used: always allow restarts if serving no connections, and allow a restart even if serving connections between 7-8 UTC, any day.
    name string
    Unique human-readable name of the Relay. Node names must include only letters, numbers, and hyphens (no spaces, underscores, or other special characters). Generated if not provided on create.
    tags {[key: string]: string}
    Tags is a map of key, value pairs.
    device str
    Device is a read only device name uploaded by the gateway process when it comes online.
    location str
    Location is a read only network location uploaded by the gateway process when it comes online.
    version str
    Version is a read only sdm binary version uploaded by the gateway process when it comes online.
    bind_address str
    The hostname/port tuple which the gateway daemon will bind to. If not provided on create, set to "0.0.0.0:listen_address_port".
    gateway_filter str
    GatewayFilter can be used to restrict the peering between relays and gateways. Deprecated.
    id str
    Unique identifier of the Relay.
    listen_address str
    The public hostname/port tuple at which the gateway will be accessible to clients.
    maintenance_windows Sequence[GetNodeNodeGatewayMaintenanceWindow]
    Maintenance Windows define when this node is allowed to restart. If a node is requested to restart, it will check each window to determine if any of them permit it to restart, and if any do, it will. This check is repeated per window until the restart is successfully completed. If not set here, may be set on the command line or via an environment variable on the process itself; any server setting will take precedence over local settings. This setting is ineffective for nodes below version 38.44.0. If this setting is not applied via this remote configuration or via local configuration, the default setting is used: always allow restarts if serving no connections, and allow a restart even if serving connections between 7-8 UTC, any day.
    name str
    Unique human-readable name of the Relay. Node names must include only letters, numbers, and hyphens (no spaces, underscores, or other special characters). Generated if not provided on create.
    tags Mapping[str, str]
    Tags is a map of key, value pairs.
    device String
    Device is a read only device name uploaded by the gateway process when it comes online.
    location String
    Location is a read only network location uploaded by the gateway process when it comes online.
    version String
    Version is a read only sdm binary version uploaded by the gateway process when it comes online.
    bindAddress String
    The hostname/port tuple which the gateway daemon will bind to. If not provided on create, set to "0.0.0.0:listen_address_port".
    gatewayFilter String
    GatewayFilter can be used to restrict the peering between relays and gateways. Deprecated.
    id String
    Unique identifier of the Relay.
    listenAddress String
    The public hostname/port tuple at which the gateway will be accessible to clients.
    maintenanceWindows List<Property Map>
    Maintenance Windows define when this node is allowed to restart. If a node is requested to restart, it will check each window to determine if any of them permit it to restart, and if any do, it will. This check is repeated per window until the restart is successfully completed. If not set here, may be set on the command line or via an environment variable on the process itself; any server setting will take precedence over local settings. This setting is ineffective for nodes below version 38.44.0. If this setting is not applied via this remote configuration or via local configuration, the default setting is used: always allow restarts if serving no connections, and allow a restart even if serving connections between 7-8 UTC, any day.
    name String
    Unique human-readable name of the Relay. Node names must include only letters, numbers, and hyphens (no spaces, underscores, or other special characters). Generated if not provided on create.
    tags Map<String>
    Tags is a map of key, value pairs.

    GetNodeNodeGatewayMaintenanceWindow

    GetNodeNodeRelay

    Device string
    Device is a read only device name uploaded by the gateway process when it comes online.
    Location string
    Location is a read only network location uploaded by the gateway process when it comes online.
    Version string
    Version is a read only sdm binary version uploaded by the gateway process when it comes online.
    GatewayFilter string
    GatewayFilter can be used to restrict the peering between relays and gateways. Deprecated.
    Id string
    Unique identifier of the Relay.
    MaintenanceWindows List<PiersKarsenbarg.Sdm.Inputs.GetNodeNodeRelayMaintenanceWindow>
    Maintenance Windows define when this node is allowed to restart. If a node is requested to restart, it will check each window to determine if any of them permit it to restart, and if any do, it will. This check is repeated per window until the restart is successfully completed. If not set here, may be set on the command line or via an environment variable on the process itself; any server setting will take precedence over local settings. This setting is ineffective for nodes below version 38.44.0. If this setting is not applied via this remote configuration or via local configuration, the default setting is used: always allow restarts if serving no connections, and allow a restart even if serving connections between 7-8 UTC, any day.
    Name string
    Unique human-readable name of the Relay. Node names must include only letters, numbers, and hyphens (no spaces, underscores, or other special characters). Generated if not provided on create.
    Tags Dictionary<string, string>
    Tags is a map of key, value pairs.
    Device string
    Device is a read only device name uploaded by the gateway process when it comes online.
    Location string
    Location is a read only network location uploaded by the gateway process when it comes online.
    Version string
    Version is a read only sdm binary version uploaded by the gateway process when it comes online.
    GatewayFilter string
    GatewayFilter can be used to restrict the peering between relays and gateways. Deprecated.
    Id string
    Unique identifier of the Relay.
    MaintenanceWindows []GetNodeNodeRelayMaintenanceWindow
    Maintenance Windows define when this node is allowed to restart. If a node is requested to restart, it will check each window to determine if any of them permit it to restart, and if any do, it will. This check is repeated per window until the restart is successfully completed. If not set here, may be set on the command line or via an environment variable on the process itself; any server setting will take precedence over local settings. This setting is ineffective for nodes below version 38.44.0. If this setting is not applied via this remote configuration or via local configuration, the default setting is used: always allow restarts if serving no connections, and allow a restart even if serving connections between 7-8 UTC, any day.
    Name string
    Unique human-readable name of the Relay. Node names must include only letters, numbers, and hyphens (no spaces, underscores, or other special characters). Generated if not provided on create.
    Tags map[string]string
    Tags is a map of key, value pairs.
    device String
    Device is a read only device name uploaded by the gateway process when it comes online.
    location String
    Location is a read only network location uploaded by the gateway process when it comes online.
    version String
    Version is a read only sdm binary version uploaded by the gateway process when it comes online.
    gatewayFilter String
    GatewayFilter can be used to restrict the peering between relays and gateways. Deprecated.
    id String
    Unique identifier of the Relay.
    maintenanceWindows List<GetNodeNodeRelayMaintenanceWindow>
    Maintenance Windows define when this node is allowed to restart. If a node is requested to restart, it will check each window to determine if any of them permit it to restart, and if any do, it will. This check is repeated per window until the restart is successfully completed. If not set here, may be set on the command line or via an environment variable on the process itself; any server setting will take precedence over local settings. This setting is ineffective for nodes below version 38.44.0. If this setting is not applied via this remote configuration or via local configuration, the default setting is used: always allow restarts if serving no connections, and allow a restart even if serving connections between 7-8 UTC, any day.
    name String
    Unique human-readable name of the Relay. Node names must include only letters, numbers, and hyphens (no spaces, underscores, or other special characters). Generated if not provided on create.
    tags Map<String,String>
    Tags is a map of key, value pairs.
    device string
    Device is a read only device name uploaded by the gateway process when it comes online.
    location string
    Location is a read only network location uploaded by the gateway process when it comes online.
    version string
    Version is a read only sdm binary version uploaded by the gateway process when it comes online.
    gatewayFilter string
    GatewayFilter can be used to restrict the peering between relays and gateways. Deprecated.
    id string
    Unique identifier of the Relay.
    maintenanceWindows GetNodeNodeRelayMaintenanceWindow[]
    Maintenance Windows define when this node is allowed to restart. If a node is requested to restart, it will check each window to determine if any of them permit it to restart, and if any do, it will. This check is repeated per window until the restart is successfully completed. If not set here, may be set on the command line or via an environment variable on the process itself; any server setting will take precedence over local settings. This setting is ineffective for nodes below version 38.44.0. If this setting is not applied via this remote configuration or via local configuration, the default setting is used: always allow restarts if serving no connections, and allow a restart even if serving connections between 7-8 UTC, any day.
    name string
    Unique human-readable name of the Relay. Node names must include only letters, numbers, and hyphens (no spaces, underscores, or other special characters). Generated if not provided on create.
    tags {[key: string]: string}
    Tags is a map of key, value pairs.
    device str
    Device is a read only device name uploaded by the gateway process when it comes online.
    location str
    Location is a read only network location uploaded by the gateway process when it comes online.
    version str
    Version is a read only sdm binary version uploaded by the gateway process when it comes online.
    gateway_filter str
    GatewayFilter can be used to restrict the peering between relays and gateways. Deprecated.
    id str
    Unique identifier of the Relay.
    maintenance_windows Sequence[GetNodeNodeRelayMaintenanceWindow]
    Maintenance Windows define when this node is allowed to restart. If a node is requested to restart, it will check each window to determine if any of them permit it to restart, and if any do, it will. This check is repeated per window until the restart is successfully completed. If not set here, may be set on the command line or via an environment variable on the process itself; any server setting will take precedence over local settings. This setting is ineffective for nodes below version 38.44.0. If this setting is not applied via this remote configuration or via local configuration, the default setting is used: always allow restarts if serving no connections, and allow a restart even if serving connections between 7-8 UTC, any day.
    name str
    Unique human-readable name of the Relay. Node names must include only letters, numbers, and hyphens (no spaces, underscores, or other special characters). Generated if not provided on create.
    tags Mapping[str, str]
    Tags is a map of key, value pairs.
    device String
    Device is a read only device name uploaded by the gateway process when it comes online.
    location String
    Location is a read only network location uploaded by the gateway process when it comes online.
    version String
    Version is a read only sdm binary version uploaded by the gateway process when it comes online.
    gatewayFilter String
    GatewayFilter can be used to restrict the peering between relays and gateways. Deprecated.
    id String
    Unique identifier of the Relay.
    maintenanceWindows List<Property Map>
    Maintenance Windows define when this node is allowed to restart. If a node is requested to restart, it will check each window to determine if any of them permit it to restart, and if any do, it will. This check is repeated per window until the restart is successfully completed. If not set here, may be set on the command line or via an environment variable on the process itself; any server setting will take precedence over local settings. This setting is ineffective for nodes below version 38.44.0. If this setting is not applied via this remote configuration or via local configuration, the default setting is used: always allow restarts if serving no connections, and allow a restart even if serving connections between 7-8 UTC, any day.
    name String
    Unique human-readable name of the Relay. Node names must include only letters, numbers, and hyphens (no spaces, underscores, or other special characters). Generated if not provided on create.
    tags Map<String>
    Tags is a map of key, value pairs.

    GetNodeNodeRelayMaintenanceWindow

    Package Details

    Repository
    sdm pierskarsenbarg/pulumi-sdm
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the sdm Terraform Provider.
    sdm logo
    StrongDM v1.12.0 published on Sunday, Apr 28, 2024 by Piers Karsenbarg