1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. cloudids
  5. Endpoint
Google Cloud Classic v7.19.0 published on Thursday, Apr 18, 2024 by Pulumi

gcp.cloudids.Endpoint

Explore with Pulumi AI

gcp logo
Google Cloud Classic v7.19.0 published on Thursday, Apr 18, 2024 by Pulumi

    Cloud IDS is an intrusion detection service that provides threat detection for intrusions, malware, spyware, and command-and-control attacks on your network.

    To get more information about Endpoint, see:

    Example Usage

    Cloudids Endpoint

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const _default = new gcp.compute.Network("default", {name: "tf-test-my-network"});
    const serviceRange = new gcp.compute.GlobalAddress("service_range", {
        name: "address",
        purpose: "VPC_PEERING",
        addressType: "INTERNAL",
        prefixLength: 16,
        network: _default.id,
    });
    const privateServiceConnection = new gcp.servicenetworking.Connection("private_service_connection", {
        network: _default.id,
        service: "servicenetworking.googleapis.com",
        reservedPeeringRanges: [serviceRange.name],
    });
    const example_endpoint = new gcp.cloudids.Endpoint("example-endpoint", {
        name: "test",
        location: "us-central1-f",
        network: _default.id,
        severity: "INFORMATIONAL",
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    default = gcp.compute.Network("default", name="tf-test-my-network")
    service_range = gcp.compute.GlobalAddress("service_range",
        name="address",
        purpose="VPC_PEERING",
        address_type="INTERNAL",
        prefix_length=16,
        network=default.id)
    private_service_connection = gcp.servicenetworking.Connection("private_service_connection",
        network=default.id,
        service="servicenetworking.googleapis.com",
        reserved_peering_ranges=[service_range.name])
    example_endpoint = gcp.cloudids.Endpoint("example-endpoint",
        name="test",
        location="us-central1-f",
        network=default.id,
        severity="INFORMATIONAL")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/cloudids"
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/compute"
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/servicenetworking"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := compute.NewNetwork(ctx, "default", &compute.NetworkArgs{
    			Name: pulumi.String("tf-test-my-network"),
    		})
    		if err != nil {
    			return err
    		}
    		serviceRange, err := compute.NewGlobalAddress(ctx, "service_range", &compute.GlobalAddressArgs{
    			Name:         pulumi.String("address"),
    			Purpose:      pulumi.String("VPC_PEERING"),
    			AddressType:  pulumi.String("INTERNAL"),
    			PrefixLength: pulumi.Int(16),
    			Network:      _default.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = servicenetworking.NewConnection(ctx, "private_service_connection", &servicenetworking.ConnectionArgs{
    			Network: _default.ID(),
    			Service: pulumi.String("servicenetworking.googleapis.com"),
    			ReservedPeeringRanges: pulumi.StringArray{
    				serviceRange.Name,
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = cloudids.NewEndpoint(ctx, "example-endpoint", &cloudids.EndpointArgs{
    			Name:     pulumi.String("test"),
    			Location: pulumi.String("us-central1-f"),
    			Network:  _default.ID(),
    			Severity: pulumi.String("INFORMATIONAL"),
    		})
    		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 @default = new Gcp.Compute.Network("default", new()
        {
            Name = "tf-test-my-network",
        });
    
        var serviceRange = new Gcp.Compute.GlobalAddress("service_range", new()
        {
            Name = "address",
            Purpose = "VPC_PEERING",
            AddressType = "INTERNAL",
            PrefixLength = 16,
            Network = @default.Id,
        });
    
        var privateServiceConnection = new Gcp.ServiceNetworking.Connection("private_service_connection", new()
        {
            Network = @default.Id,
            Service = "servicenetworking.googleapis.com",
            ReservedPeeringRanges = new[]
            {
                serviceRange.Name,
            },
        });
    
        var example_endpoint = new Gcp.CloudIds.Endpoint("example-endpoint", new()
        {
            Name = "test",
            Location = "us-central1-f",
            Network = @default.Id,
            Severity = "INFORMATIONAL",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.compute.Network;
    import com.pulumi.gcp.compute.NetworkArgs;
    import com.pulumi.gcp.compute.GlobalAddress;
    import com.pulumi.gcp.compute.GlobalAddressArgs;
    import com.pulumi.gcp.servicenetworking.Connection;
    import com.pulumi.gcp.servicenetworking.ConnectionArgs;
    import com.pulumi.gcp.cloudids.Endpoint;
    import com.pulumi.gcp.cloudids.EndpointArgs;
    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 default_ = new Network("default", NetworkArgs.builder()        
                .name("tf-test-my-network")
                .build());
    
            var serviceRange = new GlobalAddress("serviceRange", GlobalAddressArgs.builder()        
                .name("address")
                .purpose("VPC_PEERING")
                .addressType("INTERNAL")
                .prefixLength(16)
                .network(default_.id())
                .build());
    
            var privateServiceConnection = new Connection("privateServiceConnection", ConnectionArgs.builder()        
                .network(default_.id())
                .service("servicenetworking.googleapis.com")
                .reservedPeeringRanges(serviceRange.name())
                .build());
    
            var example_endpoint = new Endpoint("example-endpoint", EndpointArgs.builder()        
                .name("test")
                .location("us-central1-f")
                .network(default_.id())
                .severity("INFORMATIONAL")
                .build());
    
        }
    }
    
    resources:
      default:
        type: gcp:compute:Network
        properties:
          name: tf-test-my-network
      serviceRange:
        type: gcp:compute:GlobalAddress
        name: service_range
        properties:
          name: address
          purpose: VPC_PEERING
          addressType: INTERNAL
          prefixLength: 16
          network: ${default.id}
      privateServiceConnection:
        type: gcp:servicenetworking:Connection
        name: private_service_connection
        properties:
          network: ${default.id}
          service: servicenetworking.googleapis.com
          reservedPeeringRanges:
            - ${serviceRange.name}
      example-endpoint:
        type: gcp:cloudids:Endpoint
        properties:
          name: test
          location: us-central1-f
          network: ${default.id}
          severity: INFORMATIONAL
    

    Create Endpoint Resource

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

    Constructor syntax

    new Endpoint(name: string, args: EndpointArgs, opts?: CustomResourceOptions);
    @overload
    def Endpoint(resource_name: str,
                 args: EndpointArgs,
                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def Endpoint(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 location: Optional[str] = None,
                 network: Optional[str] = None,
                 severity: Optional[str] = None,
                 description: Optional[str] = None,
                 name: Optional[str] = None,
                 project: Optional[str] = None,
                 threat_exceptions: Optional[Sequence[str]] = None)
    func NewEndpoint(ctx *Context, name string, args EndpointArgs, opts ...ResourceOption) (*Endpoint, error)
    public Endpoint(string name, EndpointArgs args, CustomResourceOptions? opts = null)
    public Endpoint(String name, EndpointArgs args)
    public Endpoint(String name, EndpointArgs args, CustomResourceOptions options)
    
    type: gcp:cloudids:Endpoint
    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 EndpointArgs
    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 EndpointArgs
    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 EndpointArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args EndpointArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args EndpointArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var endpointResource = new Gcp.CloudIds.Endpoint("endpointResource", new()
    {
        Location = "string",
        Network = "string",
        Severity = "string",
        Description = "string",
        Name = "string",
        Project = "string",
        ThreatExceptions = new[]
        {
            "string",
        },
    });
    
    example, err := cloudids.NewEndpoint(ctx, "endpointResource", &cloudids.EndpointArgs{
    	Location:    pulumi.String("string"),
    	Network:     pulumi.String("string"),
    	Severity:    pulumi.String("string"),
    	Description: pulumi.String("string"),
    	Name:        pulumi.String("string"),
    	Project:     pulumi.String("string"),
    	ThreatExceptions: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var endpointResource = new Endpoint("endpointResource", EndpointArgs.builder()        
        .location("string")
        .network("string")
        .severity("string")
        .description("string")
        .name("string")
        .project("string")
        .threatExceptions("string")
        .build());
    
    endpoint_resource = gcp.cloudids.Endpoint("endpointResource",
        location="string",
        network="string",
        severity="string",
        description="string",
        name="string",
        project="string",
        threat_exceptions=["string"])
    
    const endpointResource = new gcp.cloudids.Endpoint("endpointResource", {
        location: "string",
        network: "string",
        severity: "string",
        description: "string",
        name: "string",
        project: "string",
        threatExceptions: ["string"],
    });
    
    type: gcp:cloudids:Endpoint
    properties:
        description: string
        location: string
        name: string
        network: string
        project: string
        severity: string
        threatExceptions:
            - string
    

    Endpoint 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 Endpoint resource accepts the following input properties:

    Location string
    The location for the endpoint.


    Network string
    Name of the VPC network that is connected to the IDS endpoint. This can either contain the VPC network name itself (like "src-net") or the full URL to the network (like "projects/{project_id}/global/networks/src-net").
    Severity string
    The minimum alert severity level that is reported by the endpoint. Possible values are: INFORMATIONAL, LOW, MEDIUM, HIGH, CRITICAL.
    Description string
    An optional description of the endpoint.
    Name string
    Name of the endpoint in the format projects/{project_id}/locations/{locationId}/endpoints/{endpointId}.
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    ThreatExceptions List<string>
    Configuration for threat IDs excluded from generating alerts. Limit: 99 IDs.
    Location string
    The location for the endpoint.


    Network string
    Name of the VPC network that is connected to the IDS endpoint. This can either contain the VPC network name itself (like "src-net") or the full URL to the network (like "projects/{project_id}/global/networks/src-net").
    Severity string
    The minimum alert severity level that is reported by the endpoint. Possible values are: INFORMATIONAL, LOW, MEDIUM, HIGH, CRITICAL.
    Description string
    An optional description of the endpoint.
    Name string
    Name of the endpoint in the format projects/{project_id}/locations/{locationId}/endpoints/{endpointId}.
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    ThreatExceptions []string
    Configuration for threat IDs excluded from generating alerts. Limit: 99 IDs.
    location String
    The location for the endpoint.


    network String
    Name of the VPC network that is connected to the IDS endpoint. This can either contain the VPC network name itself (like "src-net") or the full URL to the network (like "projects/{project_id}/global/networks/src-net").
    severity String
    The minimum alert severity level that is reported by the endpoint. Possible values are: INFORMATIONAL, LOW, MEDIUM, HIGH, CRITICAL.
    description String
    An optional description of the endpoint.
    name String
    Name of the endpoint in the format projects/{project_id}/locations/{locationId}/endpoints/{endpointId}.
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    threatExceptions List<String>
    Configuration for threat IDs excluded from generating alerts. Limit: 99 IDs.
    location string
    The location for the endpoint.


    network string
    Name of the VPC network that is connected to the IDS endpoint. This can either contain the VPC network name itself (like "src-net") or the full URL to the network (like "projects/{project_id}/global/networks/src-net").
    severity string
    The minimum alert severity level that is reported by the endpoint. Possible values are: INFORMATIONAL, LOW, MEDIUM, HIGH, CRITICAL.
    description string
    An optional description of the endpoint.
    name string
    Name of the endpoint in the format projects/{project_id}/locations/{locationId}/endpoints/{endpointId}.
    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    threatExceptions string[]
    Configuration for threat IDs excluded from generating alerts. Limit: 99 IDs.
    location str
    The location for the endpoint.


    network str
    Name of the VPC network that is connected to the IDS endpoint. This can either contain the VPC network name itself (like "src-net") or the full URL to the network (like "projects/{project_id}/global/networks/src-net").
    severity str
    The minimum alert severity level that is reported by the endpoint. Possible values are: INFORMATIONAL, LOW, MEDIUM, HIGH, CRITICAL.
    description str
    An optional description of the endpoint.
    name str
    Name of the endpoint in the format projects/{project_id}/locations/{locationId}/endpoints/{endpointId}.
    project str
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    threat_exceptions Sequence[str]
    Configuration for threat IDs excluded from generating alerts. Limit: 99 IDs.
    location String
    The location for the endpoint.


    network String
    Name of the VPC network that is connected to the IDS endpoint. This can either contain the VPC network name itself (like "src-net") or the full URL to the network (like "projects/{project_id}/global/networks/src-net").
    severity String
    The minimum alert severity level that is reported by the endpoint. Possible values are: INFORMATIONAL, LOW, MEDIUM, HIGH, CRITICAL.
    description String
    An optional description of the endpoint.
    name String
    Name of the endpoint in the format projects/{project_id}/locations/{locationId}/endpoints/{endpointId}.
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    threatExceptions List<String>
    Configuration for threat IDs excluded from generating alerts. Limit: 99 IDs.

    Outputs

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

    CreateTime string
    Creation timestamp in RFC 3339 text format.
    EndpointForwardingRule string
    URL of the endpoint's network address to which traffic is to be sent by Packet Mirroring.
    EndpointIp string
    Internal IP address of the endpoint's network entry point.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdateTime string
    Last update timestamp in RFC 3339 text format.
    CreateTime string
    Creation timestamp in RFC 3339 text format.
    EndpointForwardingRule string
    URL of the endpoint's network address to which traffic is to be sent by Packet Mirroring.
    EndpointIp string
    Internal IP address of the endpoint's network entry point.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdateTime string
    Last update timestamp in RFC 3339 text format.
    createTime String
    Creation timestamp in RFC 3339 text format.
    endpointForwardingRule String
    URL of the endpoint's network address to which traffic is to be sent by Packet Mirroring.
    endpointIp String
    Internal IP address of the endpoint's network entry point.
    id String
    The provider-assigned unique ID for this managed resource.
    updateTime String
    Last update timestamp in RFC 3339 text format.
    createTime string
    Creation timestamp in RFC 3339 text format.
    endpointForwardingRule string
    URL of the endpoint's network address to which traffic is to be sent by Packet Mirroring.
    endpointIp string
    Internal IP address of the endpoint's network entry point.
    id string
    The provider-assigned unique ID for this managed resource.
    updateTime string
    Last update timestamp in RFC 3339 text format.
    create_time str
    Creation timestamp in RFC 3339 text format.
    endpoint_forwarding_rule str
    URL of the endpoint's network address to which traffic is to be sent by Packet Mirroring.
    endpoint_ip str
    Internal IP address of the endpoint's network entry point.
    id str
    The provider-assigned unique ID for this managed resource.
    update_time str
    Last update timestamp in RFC 3339 text format.
    createTime String
    Creation timestamp in RFC 3339 text format.
    endpointForwardingRule String
    URL of the endpoint's network address to which traffic is to be sent by Packet Mirroring.
    endpointIp String
    Internal IP address of the endpoint's network entry point.
    id String
    The provider-assigned unique ID for this managed resource.
    updateTime String
    Last update timestamp in RFC 3339 text format.

    Look up Existing Endpoint Resource

    Get an existing Endpoint 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?: EndpointState, opts?: CustomResourceOptions): Endpoint
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            create_time: Optional[str] = None,
            description: Optional[str] = None,
            endpoint_forwarding_rule: Optional[str] = None,
            endpoint_ip: Optional[str] = None,
            location: Optional[str] = None,
            name: Optional[str] = None,
            network: Optional[str] = None,
            project: Optional[str] = None,
            severity: Optional[str] = None,
            threat_exceptions: Optional[Sequence[str]] = None,
            update_time: Optional[str] = None) -> Endpoint
    func GetEndpoint(ctx *Context, name string, id IDInput, state *EndpointState, opts ...ResourceOption) (*Endpoint, error)
    public static Endpoint Get(string name, Input<string> id, EndpointState? state, CustomResourceOptions? opts = null)
    public static Endpoint get(String name, Output<String> id, EndpointState 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.
    The following state arguments are supported:
    CreateTime string
    Creation timestamp in RFC 3339 text format.
    Description string
    An optional description of the endpoint.
    EndpointForwardingRule string
    URL of the endpoint's network address to which traffic is to be sent by Packet Mirroring.
    EndpointIp string
    Internal IP address of the endpoint's network entry point.
    Location string
    The location for the endpoint.


    Name string
    Name of the endpoint in the format projects/{project_id}/locations/{locationId}/endpoints/{endpointId}.
    Network string
    Name of the VPC network that is connected to the IDS endpoint. This can either contain the VPC network name itself (like "src-net") or the full URL to the network (like "projects/{project_id}/global/networks/src-net").
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    Severity string
    The minimum alert severity level that is reported by the endpoint. Possible values are: INFORMATIONAL, LOW, MEDIUM, HIGH, CRITICAL.
    ThreatExceptions List<string>
    Configuration for threat IDs excluded from generating alerts. Limit: 99 IDs.
    UpdateTime string
    Last update timestamp in RFC 3339 text format.
    CreateTime string
    Creation timestamp in RFC 3339 text format.
    Description string
    An optional description of the endpoint.
    EndpointForwardingRule string
    URL of the endpoint's network address to which traffic is to be sent by Packet Mirroring.
    EndpointIp string
    Internal IP address of the endpoint's network entry point.
    Location string
    The location for the endpoint.


    Name string
    Name of the endpoint in the format projects/{project_id}/locations/{locationId}/endpoints/{endpointId}.
    Network string
    Name of the VPC network that is connected to the IDS endpoint. This can either contain the VPC network name itself (like "src-net") or the full URL to the network (like "projects/{project_id}/global/networks/src-net").
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    Severity string
    The minimum alert severity level that is reported by the endpoint. Possible values are: INFORMATIONAL, LOW, MEDIUM, HIGH, CRITICAL.
    ThreatExceptions []string
    Configuration for threat IDs excluded from generating alerts. Limit: 99 IDs.
    UpdateTime string
    Last update timestamp in RFC 3339 text format.
    createTime String
    Creation timestamp in RFC 3339 text format.
    description String
    An optional description of the endpoint.
    endpointForwardingRule String
    URL of the endpoint's network address to which traffic is to be sent by Packet Mirroring.
    endpointIp String
    Internal IP address of the endpoint's network entry point.
    location String
    The location for the endpoint.


    name String
    Name of the endpoint in the format projects/{project_id}/locations/{locationId}/endpoints/{endpointId}.
    network String
    Name of the VPC network that is connected to the IDS endpoint. This can either contain the VPC network name itself (like "src-net") or the full URL to the network (like "projects/{project_id}/global/networks/src-net").
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    severity String
    The minimum alert severity level that is reported by the endpoint. Possible values are: INFORMATIONAL, LOW, MEDIUM, HIGH, CRITICAL.
    threatExceptions List<String>
    Configuration for threat IDs excluded from generating alerts. Limit: 99 IDs.
    updateTime String
    Last update timestamp in RFC 3339 text format.
    createTime string
    Creation timestamp in RFC 3339 text format.
    description string
    An optional description of the endpoint.
    endpointForwardingRule string
    URL of the endpoint's network address to which traffic is to be sent by Packet Mirroring.
    endpointIp string
    Internal IP address of the endpoint's network entry point.
    location string
    The location for the endpoint.


    name string
    Name of the endpoint in the format projects/{project_id}/locations/{locationId}/endpoints/{endpointId}.
    network string
    Name of the VPC network that is connected to the IDS endpoint. This can either contain the VPC network name itself (like "src-net") or the full URL to the network (like "projects/{project_id}/global/networks/src-net").
    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    severity string
    The minimum alert severity level that is reported by the endpoint. Possible values are: INFORMATIONAL, LOW, MEDIUM, HIGH, CRITICAL.
    threatExceptions string[]
    Configuration for threat IDs excluded from generating alerts. Limit: 99 IDs.
    updateTime string
    Last update timestamp in RFC 3339 text format.
    create_time str
    Creation timestamp in RFC 3339 text format.
    description str
    An optional description of the endpoint.
    endpoint_forwarding_rule str
    URL of the endpoint's network address to which traffic is to be sent by Packet Mirroring.
    endpoint_ip str
    Internal IP address of the endpoint's network entry point.
    location str
    The location for the endpoint.


    name str
    Name of the endpoint in the format projects/{project_id}/locations/{locationId}/endpoints/{endpointId}.
    network str
    Name of the VPC network that is connected to the IDS endpoint. This can either contain the VPC network name itself (like "src-net") or the full URL to the network (like "projects/{project_id}/global/networks/src-net").
    project str
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    severity str
    The minimum alert severity level that is reported by the endpoint. Possible values are: INFORMATIONAL, LOW, MEDIUM, HIGH, CRITICAL.
    threat_exceptions Sequence[str]
    Configuration for threat IDs excluded from generating alerts. Limit: 99 IDs.
    update_time str
    Last update timestamp in RFC 3339 text format.
    createTime String
    Creation timestamp in RFC 3339 text format.
    description String
    An optional description of the endpoint.
    endpointForwardingRule String
    URL of the endpoint's network address to which traffic is to be sent by Packet Mirroring.
    endpointIp String
    Internal IP address of the endpoint's network entry point.
    location String
    The location for the endpoint.


    name String
    Name of the endpoint in the format projects/{project_id}/locations/{locationId}/endpoints/{endpointId}.
    network String
    Name of the VPC network that is connected to the IDS endpoint. This can either contain the VPC network name itself (like "src-net") or the full URL to the network (like "projects/{project_id}/global/networks/src-net").
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    severity String
    The minimum alert severity level that is reported by the endpoint. Possible values are: INFORMATIONAL, LOW, MEDIUM, HIGH, CRITICAL.
    threatExceptions List<String>
    Configuration for threat IDs excluded from generating alerts. Limit: 99 IDs.
    updateTime String
    Last update timestamp in RFC 3339 text format.

    Import

    Endpoint can be imported using any of these accepted formats:

    • projects/{{project}}/locations/{{location}}/endpoints/{{name}}

    • {{project}}/{{location}}/{{name}}

    • {{location}}/{{name}}

    When using the pulumi import command, Endpoint can be imported using one of the formats above. For example:

    $ pulumi import gcp:cloudids/endpoint:Endpoint default projects/{{project}}/locations/{{location}}/endpoints/{{name}}
    
    $ pulumi import gcp:cloudids/endpoint:Endpoint default {{project}}/{{location}}/{{name}}
    
    $ pulumi import gcp:cloudids/endpoint:Endpoint default {{location}}/{{name}}
    

    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.
    gcp logo
    Google Cloud Classic v7.19.0 published on Thursday, Apr 18, 2024 by Pulumi