1. Packages
  2. Impart Security
  3. API Docs
  4. ExternalLink
Impart Security v0.9.0 published on Friday, Mar 21, 2025 by Impart Security

impart.ExternalLink

Explore with Pulumi AI

impart logo
Impart Security v0.9.0 published on Friday, Mar 21, 2025 by Impart Security

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as impart from "@impart-security/pulumi-impart";
    
    // Create a new external link
    const externalLink1 = new impart.ExternalLink("externalLink1", {
        description: "A link to Datadog dashboard for client IP address",
        entity: "request",
        jsonPathElement: "$.client_ip.address",
        name: "Datadog client IP address",
        url: "https://app.datadoghq.com/dashboard/3tm-mpc-863?tpl_var_ClientIp=9.37.130.233",
        vendor: "Datadog",
    });
    
    import pulumi
    import pulumi_impart as impart
    
    # Create a new external link
    external_link1 = impart.ExternalLink("externalLink1",
        description="A link to Datadog dashboard for client IP address",
        entity="request",
        json_path_element="$.client_ip.address",
        name="Datadog client IP address",
        url="https://app.datadoghq.com/dashboard/3tm-mpc-863?tpl_var_ClientIp=9.37.130.233",
        vendor="Datadog")
    
    package main
    
    import (
    	"github.com/impart-security/pulumi-impart/sdk/go/impart"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// Create a new external link
    		_, err := impart.NewExternalLink(ctx, "externalLink1", &impart.ExternalLinkArgs{
    			Description:     pulumi.String("A link to Datadog dashboard for client IP address"),
    			Entity:          pulumi.String("request"),
    			JsonPathElement: pulumi.String("$.client_ip.address"),
    			Name:            pulumi.String("Datadog client IP address"),
    			Url:             pulumi.String("https://app.datadoghq.com/dashboard/3tm-mpc-863?tpl_var_ClientIp=9.37.130.233"),
    			Vendor:          pulumi.String("Datadog"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Impart = Pulumi.Impart;
    
    return await Deployment.RunAsync(() => 
    {
        // Create a new external link
        var externalLink1 = new Impart.ExternalLink("externalLink1", new()
        {
            Description = "A link to Datadog dashboard for client IP address",
            Entity = "request",
            JsonPathElement = "$.client_ip.address",
            Name = "Datadog client IP address",
            Url = "https://app.datadoghq.com/dashboard/3tm-mpc-863?tpl_var_ClientIp=9.37.130.233",
            Vendor = "Datadog",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.impart.ExternalLink;
    import com.pulumi.impart.ExternalLinkArgs;
    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) {
            // Create a new external link
            var externalLink1 = new ExternalLink("externalLink1", ExternalLinkArgs.builder()
                .description("A link to Datadog dashboard for client IP address")
                .entity("request")
                .jsonPathElement("$.client_ip.address")
                .name("Datadog client IP address")
                .url("https://app.datadoghq.com/dashboard/3tm-mpc-863?tpl_var_ClientIp=9.37.130.233")
                .vendor("Datadog")
                .build());
    
        }
    }
    
    resources:
      # Create a new external link
      externalLink1:
        type: impart:ExternalLink
        properties:
          description: A link to Datadog dashboard for client IP address
          entity: request
          jsonPathElement: $.client_ip.address
          name: Datadog client IP address
          url: https://app.datadoghq.com/dashboard/3tm-mpc-863?tpl_var_ClientIp=9.37.130.233
          vendor: Datadog
    

    Create ExternalLink Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ExternalLink(name: string, args: ExternalLinkArgs, opts?: CustomResourceOptions);
    @overload
    def ExternalLink(resource_name: str,
                     args: ExternalLinkArgs,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def ExternalLink(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     entity: Optional[str] = None,
                     json_path_element: Optional[str] = None,
                     name: Optional[str] = None,
                     url: Optional[str] = None,
                     vendor: Optional[str] = None,
                     description: Optional[str] = None,
                     spec_ids: Optional[Sequence[str]] = None)
    func NewExternalLink(ctx *Context, name string, args ExternalLinkArgs, opts ...ResourceOption) (*ExternalLink, error)
    public ExternalLink(string name, ExternalLinkArgs args, CustomResourceOptions? opts = null)
    public ExternalLink(String name, ExternalLinkArgs args)
    public ExternalLink(String name, ExternalLinkArgs args, CustomResourceOptions options)
    
    type: impart:ExternalLink
    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 ExternalLinkArgs
    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 ExternalLinkArgs
    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 ExternalLinkArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ExternalLinkArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ExternalLinkArgs
    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 externalLinkResource = new Impart.ExternalLink("externalLinkResource", new()
    {
        Entity = "string",
        JsonPathElement = "string",
        Name = "string",
        Url = "string",
        Vendor = "string",
        Description = "string",
        SpecIds = new[]
        {
            "string",
        },
    });
    
    example, err := impart.NewExternalLink(ctx, "externalLinkResource", &impart.ExternalLinkArgs{
    	Entity:          pulumi.String("string"),
    	JsonPathElement: pulumi.String("string"),
    	Name:            pulumi.String("string"),
    	Url:             pulumi.String("string"),
    	Vendor:          pulumi.String("string"),
    	Description:     pulumi.String("string"),
    	SpecIds: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var externalLinkResource = new ExternalLink("externalLinkResource", ExternalLinkArgs.builder()
        .entity("string")
        .jsonPathElement("string")
        .name("string")
        .url("string")
        .vendor("string")
        .description("string")
        .specIds("string")
        .build());
    
    external_link_resource = impart.ExternalLink("externalLinkResource",
        entity="string",
        json_path_element="string",
        name="string",
        url="string",
        vendor="string",
        description="string",
        spec_ids=["string"])
    
    const externalLinkResource = new impart.ExternalLink("externalLinkResource", {
        entity: "string",
        jsonPathElement: "string",
        name: "string",
        url: "string",
        vendor: "string",
        description: "string",
        specIds: ["string"],
    });
    
    type: impart:ExternalLink
    properties:
        description: string
        entity: string
        jsonPathElement: string
        name: string
        specIds:
            - string
        url: string
        vendor: string
    

    ExternalLink Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The ExternalLink resource accepts the following input properties:

    Entity string
    The entity to which the links should be applied.
    JsonPathElement string
    A JSONPath to the element for which this link should apply (e.g. $.client_ip.address).
    Name string
    The name of the external link.
    Url string
    The external URL template with JSONPath element variables.
    Vendor string
    The vendor for the external link.
    Description string
    The description of the external link.
    SpecIds List<string>
    A list of spec IDs this external link applies to (empty means all).
    Entity string
    The entity to which the links should be applied.
    JsonPathElement string
    A JSONPath to the element for which this link should apply (e.g. $.client_ip.address).
    Name string
    The name of the external link.
    Url string
    The external URL template with JSONPath element variables.
    Vendor string
    The vendor for the external link.
    Description string
    The description of the external link.
    SpecIds []string
    A list of spec IDs this external link applies to (empty means all).
    entity String
    The entity to which the links should be applied.
    jsonPathElement String
    A JSONPath to the element for which this link should apply (e.g. $.client_ip.address).
    name String
    The name of the external link.
    url String
    The external URL template with JSONPath element variables.
    vendor String
    The vendor for the external link.
    description String
    The description of the external link.
    specIds List<String>
    A list of spec IDs this external link applies to (empty means all).
    entity string
    The entity to which the links should be applied.
    jsonPathElement string
    A JSONPath to the element for which this link should apply (e.g. $.client_ip.address).
    name string
    The name of the external link.
    url string
    The external URL template with JSONPath element variables.
    vendor string
    The vendor for the external link.
    description string
    The description of the external link.
    specIds string[]
    A list of spec IDs this external link applies to (empty means all).
    entity str
    The entity to which the links should be applied.
    json_path_element str
    A JSONPath to the element for which this link should apply (e.g. $.client_ip.address).
    name str
    The name of the external link.
    url str
    The external URL template with JSONPath element variables.
    vendor str
    The vendor for the external link.
    description str
    The description of the external link.
    spec_ids Sequence[str]
    A list of spec IDs this external link applies to (empty means all).
    entity String
    The entity to which the links should be applied.
    jsonPathElement String
    A JSONPath to the element for which this link should apply (e.g. $.client_ip.address).
    name String
    The name of the external link.
    url String
    The external URL template with JSONPath element variables.
    vendor String
    The vendor for the external link.
    description String
    The description of the external link.
    specIds List<String>
    A list of spec IDs this external link applies to (empty means all).

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ExternalLink resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing ExternalLink Resource

    Get an existing ExternalLink 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?: ExternalLinkState, opts?: CustomResourceOptions): ExternalLink
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            description: Optional[str] = None,
            entity: Optional[str] = None,
            json_path_element: Optional[str] = None,
            name: Optional[str] = None,
            spec_ids: Optional[Sequence[str]] = None,
            url: Optional[str] = None,
            vendor: Optional[str] = None) -> ExternalLink
    func GetExternalLink(ctx *Context, name string, id IDInput, state *ExternalLinkState, opts ...ResourceOption) (*ExternalLink, error)
    public static ExternalLink Get(string name, Input<string> id, ExternalLinkState? state, CustomResourceOptions? opts = null)
    public static ExternalLink get(String name, Output<String> id, ExternalLinkState state, CustomResourceOptions options)
    resources:  _:    type: impart:ExternalLink    get:      id: ${id}
    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.
    The following state arguments are supported:
    Description string
    The description of the external link.
    Entity string
    The entity to which the links should be applied.
    JsonPathElement string
    A JSONPath to the element for which this link should apply (e.g. $.client_ip.address).
    Name string
    The name of the external link.
    SpecIds List<string>
    A list of spec IDs this external link applies to (empty means all).
    Url string
    The external URL template with JSONPath element variables.
    Vendor string
    The vendor for the external link.
    Description string
    The description of the external link.
    Entity string
    The entity to which the links should be applied.
    JsonPathElement string
    A JSONPath to the element for which this link should apply (e.g. $.client_ip.address).
    Name string
    The name of the external link.
    SpecIds []string
    A list of spec IDs this external link applies to (empty means all).
    Url string
    The external URL template with JSONPath element variables.
    Vendor string
    The vendor for the external link.
    description String
    The description of the external link.
    entity String
    The entity to which the links should be applied.
    jsonPathElement String
    A JSONPath to the element for which this link should apply (e.g. $.client_ip.address).
    name String
    The name of the external link.
    specIds List<String>
    A list of spec IDs this external link applies to (empty means all).
    url String
    The external URL template with JSONPath element variables.
    vendor String
    The vendor for the external link.
    description string
    The description of the external link.
    entity string
    The entity to which the links should be applied.
    jsonPathElement string
    A JSONPath to the element for which this link should apply (e.g. $.client_ip.address).
    name string
    The name of the external link.
    specIds string[]
    A list of spec IDs this external link applies to (empty means all).
    url string
    The external URL template with JSONPath element variables.
    vendor string
    The vendor for the external link.
    description str
    The description of the external link.
    entity str
    The entity to which the links should be applied.
    json_path_element str
    A JSONPath to the element for which this link should apply (e.g. $.client_ip.address).
    name str
    The name of the external link.
    spec_ids Sequence[str]
    A list of spec IDs this external link applies to (empty means all).
    url str
    The external URL template with JSONPath element variables.
    vendor str
    The vendor for the external link.
    description String
    The description of the external link.
    entity String
    The entity to which the links should be applied.
    jsonPathElement String
    A JSONPath to the element for which this link should apply (e.g. $.client_ip.address).
    name String
    The name of the external link.
    specIds List<String>
    A list of spec IDs this external link applies to (empty means all).
    url String
    The external URL template with JSONPath element variables.
    vendor String
    The vendor for the external link.

    Package Details

    Repository
    impart impart-security/pulumi-impart
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the impart Terraform Provider.
    impart logo
    Impart Security v0.9.0 published on Friday, Mar 21, 2025 by Impart Security