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

gcp.networksecurity.MirroringDeploymentGroup

Explore with Pulumi AI

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

    Example Usage

    Network Security Mirroring 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.MirroringDeploymentGroup("default", {
        mirroringDeploymentGroupId: "example-dg",
        location: "global",
        network: network.id,
        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.MirroringDeploymentGroup("default",
        mirroring_deployment_group_id="example-dg",
        location="global",
        network=network.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
    		}
    		_, err = networksecurity.NewMirroringDeploymentGroup(ctx, "default", &networksecurity.MirroringDeploymentGroupArgs{
    			MirroringDeploymentGroupId: pulumi.String("example-dg"),
    			Location:                   pulumi.String("global"),
    			Network:                    network.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 @default = new Gcp.NetworkSecurity.MirroringDeploymentGroup("default", new()
        {
            MirroringDeploymentGroupId = "example-dg",
            Location = "global",
            Network = network.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.MirroringDeploymentGroup;
    import com.pulumi.gcp.networksecurity.MirroringDeploymentGroupArgs;
    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 MirroringDeploymentGroup("default", MirroringDeploymentGroupArgs.builder()
                .mirroringDeploymentGroupId("example-dg")
                .location("global")
                .network(network.id())
                .labels(Map.of("foo", "bar"))
                .build());
    
        }
    }
    
    resources:
      network:
        type: gcp:compute:Network
        properties:
          name: example-network
          autoCreateSubnetworks: false
      default:
        type: gcp:networksecurity:MirroringDeploymentGroup
        properties:
          mirroringDeploymentGroupId: example-dg
          location: global
          network: ${network.id}
          labels:
            foo: bar
    

    Create MirroringDeploymentGroup Resource

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

    Constructor syntax

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

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

    Location string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. See documentation for resource type networksecurity.googleapis.com/MirroringDeploymentGroup.
    MirroringDeploymentGroupId string
    Required. Id of the requesting object If auto-generating Id server-side, remove this field and mirroring_deployment_group_id from the method_signature of Create RPC


    Network string
    Required. Immutable. The network that is being used for the deployment. Format is: projects/{project}/global/networks/{network}.
    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.
    Location string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. See documentation for resource type networksecurity.googleapis.com/MirroringDeploymentGroup.
    MirroringDeploymentGroupId string
    Required. Id of the requesting object If auto-generating Id server-side, remove this field and mirroring_deployment_group_id from the method_signature of Create RPC


    Network string
    Required. Immutable. The network that is being used for the deployment. Format is: projects/{project}/global/networks/{network}.
    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.
    location String
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. See documentation for resource type networksecurity.googleapis.com/MirroringDeploymentGroup.
    mirroringDeploymentGroupId String
    Required. Id of the requesting object If auto-generating Id server-side, remove this field and mirroring_deployment_group_id from the method_signature of Create RPC


    network String
    Required. Immutable. The network that is being used for the deployment. Format is: projects/{project}/global/networks/{network}.
    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.
    location string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. See documentation for resource type networksecurity.googleapis.com/MirroringDeploymentGroup.
    mirroringDeploymentGroupId string
    Required. Id of the requesting object If auto-generating Id server-side, remove this field and mirroring_deployment_group_id from the method_signature of Create RPC


    network string
    Required. Immutable. The network that is being used for the deployment. Format is: projects/{project}/global/networks/{network}.
    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.
    location str
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. See documentation for resource type networksecurity.googleapis.com/MirroringDeploymentGroup.
    mirroring_deployment_group_id str
    Required. Id of the requesting object If auto-generating Id server-side, remove this field and mirroring_deployment_group_id from the method_signature of Create RPC


    network str
    Required. Immutable. The network that is being used for the deployment. Format is: projects/{project}/global/networks/{network}.
    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.
    location String
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. See documentation for resource type networksecurity.googleapis.com/MirroringDeploymentGroup.
    mirroringDeploymentGroupId String
    Required. Id of the requesting object If auto-generating Id server-side, remove this field and mirroring_deployment_group_id from the method_signature of Create RPC


    network String
    Required. Immutable. The network that is being used for the deployment. Format is: projects/{project}/global/networks/{network}.
    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 MirroringDeploymentGroup resource produces the following output properties:

    ConnectedEndpointGroups List<MirroringDeploymentGroupConnectedEndpointGroup>
    Output only. The list of Mirroring Endpoint Groups that are connected to this resource. Structure is documented below.
    CreateTime string
    Output only. [Output only] 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
    (Output) Output only. A connected mirroring endpoint group.
    PulumiLabels Dictionary<string, string>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    Reconciling bool
    Output only. Whether reconciling is in progress, recommended per https://google.aip.dev/128.
    State string
    Output only. Current state of the deployment group. Possible values: STATE_UNSPECIFIED ACTIVE CREATING DELETING
    UpdateTime string
    Output only. [Output only] Update time stamp
    ConnectedEndpointGroups []MirroringDeploymentGroupConnectedEndpointGroup
    Output only. The list of Mirroring Endpoint Groups that are connected to this resource. Structure is documented below.
    CreateTime string
    Output only. [Output only] 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
    (Output) Output only. A connected mirroring endpoint group.
    PulumiLabels map[string]string
    The combination of labels configured directly on the resource and default labels configured on the provider.
    Reconciling bool
    Output only. Whether reconciling is in progress, recommended per https://google.aip.dev/128.
    State string
    Output only. Current state of the deployment group. Possible values: STATE_UNSPECIFIED ACTIVE CREATING DELETING
    UpdateTime string
    Output only. [Output only] Update time stamp
    connectedEndpointGroups List<MirroringDeploymentGroupConnectedEndpointGroup>
    Output only. The list of Mirroring Endpoint Groups that are connected to this resource. Structure is documented below.
    createTime String
    Output only. [Output only] 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
    (Output) Output only. A connected mirroring endpoint group.
    pulumiLabels Map<String,String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    reconciling Boolean
    Output only. Whether reconciling is in progress, recommended per https://google.aip.dev/128.
    state String
    Output only. Current state of the deployment group. Possible values: STATE_UNSPECIFIED ACTIVE CREATING DELETING
    updateTime String
    Output only. [Output only] Update time stamp
    connectedEndpointGroups MirroringDeploymentGroupConnectedEndpointGroup[]
    Output only. The list of Mirroring Endpoint Groups that are connected to this resource. Structure is documented below.
    createTime string
    Output only. [Output only] 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
    (Output) Output only. A connected mirroring endpoint group.
    pulumiLabels {[key: string]: string}
    The combination of labels configured directly on the resource and default labels configured on the provider.
    reconciling boolean
    Output only. Whether reconciling is in progress, recommended per https://google.aip.dev/128.
    state string
    Output only. Current state of the deployment group. Possible values: STATE_UNSPECIFIED ACTIVE CREATING DELETING
    updateTime string
    Output only. [Output only] Update time stamp
    connected_endpoint_groups Sequence[MirroringDeploymentGroupConnectedEndpointGroup]
    Output only. The list of Mirroring Endpoint Groups that are connected to this resource. Structure is documented below.
    create_time str
    Output only. [Output only] 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
    (Output) Output only. A connected mirroring 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
    Output only. Whether reconciling is in progress, recommended per https://google.aip.dev/128.
    state str
    Output only. Current state of the deployment group. Possible values: STATE_UNSPECIFIED ACTIVE CREATING DELETING
    update_time str
    Output only. [Output only] Update time stamp
    connectedEndpointGroups List<Property Map>
    Output only. The list of Mirroring Endpoint Groups that are connected to this resource. Structure is documented below.
    createTime String
    Output only. [Output only] 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
    (Output) Output only. A connected mirroring endpoint group.
    pulumiLabels Map<String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    reconciling Boolean
    Output only. Whether reconciling is in progress, recommended per https://google.aip.dev/128.
    state String
    Output only. Current state of the deployment group. Possible values: STATE_UNSPECIFIED ACTIVE CREATING DELETING
    updateTime String
    Output only. [Output only] Update time stamp

    Look up Existing MirroringDeploymentGroup Resource

    Get an existing MirroringDeploymentGroup 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?: MirroringDeploymentGroupState, opts?: CustomResourceOptions): MirroringDeploymentGroup
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            connected_endpoint_groups: Optional[Sequence[MirroringDeploymentGroupConnectedEndpointGroupArgs]] = None,
            create_time: Optional[str] = None,
            effective_labels: Optional[Mapping[str, str]] = None,
            labels: Optional[Mapping[str, str]] = None,
            location: Optional[str] = None,
            mirroring_deployment_group_id: 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) -> MirroringDeploymentGroup
    func GetMirroringDeploymentGroup(ctx *Context, name string, id IDInput, state *MirroringDeploymentGroupState, opts ...ResourceOption) (*MirroringDeploymentGroup, error)
    public static MirroringDeploymentGroup Get(string name, Input<string> id, MirroringDeploymentGroupState? state, CustomResourceOptions? opts = null)
    public static MirroringDeploymentGroup get(String name, Output<String> id, MirroringDeploymentGroupState 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:
    ConnectedEndpointGroups List<MirroringDeploymentGroupConnectedEndpointGroup>
    Output only. The list of Mirroring Endpoint Groups that are connected to this resource. Structure is documented below.
    CreateTime string
    Output only. [Output only] 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.
    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
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. See documentation for resource type networksecurity.googleapis.com/MirroringDeploymentGroup.
    MirroringDeploymentGroupId string
    Required. Id of the requesting object If auto-generating Id server-side, remove this field and mirroring_deployment_group_id from the method_signature of Create RPC


    Name string
    (Output) Output only. A connected mirroring endpoint group.
    Network string
    Required. Immutable. The network that is being used for the deployment. Format is: projects/{project}/global/networks/{network}.
    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
    Output only. Whether reconciling is in progress, recommended per https://google.aip.dev/128.
    State string
    Output only. Current state of the deployment group. Possible values: STATE_UNSPECIFIED ACTIVE CREATING DELETING
    UpdateTime string
    Output only. [Output only] Update time stamp
    ConnectedEndpointGroups []MirroringDeploymentGroupConnectedEndpointGroupArgs
    Output only. The list of Mirroring Endpoint Groups that are connected to this resource. Structure is documented below.
    CreateTime string
    Output only. [Output only] 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.
    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
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. See documentation for resource type networksecurity.googleapis.com/MirroringDeploymentGroup.
    MirroringDeploymentGroupId string
    Required. Id of the requesting object If auto-generating Id server-side, remove this field and mirroring_deployment_group_id from the method_signature of Create RPC


    Name string
    (Output) Output only. A connected mirroring endpoint group.
    Network string
    Required. Immutable. The network that is being used for the deployment. Format is: projects/{project}/global/networks/{network}.
    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
    Output only. Whether reconciling is in progress, recommended per https://google.aip.dev/128.
    State string
    Output only. Current state of the deployment group. Possible values: STATE_UNSPECIFIED ACTIVE CREATING DELETING
    UpdateTime string
    Output only. [Output only] Update time stamp
    connectedEndpointGroups List<MirroringDeploymentGroupConnectedEndpointGroup>
    Output only. The list of Mirroring Endpoint Groups that are connected to this resource. Structure is documented below.
    createTime String
    Output only. [Output only] 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.
    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
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. See documentation for resource type networksecurity.googleapis.com/MirroringDeploymentGroup.
    mirroringDeploymentGroupId String
    Required. Id of the requesting object If auto-generating Id server-side, remove this field and mirroring_deployment_group_id from the method_signature of Create RPC


    name String
    (Output) Output only. A connected mirroring endpoint group.
    network String
    Required. Immutable. The network that is being used for the deployment. Format is: projects/{project}/global/networks/{network}.
    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
    Output only. Whether reconciling is in progress, recommended per https://google.aip.dev/128.
    state String
    Output only. Current state of the deployment group. Possible values: STATE_UNSPECIFIED ACTIVE CREATING DELETING
    updateTime String
    Output only. [Output only] Update time stamp
    connectedEndpointGroups MirroringDeploymentGroupConnectedEndpointGroup[]
    Output only. The list of Mirroring Endpoint Groups that are connected to this resource. Structure is documented below.
    createTime string
    Output only. [Output only] 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.
    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
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. See documentation for resource type networksecurity.googleapis.com/MirroringDeploymentGroup.
    mirroringDeploymentGroupId string
    Required. Id of the requesting object If auto-generating Id server-side, remove this field and mirroring_deployment_group_id from the method_signature of Create RPC


    name string
    (Output) Output only. A connected mirroring endpoint group.
    network string
    Required. Immutable. The network that is being used for the deployment. Format is: projects/{project}/global/networks/{network}.
    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
    Output only. Whether reconciling is in progress, recommended per https://google.aip.dev/128.
    state string
    Output only. Current state of the deployment group. Possible values: STATE_UNSPECIFIED ACTIVE CREATING DELETING
    updateTime string
    Output only. [Output only] Update time stamp
    connected_endpoint_groups Sequence[MirroringDeploymentGroupConnectedEndpointGroupArgs]
    Output only. The list of Mirroring Endpoint Groups that are connected to this resource. Structure is documented below.
    create_time str
    Output only. [Output only] 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.
    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
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. See documentation for resource type networksecurity.googleapis.com/MirroringDeploymentGroup.
    mirroring_deployment_group_id str
    Required. Id of the requesting object If auto-generating Id server-side, remove this field and mirroring_deployment_group_id from the method_signature of Create RPC


    name str
    (Output) Output only. A connected mirroring endpoint group.
    network str
    Required. Immutable. The network that is being used for the deployment. Format is: projects/{project}/global/networks/{network}.
    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
    Output only. Whether reconciling is in progress, recommended per https://google.aip.dev/128.
    state str
    Output only. Current state of the deployment group. Possible values: STATE_UNSPECIFIED ACTIVE CREATING DELETING
    update_time str
    Output only. [Output only] Update time stamp
    connectedEndpointGroups List<Property Map>
    Output only. The list of Mirroring Endpoint Groups that are connected to this resource. Structure is documented below.
    createTime String
    Output only. [Output only] 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.
    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
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122. See documentation for resource type networksecurity.googleapis.com/MirroringDeploymentGroup.
    mirroringDeploymentGroupId String
    Required. Id of the requesting object If auto-generating Id server-side, remove this field and mirroring_deployment_group_id from the method_signature of Create RPC


    name String
    (Output) Output only. A connected mirroring endpoint group.
    network String
    Required. Immutable. The network that is being used for the deployment. Format is: projects/{project}/global/networks/{network}.
    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
    Output only. Whether reconciling is in progress, recommended per https://google.aip.dev/128.
    state String
    Output only. Current state of the deployment group. Possible values: STATE_UNSPECIFIED ACTIVE CREATING DELETING
    updateTime String
    Output only. [Output only] Update time stamp

    Supporting Types

    MirroringDeploymentGroupConnectedEndpointGroup, MirroringDeploymentGroupConnectedEndpointGroupArgs

    Name string
    (Output) Output only. A connected mirroring endpoint group.
    Name string
    (Output) Output only. A connected mirroring endpoint group.
    name String
    (Output) Output only. A connected mirroring endpoint group.
    name string
    (Output) Output only. A connected mirroring endpoint group.
    name str
    (Output) Output only. A connected mirroring endpoint group.
    name String
    (Output) Output only. A connected mirroring endpoint group.

    Import

    MirroringDeploymentGroup can be imported using any of these accepted formats:

    • projects/{{project}}/locations/{{location}}/mirroringDeploymentGroups/{{mirroring_deployment_group_id}}

    • {{project}}/{{location}}/{{mirroring_deployment_group_id}}

    • {{location}}/{{mirroring_deployment_group_id}}

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

    $ pulumi import gcp:networksecurity/mirroringDeploymentGroup:MirroringDeploymentGroup default projects/{{project}}/locations/{{location}}/mirroringDeploymentGroups/{{mirroring_deployment_group_id}}
    
    $ pulumi import gcp:networksecurity/mirroringDeploymentGroup:MirroringDeploymentGroup default {{project}}/{{location}}/{{mirroring_deployment_group_id}}
    
    $ pulumi import gcp:networksecurity/mirroringDeploymentGroup:MirroringDeploymentGroup default {{location}}/{{mirroring_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.14.0 published on Wednesday, Jan 15, 2025 by Pulumi