1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. networksecurity
  5. InterceptEndpointGroup
Google Cloud v8.14.0 published on Wednesday, Jan 15, 2025 by Pulumi

gcp.networksecurity.InterceptEndpointGroup

Explore with Pulumi AI

gcp logo
Google Cloud v8.14.0 published on Wednesday, Jan 15, 2025 by Pulumi

    Example Usage

    Network Security Intercept Endpoint Group Basic

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const network = new gcp.compute.Network("network", {
        name: "example-network",
        autoCreateSubnetworks: false,
    });
    const deploymentGroup = new gcp.networksecurity.InterceptDeploymentGroup("deployment_group", {
        interceptDeploymentGroupId: "example-dg",
        location: "global",
        network: network.id,
    });
    const _default = new gcp.networksecurity.InterceptEndpointGroup("default", {
        interceptEndpointGroupId: "example-eg",
        location: "global",
        interceptDeploymentGroup: deploymentGroup.id,
        labels: {
            foo: "bar",
        },
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    network = gcp.compute.Network("network",
        name="example-network",
        auto_create_subnetworks=False)
    deployment_group = gcp.networksecurity.InterceptDeploymentGroup("deployment_group",
        intercept_deployment_group_id="example-dg",
        location="global",
        network=network.id)
    default = gcp.networksecurity.InterceptEndpointGroup("default",
        intercept_endpoint_group_id="example-eg",
        location="global",
        intercept_deployment_group=deployment_group.id,
        labels={
            "foo": "bar",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/compute"
    	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/networksecurity"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		network, err := compute.NewNetwork(ctx, "network", &compute.NetworkArgs{
    			Name:                  pulumi.String("example-network"),
    			AutoCreateSubnetworks: pulumi.Bool(false),
    		})
    		if err != nil {
    			return err
    		}
    		deploymentGroup, err := networksecurity.NewInterceptDeploymentGroup(ctx, "deployment_group", &networksecurity.InterceptDeploymentGroupArgs{
    			InterceptDeploymentGroupId: pulumi.String("example-dg"),
    			Location:                   pulumi.String("global"),
    			Network:                    network.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = networksecurity.NewInterceptEndpointGroup(ctx, "default", &networksecurity.InterceptEndpointGroupArgs{
    			InterceptEndpointGroupId: pulumi.String("example-eg"),
    			Location:                 pulumi.String("global"),
    			InterceptDeploymentGroup: deploymentGroup.ID(),
    			Labels: pulumi.StringMap{
    				"foo": pulumi.String("bar"),
    			},
    		})
    		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 network = new Gcp.Compute.Network("network", new()
        {
            Name = "example-network",
            AutoCreateSubnetworks = false,
        });
    
        var deploymentGroup = new Gcp.NetworkSecurity.InterceptDeploymentGroup("deployment_group", new()
        {
            InterceptDeploymentGroupId = "example-dg",
            Location = "global",
            Network = network.Id,
        });
    
        var @default = new Gcp.NetworkSecurity.InterceptEndpointGroup("default", new()
        {
            InterceptEndpointGroupId = "example-eg",
            Location = "global",
            InterceptDeploymentGroup = deploymentGroup.Id,
            Labels = 
            {
                { "foo", "bar" },
            },
        });
    
    });
    
    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.networksecurity.InterceptDeploymentGroup;
    import com.pulumi.gcp.networksecurity.InterceptDeploymentGroupArgs;
    import com.pulumi.gcp.networksecurity.InterceptEndpointGroup;
    import com.pulumi.gcp.networksecurity.InterceptEndpointGroupArgs;
    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 network = new Network("network", NetworkArgs.builder()
                .name("example-network")
                .autoCreateSubnetworks(false)
                .build());
    
            var deploymentGroup = new InterceptDeploymentGroup("deploymentGroup", InterceptDeploymentGroupArgs.builder()
                .interceptDeploymentGroupId("example-dg")
                .location("global")
                .network(network.id())
                .build());
    
            var default_ = new InterceptEndpointGroup("default", InterceptEndpointGroupArgs.builder()
                .interceptEndpointGroupId("example-eg")
                .location("global")
                .interceptDeploymentGroup(deploymentGroup.id())
                .labels(Map.of("foo", "bar"))
                .build());
    
        }
    }
    
    resources:
      network:
        type: gcp:compute:Network
        properties:
          name: example-network
          autoCreateSubnetworks: false
      deploymentGroup:
        type: gcp:networksecurity:InterceptDeploymentGroup
        name: deployment_group
        properties:
          interceptDeploymentGroupId: example-dg
          location: global
          network: ${network.id}
      default:
        type: gcp:networksecurity:InterceptEndpointGroup
        properties:
          interceptEndpointGroupId: example-eg
          location: global
          interceptDeploymentGroup: ${deploymentGroup.id}
          labels:
            foo: bar
    

    Create InterceptEndpointGroup Resource

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

    Constructor syntax

    new InterceptEndpointGroup(name: string, args: InterceptEndpointGroupArgs, opts?: CustomResourceOptions);
    @overload
    def InterceptEndpointGroup(resource_name: str,
                               args: InterceptEndpointGroupArgs,
                               opts: Optional[ResourceOptions] = None)
    
    @overload
    def InterceptEndpointGroup(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               intercept_deployment_group: Optional[str] = None,
                               intercept_endpoint_group_id: Optional[str] = None,
                               location: Optional[str] = None,
                               labels: Optional[Mapping[str, str]] = None,
                               project: Optional[str] = None)
    func NewInterceptEndpointGroup(ctx *Context, name string, args InterceptEndpointGroupArgs, opts ...ResourceOption) (*InterceptEndpointGroup, error)
    public InterceptEndpointGroup(string name, InterceptEndpointGroupArgs args, CustomResourceOptions? opts = null)
    public InterceptEndpointGroup(String name, InterceptEndpointGroupArgs args)
    public InterceptEndpointGroup(String name, InterceptEndpointGroupArgs args, CustomResourceOptions options)
    
    type: gcp:networksecurity:InterceptEndpointGroup
    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 InterceptEndpointGroupArgs
    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 InterceptEndpointGroupArgs
    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 InterceptEndpointGroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args InterceptEndpointGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args InterceptEndpointGroupArgs
    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 interceptEndpointGroupResource = new Gcp.NetworkSecurity.InterceptEndpointGroup("interceptEndpointGroupResource", new()
    {
        InterceptDeploymentGroup = "string",
        InterceptEndpointGroupId = "string",
        Location = "string",
        Labels = 
        {
            { "string", "string" },
        },
        Project = "string",
    });
    
    example, err := networksecurity.NewInterceptEndpointGroup(ctx, "interceptEndpointGroupResource", &networksecurity.InterceptEndpointGroupArgs{
    	InterceptDeploymentGroup: pulumi.String("string"),
    	InterceptEndpointGroupId: pulumi.String("string"),
    	Location:                 pulumi.String("string"),
    	Labels: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Project: pulumi.String("string"),
    })
    
    var interceptEndpointGroupResource = new InterceptEndpointGroup("interceptEndpointGroupResource", InterceptEndpointGroupArgs.builder()
        .interceptDeploymentGroup("string")
        .interceptEndpointGroupId("string")
        .location("string")
        .labels(Map.of("string", "string"))
        .project("string")
        .build());
    
    intercept_endpoint_group_resource = gcp.networksecurity.InterceptEndpointGroup("interceptEndpointGroupResource",
        intercept_deployment_group="string",
        intercept_endpoint_group_id="string",
        location="string",
        labels={
            "string": "string",
        },
        project="string")
    
    const interceptEndpointGroupResource = new gcp.networksecurity.InterceptEndpointGroup("interceptEndpointGroupResource", {
        interceptDeploymentGroup: "string",
        interceptEndpointGroupId: "string",
        location: "string",
        labels: {
            string: "string",
        },
        project: "string",
    });
    
    type: gcp:networksecurity:InterceptEndpointGroup
    properties:
        interceptDeploymentGroup: string
        interceptEndpointGroupId: string
        labels:
            string: string
        location: string
        project: string
    

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

    InterceptDeploymentGroup string
    Immutable. The Intercept Deployment Group that this resource is connected to. Format is: projects/{project}/locations/global/interceptDeploymentGroups/{interceptDeploymentGroup}
    InterceptEndpointGroupId string
    ID of the Intercept Endpoint Group.


    Location string
    The location of the Intercept Endpoint Group, currently restricted to global.
    Labels Dictionary<string, string>
    Optional. Labels as key value pairs Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    InterceptDeploymentGroup string
    Immutable. The Intercept Deployment Group that this resource is connected to. Format is: projects/{project}/locations/global/interceptDeploymentGroups/{interceptDeploymentGroup}
    InterceptEndpointGroupId string
    ID of the Intercept Endpoint Group.


    Location string
    The location of the Intercept Endpoint Group, currently restricted to global.
    Labels map[string]string
    Optional. Labels as key value pairs Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    interceptDeploymentGroup String
    Immutable. The Intercept Deployment Group that this resource is connected to. Format is: projects/{project}/locations/global/interceptDeploymentGroups/{interceptDeploymentGroup}
    interceptEndpointGroupId String
    ID of the Intercept Endpoint Group.


    location String
    The location of the Intercept Endpoint Group, currently restricted to global.
    labels Map<String,String>
    Optional. Labels as key value pairs Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    interceptDeploymentGroup string
    Immutable. The Intercept Deployment Group that this resource is connected to. Format is: projects/{project}/locations/global/interceptDeploymentGroups/{interceptDeploymentGroup}
    interceptEndpointGroupId string
    ID of the Intercept Endpoint Group.


    location string
    The location of the Intercept Endpoint Group, currently restricted to global.
    labels {[key: string]: string}
    Optional. Labels as key value pairs Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    intercept_deployment_group str
    Immutable. The Intercept Deployment Group that this resource is connected to. Format is: projects/{project}/locations/global/interceptDeploymentGroups/{interceptDeploymentGroup}
    intercept_endpoint_group_id str
    ID of the Intercept Endpoint Group.


    location str
    The location of the Intercept Endpoint Group, currently restricted to global.
    labels Mapping[str, str]
    Optional. Labels as key value pairs Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    project str
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    interceptDeploymentGroup String
    Immutable. The Intercept Deployment Group that this resource is connected to. Format is: projects/{project}/locations/global/interceptDeploymentGroups/{interceptDeploymentGroup}
    interceptEndpointGroupId String
    ID of the Intercept Endpoint Group.


    location String
    The location of the Intercept Endpoint Group, currently restricted to global.
    labels Map<String>
    Optional. Labels as key value pairs Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

    Outputs

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

    CreateTime string
    Create time stamp.
    EffectiveLabels Dictionary<string, string>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Identifier. The name of the Intercept Endpoint Group.
    PulumiLabels Dictionary<string, string>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    Reconciling bool
    Whether reconciling is in progress, recommended per https://google.aip.dev/128.
    State string
    Current state of the endpoint group. Possible values: STATE_UNSPECIFIED ACTIVE CLOSED CREATING DELETING OUT_OF_SYNC
    UpdateTime string
    Update time stamp.
    CreateTime string
    Create time stamp.
    EffectiveLabels map[string]string
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Identifier. The name of the Intercept Endpoint Group.
    PulumiLabels map[string]string
    The combination of labels configured directly on the resource and default labels configured on the provider.
    Reconciling bool
    Whether reconciling is in progress, recommended per https://google.aip.dev/128.
    State string
    Current state of the endpoint group. Possible values: STATE_UNSPECIFIED ACTIVE CLOSED CREATING DELETING OUT_OF_SYNC
    UpdateTime string
    Update time stamp.
    createTime String
    Create time stamp.
    effectiveLabels Map<String,String>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Identifier. The name of the Intercept Endpoint Group.
    pulumiLabels Map<String,String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    reconciling Boolean
    Whether reconciling is in progress, recommended per https://google.aip.dev/128.
    state String
    Current state of the endpoint group. Possible values: STATE_UNSPECIFIED ACTIVE CLOSED CREATING DELETING OUT_OF_SYNC
    updateTime String
    Update time stamp.
    createTime string
    Create time stamp.
    effectiveLabels {[key: string]: string}
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    Identifier. The name of the Intercept Endpoint Group.
    pulumiLabels {[key: string]: string}
    The combination of labels configured directly on the resource and default labels configured on the provider.
    reconciling boolean
    Whether reconciling is in progress, recommended per https://google.aip.dev/128.
    state string
    Current state of the endpoint group. Possible values: STATE_UNSPECIFIED ACTIVE CLOSED CREATING DELETING OUT_OF_SYNC
    updateTime string
    Update time stamp.
    create_time str
    Create time stamp.
    effective_labels Mapping[str, str]
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    Identifier. The name of the Intercept Endpoint Group.
    pulumi_labels Mapping[str, str]
    The combination of labels configured directly on the resource and default labels configured on the provider.
    reconciling bool
    Whether reconciling is in progress, recommended per https://google.aip.dev/128.
    state str
    Current state of the endpoint group. Possible values: STATE_UNSPECIFIED ACTIVE CLOSED CREATING DELETING OUT_OF_SYNC
    update_time str
    Update time stamp.
    createTime String
    Create time stamp.
    effectiveLabels Map<String>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Identifier. The name of the Intercept Endpoint Group.
    pulumiLabels Map<String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    reconciling Boolean
    Whether reconciling is in progress, recommended per https://google.aip.dev/128.
    state String
    Current state of the endpoint group. Possible values: STATE_UNSPECIFIED ACTIVE CLOSED CREATING DELETING OUT_OF_SYNC
    updateTime String
    Update time stamp.

    Look up Existing InterceptEndpointGroup Resource

    Get an existing InterceptEndpointGroup 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?: InterceptEndpointGroupState, opts?: CustomResourceOptions): InterceptEndpointGroup
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            create_time: Optional[str] = None,
            effective_labels: Optional[Mapping[str, str]] = None,
            intercept_deployment_group: Optional[str] = None,
            intercept_endpoint_group_id: Optional[str] = None,
            labels: Optional[Mapping[str, str]] = None,
            location: Optional[str] = None,
            name: Optional[str] = None,
            project: Optional[str] = None,
            pulumi_labels: Optional[Mapping[str, str]] = None,
            reconciling: Optional[bool] = None,
            state: Optional[str] = None,
            update_time: Optional[str] = None) -> InterceptEndpointGroup
    func GetInterceptEndpointGroup(ctx *Context, name string, id IDInput, state *InterceptEndpointGroupState, opts ...ResourceOption) (*InterceptEndpointGroup, error)
    public static InterceptEndpointGroup Get(string name, Input<string> id, InterceptEndpointGroupState? state, CustomResourceOptions? opts = null)
    public static InterceptEndpointGroup get(String name, Output<String> id, InterceptEndpointGroupState 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
    Create time stamp.
    EffectiveLabels Dictionary<string, string>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    InterceptDeploymentGroup string
    Immutable. The Intercept Deployment Group that this resource is connected to. Format is: projects/{project}/locations/global/interceptDeploymentGroups/{interceptDeploymentGroup}
    InterceptEndpointGroupId string
    ID of the Intercept Endpoint Group.


    Labels Dictionary<string, string>
    Optional. Labels as key value pairs Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    Location string
    The location of the Intercept Endpoint Group, currently restricted to global.
    Name string
    Identifier. The name of the Intercept Endpoint Group.
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    PulumiLabels Dictionary<string, string>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    Reconciling bool
    Whether reconciling is in progress, recommended per https://google.aip.dev/128.
    State string
    Current state of the endpoint group. Possible values: STATE_UNSPECIFIED ACTIVE CLOSED CREATING DELETING OUT_OF_SYNC
    UpdateTime string
    Update time stamp.
    CreateTime string
    Create time stamp.
    EffectiveLabels map[string]string
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    InterceptDeploymentGroup string
    Immutable. The Intercept Deployment Group that this resource is connected to. Format is: projects/{project}/locations/global/interceptDeploymentGroups/{interceptDeploymentGroup}
    InterceptEndpointGroupId string
    ID of the Intercept Endpoint Group.


    Labels map[string]string
    Optional. Labels as key value pairs Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    Location string
    The location of the Intercept Endpoint Group, currently restricted to global.
    Name string
    Identifier. The name of the Intercept Endpoint Group.
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    PulumiLabels map[string]string
    The combination of labels configured directly on the resource and default labels configured on the provider.
    Reconciling bool
    Whether reconciling is in progress, recommended per https://google.aip.dev/128.
    State string
    Current state of the endpoint group. Possible values: STATE_UNSPECIFIED ACTIVE CLOSED CREATING DELETING OUT_OF_SYNC
    UpdateTime string
    Update time stamp.
    createTime String
    Create time stamp.
    effectiveLabels Map<String,String>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    interceptDeploymentGroup String
    Immutable. The Intercept Deployment Group that this resource is connected to. Format is: projects/{project}/locations/global/interceptDeploymentGroups/{interceptDeploymentGroup}
    interceptEndpointGroupId String
    ID of the Intercept Endpoint Group.


    labels Map<String,String>
    Optional. Labels as key value pairs Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    location String
    The location of the Intercept Endpoint Group, currently restricted to global.
    name String
    Identifier. The name of the Intercept Endpoint Group.
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    pulumiLabels Map<String,String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    reconciling Boolean
    Whether reconciling is in progress, recommended per https://google.aip.dev/128.
    state String
    Current state of the endpoint group. Possible values: STATE_UNSPECIFIED ACTIVE CLOSED CREATING DELETING OUT_OF_SYNC
    updateTime String
    Update time stamp.
    createTime string
    Create time stamp.
    effectiveLabels {[key: string]: string}
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    interceptDeploymentGroup string
    Immutable. The Intercept Deployment Group that this resource is connected to. Format is: projects/{project}/locations/global/interceptDeploymentGroups/{interceptDeploymentGroup}
    interceptEndpointGroupId string
    ID of the Intercept Endpoint Group.


    labels {[key: string]: string}
    Optional. Labels as key value pairs Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    location string
    The location of the Intercept Endpoint Group, currently restricted to global.
    name string
    Identifier. The name of the Intercept Endpoint Group.
    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    pulumiLabels {[key: string]: string}
    The combination of labels configured directly on the resource and default labels configured on the provider.
    reconciling boolean
    Whether reconciling is in progress, recommended per https://google.aip.dev/128.
    state string
    Current state of the endpoint group. Possible values: STATE_UNSPECIFIED ACTIVE CLOSED CREATING DELETING OUT_OF_SYNC
    updateTime string
    Update time stamp.
    create_time str
    Create time stamp.
    effective_labels Mapping[str, str]
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    intercept_deployment_group str
    Immutable. The Intercept Deployment Group that this resource is connected to. Format is: projects/{project}/locations/global/interceptDeploymentGroups/{interceptDeploymentGroup}
    intercept_endpoint_group_id str
    ID of the Intercept Endpoint Group.


    labels Mapping[str, str]
    Optional. Labels as key value pairs Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    location str
    The location of the Intercept Endpoint Group, currently restricted to global.
    name str
    Identifier. The name of the Intercept Endpoint Group.
    project str
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    pulumi_labels Mapping[str, str]
    The combination of labels configured directly on the resource and default labels configured on the provider.
    reconciling bool
    Whether reconciling is in progress, recommended per https://google.aip.dev/128.
    state str
    Current state of the endpoint group. Possible values: STATE_UNSPECIFIED ACTIVE CLOSED CREATING DELETING OUT_OF_SYNC
    update_time str
    Update time stamp.
    createTime String
    Create time stamp.
    effectiveLabels Map<String>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    interceptDeploymentGroup String
    Immutable. The Intercept Deployment Group that this resource is connected to. Format is: projects/{project}/locations/global/interceptDeploymentGroups/{interceptDeploymentGroup}
    interceptEndpointGroupId String
    ID of the Intercept Endpoint Group.


    labels Map<String>
    Optional. Labels as key value pairs Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    location String
    The location of the Intercept Endpoint Group, currently restricted to global.
    name String
    Identifier. The name of the Intercept Endpoint Group.
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    pulumiLabels Map<String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    reconciling Boolean
    Whether reconciling is in progress, recommended per https://google.aip.dev/128.
    state String
    Current state of the endpoint group. Possible values: STATE_UNSPECIFIED ACTIVE CLOSED CREATING DELETING OUT_OF_SYNC
    updateTime String
    Update time stamp.

    Import

    InterceptEndpointGroup can be imported using any of these accepted formats:

    • projects/{{project}}/locations/{{location}}/interceptEndpointGroups/{{intercept_endpoint_group_id}}

    • {{project}}/{{location}}/{{intercept_endpoint_group_id}}

    • {{location}}/{{intercept_endpoint_group_id}}

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

    $ pulumi import gcp:networksecurity/interceptEndpointGroup:InterceptEndpointGroup default projects/{{project}}/locations/{{location}}/interceptEndpointGroups/{{intercept_endpoint_group_id}}
    
    $ pulumi import gcp:networksecurity/interceptEndpointGroup:InterceptEndpointGroup default {{project}}/{{location}}/{{intercept_endpoint_group_id}}
    
    $ pulumi import gcp:networksecurity/interceptEndpointGroup:InterceptEndpointGroup default {{location}}/{{intercept_endpoint_group_id}}
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Google Cloud (GCP) Classic pulumi/pulumi-gcp
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the google-beta Terraform Provider.
    gcp logo
    Google Cloud v8.14.0 published on Wednesday, Jan 15, 2025 by Pulumi