1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. networkservices
  5. MulticastGroupRangeActivation
Google Cloud v9.7.0 published on Wednesday, Dec 24, 2025 by Pulumi
gcp logo
Google Cloud v9.7.0 published on Wednesday, Dec 24, 2025 by Pulumi

    Create a multicast group range activation in the specified location of the current project.

    To get more information about MulticastGroupRangeActivation, see:

    Example Usage

    Network Services Multicast Group Range Activation Basic

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const network = new gcp.compute.Network("network", {
        name: "test-network-mgra",
        autoCreateSubnetworks: false,
    });
    const multicastDomain = new gcp.networkservices.MulticastDomain("multicast_domain", {
        multicastDomainId: "test-domain-mgra",
        location: "global",
        adminNetwork: network.id,
        connectionConfig: {
            connectionType: "SAME_VPC",
        },
    }, {
        dependsOn: [network],
    });
    const internalRange = new gcp.networkconnectivity.InternalRange("internal_range", {
        name: "test-internal-range-mgra",
        network: network.selfLink,
        usage: "FOR_VPC",
        peering: "FOR_SELF",
        ipCidrRange: "224.2.0.2/32",
    });
    const groupRange = new gcp.networkservices.MulticastGroupRange("group_range", {
        multicastGroupRangeId: "test-group-range-mgra",
        location: "global",
        reservedInternalRange: internalRange.id,
        multicastDomain: multicastDomain.id,
    });
    const multicastDomainActivation = new gcp.networkservices.MulticastDomainActivation("multicast_domain_activation", {
        multicastDomainActivationId: "test-domain-activation-mgra",
        location: "us-central1-b",
        multicastDomain: multicastDomain.id,
    });
    const mgraTest = new gcp.networkservices.MulticastGroupRangeActivation("mgra_test", {
        multicastGroupRangeActivationId: "test-mgra-mgra",
        location: "us-central1-b",
        description: "my description",
        labels: {
            "test-label": "test-value",
        },
        multicastGroupRange: groupRange.id,
        multicastDomainActivation: multicastDomainActivation.id,
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    network = gcp.compute.Network("network",
        name="test-network-mgra",
        auto_create_subnetworks=False)
    multicast_domain = gcp.networkservices.MulticastDomain("multicast_domain",
        multicast_domain_id="test-domain-mgra",
        location="global",
        admin_network=network.id,
        connection_config={
            "connection_type": "SAME_VPC",
        },
        opts = pulumi.ResourceOptions(depends_on=[network]))
    internal_range = gcp.networkconnectivity.InternalRange("internal_range",
        name="test-internal-range-mgra",
        network=network.self_link,
        usage="FOR_VPC",
        peering="FOR_SELF",
        ip_cidr_range="224.2.0.2/32")
    group_range = gcp.networkservices.MulticastGroupRange("group_range",
        multicast_group_range_id="test-group-range-mgra",
        location="global",
        reserved_internal_range=internal_range.id,
        multicast_domain=multicast_domain.id)
    multicast_domain_activation = gcp.networkservices.MulticastDomainActivation("multicast_domain_activation",
        multicast_domain_activation_id="test-domain-activation-mgra",
        location="us-central1-b",
        multicast_domain=multicast_domain.id)
    mgra_test = gcp.networkservices.MulticastGroupRangeActivation("mgra_test",
        multicast_group_range_activation_id="test-mgra-mgra",
        location="us-central1-b",
        description="my description",
        labels={
            "test-label": "test-value",
        },
        multicast_group_range=group_range.id,
        multicast_domain_activation=multicast_domain_activation.id)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v9/go/gcp/compute"
    	"github.com/pulumi/pulumi-gcp/sdk/v9/go/gcp/networkconnectivity"
    	"github.com/pulumi/pulumi-gcp/sdk/v9/go/gcp/networkservices"
    	"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("test-network-mgra"),
    			AutoCreateSubnetworks: pulumi.Bool(false),
    		})
    		if err != nil {
    			return err
    		}
    		multicastDomain, err := networkservices.NewMulticastDomain(ctx, "multicast_domain", &networkservices.MulticastDomainArgs{
    			MulticastDomainId: pulumi.String("test-domain-mgra"),
    			Location:          pulumi.String("global"),
    			AdminNetwork:      network.ID(),
    			ConnectionConfig: &networkservices.MulticastDomainConnectionConfigArgs{
    				ConnectionType: pulumi.String("SAME_VPC"),
    			},
    		}, pulumi.DependsOn([]pulumi.Resource{
    			network,
    		}))
    		if err != nil {
    			return err
    		}
    		internalRange, err := networkconnectivity.NewInternalRange(ctx, "internal_range", &networkconnectivity.InternalRangeArgs{
    			Name:        pulumi.String("test-internal-range-mgra"),
    			Network:     network.SelfLink,
    			Usage:       pulumi.String("FOR_VPC"),
    			Peering:     pulumi.String("FOR_SELF"),
    			IpCidrRange: pulumi.String("224.2.0.2/32"),
    		})
    		if err != nil {
    			return err
    		}
    		groupRange, err := networkservices.NewMulticastGroupRange(ctx, "group_range", &networkservices.MulticastGroupRangeArgs{
    			MulticastGroupRangeId: pulumi.String("test-group-range-mgra"),
    			Location:              pulumi.String("global"),
    			ReservedInternalRange: internalRange.ID(),
    			MulticastDomain:       multicastDomain.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		multicastDomainActivation, err := networkservices.NewMulticastDomainActivation(ctx, "multicast_domain_activation", &networkservices.MulticastDomainActivationArgs{
    			MulticastDomainActivationId: pulumi.String("test-domain-activation-mgra"),
    			Location:                    pulumi.String("us-central1-b"),
    			MulticastDomain:             multicastDomain.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = networkservices.NewMulticastGroupRangeActivation(ctx, "mgra_test", &networkservices.MulticastGroupRangeActivationArgs{
    			MulticastGroupRangeActivationId: pulumi.String("test-mgra-mgra"),
    			Location:                        pulumi.String("us-central1-b"),
    			Description:                     pulumi.String("my description"),
    			Labels: pulumi.StringMap{
    				"test-label": pulumi.String("test-value"),
    			},
    			MulticastGroupRange:       groupRange.ID(),
    			MulticastDomainActivation: multicastDomainActivation.ID(),
    		})
    		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 = "test-network-mgra",
            AutoCreateSubnetworks = false,
        });
    
        var multicastDomain = new Gcp.NetworkServices.MulticastDomain("multicast_domain", new()
        {
            MulticastDomainId = "test-domain-mgra",
            Location = "global",
            AdminNetwork = network.Id,
            ConnectionConfig = new Gcp.NetworkServices.Inputs.MulticastDomainConnectionConfigArgs
            {
                ConnectionType = "SAME_VPC",
            },
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                network,
            },
        });
    
        var internalRange = new Gcp.NetworkConnectivity.InternalRange("internal_range", new()
        {
            Name = "test-internal-range-mgra",
            Network = network.SelfLink,
            Usage = "FOR_VPC",
            Peering = "FOR_SELF",
            IpCidrRange = "224.2.0.2/32",
        });
    
        var groupRange = new Gcp.NetworkServices.MulticastGroupRange("group_range", new()
        {
            MulticastGroupRangeId = "test-group-range-mgra",
            Location = "global",
            ReservedInternalRange = internalRange.Id,
            MulticastDomain = multicastDomain.Id,
        });
    
        var multicastDomainActivation = new Gcp.NetworkServices.MulticastDomainActivation("multicast_domain_activation", new()
        {
            MulticastDomainActivationId = "test-domain-activation-mgra",
            Location = "us-central1-b",
            MulticastDomain = multicastDomain.Id,
        });
    
        var mgraTest = new Gcp.NetworkServices.MulticastGroupRangeActivation("mgra_test", new()
        {
            MulticastGroupRangeActivationId = "test-mgra-mgra",
            Location = "us-central1-b",
            Description = "my description",
            Labels = 
            {
                { "test-label", "test-value" },
            },
            MulticastGroupRange = groupRange.Id,
            MulticastDomainActivation = multicastDomainActivation.Id,
        });
    
    });
    
    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.networkservices.MulticastDomain;
    import com.pulumi.gcp.networkservices.MulticastDomainArgs;
    import com.pulumi.gcp.networkservices.inputs.MulticastDomainConnectionConfigArgs;
    import com.pulumi.gcp.networkconnectivity.InternalRange;
    import com.pulumi.gcp.networkconnectivity.InternalRangeArgs;
    import com.pulumi.gcp.networkservices.MulticastGroupRange;
    import com.pulumi.gcp.networkservices.MulticastGroupRangeArgs;
    import com.pulumi.gcp.networkservices.MulticastDomainActivation;
    import com.pulumi.gcp.networkservices.MulticastDomainActivationArgs;
    import com.pulumi.gcp.networkservices.MulticastGroupRangeActivation;
    import com.pulumi.gcp.networkservices.MulticastGroupRangeActivationArgs;
    import com.pulumi.resources.CustomResourceOptions;
    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("test-network-mgra")
                .autoCreateSubnetworks(false)
                .build());
    
            var multicastDomain = new MulticastDomain("multicastDomain", MulticastDomainArgs.builder()
                .multicastDomainId("test-domain-mgra")
                .location("global")
                .adminNetwork(network.id())
                .connectionConfig(MulticastDomainConnectionConfigArgs.builder()
                    .connectionType("SAME_VPC")
                    .build())
                .build(), CustomResourceOptions.builder()
                    .dependsOn(network)
                    .build());
    
            var internalRange = new InternalRange("internalRange", InternalRangeArgs.builder()
                .name("test-internal-range-mgra")
                .network(network.selfLink())
                .usage("FOR_VPC")
                .peering("FOR_SELF")
                .ipCidrRange("224.2.0.2/32")
                .build());
    
            var groupRange = new MulticastGroupRange("groupRange", MulticastGroupRangeArgs.builder()
                .multicastGroupRangeId("test-group-range-mgra")
                .location("global")
                .reservedInternalRange(internalRange.id())
                .multicastDomain(multicastDomain.id())
                .build());
    
            var multicastDomainActivation = new MulticastDomainActivation("multicastDomainActivation", MulticastDomainActivationArgs.builder()
                .multicastDomainActivationId("test-domain-activation-mgra")
                .location("us-central1-b")
                .multicastDomain(multicastDomain.id())
                .build());
    
            var mgraTest = new MulticastGroupRangeActivation("mgraTest", MulticastGroupRangeActivationArgs.builder()
                .multicastGroupRangeActivationId("test-mgra-mgra")
                .location("us-central1-b")
                .description("my description")
                .labels(Map.of("test-label", "test-value"))
                .multicastGroupRange(groupRange.id())
                .multicastDomainActivation(multicastDomainActivation.id())
                .build());
    
        }
    }
    
    resources:
      network:
        type: gcp:compute:Network
        properties:
          name: test-network-mgra
          autoCreateSubnetworks: false
      multicastDomain:
        type: gcp:networkservices:MulticastDomain
        name: multicast_domain
        properties:
          multicastDomainId: test-domain-mgra
          location: global
          adminNetwork: ${network.id}
          connectionConfig:
            connectionType: SAME_VPC
        options:
          dependsOn:
            - ${network}
      internalRange:
        type: gcp:networkconnectivity:InternalRange
        name: internal_range
        properties:
          name: test-internal-range-mgra
          network: ${network.selfLink}
          usage: FOR_VPC
          peering: FOR_SELF
          ipCidrRange: 224.2.0.2/32
      groupRange:
        type: gcp:networkservices:MulticastGroupRange
        name: group_range
        properties:
          multicastGroupRangeId: test-group-range-mgra
          location: global
          reservedInternalRange: ${internalRange.id}
          multicastDomain: ${multicastDomain.id}
      multicastDomainActivation:
        type: gcp:networkservices:MulticastDomainActivation
        name: multicast_domain_activation
        properties:
          multicastDomainActivationId: test-domain-activation-mgra
          location: us-central1-b
          multicastDomain: ${multicastDomain.id}
      mgraTest:
        type: gcp:networkservices:MulticastGroupRangeActivation
        name: mgra_test
        properties:
          multicastGroupRangeActivationId: test-mgra-mgra
          location: us-central1-b
          description: my description
          labels:
            test-label: test-value
          multicastGroupRange: ${groupRange.id}
          multicastDomainActivation: ${multicastDomainActivation.id}
    

    Create MulticastGroupRangeActivation Resource

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

    Constructor syntax

    new MulticastGroupRangeActivation(name: string, args: MulticastGroupRangeActivationArgs, opts?: CustomResourceOptions);
    @overload
    def MulticastGroupRangeActivation(resource_name: str,
                                      args: MulticastGroupRangeActivationArgs,
                                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def MulticastGroupRangeActivation(resource_name: str,
                                      opts: Optional[ResourceOptions] = None,
                                      location: Optional[str] = None,
                                      multicast_domain_activation: Optional[str] = None,
                                      multicast_group_range: Optional[str] = None,
                                      multicast_group_range_activation_id: Optional[str] = None,
                                      description: Optional[str] = None,
                                      labels: Optional[Mapping[str, str]] = None,
                                      log_config: Optional[MulticastGroupRangeActivationLogConfigArgs] = None,
                                      project: Optional[str] = None)
    func NewMulticastGroupRangeActivation(ctx *Context, name string, args MulticastGroupRangeActivationArgs, opts ...ResourceOption) (*MulticastGroupRangeActivation, error)
    public MulticastGroupRangeActivation(string name, MulticastGroupRangeActivationArgs args, CustomResourceOptions? opts = null)
    public MulticastGroupRangeActivation(String name, MulticastGroupRangeActivationArgs args)
    public MulticastGroupRangeActivation(String name, MulticastGroupRangeActivationArgs args, CustomResourceOptions options)
    
    type: gcp:networkservices:MulticastGroupRangeActivation
    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 MulticastGroupRangeActivationArgs
    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 MulticastGroupRangeActivationArgs
    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 MulticastGroupRangeActivationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args MulticastGroupRangeActivationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args MulticastGroupRangeActivationArgs
    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 multicastGroupRangeActivationResource = new Gcp.NetworkServices.MulticastGroupRangeActivation("multicastGroupRangeActivationResource", new()
    {
        Location = "string",
        MulticastDomainActivation = "string",
        MulticastGroupRange = "string",
        MulticastGroupRangeActivationId = "string",
        Description = "string",
        Labels = 
        {
            { "string", "string" },
        },
        LogConfig = new Gcp.NetworkServices.Inputs.MulticastGroupRangeActivationLogConfigArgs
        {
            Enabled = false,
        },
        Project = "string",
    });
    
    example, err := networkservices.NewMulticastGroupRangeActivation(ctx, "multicastGroupRangeActivationResource", &networkservices.MulticastGroupRangeActivationArgs{
    	Location:                        pulumi.String("string"),
    	MulticastDomainActivation:       pulumi.String("string"),
    	MulticastGroupRange:             pulumi.String("string"),
    	MulticastGroupRangeActivationId: pulumi.String("string"),
    	Description:                     pulumi.String("string"),
    	Labels: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	LogConfig: &networkservices.MulticastGroupRangeActivationLogConfigArgs{
    		Enabled: pulumi.Bool(false),
    	},
    	Project: pulumi.String("string"),
    })
    
    var multicastGroupRangeActivationResource = new MulticastGroupRangeActivation("multicastGroupRangeActivationResource", MulticastGroupRangeActivationArgs.builder()
        .location("string")
        .multicastDomainActivation("string")
        .multicastGroupRange("string")
        .multicastGroupRangeActivationId("string")
        .description("string")
        .labels(Map.of("string", "string"))
        .logConfig(MulticastGroupRangeActivationLogConfigArgs.builder()
            .enabled(false)
            .build())
        .project("string")
        .build());
    
    multicast_group_range_activation_resource = gcp.networkservices.MulticastGroupRangeActivation("multicastGroupRangeActivationResource",
        location="string",
        multicast_domain_activation="string",
        multicast_group_range="string",
        multicast_group_range_activation_id="string",
        description="string",
        labels={
            "string": "string",
        },
        log_config={
            "enabled": False,
        },
        project="string")
    
    const multicastGroupRangeActivationResource = new gcp.networkservices.MulticastGroupRangeActivation("multicastGroupRangeActivationResource", {
        location: "string",
        multicastDomainActivation: "string",
        multicastGroupRange: "string",
        multicastGroupRangeActivationId: "string",
        description: "string",
        labels: {
            string: "string",
        },
        logConfig: {
            enabled: false,
        },
        project: "string",
    });
    
    type: gcp:networkservices:MulticastGroupRangeActivation
    properties:
        description: string
        labels:
            string: string
        location: string
        logConfig:
            enabled: false
        multicastDomainActivation: string
        multicastGroupRange: string
        multicastGroupRangeActivationId: string
        project: string
    

    MulticastGroupRangeActivation 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 MulticastGroupRangeActivation 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.
    MulticastDomainActivation string
    The resource name of a multicast domain activation that is in the same zone as this multicast group. Use the following format: projects/*/locations/*/multicastDomainActivations/*
    MulticastGroupRange string
    The resource name of the global multicast group range for the group. Use the following format: projects/*/locations/global/multicastGroupRanges/*
    MulticastGroupRangeActivationId string
    A unique name for the multicast group range activation. The name is restricted to letters, numbers, and hyphen, with the first character a letter, and the last a letter or a number. The name must not exceed 48 characters.
    Description string
    An optional text description of the multicast group range activation.
    Labels Dictionary<string, string>
    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.
    LogConfig MulticastGroupRangeActivationLogConfig
    The logging configuration. Structure is documented below.
    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.
    MulticastDomainActivation string
    The resource name of a multicast domain activation that is in the same zone as this multicast group. Use the following format: projects/*/locations/*/multicastDomainActivations/*
    MulticastGroupRange string
    The resource name of the global multicast group range for the group. Use the following format: projects/*/locations/global/multicastGroupRanges/*
    MulticastGroupRangeActivationId string
    A unique name for the multicast group range activation. The name is restricted to letters, numbers, and hyphen, with the first character a letter, and the last a letter or a number. The name must not exceed 48 characters.
    Description string
    An optional text description of the multicast group range activation.
    Labels map[string]string
    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.
    LogConfig MulticastGroupRangeActivationLogConfigArgs
    The logging configuration. Structure is documented below.
    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.
    multicastDomainActivation String
    The resource name of a multicast domain activation that is in the same zone as this multicast group. Use the following format: projects/*/locations/*/multicastDomainActivations/*
    multicastGroupRange String
    The resource name of the global multicast group range for the group. Use the following format: projects/*/locations/global/multicastGroupRanges/*
    multicastGroupRangeActivationId String
    A unique name for the multicast group range activation. The name is restricted to letters, numbers, and hyphen, with the first character a letter, and the last a letter or a number. The name must not exceed 48 characters.
    description String
    An optional text description of the multicast group range activation.
    labels Map<String,String>
    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.
    logConfig MulticastGroupRangeActivationLogConfig
    The logging configuration. Structure is documented below.
    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.
    multicastDomainActivation string
    The resource name of a multicast domain activation that is in the same zone as this multicast group. Use the following format: projects/*/locations/*/multicastDomainActivations/*
    multicastGroupRange string
    The resource name of the global multicast group range for the group. Use the following format: projects/*/locations/global/multicastGroupRanges/*
    multicastGroupRangeActivationId string
    A unique name for the multicast group range activation. The name is restricted to letters, numbers, and hyphen, with the first character a letter, and the last a letter or a number. The name must not exceed 48 characters.
    description string
    An optional text description of the multicast group range activation.
    labels {[key: string]: string}
    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.
    logConfig MulticastGroupRangeActivationLogConfig
    The logging configuration. Structure is documented below.
    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.
    multicast_domain_activation str
    The resource name of a multicast domain activation that is in the same zone as this multicast group. Use the following format: projects/*/locations/*/multicastDomainActivations/*
    multicast_group_range str
    The resource name of the global multicast group range for the group. Use the following format: projects/*/locations/global/multicastGroupRanges/*
    multicast_group_range_activation_id str
    A unique name for the multicast group range activation. The name is restricted to letters, numbers, and hyphen, with the first character a letter, and the last a letter or a number. The name must not exceed 48 characters.
    description str
    An optional text description of the multicast group range activation.
    labels Mapping[str, str]
    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.
    log_config MulticastGroupRangeActivationLogConfigArgs
    The logging configuration. Structure is documented below.
    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.
    multicastDomainActivation String
    The resource name of a multicast domain activation that is in the same zone as this multicast group. Use the following format: projects/*/locations/*/multicastDomainActivations/*
    multicastGroupRange String
    The resource name of the global multicast group range for the group. Use the following format: projects/*/locations/global/multicastGroupRanges/*
    multicastGroupRangeActivationId String
    A unique name for the multicast group range activation. The name is restricted to letters, numbers, and hyphen, with the first character a letter, and the last a letter or a number. The name must not exceed 48 characters.
    description String
    An optional text description of the multicast group range activation.
    labels Map<String>
    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.
    logConfig Property Map
    The logging configuration. Structure is documented below.
    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 MulticastGroupRangeActivation resource produces the following output properties:

    CreateTime string
    [Output only] The timestamp when the multicast group range activation was created.
    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.
    IpCidrRange string
    [Output only] The multicast group IP address range.
    MulticastGroupConsumerActivations List<string>
    The resource names of associated multicast group consumer activations. Use the following format: projects/*/locations/*/multicastGroupConsumerActivations/*.
    Name string
    Identifier. The resource name of the multicast group range activation. Use the following format: projects/*/locations/*/multicastGroupRangeActivations/*.
    PulumiLabels Dictionary<string, string>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    States List<MulticastGroupRangeActivationState>
    (Output) The state of the multicast resource. Possible values: CREATING ACTIVE DELETING DELETE_FAILED UPDATING UPDATE_FAILED INACTIVE
    UniqueId string
    [Output only] The Google-generated UUID for the resource. This value is unique across all multicast group resources. If a group is deleted and another with the same name is created, the new group is assigned a different unique_id.
    UpdateTime string
    [Output only] The timestamp when the multicast group range activation was most recently updated.
    CreateTime string
    [Output only] The timestamp when the multicast group range activation was created.
    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.
    IpCidrRange string
    [Output only] The multicast group IP address range.
    MulticastGroupConsumerActivations []string
    The resource names of associated multicast group consumer activations. Use the following format: projects/*/locations/*/multicastGroupConsumerActivations/*.
    Name string
    Identifier. The resource name of the multicast group range activation. Use the following format: projects/*/locations/*/multicastGroupRangeActivations/*.
    PulumiLabels map[string]string
    The combination of labels configured directly on the resource and default labels configured on the provider.
    States []MulticastGroupRangeActivationStateType
    (Output) The state of the multicast resource. Possible values: CREATING ACTIVE DELETING DELETE_FAILED UPDATING UPDATE_FAILED INACTIVE
    UniqueId string
    [Output only] The Google-generated UUID for the resource. This value is unique across all multicast group resources. If a group is deleted and another with the same name is created, the new group is assigned a different unique_id.
    UpdateTime string
    [Output only] The timestamp when the multicast group range activation was most recently updated.
    createTime String
    [Output only] The timestamp when the multicast group range activation was created.
    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.
    ipCidrRange String
    [Output only] The multicast group IP address range.
    multicastGroupConsumerActivations List<String>
    The resource names of associated multicast group consumer activations. Use the following format: projects/*/locations/*/multicastGroupConsumerActivations/*.
    name String
    Identifier. The resource name of the multicast group range activation. Use the following format: projects/*/locations/*/multicastGroupRangeActivations/*.
    pulumiLabels Map<String,String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    states List<MulticastGroupRangeActivationState>
    (Output) The state of the multicast resource. Possible values: CREATING ACTIVE DELETING DELETE_FAILED UPDATING UPDATE_FAILED INACTIVE
    uniqueId String
    [Output only] The Google-generated UUID for the resource. This value is unique across all multicast group resources. If a group is deleted and another with the same name is created, the new group is assigned a different unique_id.
    updateTime String
    [Output only] The timestamp when the multicast group range activation was most recently updated.
    createTime string
    [Output only] The timestamp when the multicast group range activation was created.
    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.
    ipCidrRange string
    [Output only] The multicast group IP address range.
    multicastGroupConsumerActivations string[]
    The resource names of associated multicast group consumer activations. Use the following format: projects/*/locations/*/multicastGroupConsumerActivations/*.
    name string
    Identifier. The resource name of the multicast group range activation. Use the following format: projects/*/locations/*/multicastGroupRangeActivations/*.
    pulumiLabels {[key: string]: string}
    The combination of labels configured directly on the resource and default labels configured on the provider.
    states MulticastGroupRangeActivationState[]
    (Output) The state of the multicast resource. Possible values: CREATING ACTIVE DELETING DELETE_FAILED UPDATING UPDATE_FAILED INACTIVE
    uniqueId string
    [Output only] The Google-generated UUID for the resource. This value is unique across all multicast group resources. If a group is deleted and another with the same name is created, the new group is assigned a different unique_id.
    updateTime string
    [Output only] The timestamp when the multicast group range activation was most recently updated.
    create_time str
    [Output only] The timestamp when the multicast group range activation was created.
    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.
    ip_cidr_range str
    [Output only] The multicast group IP address range.
    multicast_group_consumer_activations Sequence[str]
    The resource names of associated multicast group consumer activations. Use the following format: projects/*/locations/*/multicastGroupConsumerActivations/*.
    name str
    Identifier. The resource name of the multicast group range activation. Use the following format: projects/*/locations/*/multicastGroupRangeActivations/*.
    pulumi_labels Mapping[str, str]
    The combination of labels configured directly on the resource and default labels configured on the provider.
    states Sequence[MulticastGroupRangeActivationState]
    (Output) The state of the multicast resource. Possible values: CREATING ACTIVE DELETING DELETE_FAILED UPDATING UPDATE_FAILED INACTIVE
    unique_id str
    [Output only] The Google-generated UUID for the resource. This value is unique across all multicast group resources. If a group is deleted and another with the same name is created, the new group is assigned a different unique_id.
    update_time str
    [Output only] The timestamp when the multicast group range activation was most recently updated.
    createTime String
    [Output only] The timestamp when the multicast group range activation was created.
    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.
    ipCidrRange String
    [Output only] The multicast group IP address range.
    multicastGroupConsumerActivations List<String>
    The resource names of associated multicast group consumer activations. Use the following format: projects/*/locations/*/multicastGroupConsumerActivations/*.
    name String
    Identifier. The resource name of the multicast group range activation. Use the following format: projects/*/locations/*/multicastGroupRangeActivations/*.
    pulumiLabels Map<String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    states List<Property Map>
    (Output) The state of the multicast resource. Possible values: CREATING ACTIVE DELETING DELETE_FAILED UPDATING UPDATE_FAILED INACTIVE
    uniqueId String
    [Output only] The Google-generated UUID for the resource. This value is unique across all multicast group resources. If a group is deleted and another with the same name is created, the new group is assigned a different unique_id.
    updateTime String
    [Output only] The timestamp when the multicast group range activation was most recently updated.

    Look up Existing MulticastGroupRangeActivation Resource

    Get an existing MulticastGroupRangeActivation 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?: MulticastGroupRangeActivationState, opts?: CustomResourceOptions): MulticastGroupRangeActivation
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            create_time: Optional[str] = None,
            description: Optional[str] = None,
            effective_labels: Optional[Mapping[str, str]] = None,
            ip_cidr_range: Optional[str] = None,
            labels: Optional[Mapping[str, str]] = None,
            location: Optional[str] = None,
            log_config: Optional[MulticastGroupRangeActivationLogConfigArgs] = None,
            multicast_domain_activation: Optional[str] = None,
            multicast_group_consumer_activations: Optional[Sequence[str]] = None,
            multicast_group_range: Optional[str] = None,
            multicast_group_range_activation_id: Optional[str] = None,
            name: Optional[str] = None,
            project: Optional[str] = None,
            pulumi_labels: Optional[Mapping[str, str]] = None,
            states: Optional[Sequence[MulticastGroupRangeActivationStateArgs]] = None,
            unique_id: Optional[str] = None,
            update_time: Optional[str] = None) -> MulticastGroupRangeActivation
    func GetMulticastGroupRangeActivation(ctx *Context, name string, id IDInput, state *MulticastGroupRangeActivationState, opts ...ResourceOption) (*MulticastGroupRangeActivation, error)
    public static MulticastGroupRangeActivation Get(string name, Input<string> id, MulticastGroupRangeActivationState? state, CustomResourceOptions? opts = null)
    public static MulticastGroupRangeActivation get(String name, Output<String> id, MulticastGroupRangeActivationState state, CustomResourceOptions options)
    resources:  _:    type: gcp:networkservices:MulticastGroupRangeActivation    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:
    CreateTime string
    [Output only] The timestamp when the multicast group range activation was created.
    Description string
    An optional text description of the multicast group range activation.
    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.
    IpCidrRange string
    [Output only] The multicast group IP address range.
    Labels Dictionary<string, string>
    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.
    LogConfig MulticastGroupRangeActivationLogConfig
    The logging configuration. Structure is documented below.
    MulticastDomainActivation string
    The resource name of a multicast domain activation that is in the same zone as this multicast group. Use the following format: projects/*/locations/*/multicastDomainActivations/*
    MulticastGroupConsumerActivations List<string>
    The resource names of associated multicast group consumer activations. Use the following format: projects/*/locations/*/multicastGroupConsumerActivations/*.
    MulticastGroupRange string
    The resource name of the global multicast group range for the group. Use the following format: projects/*/locations/global/multicastGroupRanges/*
    MulticastGroupRangeActivationId string
    A unique name for the multicast group range activation. The name is restricted to letters, numbers, and hyphen, with the first character a letter, and the last a letter or a number. The name must not exceed 48 characters.
    Name string
    Identifier. The resource name of the multicast group range activation. Use the following format: projects/*/locations/*/multicastGroupRangeActivations/*.
    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.
    States List<MulticastGroupRangeActivationState>
    (Output) The state of the multicast resource. Possible values: CREATING ACTIVE DELETING DELETE_FAILED UPDATING UPDATE_FAILED INACTIVE
    UniqueId string
    [Output only] The Google-generated UUID for the resource. This value is unique across all multicast group resources. If a group is deleted and another with the same name is created, the new group is assigned a different unique_id.
    UpdateTime string
    [Output only] The timestamp when the multicast group range activation was most recently updated.
    CreateTime string
    [Output only] The timestamp when the multicast group range activation was created.
    Description string
    An optional text description of the multicast group range activation.
    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.
    IpCidrRange string
    [Output only] The multicast group IP address range.
    Labels map[string]string
    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.
    LogConfig MulticastGroupRangeActivationLogConfigArgs
    The logging configuration. Structure is documented below.
    MulticastDomainActivation string
    The resource name of a multicast domain activation that is in the same zone as this multicast group. Use the following format: projects/*/locations/*/multicastDomainActivations/*
    MulticastGroupConsumerActivations []string
    The resource names of associated multicast group consumer activations. Use the following format: projects/*/locations/*/multicastGroupConsumerActivations/*.
    MulticastGroupRange string
    The resource name of the global multicast group range for the group. Use the following format: projects/*/locations/global/multicastGroupRanges/*
    MulticastGroupRangeActivationId string
    A unique name for the multicast group range activation. The name is restricted to letters, numbers, and hyphen, with the first character a letter, and the last a letter or a number. The name must not exceed 48 characters.
    Name string
    Identifier. The resource name of the multicast group range activation. Use the following format: projects/*/locations/*/multicastGroupRangeActivations/*.
    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.
    States []MulticastGroupRangeActivationStateTypeArgs
    (Output) The state of the multicast resource. Possible values: CREATING ACTIVE DELETING DELETE_FAILED UPDATING UPDATE_FAILED INACTIVE
    UniqueId string
    [Output only] The Google-generated UUID for the resource. This value is unique across all multicast group resources. If a group is deleted and another with the same name is created, the new group is assigned a different unique_id.
    UpdateTime string
    [Output only] The timestamp when the multicast group range activation was most recently updated.
    createTime String
    [Output only] The timestamp when the multicast group range activation was created.
    description String
    An optional text description of the multicast group range activation.
    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.
    ipCidrRange String
    [Output only] The multicast group IP address range.
    labels Map<String,String>
    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.
    logConfig MulticastGroupRangeActivationLogConfig
    The logging configuration. Structure is documented below.
    multicastDomainActivation String
    The resource name of a multicast domain activation that is in the same zone as this multicast group. Use the following format: projects/*/locations/*/multicastDomainActivations/*
    multicastGroupConsumerActivations List<String>
    The resource names of associated multicast group consumer activations. Use the following format: projects/*/locations/*/multicastGroupConsumerActivations/*.
    multicastGroupRange String
    The resource name of the global multicast group range for the group. Use the following format: projects/*/locations/global/multicastGroupRanges/*
    multicastGroupRangeActivationId String
    A unique name for the multicast group range activation. The name is restricted to letters, numbers, and hyphen, with the first character a letter, and the last a letter or a number. The name must not exceed 48 characters.
    name String
    Identifier. The resource name of the multicast group range activation. Use the following format: projects/*/locations/*/multicastGroupRangeActivations/*.
    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.
    states List<MulticastGroupRangeActivationState>
    (Output) The state of the multicast resource. Possible values: CREATING ACTIVE DELETING DELETE_FAILED UPDATING UPDATE_FAILED INACTIVE
    uniqueId String
    [Output only] The Google-generated UUID for the resource. This value is unique across all multicast group resources. If a group is deleted and another with the same name is created, the new group is assigned a different unique_id.
    updateTime String
    [Output only] The timestamp when the multicast group range activation was most recently updated.
    createTime string
    [Output only] The timestamp when the multicast group range activation was created.
    description string
    An optional text description of the multicast group range activation.
    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.
    ipCidrRange string
    [Output only] The multicast group IP address range.
    labels {[key: string]: string}
    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.
    logConfig MulticastGroupRangeActivationLogConfig
    The logging configuration. Structure is documented below.
    multicastDomainActivation string
    The resource name of a multicast domain activation that is in the same zone as this multicast group. Use the following format: projects/*/locations/*/multicastDomainActivations/*
    multicastGroupConsumerActivations string[]
    The resource names of associated multicast group consumer activations. Use the following format: projects/*/locations/*/multicastGroupConsumerActivations/*.
    multicastGroupRange string
    The resource name of the global multicast group range for the group. Use the following format: projects/*/locations/global/multicastGroupRanges/*
    multicastGroupRangeActivationId string
    A unique name for the multicast group range activation. The name is restricted to letters, numbers, and hyphen, with the first character a letter, and the last a letter or a number. The name must not exceed 48 characters.
    name string
    Identifier. The resource name of the multicast group range activation. Use the following format: projects/*/locations/*/multicastGroupRangeActivations/*.
    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.
    states MulticastGroupRangeActivationState[]
    (Output) The state of the multicast resource. Possible values: CREATING ACTIVE DELETING DELETE_FAILED UPDATING UPDATE_FAILED INACTIVE
    uniqueId string
    [Output only] The Google-generated UUID for the resource. This value is unique across all multicast group resources. If a group is deleted and another with the same name is created, the new group is assigned a different unique_id.
    updateTime string
    [Output only] The timestamp when the multicast group range activation was most recently updated.
    create_time str
    [Output only] The timestamp when the multicast group range activation was created.
    description str
    An optional text description of the multicast group range activation.
    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.
    ip_cidr_range str
    [Output only] The multicast group IP address range.
    labels Mapping[str, str]
    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.
    log_config MulticastGroupRangeActivationLogConfigArgs
    The logging configuration. Structure is documented below.
    multicast_domain_activation str
    The resource name of a multicast domain activation that is in the same zone as this multicast group. Use the following format: projects/*/locations/*/multicastDomainActivations/*
    multicast_group_consumer_activations Sequence[str]
    The resource names of associated multicast group consumer activations. Use the following format: projects/*/locations/*/multicastGroupConsumerActivations/*.
    multicast_group_range str
    The resource name of the global multicast group range for the group. Use the following format: projects/*/locations/global/multicastGroupRanges/*
    multicast_group_range_activation_id str
    A unique name for the multicast group range activation. The name is restricted to letters, numbers, and hyphen, with the first character a letter, and the last a letter or a number. The name must not exceed 48 characters.
    name str
    Identifier. The resource name of the multicast group range activation. Use the following format: projects/*/locations/*/multicastGroupRangeActivations/*.
    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.
    states Sequence[MulticastGroupRangeActivationStateArgs]
    (Output) The state of the multicast resource. Possible values: CREATING ACTIVE DELETING DELETE_FAILED UPDATING UPDATE_FAILED INACTIVE
    unique_id str
    [Output only] The Google-generated UUID for the resource. This value is unique across all multicast group resources. If a group is deleted and another with the same name is created, the new group is assigned a different unique_id.
    update_time str
    [Output only] The timestamp when the multicast group range activation was most recently updated.
    createTime String
    [Output only] The timestamp when the multicast group range activation was created.
    description String
    An optional text description of the multicast group range activation.
    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.
    ipCidrRange String
    [Output only] The multicast group IP address range.
    labels Map<String>
    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.
    logConfig Property Map
    The logging configuration. Structure is documented below.
    multicastDomainActivation String
    The resource name of a multicast domain activation that is in the same zone as this multicast group. Use the following format: projects/*/locations/*/multicastDomainActivations/*
    multicastGroupConsumerActivations List<String>
    The resource names of associated multicast group consumer activations. Use the following format: projects/*/locations/*/multicastGroupConsumerActivations/*.
    multicastGroupRange String
    The resource name of the global multicast group range for the group. Use the following format: projects/*/locations/global/multicastGroupRanges/*
    multicastGroupRangeActivationId String
    A unique name for the multicast group range activation. The name is restricted to letters, numbers, and hyphen, with the first character a letter, and the last a letter or a number. The name must not exceed 48 characters.
    name String
    Identifier. The resource name of the multicast group range activation. Use the following format: projects/*/locations/*/multicastGroupRangeActivations/*.
    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.
    states List<Property Map>
    (Output) The state of the multicast resource. Possible values: CREATING ACTIVE DELETING DELETE_FAILED UPDATING UPDATE_FAILED INACTIVE
    uniqueId String
    [Output only] The Google-generated UUID for the resource. This value is unique across all multicast group resources. If a group is deleted and another with the same name is created, the new group is assigned a different unique_id.
    updateTime String
    [Output only] The timestamp when the multicast group range activation was most recently updated.

    Supporting Types

    MulticastGroupRangeActivationLogConfig, MulticastGroupRangeActivationLogConfigArgs

    Enabled bool
    Whether to enable logging or not.
    Enabled bool
    Whether to enable logging or not.
    enabled Boolean
    Whether to enable logging or not.
    enabled boolean
    Whether to enable logging or not.
    enabled bool
    Whether to enable logging or not.
    enabled Boolean
    Whether to enable logging or not.

    MulticastGroupRangeActivationState, MulticastGroupRangeActivationStateArgs

    State string
    (Output) The state of the multicast resource. Possible values: CREATING ACTIVE DELETING DELETE_FAILED UPDATING UPDATE_FAILED INACTIVE
    State string
    (Output) The state of the multicast resource. Possible values: CREATING ACTIVE DELETING DELETE_FAILED UPDATING UPDATE_FAILED INACTIVE
    state String
    (Output) The state of the multicast resource. Possible values: CREATING ACTIVE DELETING DELETE_FAILED UPDATING UPDATE_FAILED INACTIVE
    state string
    (Output) The state of the multicast resource. Possible values: CREATING ACTIVE DELETING DELETE_FAILED UPDATING UPDATE_FAILED INACTIVE
    state str
    (Output) The state of the multicast resource. Possible values: CREATING ACTIVE DELETING DELETE_FAILED UPDATING UPDATE_FAILED INACTIVE
    state String
    (Output) The state of the multicast resource. Possible values: CREATING ACTIVE DELETING DELETE_FAILED UPDATING UPDATE_FAILED INACTIVE

    Import

    MulticastGroupRangeActivation can be imported using any of these accepted formats:

    • projects/{{project}}/locations/{{location}}/multicastGroupRangeActivations/{{multicast_group_range_activation_id}}

    • {{project}}/{{location}}/{{multicast_group_range_activation_id}}

    • {{location}}/{{multicast_group_range_activation_id}}

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

    $ pulumi import gcp:networkservices/multicastGroupRangeActivation:MulticastGroupRangeActivation default projects/{{project}}/locations/{{location}}/multicastGroupRangeActivations/{{multicast_group_range_activation_id}}
    
    $ pulumi import gcp:networkservices/multicastGroupRangeActivation:MulticastGroupRangeActivation default {{project}}/{{location}}/{{multicast_group_range_activation_id}}
    
    $ pulumi import gcp:networkservices/multicastGroupRangeActivation:MulticastGroupRangeActivation default {{location}}/{{multicast_group_range_activation_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 v9.7.0 published on Wednesday, Dec 24, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate