1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. networksecurity
  5. InterceptDeploymentGroup
Google Cloud v8.23.0 published on Monday, Mar 24, 2025 by Pulumi

gcp.networksecurity.InterceptDeploymentGroup

Explore with Pulumi AI

gcp logo
Google Cloud v8.23.0 published on Monday, Mar 24, 2025 by Pulumi

    Example Usage

    Network Security Intercept Deployment 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 _default = new gcp.networksecurity.InterceptDeploymentGroup("default", {
        interceptDeploymentGroupId: "example-dg",
        location: "global",
        network: network.id,
        description: "some description",
        labels: {
            foo: "bar",
        },
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    network = gcp.compute.Network("network",
        name="example-network",
        auto_create_subnetworks=False)
    default = gcp.networksecurity.InterceptDeploymentGroup("default",
        intercept_deployment_group_id="example-dg",
        location="global",
        network=network.id,
        description="some description",
        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
    		}
    		_, err = networksecurity.NewInterceptDeploymentGroup(ctx, "default", &networksecurity.InterceptDeploymentGroupArgs{
    			InterceptDeploymentGroupId: pulumi.String("example-dg"),
    			Location:                   pulumi.String("global"),
    			Network:                    network.ID(),
    			Description:                pulumi.String("some description"),
    			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 @default = new Gcp.NetworkSecurity.InterceptDeploymentGroup("default", new()
        {
            InterceptDeploymentGroupId = "example-dg",
            Location = "global",
            Network = network.Id,
            Description = "some description",
            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 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 default_ = new InterceptDeploymentGroup("default", InterceptDeploymentGroupArgs.builder()
                .interceptDeploymentGroupId("example-dg")
                .location("global")
                .network(network.id())
                .description("some description")
                .labels(Map.of("foo", "bar"))
                .build());
    
        }
    }
    
    resources:
      network:
        type: gcp:compute:Network
        properties:
          name: example-network
          autoCreateSubnetworks: false
      default:
        type: gcp:networksecurity:InterceptDeploymentGroup
        properties:
          interceptDeploymentGroupId: example-dg
          location: global
          network: ${network.id}
          description: some description
          labels:
            foo: bar
    

    Create InterceptDeploymentGroup Resource

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

    Constructor syntax

    new InterceptDeploymentGroup(name: string, args: InterceptDeploymentGroupArgs, opts?: CustomResourceOptions);
    @overload
    def InterceptDeploymentGroup(resource_name: str,
                                 args: InterceptDeploymentGroupArgs,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def InterceptDeploymentGroup(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 intercept_deployment_group_id: Optional[str] = None,
                                 location: Optional[str] = None,
                                 network: Optional[str] = None,
                                 description: Optional[str] = None,
                                 labels: Optional[Mapping[str, str]] = None,
                                 project: Optional[str] = None)
    func NewInterceptDeploymentGroup(ctx *Context, name string, args InterceptDeploymentGroupArgs, opts ...ResourceOption) (*InterceptDeploymentGroup, error)
    public InterceptDeploymentGroup(string name, InterceptDeploymentGroupArgs args, CustomResourceOptions? opts = null)
    public InterceptDeploymentGroup(String name, InterceptDeploymentGroupArgs args)
    public InterceptDeploymentGroup(String name, InterceptDeploymentGroupArgs args, CustomResourceOptions options)
    
    type: gcp:networksecurity:InterceptDeploymentGroup
    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 InterceptDeploymentGroupArgs
    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 InterceptDeploymentGroupArgs
    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 InterceptDeploymentGroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args InterceptDeploymentGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args InterceptDeploymentGroupArgs
    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 interceptDeploymentGroupResource = new Gcp.NetworkSecurity.InterceptDeploymentGroup("interceptDeploymentGroupResource", new()
    {
        InterceptDeploymentGroupId = "string",
        Location = "string",
        Network = "string",
        Description = "string",
        Labels = 
        {
            { "string", "string" },
        },
        Project = "string",
    });
    
    example, err := networksecurity.NewInterceptDeploymentGroup(ctx, "interceptDeploymentGroupResource", &networksecurity.InterceptDeploymentGroupArgs{
    	InterceptDeploymentGroupId: pulumi.String("string"),
    	Location:                   pulumi.String("string"),
    	Network:                    pulumi.String("string"),
    	Description:                pulumi.String("string"),
    	Labels: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Project: pulumi.String("string"),
    })
    
    var interceptDeploymentGroupResource = new InterceptDeploymentGroup("interceptDeploymentGroupResource", InterceptDeploymentGroupArgs.builder()
        .interceptDeploymentGroupId("string")
        .location("string")
        .network("string")
        .description("string")
        .labels(Map.of("string", "string"))
        .project("string")
        .build());
    
    intercept_deployment_group_resource = gcp.networksecurity.InterceptDeploymentGroup("interceptDeploymentGroupResource",
        intercept_deployment_group_id="string",
        location="string",
        network="string",
        description="string",
        labels={
            "string": "string",
        },
        project="string")
    
    const interceptDeploymentGroupResource = new gcp.networksecurity.InterceptDeploymentGroup("interceptDeploymentGroupResource", {
        interceptDeploymentGroupId: "string",
        location: "string",
        network: "string",
        description: "string",
        labels: {
            string: "string",
        },
        project: "string",
    });
    
    type: gcp:networksecurity:InterceptDeploymentGroup
    properties:
        description: string
        interceptDeploymentGroupId: string
        labels:
            string: string
        location: string
        network: string
        project: string
    

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

    InterceptDeploymentGroupId string
    The ID to use for the new deployment group, which will become the final component of the deployment group's resource name.


    Location string
    The cloud location of the deployment group, currently restricted to global.
    Network string
    The network that will be used for all child deployments, for example: projects/{project}/global/networks/{network}. See https://google.aip.dev/124.
    Description string
    User-provided description of the deployment group. Used as additional context for the deployment group.
    Labels Dictionary<string, string>
    Labels are key/value pairs that help to organize and filter resources. 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.
    InterceptDeploymentGroupId string
    The ID to use for the new deployment group, which will become the final component of the deployment group's resource name.


    Location string
    The cloud location of the deployment group, currently restricted to global.
    Network string
    The network that will be used for all child deployments, for example: projects/{project}/global/networks/{network}. See https://google.aip.dev/124.
    Description string
    User-provided description of the deployment group. Used as additional context for the deployment group.
    Labels map[string]string
    Labels are key/value pairs that help to organize and filter resources. 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.
    interceptDeploymentGroupId String
    The ID to use for the new deployment group, which will become the final component of the deployment group's resource name.


    location String
    The cloud location of the deployment group, currently restricted to global.
    network String
    The network that will be used for all child deployments, for example: projects/{project}/global/networks/{network}. See https://google.aip.dev/124.
    description String
    User-provided description of the deployment group. Used as additional context for the deployment group.
    labels Map<String,String>
    Labels are key/value pairs that help to organize and filter resources. 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.
    interceptDeploymentGroupId string
    The ID to use for the new deployment group, which will become the final component of the deployment group's resource name.


    location string
    The cloud location of the deployment group, currently restricted to global.
    network string
    The network that will be used for all child deployments, for example: projects/{project}/global/networks/{network}. See https://google.aip.dev/124.
    description string
    User-provided description of the deployment group. Used as additional context for the deployment group.
    labels {[key: string]: string}
    Labels are key/value pairs that help to organize and filter resources. 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_id str
    The ID to use for the new deployment group, which will become the final component of the deployment group's resource name.


    location str
    The cloud location of the deployment group, currently restricted to global.
    network str
    The network that will be used for all child deployments, for example: projects/{project}/global/networks/{network}. See https://google.aip.dev/124.
    description str
    User-provided description of the deployment group. Used as additional context for the deployment group.
    labels Mapping[str, str]
    Labels are key/value pairs that help to organize and filter resources. 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.
    interceptDeploymentGroupId String
    The ID to use for the new deployment group, which will become the final component of the deployment group's resource name.


    location String
    The cloud location of the deployment group, currently restricted to global.
    network String
    The network that will be used for all child deployments, for example: projects/{project}/global/networks/{network}. See https://google.aip.dev/124.
    description String
    User-provided description of the deployment group. Used as additional context for the deployment group.
    labels Map<String>
    Labels are key/value pairs that help to organize and filter resources. 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 InterceptDeploymentGroup resource produces the following output properties:

    ConnectedEndpointGroups List<InterceptDeploymentGroupConnectedEndpointGroup>
    The list of endpoint groups that are connected to this resource. Structure is documented below.
    CreateTime string
    The timestamp when the resource was created. See https://google.aip.dev/148#timestamps.
    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
    (Output) The connected endpoint group's resource name, for example: projects/123456789/locations/global/interceptEndpointGroups/my-eg. See https://google.aip.dev/124.
    PulumiLabels Dictionary<string, string>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    Reconciling bool
    The current state of the resource does not match the user's intended state, and the system is working to reconcile them. This is part of the normal operation (e.g. adding a new deployment to the group) See https://google.aip.dev/128.
    State string
    The current state of the deployment group. See https://google.aip.dev/216. Possible values: STATE_UNSPECIFIED ACTIVE CREATING DELETING
    UpdateTime string
    The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps.
    ConnectedEndpointGroups []InterceptDeploymentGroupConnectedEndpointGroup
    The list of endpoint groups that are connected to this resource. Structure is documented below.
    CreateTime string
    The timestamp when the resource was created. See https://google.aip.dev/148#timestamps.
    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
    (Output) The connected endpoint group's resource name, for example: projects/123456789/locations/global/interceptEndpointGroups/my-eg. See https://google.aip.dev/124.
    PulumiLabels map[string]string
    The combination of labels configured directly on the resource and default labels configured on the provider.
    Reconciling bool
    The current state of the resource does not match the user's intended state, and the system is working to reconcile them. This is part of the normal operation (e.g. adding a new deployment to the group) See https://google.aip.dev/128.
    State string
    The current state of the deployment group. See https://google.aip.dev/216. Possible values: STATE_UNSPECIFIED ACTIVE CREATING DELETING
    UpdateTime string
    The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps.
    connectedEndpointGroups List<InterceptDeploymentGroupConnectedEndpointGroup>
    The list of endpoint groups that are connected to this resource. Structure is documented below.
    createTime String
    The timestamp when the resource was created. See https://google.aip.dev/148#timestamps.
    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
    (Output) The connected endpoint group's resource name, for example: projects/123456789/locations/global/interceptEndpointGroups/my-eg. See https://google.aip.dev/124.
    pulumiLabels Map<String,String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    reconciling Boolean
    The current state of the resource does not match the user's intended state, and the system is working to reconcile them. This is part of the normal operation (e.g. adding a new deployment to the group) See https://google.aip.dev/128.
    state String
    The current state of the deployment group. See https://google.aip.dev/216. Possible values: STATE_UNSPECIFIED ACTIVE CREATING DELETING
    updateTime String
    The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps.
    connectedEndpointGroups InterceptDeploymentGroupConnectedEndpointGroup[]
    The list of endpoint groups that are connected to this resource. Structure is documented below.
    createTime string
    The timestamp when the resource was created. See https://google.aip.dev/148#timestamps.
    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
    (Output) The connected endpoint group's resource name, for example: projects/123456789/locations/global/interceptEndpointGroups/my-eg. See https://google.aip.dev/124.
    pulumiLabels {[key: string]: string}
    The combination of labels configured directly on the resource and default labels configured on the provider.
    reconciling boolean
    The current state of the resource does not match the user's intended state, and the system is working to reconcile them. This is part of the normal operation (e.g. adding a new deployment to the group) See https://google.aip.dev/128.
    state string
    The current state of the deployment group. See https://google.aip.dev/216. Possible values: STATE_UNSPECIFIED ACTIVE CREATING DELETING
    updateTime string
    The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps.
    connected_endpoint_groups Sequence[InterceptDeploymentGroupConnectedEndpointGroup]
    The list of endpoint groups that are connected to this resource. Structure is documented below.
    create_time str
    The timestamp when the resource was created. See https://google.aip.dev/148#timestamps.
    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
    (Output) The connected endpoint group's resource name, for example: projects/123456789/locations/global/interceptEndpointGroups/my-eg. See https://google.aip.dev/124.
    pulumi_labels Mapping[str, str]
    The combination of labels configured directly on the resource and default labels configured on the provider.
    reconciling bool
    The current state of the resource does not match the user's intended state, and the system is working to reconcile them. This is part of the normal operation (e.g. adding a new deployment to the group) See https://google.aip.dev/128.
    state str
    The current state of the deployment group. See https://google.aip.dev/216. Possible values: STATE_UNSPECIFIED ACTIVE CREATING DELETING
    update_time str
    The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps.
    connectedEndpointGroups List<Property Map>
    The list of endpoint groups that are connected to this resource. Structure is documented below.
    createTime String
    The timestamp when the resource was created. See https://google.aip.dev/148#timestamps.
    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
    (Output) The connected endpoint group's resource name, for example: projects/123456789/locations/global/interceptEndpointGroups/my-eg. See https://google.aip.dev/124.
    pulumiLabels Map<String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    reconciling Boolean
    The current state of the resource does not match the user's intended state, and the system is working to reconcile them. This is part of the normal operation (e.g. adding a new deployment to the group) See https://google.aip.dev/128.
    state String
    The current state of the deployment group. See https://google.aip.dev/216. Possible values: STATE_UNSPECIFIED ACTIVE CREATING DELETING
    updateTime String
    The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps.

    Look up Existing InterceptDeploymentGroup Resource

    Get an existing InterceptDeploymentGroup 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?: InterceptDeploymentGroupState, opts?: CustomResourceOptions): InterceptDeploymentGroup
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            connected_endpoint_groups: Optional[Sequence[InterceptDeploymentGroupConnectedEndpointGroupArgs]] = None,
            create_time: Optional[str] = None,
            description: Optional[str] = None,
            effective_labels: Optional[Mapping[str, str]] = None,
            intercept_deployment_group_id: Optional[str] = None,
            labels: Optional[Mapping[str, str]] = None,
            location: Optional[str] = None,
            name: Optional[str] = None,
            network: 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) -> InterceptDeploymentGroup
    func GetInterceptDeploymentGroup(ctx *Context, name string, id IDInput, state *InterceptDeploymentGroupState, opts ...ResourceOption) (*InterceptDeploymentGroup, error)
    public static InterceptDeploymentGroup Get(string name, Input<string> id, InterceptDeploymentGroupState? state, CustomResourceOptions? opts = null)
    public static InterceptDeploymentGroup get(String name, Output<String> id, InterceptDeploymentGroupState state, CustomResourceOptions options)
    resources:  _:    type: gcp:networksecurity:InterceptDeploymentGroup    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:
    ConnectedEndpointGroups List<InterceptDeploymentGroupConnectedEndpointGroup>
    The list of endpoint groups that are connected to this resource. Structure is documented below.
    CreateTime string
    The timestamp when the resource was created. See https://google.aip.dev/148#timestamps.
    Description string
    User-provided description of the deployment group. Used as additional context for the deployment group.
    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.
    InterceptDeploymentGroupId string
    The ID to use for the new deployment group, which will become the final component of the deployment group's resource name.


    Labels Dictionary<string, string>
    Labels are key/value pairs that help to organize and filter resources. 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 cloud location of the deployment group, currently restricted to global.
    Name string
    (Output) The connected endpoint group's resource name, for example: projects/123456789/locations/global/interceptEndpointGroups/my-eg. See https://google.aip.dev/124.
    Network string
    The network that will be used for all child deployments, for example: projects/{project}/global/networks/{network}. See https://google.aip.dev/124.
    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
    The current state of the resource does not match the user's intended state, and the system is working to reconcile them. This is part of the normal operation (e.g. adding a new deployment to the group) See https://google.aip.dev/128.
    State string
    The current state of the deployment group. See https://google.aip.dev/216. Possible values: STATE_UNSPECIFIED ACTIVE CREATING DELETING
    UpdateTime string
    The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps.
    ConnectedEndpointGroups []InterceptDeploymentGroupConnectedEndpointGroupArgs
    The list of endpoint groups that are connected to this resource. Structure is documented below.
    CreateTime string
    The timestamp when the resource was created. See https://google.aip.dev/148#timestamps.
    Description string
    User-provided description of the deployment group. Used as additional context for the deployment group.
    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.
    InterceptDeploymentGroupId string
    The ID to use for the new deployment group, which will become the final component of the deployment group's resource name.


    Labels map[string]string
    Labels are key/value pairs that help to organize and filter resources. 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 cloud location of the deployment group, currently restricted to global.
    Name string
    (Output) The connected endpoint group's resource name, for example: projects/123456789/locations/global/interceptEndpointGroups/my-eg. See https://google.aip.dev/124.
    Network string
    The network that will be used for all child deployments, for example: projects/{project}/global/networks/{network}. See https://google.aip.dev/124.
    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
    The current state of the resource does not match the user's intended state, and the system is working to reconcile them. This is part of the normal operation (e.g. adding a new deployment to the group) See https://google.aip.dev/128.
    State string
    The current state of the deployment group. See https://google.aip.dev/216. Possible values: STATE_UNSPECIFIED ACTIVE CREATING DELETING
    UpdateTime string
    The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps.
    connectedEndpointGroups List<InterceptDeploymentGroupConnectedEndpointGroup>
    The list of endpoint groups that are connected to this resource. Structure is documented below.
    createTime String
    The timestamp when the resource was created. See https://google.aip.dev/148#timestamps.
    description String
    User-provided description of the deployment group. Used as additional context for the deployment group.
    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.
    interceptDeploymentGroupId String
    The ID to use for the new deployment group, which will become the final component of the deployment group's resource name.


    labels Map<String,String>
    Labels are key/value pairs that help to organize and filter resources. 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 cloud location of the deployment group, currently restricted to global.
    name String
    (Output) The connected endpoint group's resource name, for example: projects/123456789/locations/global/interceptEndpointGroups/my-eg. See https://google.aip.dev/124.
    network String
    The network that will be used for all child deployments, for example: projects/{project}/global/networks/{network}. See https://google.aip.dev/124.
    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
    The current state of the resource does not match the user's intended state, and the system is working to reconcile them. This is part of the normal operation (e.g. adding a new deployment to the group) See https://google.aip.dev/128.
    state String
    The current state of the deployment group. See https://google.aip.dev/216. Possible values: STATE_UNSPECIFIED ACTIVE CREATING DELETING
    updateTime String
    The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps.
    connectedEndpointGroups InterceptDeploymentGroupConnectedEndpointGroup[]
    The list of endpoint groups that are connected to this resource. Structure is documented below.
    createTime string
    The timestamp when the resource was created. See https://google.aip.dev/148#timestamps.
    description string
    User-provided description of the deployment group. Used as additional context for the deployment group.
    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.
    interceptDeploymentGroupId string
    The ID to use for the new deployment group, which will become the final component of the deployment group's resource name.


    labels {[key: string]: string}
    Labels are key/value pairs that help to organize and filter resources. 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 cloud location of the deployment group, currently restricted to global.
    name string
    (Output) The connected endpoint group's resource name, for example: projects/123456789/locations/global/interceptEndpointGroups/my-eg. See https://google.aip.dev/124.
    network string
    The network that will be used for all child deployments, for example: projects/{project}/global/networks/{network}. See https://google.aip.dev/124.
    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
    The current state of the resource does not match the user's intended state, and the system is working to reconcile them. This is part of the normal operation (e.g. adding a new deployment to the group) See https://google.aip.dev/128.
    state string
    The current state of the deployment group. See https://google.aip.dev/216. Possible values: STATE_UNSPECIFIED ACTIVE CREATING DELETING
    updateTime string
    The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps.
    connected_endpoint_groups Sequence[InterceptDeploymentGroupConnectedEndpointGroupArgs]
    The list of endpoint groups that are connected to this resource. Structure is documented below.
    create_time str
    The timestamp when the resource was created. See https://google.aip.dev/148#timestamps.
    description str
    User-provided description of the deployment group. Used as additional context for the deployment group.
    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_id str
    The ID to use for the new deployment group, which will become the final component of the deployment group's resource name.


    labels Mapping[str, str]
    Labels are key/value pairs that help to organize and filter resources. 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 cloud location of the deployment group, currently restricted to global.
    name str
    (Output) The connected endpoint group's resource name, for example: projects/123456789/locations/global/interceptEndpointGroups/my-eg. See https://google.aip.dev/124.
    network str
    The network that will be used for all child deployments, for example: projects/{project}/global/networks/{network}. See https://google.aip.dev/124.
    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
    The current state of the resource does not match the user's intended state, and the system is working to reconcile them. This is part of the normal operation (e.g. adding a new deployment to the group) See https://google.aip.dev/128.
    state str
    The current state of the deployment group. See https://google.aip.dev/216. Possible values: STATE_UNSPECIFIED ACTIVE CREATING DELETING
    update_time str
    The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps.
    connectedEndpointGroups List<Property Map>
    The list of endpoint groups that are connected to this resource. Structure is documented below.
    createTime String
    The timestamp when the resource was created. See https://google.aip.dev/148#timestamps.
    description String
    User-provided description of the deployment group. Used as additional context for the deployment group.
    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.
    interceptDeploymentGroupId String
    The ID to use for the new deployment group, which will become the final component of the deployment group's resource name.


    labels Map<String>
    Labels are key/value pairs that help to organize and filter resources. 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 cloud location of the deployment group, currently restricted to global.
    name String
    (Output) The connected endpoint group's resource name, for example: projects/123456789/locations/global/interceptEndpointGroups/my-eg. See https://google.aip.dev/124.
    network String
    The network that will be used for all child deployments, for example: projects/{project}/global/networks/{network}. See https://google.aip.dev/124.
    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
    The current state of the resource does not match the user's intended state, and the system is working to reconcile them. This is part of the normal operation (e.g. adding a new deployment to the group) See https://google.aip.dev/128.
    state String
    The current state of the deployment group. See https://google.aip.dev/216. Possible values: STATE_UNSPECIFIED ACTIVE CREATING DELETING
    updateTime String
    The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps.

    Supporting Types

    InterceptDeploymentGroupConnectedEndpointGroup, InterceptDeploymentGroupConnectedEndpointGroupArgs

    Name string
    (Output) The connected endpoint group's resource name, for example: projects/123456789/locations/global/interceptEndpointGroups/my-eg. See https://google.aip.dev/124.
    Name string
    (Output) The connected endpoint group's resource name, for example: projects/123456789/locations/global/interceptEndpointGroups/my-eg. See https://google.aip.dev/124.
    name String
    (Output) The connected endpoint group's resource name, for example: projects/123456789/locations/global/interceptEndpointGroups/my-eg. See https://google.aip.dev/124.
    name string
    (Output) The connected endpoint group's resource name, for example: projects/123456789/locations/global/interceptEndpointGroups/my-eg. See https://google.aip.dev/124.
    name str
    (Output) The connected endpoint group's resource name, for example: projects/123456789/locations/global/interceptEndpointGroups/my-eg. See https://google.aip.dev/124.
    name String
    (Output) The connected endpoint group's resource name, for example: projects/123456789/locations/global/interceptEndpointGroups/my-eg. See https://google.aip.dev/124.

    Import

    InterceptDeploymentGroup can be imported using any of these accepted formats:

    • projects/{{project}}/locations/{{location}}/interceptDeploymentGroups/{{intercept_deployment_group_id}}

    • {{project}}/{{location}}/{{intercept_deployment_group_id}}

    • {{location}}/{{intercept_deployment_group_id}}

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

    $ pulumi import gcp:networksecurity/interceptDeploymentGroup:InterceptDeploymentGroup default projects/{{project}}/locations/{{location}}/interceptDeploymentGroups/{{intercept_deployment_group_id}}
    
    $ pulumi import gcp:networksecurity/interceptDeploymentGroup:InterceptDeploymentGroup default {{project}}/{{location}}/{{intercept_deployment_group_id}}
    
    $ pulumi import gcp:networksecurity/interceptDeploymentGroup:InterceptDeploymentGroup default {{location}}/{{intercept_deployment_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.23.0 published on Monday, Mar 24, 2025 by Pulumi