Create a multicast group consumer activation in the specified location of the current project.
To get more information about MulticastGroupConsumerActivation, see:
Example Usage
Network Services Multicast Group Consumer Activation Basic
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const network = new gcp.compute.Network("network", {
name: "test-network-mgca",
autoCreateSubnetworks: false,
});
const multicastDomain = new gcp.networkservices.MulticastDomain("multicast_domain", {
multicastDomainId: "test-domain-mgca",
location: "global",
adminNetwork: network.id,
connectionConfig: {
connectionType: "SAME_VPC",
},
}, {
dependsOn: [network],
});
const multicastDomainActivation = new gcp.networkservices.MulticastDomainActivation("multicast_domain_activation", {
multicastDomainActivationId: "test-domain-activation-mgca",
location: "us-central1-b",
multicastDomain: multicastDomain.id,
});
const consumerAssociation = new gcp.networkservices.MulticastConsumerAssociation("consumer_association", {
multicastConsumerAssociationId: "test-consumer-association-mgca",
location: "us-central1-b",
network: network.id,
multicastDomainActivation: multicastDomainActivation.id,
}, {
dependsOn: [network],
});
const internalRange = new gcp.networkconnectivity.InternalRange("internal_range", {
name: "test-internal-range-mgca",
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-mgca",
location: "global",
reservedInternalRange: internalRange.id,
multicastDomain: multicastDomain.id,
});
const groupRangeActivation = new gcp.networkservices.MulticastGroupRangeActivation("group_range_activation", {
multicastGroupRangeActivationId: "test-mgra-mgca",
location: "us-central1-b",
multicastGroupRange: groupRange.id,
multicastDomainActivation: multicastDomainActivation.id,
});
const mgcaTest = new gcp.networkservices.MulticastGroupConsumerActivation("mgca_test", {
multicastGroupConsumerActivationId: "test-mgca-mgca",
location: "us-central1-b",
multicastGroupRangeActivation: groupRangeActivation.id,
multicastConsumerAssociation: consumerAssociation.id,
});
import pulumi
import pulumi_gcp as gcp
network = gcp.compute.Network("network",
name="test-network-mgca",
auto_create_subnetworks=False)
multicast_domain = gcp.networkservices.MulticastDomain("multicast_domain",
multicast_domain_id="test-domain-mgca",
location="global",
admin_network=network.id,
connection_config={
"connection_type": "SAME_VPC",
},
opts = pulumi.ResourceOptions(depends_on=[network]))
multicast_domain_activation = gcp.networkservices.MulticastDomainActivation("multicast_domain_activation",
multicast_domain_activation_id="test-domain-activation-mgca",
location="us-central1-b",
multicast_domain=multicast_domain.id)
consumer_association = gcp.networkservices.MulticastConsumerAssociation("consumer_association",
multicast_consumer_association_id="test-consumer-association-mgca",
location="us-central1-b",
network=network.id,
multicast_domain_activation=multicast_domain_activation.id,
opts = pulumi.ResourceOptions(depends_on=[network]))
internal_range = gcp.networkconnectivity.InternalRange("internal_range",
name="test-internal-range-mgca",
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-mgca",
location="global",
reserved_internal_range=internal_range.id,
multicast_domain=multicast_domain.id)
group_range_activation = gcp.networkservices.MulticastGroupRangeActivation("group_range_activation",
multicast_group_range_activation_id="test-mgra-mgca",
location="us-central1-b",
multicast_group_range=group_range.id,
multicast_domain_activation=multicast_domain_activation.id)
mgca_test = gcp.networkservices.MulticastGroupConsumerActivation("mgca_test",
multicast_group_consumer_activation_id="test-mgca-mgca",
location="us-central1-b",
multicast_group_range_activation=group_range_activation.id,
multicast_consumer_association=consumer_association.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-mgca"),
AutoCreateSubnetworks: pulumi.Bool(false),
})
if err != nil {
return err
}
multicastDomain, err := networkservices.NewMulticastDomain(ctx, "multicast_domain", &networkservices.MulticastDomainArgs{
MulticastDomainId: pulumi.String("test-domain-mgca"),
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
}
multicastDomainActivation, err := networkservices.NewMulticastDomainActivation(ctx, "multicast_domain_activation", &networkservices.MulticastDomainActivationArgs{
MulticastDomainActivationId: pulumi.String("test-domain-activation-mgca"),
Location: pulumi.String("us-central1-b"),
MulticastDomain: multicastDomain.ID(),
})
if err != nil {
return err
}
consumerAssociation, err := networkservices.NewMulticastConsumerAssociation(ctx, "consumer_association", &networkservices.MulticastConsumerAssociationArgs{
MulticastConsumerAssociationId: pulumi.String("test-consumer-association-mgca"),
Location: pulumi.String("us-central1-b"),
Network: network.ID(),
MulticastDomainActivation: multicastDomainActivation.ID(),
}, 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-mgca"),
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-mgca"),
Location: pulumi.String("global"),
ReservedInternalRange: internalRange.ID(),
MulticastDomain: multicastDomain.ID(),
})
if err != nil {
return err
}
groupRangeActivation, err := networkservices.NewMulticastGroupRangeActivation(ctx, "group_range_activation", &networkservices.MulticastGroupRangeActivationArgs{
MulticastGroupRangeActivationId: pulumi.String("test-mgra-mgca"),
Location: pulumi.String("us-central1-b"),
MulticastGroupRange: groupRange.ID(),
MulticastDomainActivation: multicastDomainActivation.ID(),
})
if err != nil {
return err
}
_, err = networkservices.NewMulticastGroupConsumerActivation(ctx, "mgca_test", &networkservices.MulticastGroupConsumerActivationArgs{
MulticastGroupConsumerActivationId: pulumi.String("test-mgca-mgca"),
Location: pulumi.String("us-central1-b"),
MulticastGroupRangeActivation: groupRangeActivation.ID(),
MulticastConsumerAssociation: consumerAssociation.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-mgca",
AutoCreateSubnetworks = false,
});
var multicastDomain = new Gcp.NetworkServices.MulticastDomain("multicast_domain", new()
{
MulticastDomainId = "test-domain-mgca",
Location = "global",
AdminNetwork = network.Id,
ConnectionConfig = new Gcp.NetworkServices.Inputs.MulticastDomainConnectionConfigArgs
{
ConnectionType = "SAME_VPC",
},
}, new CustomResourceOptions
{
DependsOn =
{
network,
},
});
var multicastDomainActivation = new Gcp.NetworkServices.MulticastDomainActivation("multicast_domain_activation", new()
{
MulticastDomainActivationId = "test-domain-activation-mgca",
Location = "us-central1-b",
MulticastDomain = multicastDomain.Id,
});
var consumerAssociation = new Gcp.NetworkServices.MulticastConsumerAssociation("consumer_association", new()
{
MulticastConsumerAssociationId = "test-consumer-association-mgca",
Location = "us-central1-b",
Network = network.Id,
MulticastDomainActivation = multicastDomainActivation.Id,
}, new CustomResourceOptions
{
DependsOn =
{
network,
},
});
var internalRange = new Gcp.NetworkConnectivity.InternalRange("internal_range", new()
{
Name = "test-internal-range-mgca",
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-mgca",
Location = "global",
ReservedInternalRange = internalRange.Id,
MulticastDomain = multicastDomain.Id,
});
var groupRangeActivation = new Gcp.NetworkServices.MulticastGroupRangeActivation("group_range_activation", new()
{
MulticastGroupRangeActivationId = "test-mgra-mgca",
Location = "us-central1-b",
MulticastGroupRange = groupRange.Id,
MulticastDomainActivation = multicastDomainActivation.Id,
});
var mgcaTest = new Gcp.NetworkServices.MulticastGroupConsumerActivation("mgca_test", new()
{
MulticastGroupConsumerActivationId = "test-mgca-mgca",
Location = "us-central1-b",
MulticastGroupRangeActivation = groupRangeActivation.Id,
MulticastConsumerAssociation = consumerAssociation.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.networkservices.MulticastDomainActivation;
import com.pulumi.gcp.networkservices.MulticastDomainActivationArgs;
import com.pulumi.gcp.networkservices.MulticastConsumerAssociation;
import com.pulumi.gcp.networkservices.MulticastConsumerAssociationArgs;
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.MulticastGroupRangeActivation;
import com.pulumi.gcp.networkservices.MulticastGroupRangeActivationArgs;
import com.pulumi.gcp.networkservices.MulticastGroupConsumerActivation;
import com.pulumi.gcp.networkservices.MulticastGroupConsumerActivationArgs;
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-mgca")
.autoCreateSubnetworks(false)
.build());
var multicastDomain = new MulticastDomain("multicastDomain", MulticastDomainArgs.builder()
.multicastDomainId("test-domain-mgca")
.location("global")
.adminNetwork(network.id())
.connectionConfig(MulticastDomainConnectionConfigArgs.builder()
.connectionType("SAME_VPC")
.build())
.build(), CustomResourceOptions.builder()
.dependsOn(network)
.build());
var multicastDomainActivation = new MulticastDomainActivation("multicastDomainActivation", MulticastDomainActivationArgs.builder()
.multicastDomainActivationId("test-domain-activation-mgca")
.location("us-central1-b")
.multicastDomain(multicastDomain.id())
.build());
var consumerAssociation = new MulticastConsumerAssociation("consumerAssociation", MulticastConsumerAssociationArgs.builder()
.multicastConsumerAssociationId("test-consumer-association-mgca")
.location("us-central1-b")
.network(network.id())
.multicastDomainActivation(multicastDomainActivation.id())
.build(), CustomResourceOptions.builder()
.dependsOn(network)
.build());
var internalRange = new InternalRange("internalRange", InternalRangeArgs.builder()
.name("test-internal-range-mgca")
.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-mgca")
.location("global")
.reservedInternalRange(internalRange.id())
.multicastDomain(multicastDomain.id())
.build());
var groupRangeActivation = new MulticastGroupRangeActivation("groupRangeActivation", MulticastGroupRangeActivationArgs.builder()
.multicastGroupRangeActivationId("test-mgra-mgca")
.location("us-central1-b")
.multicastGroupRange(groupRange.id())
.multicastDomainActivation(multicastDomainActivation.id())
.build());
var mgcaTest = new MulticastGroupConsumerActivation("mgcaTest", MulticastGroupConsumerActivationArgs.builder()
.multicastGroupConsumerActivationId("test-mgca-mgca")
.location("us-central1-b")
.multicastGroupRangeActivation(groupRangeActivation.id())
.multicastConsumerAssociation(consumerAssociation.id())
.build());
}
}
resources:
network:
type: gcp:compute:Network
properties:
name: test-network-mgca
autoCreateSubnetworks: false
multicastDomain:
type: gcp:networkservices:MulticastDomain
name: multicast_domain
properties:
multicastDomainId: test-domain-mgca
location: global
adminNetwork: ${network.id}
connectionConfig:
connectionType: SAME_VPC
options:
dependsOn:
- ${network}
multicastDomainActivation:
type: gcp:networkservices:MulticastDomainActivation
name: multicast_domain_activation
properties:
multicastDomainActivationId: test-domain-activation-mgca
location: us-central1-b
multicastDomain: ${multicastDomain.id}
consumerAssociation:
type: gcp:networkservices:MulticastConsumerAssociation
name: consumer_association
properties:
multicastConsumerAssociationId: test-consumer-association-mgca
location: us-central1-b
network: ${network.id}
multicastDomainActivation: ${multicastDomainActivation.id}
options:
dependsOn:
- ${network}
internalRange:
type: gcp:networkconnectivity:InternalRange
name: internal_range
properties:
name: test-internal-range-mgca
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-mgca
location: global
reservedInternalRange: ${internalRange.id}
multicastDomain: ${multicastDomain.id}
groupRangeActivation:
type: gcp:networkservices:MulticastGroupRangeActivation
name: group_range_activation
properties:
multicastGroupRangeActivationId: test-mgra-mgca
location: us-central1-b
multicastGroupRange: ${groupRange.id}
multicastDomainActivation: ${multicastDomainActivation.id}
mgcaTest:
type: gcp:networkservices:MulticastGroupConsumerActivation
name: mgca_test
properties:
multicastGroupConsumerActivationId: test-mgca-mgca
location: us-central1-b
multicastGroupRangeActivation: ${groupRangeActivation.id}
multicastConsumerAssociation: ${consumerAssociation.id}
Create MulticastGroupConsumerActivation Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MulticastGroupConsumerActivation(name: string, args: MulticastGroupConsumerActivationArgs, opts?: CustomResourceOptions);@overload
def MulticastGroupConsumerActivation(resource_name: str,
args: MulticastGroupConsumerActivationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def MulticastGroupConsumerActivation(resource_name: str,
opts: Optional[ResourceOptions] = None,
location: Optional[str] = None,
multicast_consumer_association: Optional[str] = None,
multicast_group_consumer_activation_id: Optional[str] = None,
multicast_group_range_activation: Optional[str] = None,
description: Optional[str] = None,
labels: Optional[Mapping[str, str]] = None,
log_config: Optional[MulticastGroupConsumerActivationLogConfigArgs] = None,
project: Optional[str] = None)func NewMulticastGroupConsumerActivation(ctx *Context, name string, args MulticastGroupConsumerActivationArgs, opts ...ResourceOption) (*MulticastGroupConsumerActivation, error)public MulticastGroupConsumerActivation(string name, MulticastGroupConsumerActivationArgs args, CustomResourceOptions? opts = null)
public MulticastGroupConsumerActivation(String name, MulticastGroupConsumerActivationArgs args)
public MulticastGroupConsumerActivation(String name, MulticastGroupConsumerActivationArgs args, CustomResourceOptions options)
type: gcp:networkservices:MulticastGroupConsumerActivation
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 MulticastGroupConsumerActivationArgs
- 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 MulticastGroupConsumerActivationArgs
- 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 MulticastGroupConsumerActivationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MulticastGroupConsumerActivationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MulticastGroupConsumerActivationArgs
- 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 multicastGroupConsumerActivationResource = new Gcp.NetworkServices.MulticastGroupConsumerActivation("multicastGroupConsumerActivationResource", new()
{
Location = "string",
MulticastConsumerAssociation = "string",
MulticastGroupConsumerActivationId = "string",
MulticastGroupRangeActivation = "string",
Description = "string",
Labels =
{
{ "string", "string" },
},
LogConfig = new Gcp.NetworkServices.Inputs.MulticastGroupConsumerActivationLogConfigArgs
{
Enabled = false,
},
Project = "string",
});
example, err := networkservices.NewMulticastGroupConsumerActivation(ctx, "multicastGroupConsumerActivationResource", &networkservices.MulticastGroupConsumerActivationArgs{
Location: pulumi.String("string"),
MulticastConsumerAssociation: pulumi.String("string"),
MulticastGroupConsumerActivationId: pulumi.String("string"),
MulticastGroupRangeActivation: pulumi.String("string"),
Description: pulumi.String("string"),
Labels: pulumi.StringMap{
"string": pulumi.String("string"),
},
LogConfig: &networkservices.MulticastGroupConsumerActivationLogConfigArgs{
Enabled: pulumi.Bool(false),
},
Project: pulumi.String("string"),
})
var multicastGroupConsumerActivationResource = new MulticastGroupConsumerActivation("multicastGroupConsumerActivationResource", MulticastGroupConsumerActivationArgs.builder()
.location("string")
.multicastConsumerAssociation("string")
.multicastGroupConsumerActivationId("string")
.multicastGroupRangeActivation("string")
.description("string")
.labels(Map.of("string", "string"))
.logConfig(MulticastGroupConsumerActivationLogConfigArgs.builder()
.enabled(false)
.build())
.project("string")
.build());
multicast_group_consumer_activation_resource = gcp.networkservices.MulticastGroupConsumerActivation("multicastGroupConsumerActivationResource",
location="string",
multicast_consumer_association="string",
multicast_group_consumer_activation_id="string",
multicast_group_range_activation="string",
description="string",
labels={
"string": "string",
},
log_config={
"enabled": False,
},
project="string")
const multicastGroupConsumerActivationResource = new gcp.networkservices.MulticastGroupConsumerActivation("multicastGroupConsumerActivationResource", {
location: "string",
multicastConsumerAssociation: "string",
multicastGroupConsumerActivationId: "string",
multicastGroupRangeActivation: "string",
description: "string",
labels: {
string: "string",
},
logConfig: {
enabled: false,
},
project: "string",
});
type: gcp:networkservices:MulticastGroupConsumerActivation
properties:
description: string
labels:
string: string
location: string
logConfig:
enabled: false
multicastConsumerAssociation: string
multicastGroupConsumerActivationId: string
multicastGroupRangeActivation: string
project: string
MulticastGroupConsumerActivation 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 MulticastGroupConsumerActivation 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. - Multicast
Consumer stringAssociation - The resource name of the multicast consumer association that is in the
same zone as this multicast group consumer activation.
Use the following format:
projects/*/locations/*/multicastConsumerAssociations/*. - Multicast
Group stringConsumer Activation Id - A unique name for the multicast group consumer 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.
- Multicast
Group stringRange Activation - The resource name of the multicast group range activation created by the
admin in the same zone as this multicast group consumer activation. Use the
following format:
//
projects/*/locations/*/multicastGroupRangeActivations/*. - Description string
- An optional text description of the multicast group consumer 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_labelsfor all of the labels present on the resource. - Log
Config MulticastGroup Consumer Activation Log Config - 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. - Multicast
Consumer stringAssociation - The resource name of the multicast consumer association that is in the
same zone as this multicast group consumer activation.
Use the following format:
projects/*/locations/*/multicastConsumerAssociations/*. - Multicast
Group stringConsumer Activation Id - A unique name for the multicast group consumer 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.
- Multicast
Group stringRange Activation - The resource name of the multicast group range activation created by the
admin in the same zone as this multicast group consumer activation. Use the
following format:
//
projects/*/locations/*/multicastGroupRangeActivations/*. - Description string
- An optional text description of the multicast group consumer 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_labelsfor all of the labels present on the resource. - Log
Config MulticastGroup Consumer Activation Log Config Args - 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. - multicast
Consumer StringAssociation - The resource name of the multicast consumer association that is in the
same zone as this multicast group consumer activation.
Use the following format:
projects/*/locations/*/multicastConsumerAssociations/*. - multicast
Group StringConsumer Activation Id - A unique name for the multicast group consumer 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.
- multicast
Group StringRange Activation - The resource name of the multicast group range activation created by the
admin in the same zone as this multicast group consumer activation. Use the
following format:
//
projects/*/locations/*/multicastGroupRangeActivations/*. - description String
- An optional text description of the multicast group consumer 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_labelsfor all of the labels present on the resource. - log
Config MulticastGroup Consumer Activation Log Config - 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. - multicast
Consumer stringAssociation - The resource name of the multicast consumer association that is in the
same zone as this multicast group consumer activation.
Use the following format:
projects/*/locations/*/multicastConsumerAssociations/*. - multicast
Group stringConsumer Activation Id - A unique name for the multicast group consumer 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.
- multicast
Group stringRange Activation - The resource name of the multicast group range activation created by the
admin in the same zone as this multicast group consumer activation. Use the
following format:
//
projects/*/locations/*/multicastGroupRangeActivations/*. - description string
- An optional text description of the multicast group consumer 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_labelsfor all of the labels present on the resource. - log
Config MulticastGroup Consumer Activation Log Config - 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_
consumer_ strassociation - The resource name of the multicast consumer association that is in the
same zone as this multicast group consumer activation.
Use the following format:
projects/*/locations/*/multicastConsumerAssociations/*. - multicast_
group_ strconsumer_ activation_ id - A unique name for the multicast group consumer 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.
- multicast_
group_ strrange_ activation - The resource name of the multicast group range activation created by the
admin in the same zone as this multicast group consumer activation. Use the
following format:
//
projects/*/locations/*/multicastGroupRangeActivations/*. - description str
- An optional text description of the multicast group consumer 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_labelsfor all of the labels present on the resource. - log_
config MulticastGroup Consumer Activation Log Config Args - 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. - multicast
Consumer StringAssociation - The resource name of the multicast consumer association that is in the
same zone as this multicast group consumer activation.
Use the following format:
projects/*/locations/*/multicastConsumerAssociations/*. - multicast
Group StringConsumer Activation Id - A unique name for the multicast group consumer 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.
- multicast
Group StringRange Activation - The resource name of the multicast group range activation created by the
admin in the same zone as this multicast group consumer activation. Use the
following format:
//
projects/*/locations/*/multicastGroupRangeActivations/*. - description String
- An optional text description of the multicast group consumer 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_labelsfor all of the labels present on the resource. - log
Config 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 MulticastGroupConsumerActivation resource produces the following output properties:
- Create
Time string - The timestamp when the multicast group consumer activation was created.
- Effective
Labels Dictionary<string, string> - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Identifier. The resource name of the multicast group consumer activation.
Use the following format:
projects/*/locations/*/multicastGroupConsumerActivations/*. - Pulumi
Labels Dictionary<string, string> - The combination of labels configured directly on the resource and default labels configured on the provider.
- States
List<Multicast
Group Consumer Activation State> - (Output) The state of the multicast resource. Possible values: CREATING ACTIVE DELETING DELETE_FAILED UPDATING UPDATE_FAILED INACTIVE
- Unique
Id string - The Google-generated UUID for the resource. This value is unique across all multicast group consumer activation resources. If a group consumer activation is deleted and another with the same name is created, the new group consumer activation is assigned a different unique_id.
- Update
Time string - The timestamp when the multicast group consumer activation was most recently updated.
- Create
Time string - The timestamp when the multicast group consumer activation was created.
- Effective
Labels map[string]string - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Identifier. The resource name of the multicast group consumer activation.
Use the following format:
projects/*/locations/*/multicastGroupConsumerActivations/*. - Pulumi
Labels map[string]string - The combination of labels configured directly on the resource and default labels configured on the provider.
- States
[]Multicast
Group Consumer Activation State Type - (Output) The state of the multicast resource. Possible values: CREATING ACTIVE DELETING DELETE_FAILED UPDATING UPDATE_FAILED INACTIVE
- Unique
Id string - The Google-generated UUID for the resource. This value is unique across all multicast group consumer activation resources. If a group consumer activation is deleted and another with the same name is created, the new group consumer activation is assigned a different unique_id.
- Update
Time string - The timestamp when the multicast group consumer activation was most recently updated.
- create
Time String - The timestamp when the multicast group consumer activation was created.
- effective
Labels Map<String,String> - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Identifier. The resource name of the multicast group consumer activation.
Use the following format:
projects/*/locations/*/multicastGroupConsumerActivations/*. - pulumi
Labels Map<String,String> - The combination of labels configured directly on the resource and default labels configured on the provider.
- states
List<Multicast
Group Consumer Activation State> - (Output) The state of the multicast resource. Possible values: CREATING ACTIVE DELETING DELETE_FAILED UPDATING UPDATE_FAILED INACTIVE
- unique
Id String - The Google-generated UUID for the resource. This value is unique across all multicast group consumer activation resources. If a group consumer activation is deleted and another with the same name is created, the new group consumer activation is assigned a different unique_id.
- update
Time String - The timestamp when the multicast group consumer activation was most recently updated.
- create
Time string - The timestamp when the multicast group consumer activation was created.
- effective
Labels {[key: string]: string} - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Identifier. The resource name of the multicast group consumer activation.
Use the following format:
projects/*/locations/*/multicastGroupConsumerActivations/*. - pulumi
Labels {[key: string]: string} - The combination of labels configured directly on the resource and default labels configured on the provider.
- states
Multicast
Group Consumer Activation State[] - (Output) The state of the multicast resource. Possible values: CREATING ACTIVE DELETING DELETE_FAILED UPDATING UPDATE_FAILED INACTIVE
- unique
Id string - The Google-generated UUID for the resource. This value is unique across all multicast group consumer activation resources. If a group consumer activation is deleted and another with the same name is created, the new group consumer activation is assigned a different unique_id.
- update
Time string - The timestamp when the multicast group consumer activation was most recently updated.
- create_
time str - The timestamp when the multicast group consumer 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.
- name str
- Identifier. The resource name of the multicast group consumer activation.
Use the following format:
projects/*/locations/*/multicastGroupConsumerActivations/*. - pulumi_
labels Mapping[str, str] - The combination of labels configured directly on the resource and default labels configured on the provider.
- states
Sequence[Multicast
Group Consumer Activation State] - (Output) The state of the multicast resource. Possible values: CREATING ACTIVE DELETING DELETE_FAILED UPDATING UPDATE_FAILED INACTIVE
- unique_
id str - The Google-generated UUID for the resource. This value is unique across all multicast group consumer activation resources. If a group consumer activation is deleted and another with the same name is created, the new group consumer activation is assigned a different unique_id.
- update_
time str - The timestamp when the multicast group consumer activation was most recently updated.
- create
Time String - The timestamp when the multicast group consumer activation was created.
- effective
Labels Map<String> - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Identifier. The resource name of the multicast group consumer activation.
Use the following format:
projects/*/locations/*/multicastGroupConsumerActivations/*. - pulumi
Labels 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
- unique
Id String - The Google-generated UUID for the resource. This value is unique across all multicast group consumer activation resources. If a group consumer activation is deleted and another with the same name is created, the new group consumer activation is assigned a different unique_id.
- update
Time String - The timestamp when the multicast group consumer activation was most recently updated.
Look up Existing MulticastGroupConsumerActivation Resource
Get an existing MulticastGroupConsumerActivation 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?: MulticastGroupConsumerActivationState, opts?: CustomResourceOptions): MulticastGroupConsumerActivation@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,
labels: Optional[Mapping[str, str]] = None,
location: Optional[str] = None,
log_config: Optional[MulticastGroupConsumerActivationLogConfigArgs] = None,
multicast_consumer_association: Optional[str] = None,
multicast_group_consumer_activation_id: Optional[str] = None,
multicast_group_range_activation: Optional[str] = None,
name: Optional[str] = None,
project: Optional[str] = None,
pulumi_labels: Optional[Mapping[str, str]] = None,
states: Optional[Sequence[MulticastGroupConsumerActivationStateArgs]] = None,
unique_id: Optional[str] = None,
update_time: Optional[str] = None) -> MulticastGroupConsumerActivationfunc GetMulticastGroupConsumerActivation(ctx *Context, name string, id IDInput, state *MulticastGroupConsumerActivationState, opts ...ResourceOption) (*MulticastGroupConsumerActivation, error)public static MulticastGroupConsumerActivation Get(string name, Input<string> id, MulticastGroupConsumerActivationState? state, CustomResourceOptions? opts = null)public static MulticastGroupConsumerActivation get(String name, Output<String> id, MulticastGroupConsumerActivationState state, CustomResourceOptions options)resources: _: type: gcp:networkservices:MulticastGroupConsumerActivation 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.
- Create
Time string - The timestamp when the multicast group consumer activation was created.
- Description string
- An optional text description of the multicast group consumer activation.
- Effective
Labels 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>
- 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_labelsfor 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. - Log
Config MulticastGroup Consumer Activation Log Config - The logging configuration. Structure is documented below.
- Multicast
Consumer stringAssociation - The resource name of the multicast consumer association that is in the
same zone as this multicast group consumer activation.
Use the following format:
projects/*/locations/*/multicastConsumerAssociations/*. - Multicast
Group stringConsumer Activation Id - A unique name for the multicast group consumer 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.
- Multicast
Group stringRange Activation - The resource name of the multicast group range activation created by the
admin in the same zone as this multicast group consumer activation. Use the
following format:
//
projects/*/locations/*/multicastGroupRangeActivations/*. - Name string
- Identifier. The resource name of the multicast group consumer activation.
Use the following format:
projects/*/locations/*/multicastGroupConsumerActivations/*. - Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Pulumi
Labels Dictionary<string, string> - The combination of labels configured directly on the resource and default labels configured on the provider.
- States
List<Multicast
Group Consumer Activation State> - (Output) The state of the multicast resource. Possible values: CREATING ACTIVE DELETING DELETE_FAILED UPDATING UPDATE_FAILED INACTIVE
- Unique
Id string - The Google-generated UUID for the resource. This value is unique across all multicast group consumer activation resources. If a group consumer activation is deleted and another with the same name is created, the new group consumer activation is assigned a different unique_id.
- Update
Time string - The timestamp when the multicast group consumer activation was most recently updated.
- Create
Time string - The timestamp when the multicast group consumer activation was created.
- Description string
- An optional text description of the multicast group consumer activation.
- Effective
Labels 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
- 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_labelsfor 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. - Log
Config MulticastGroup Consumer Activation Log Config Args - The logging configuration. Structure is documented below.
- Multicast
Consumer stringAssociation - The resource name of the multicast consumer association that is in the
same zone as this multicast group consumer activation.
Use the following format:
projects/*/locations/*/multicastConsumerAssociations/*. - Multicast
Group stringConsumer Activation Id - A unique name for the multicast group consumer 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.
- Multicast
Group stringRange Activation - The resource name of the multicast group range activation created by the
admin in the same zone as this multicast group consumer activation. Use the
following format:
//
projects/*/locations/*/multicastGroupRangeActivations/*. - Name string
- Identifier. The resource name of the multicast group consumer activation.
Use the following format:
projects/*/locations/*/multicastGroupConsumerActivations/*. - Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Pulumi
Labels map[string]string - The combination of labels configured directly on the resource and default labels configured on the provider.
- States
[]Multicast
Group Consumer Activation State Type Args - (Output) The state of the multicast resource. Possible values: CREATING ACTIVE DELETING DELETE_FAILED UPDATING UPDATE_FAILED INACTIVE
- Unique
Id string - The Google-generated UUID for the resource. This value is unique across all multicast group consumer activation resources. If a group consumer activation is deleted and another with the same name is created, the new group consumer activation is assigned a different unique_id.
- Update
Time string - The timestamp when the multicast group consumer activation was most recently updated.
- create
Time String - The timestamp when the multicast group consumer activation was created.
- description String
- An optional text description of the multicast group consumer activation.
- effective
Labels 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>
- 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_labelsfor 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. - log
Config MulticastGroup Consumer Activation Log Config - The logging configuration. Structure is documented below.
- multicast
Consumer StringAssociation - The resource name of the multicast consumer association that is in the
same zone as this multicast group consumer activation.
Use the following format:
projects/*/locations/*/multicastConsumerAssociations/*. - multicast
Group StringConsumer Activation Id - A unique name for the multicast group consumer 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.
- multicast
Group StringRange Activation - The resource name of the multicast group range activation created by the
admin in the same zone as this multicast group consumer activation. Use the
following format:
//
projects/*/locations/*/multicastGroupRangeActivations/*. - name String
- Identifier. The resource name of the multicast group consumer activation.
Use the following format:
projects/*/locations/*/multicastGroupConsumerActivations/*. - project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- pulumi
Labels Map<String,String> - The combination of labels configured directly on the resource and default labels configured on the provider.
- states
List<Multicast
Group Consumer Activation State> - (Output) The state of the multicast resource. Possible values: CREATING ACTIVE DELETING DELETE_FAILED UPDATING UPDATE_FAILED INACTIVE
- unique
Id String - The Google-generated UUID for the resource. This value is unique across all multicast group consumer activation resources. If a group consumer activation is deleted and another with the same name is created, the new group consumer activation is assigned a different unique_id.
- update
Time String - The timestamp when the multicast group consumer activation was most recently updated.
- create
Time string - The timestamp when the multicast group consumer activation was created.
- description string
- An optional text description of the multicast group consumer activation.
- effective
Labels {[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}
- 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_labelsfor 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. - log
Config MulticastGroup Consumer Activation Log Config - The logging configuration. Structure is documented below.
- multicast
Consumer stringAssociation - The resource name of the multicast consumer association that is in the
same zone as this multicast group consumer activation.
Use the following format:
projects/*/locations/*/multicastConsumerAssociations/*. - multicast
Group stringConsumer Activation Id - A unique name for the multicast group consumer 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.
- multicast
Group stringRange Activation - The resource name of the multicast group range activation created by the
admin in the same zone as this multicast group consumer activation. Use the
following format:
//
projects/*/locations/*/multicastGroupRangeActivations/*. - name string
- Identifier. The resource name of the multicast group consumer activation.
Use the following format:
projects/*/locations/*/multicastGroupConsumerActivations/*. - project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- pulumi
Labels {[key: string]: string} - The combination of labels configured directly on the resource and default labels configured on the provider.
- states
Multicast
Group Consumer Activation State[] - (Output) The state of the multicast resource. Possible values: CREATING ACTIVE DELETING DELETE_FAILED UPDATING UPDATE_FAILED INACTIVE
- unique
Id string - The Google-generated UUID for the resource. This value is unique across all multicast group consumer activation resources. If a group consumer activation is deleted and another with the same name is created, the new group consumer activation is assigned a different unique_id.
- update
Time string - The timestamp when the multicast group consumer activation was most recently updated.
- create_
time str - The timestamp when the multicast group consumer activation was created.
- description str
- An optional text description of the multicast group consumer 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.
- 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_labelsfor 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 MulticastGroup Consumer Activation Log Config Args - The logging configuration. Structure is documented below.
- multicast_
consumer_ strassociation - The resource name of the multicast consumer association that is in the
same zone as this multicast group consumer activation.
Use the following format:
projects/*/locations/*/multicastConsumerAssociations/*. - multicast_
group_ strconsumer_ activation_ id - A unique name for the multicast group consumer 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.
- multicast_
group_ strrange_ activation - The resource name of the multicast group range activation created by the
admin in the same zone as this multicast group consumer activation. Use the
following format:
//
projects/*/locations/*/multicastGroupRangeActivations/*. - name str
- Identifier. The resource name of the multicast group consumer activation.
Use the following format:
projects/*/locations/*/multicastGroupConsumerActivations/*. - 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[Multicast
Group Consumer Activation State Args] - (Output) The state of the multicast resource. Possible values: CREATING ACTIVE DELETING DELETE_FAILED UPDATING UPDATE_FAILED INACTIVE
- unique_
id str - The Google-generated UUID for the resource. This value is unique across all multicast group consumer activation resources. If a group consumer activation is deleted and another with the same name is created, the new group consumer activation is assigned a different unique_id.
- update_
time str - The timestamp when the multicast group consumer activation was most recently updated.
- create
Time String - The timestamp when the multicast group consumer activation was created.
- description String
- An optional text description of the multicast group consumer activation.
- effective
Labels 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>
- 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_labelsfor 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. - log
Config Property Map - The logging configuration. Structure is documented below.
- multicast
Consumer StringAssociation - The resource name of the multicast consumer association that is in the
same zone as this multicast group consumer activation.
Use the following format:
projects/*/locations/*/multicastConsumerAssociations/*. - multicast
Group StringConsumer Activation Id - A unique name for the multicast group consumer 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.
- multicast
Group StringRange Activation - The resource name of the multicast group range activation created by the
admin in the same zone as this multicast group consumer activation. Use the
following format:
//
projects/*/locations/*/multicastGroupRangeActivations/*. - name String
- Identifier. The resource name of the multicast group consumer activation.
Use the following format:
projects/*/locations/*/multicastGroupConsumerActivations/*. - project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- pulumi
Labels 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
- unique
Id String - The Google-generated UUID for the resource. This value is unique across all multicast group consumer activation resources. If a group consumer activation is deleted and another with the same name is created, the new group consumer activation is assigned a different unique_id.
- update
Time String - The timestamp when the multicast group consumer activation was most recently updated.
Supporting Types
MulticastGroupConsumerActivationLogConfig, MulticastGroupConsumerActivationLogConfigArgs
- 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.
MulticastGroupConsumerActivationState, MulticastGroupConsumerActivationStateArgs
- 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
MulticastGroupConsumerActivation can be imported using any of these accepted formats:
projects/{{project}}/locations/{{location}}/multicastGroupConsumerActivations/{{multicast_group_consumer_activation_id}}{{project}}/{{location}}/{{multicast_group_consumer_activation_id}}{{location}}/{{multicast_group_consumer_activation_id}}
When using the pulumi import command, MulticastGroupConsumerActivation can be imported using one of the formats above. For example:
$ pulumi import gcp:networkservices/multicastGroupConsumerActivation:MulticastGroupConsumerActivation default projects/{{project}}/locations/{{location}}/multicastGroupConsumerActivations/{{multicast_group_consumer_activation_id}}
$ pulumi import gcp:networkservices/multicastGroupConsumerActivation:MulticastGroupConsumerActivation default {{project}}/{{location}}/{{multicast_group_consumer_activation_id}}
$ pulumi import gcp:networkservices/multicastGroupConsumerActivation:MulticastGroupConsumerActivation default {{location}}/{{multicast_group_consumer_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-betaTerraform Provider.
