1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. networkconnectivity
  5. MulticloudDataTransferConfig
Google Cloud v9.10.0 published on Friday, Jan 16, 2026 by Pulumi
gcp logo
Google Cloud v9.10.0 published on Friday, Jan 16, 2026 by Pulumi

    ‘Manage Multicloud Data Transfer Configs’

    To get more information about MulticloudDataTransferConfig, see:

    Example Usage

    Network Connectivity Multicloud Data Transfer Config Basic

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const example = new gcp.networkconnectivity.MulticloudDataTransferConfig("example", {
        name: "basic_config",
        location: "europe-west1",
        description: "A basic multicloud data transfer configs",
        labels: {
            foo: "bar",
        },
        services: [
            {
                serviceName: "big-query",
            },
            {
                serviceName: "cloud-storage",
            },
        ],
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    example = gcp.networkconnectivity.MulticloudDataTransferConfig("example",
        name="basic_config",
        location="europe-west1",
        description="A basic multicloud data transfer configs",
        labels={
            "foo": "bar",
        },
        services=[
            {
                "service_name": "big-query",
            },
            {
                "service_name": "cloud-storage",
            },
        ])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v9/go/gcp/networkconnectivity"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := networkconnectivity.NewMulticloudDataTransferConfig(ctx, "example", &networkconnectivity.MulticloudDataTransferConfigArgs{
    			Name:        pulumi.String("basic_config"),
    			Location:    pulumi.String("europe-west1"),
    			Description: pulumi.String("A basic multicloud data transfer configs"),
    			Labels: pulumi.StringMap{
    				"foo": pulumi.String("bar"),
    			},
    			Services: networkconnectivity.MulticloudDataTransferConfigServiceArray{
    				&networkconnectivity.MulticloudDataTransferConfigServiceArgs{
    					ServiceName: pulumi.String("big-query"),
    				},
    				&networkconnectivity.MulticloudDataTransferConfigServiceArgs{
    					ServiceName: pulumi.String("cloud-storage"),
    				},
    			},
    		})
    		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 example = new Gcp.NetworkConnectivity.MulticloudDataTransferConfig("example", new()
        {
            Name = "basic_config",
            Location = "europe-west1",
            Description = "A basic multicloud data transfer configs",
            Labels = 
            {
                { "foo", "bar" },
            },
            Services = new[]
            {
                new Gcp.NetworkConnectivity.Inputs.MulticloudDataTransferConfigServiceArgs
                {
                    ServiceName = "big-query",
                },
                new Gcp.NetworkConnectivity.Inputs.MulticloudDataTransferConfigServiceArgs
                {
                    ServiceName = "cloud-storage",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.networkconnectivity.MulticloudDataTransferConfig;
    import com.pulumi.gcp.networkconnectivity.MulticloudDataTransferConfigArgs;
    import com.pulumi.gcp.networkconnectivity.inputs.MulticloudDataTransferConfigServiceArgs;
    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 example = new MulticloudDataTransferConfig("example", MulticloudDataTransferConfigArgs.builder()
                .name("basic_config")
                .location("europe-west1")
                .description("A basic multicloud data transfer configs")
                .labels(Map.of("foo", "bar"))
                .services(            
                    MulticloudDataTransferConfigServiceArgs.builder()
                        .serviceName("big-query")
                        .build(),
                    MulticloudDataTransferConfigServiceArgs.builder()
                        .serviceName("cloud-storage")
                        .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: gcp:networkconnectivity:MulticloudDataTransferConfig
        properties:
          name: basic_config
          location: europe-west1
          description: A basic multicloud data transfer configs
          labels:
            foo: bar
          services:
            - serviceName: big-query
            - serviceName: cloud-storage
    

    Create MulticloudDataTransferConfig Resource

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

    Constructor syntax

    new MulticloudDataTransferConfig(name: string, args: MulticloudDataTransferConfigArgs, opts?: CustomResourceOptions);
    @overload
    def MulticloudDataTransferConfig(resource_name: str,
                                     args: MulticloudDataTransferConfigArgs,
                                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def MulticloudDataTransferConfig(resource_name: str,
                                     opts: Optional[ResourceOptions] = None,
                                     location: Optional[str] = None,
                                     description: Optional[str] = None,
                                     labels: Optional[Mapping[str, str]] = None,
                                     name: Optional[str] = None,
                                     project: Optional[str] = None,
                                     services: Optional[Sequence[MulticloudDataTransferConfigServiceArgs]] = None)
    func NewMulticloudDataTransferConfig(ctx *Context, name string, args MulticloudDataTransferConfigArgs, opts ...ResourceOption) (*MulticloudDataTransferConfig, error)
    public MulticloudDataTransferConfig(string name, MulticloudDataTransferConfigArgs args, CustomResourceOptions? opts = null)
    public MulticloudDataTransferConfig(String name, MulticloudDataTransferConfigArgs args)
    public MulticloudDataTransferConfig(String name, MulticloudDataTransferConfigArgs args, CustomResourceOptions options)
    
    type: gcp:networkconnectivity:MulticloudDataTransferConfig
    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 MulticloudDataTransferConfigArgs
    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 MulticloudDataTransferConfigArgs
    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 MulticloudDataTransferConfigArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args MulticloudDataTransferConfigArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args MulticloudDataTransferConfigArgs
    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 multicloudDataTransferConfigResource = new Gcp.NetworkConnectivity.MulticloudDataTransferConfig("multicloudDataTransferConfigResource", new()
    {
        Location = "string",
        Description = "string",
        Labels = 
        {
            { "string", "string" },
        },
        Name = "string",
        Project = "string",
        Services = new[]
        {
            new Gcp.NetworkConnectivity.Inputs.MulticloudDataTransferConfigServiceArgs
            {
                ServiceName = "string",
                States = new[]
                {
                    new Gcp.NetworkConnectivity.Inputs.MulticloudDataTransferConfigServiceStateArgs
                    {
                        EffectiveTime = "string",
                        State = "string",
                    },
                },
            },
        },
    });
    
    example, err := networkconnectivity.NewMulticloudDataTransferConfig(ctx, "multicloudDataTransferConfigResource", &networkconnectivity.MulticloudDataTransferConfigArgs{
    	Location:    pulumi.String("string"),
    	Description: pulumi.String("string"),
    	Labels: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Name:    pulumi.String("string"),
    	Project: pulumi.String("string"),
    	Services: networkconnectivity.MulticloudDataTransferConfigServiceArray{
    		&networkconnectivity.MulticloudDataTransferConfigServiceArgs{
    			ServiceName: pulumi.String("string"),
    			States: networkconnectivity.MulticloudDataTransferConfigServiceStateArray{
    				&networkconnectivity.MulticloudDataTransferConfigServiceStateArgs{
    					EffectiveTime: pulumi.String("string"),
    					State:         pulumi.String("string"),
    				},
    			},
    		},
    	},
    })
    
    var multicloudDataTransferConfigResource = new MulticloudDataTransferConfig("multicloudDataTransferConfigResource", MulticloudDataTransferConfigArgs.builder()
        .location("string")
        .description("string")
        .labels(Map.of("string", "string"))
        .name("string")
        .project("string")
        .services(MulticloudDataTransferConfigServiceArgs.builder()
            .serviceName("string")
            .states(MulticloudDataTransferConfigServiceStateArgs.builder()
                .effectiveTime("string")
                .state("string")
                .build())
            .build())
        .build());
    
    multicloud_data_transfer_config_resource = gcp.networkconnectivity.MulticloudDataTransferConfig("multicloudDataTransferConfigResource",
        location="string",
        description="string",
        labels={
            "string": "string",
        },
        name="string",
        project="string",
        services=[{
            "service_name": "string",
            "states": [{
                "effective_time": "string",
                "state": "string",
            }],
        }])
    
    const multicloudDataTransferConfigResource = new gcp.networkconnectivity.MulticloudDataTransferConfig("multicloudDataTransferConfigResource", {
        location: "string",
        description: "string",
        labels: {
            string: "string",
        },
        name: "string",
        project: "string",
        services: [{
            serviceName: "string",
            states: [{
                effectiveTime: "string",
                state: "string",
            }],
        }],
    });
    
    type: gcp:networkconnectivity:MulticloudDataTransferConfig
    properties:
        description: string
        labels:
            string: string
        location: string
        name: string
        project: string
        services:
            - serviceName: string
              states:
                - effectiveTime: string
                  state: string
    

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

    Location string
    The location of the multicloud data transfer config.
    Description string
    A description of this resource.
    Labels Dictionary<string, string>

    User-defined labels.

    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.

    Name string
    The name of the MulticloudDataTransferConfig resource.
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    Services List<MulticloudDataTransferConfigService>
    Maps services to their current or planned states. Service names are keys, and the associated values describe the state of the service. Structure is documented below.
    Location string
    The location of the multicloud data transfer config.
    Description string
    A description of this resource.
    Labels map[string]string

    User-defined labels.

    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.

    Name string
    The name of the MulticloudDataTransferConfig resource.
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    Services []MulticloudDataTransferConfigServiceArgs
    Maps services to their current or planned states. Service names are keys, and the associated values describe the state of the service. Structure is documented below.
    location String
    The location of the multicloud data transfer config.
    description String
    A description of this resource.
    labels Map<String,String>

    User-defined labels.

    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.

    name String
    The name of the MulticloudDataTransferConfig resource.
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    services List<MulticloudDataTransferConfigService>
    Maps services to their current or planned states. Service names are keys, and the associated values describe the state of the service. Structure is documented below.
    location string
    The location of the multicloud data transfer config.
    description string
    A description of this resource.
    labels {[key: string]: string}

    User-defined labels.

    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.

    name string
    The name of the MulticloudDataTransferConfig resource.
    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    services MulticloudDataTransferConfigService[]
    Maps services to their current or planned states. Service names are keys, and the associated values describe the state of the service. Structure is documented below.
    location str
    The location of the multicloud data transfer config.
    description str
    A description of this resource.
    labels Mapping[str, str]

    User-defined labels.

    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.

    name str
    The name of the MulticloudDataTransferConfig resource.
    project str
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    services Sequence[MulticloudDataTransferConfigServiceArgs]
    Maps services to their current or planned states. Service names are keys, and the associated values describe the state of the service. Structure is documented below.
    location String
    The location of the multicloud data transfer config.
    description String
    A description of this resource.
    labels Map<String>

    User-defined labels.

    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.

    name String
    The name of the MulticloudDataTransferConfig resource.
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    services List<Property Map>
    Maps services to their current or planned states. Service names are keys, and the associated values describe the state of the service. Structure is documented below.

    Outputs

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

    CreateTime string
    Time when the MulticloudDataTransferConfig resource was created.
    DestinationsActiveCount int
    The number of Destination resources in use with the MulticloudDataTransferConfig resource.
    DestinationsCount int
    The number of Destination resources configured for the MulticloudDataTransferConfig resource.
    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.
    Etag string
    The etag is computed by the server, and might be sent with update and delete requests so that the client has an up-to-date value before proceeding.
    Id string
    The provider-assigned unique ID for this managed resource.
    PulumiLabels Dictionary<string, string>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    Uid string
    The Google-generated unique ID for the MulticloudDataTransferConfig resource. This value is unique across all MulticloudDataTransferConfig resources. If a resource is deleted and another with the same name is created, the new resource is assigned a different and unique ID.
    UpdateTime string
    Time when the MulticloudDataTransferConfig resource was updated.
    CreateTime string
    Time when the MulticloudDataTransferConfig resource was created.
    DestinationsActiveCount int
    The number of Destination resources in use with the MulticloudDataTransferConfig resource.
    DestinationsCount int
    The number of Destination resources configured for the MulticloudDataTransferConfig resource.
    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.
    Etag string
    The etag is computed by the server, and might be sent with update and delete requests so that the client has an up-to-date value before proceeding.
    Id string
    The provider-assigned unique ID for this managed resource.
    PulumiLabels map[string]string
    The combination of labels configured directly on the resource and default labels configured on the provider.
    Uid string
    The Google-generated unique ID for the MulticloudDataTransferConfig resource. This value is unique across all MulticloudDataTransferConfig resources. If a resource is deleted and another with the same name is created, the new resource is assigned a different and unique ID.
    UpdateTime string
    Time when the MulticloudDataTransferConfig resource was updated.
    createTime String
    Time when the MulticloudDataTransferConfig resource was created.
    destinationsActiveCount Integer
    The number of Destination resources in use with the MulticloudDataTransferConfig resource.
    destinationsCount Integer
    The number of Destination resources configured for the MulticloudDataTransferConfig resource.
    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.
    etag String
    The etag is computed by the server, and might be sent with update and delete requests so that the client has an up-to-date value before proceeding.
    id String
    The provider-assigned unique ID for this managed resource.
    pulumiLabels Map<String,String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    uid String
    The Google-generated unique ID for the MulticloudDataTransferConfig resource. This value is unique across all MulticloudDataTransferConfig resources. If a resource is deleted and another with the same name is created, the new resource is assigned a different and unique ID.
    updateTime String
    Time when the MulticloudDataTransferConfig resource was updated.
    createTime string
    Time when the MulticloudDataTransferConfig resource was created.
    destinationsActiveCount number
    The number of Destination resources in use with the MulticloudDataTransferConfig resource.
    destinationsCount number
    The number of Destination resources configured for the MulticloudDataTransferConfig resource.
    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.
    etag string
    The etag is computed by the server, and might be sent with update and delete requests so that the client has an up-to-date value before proceeding.
    id string
    The provider-assigned unique ID for this managed resource.
    pulumiLabels {[key: string]: string}
    The combination of labels configured directly on the resource and default labels configured on the provider.
    uid string
    The Google-generated unique ID for the MulticloudDataTransferConfig resource. This value is unique across all MulticloudDataTransferConfig resources. If a resource is deleted and another with the same name is created, the new resource is assigned a different and unique ID.
    updateTime string
    Time when the MulticloudDataTransferConfig resource was updated.
    create_time str
    Time when the MulticloudDataTransferConfig resource was created.
    destinations_active_count int
    The number of Destination resources in use with the MulticloudDataTransferConfig resource.
    destinations_count int
    The number of Destination resources configured for the MulticloudDataTransferConfig resource.
    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.
    etag str
    The etag is computed by the server, and might be sent with update and delete requests so that the client has an up-to-date value before proceeding.
    id str
    The provider-assigned unique ID for this managed resource.
    pulumi_labels Mapping[str, str]
    The combination of labels configured directly on the resource and default labels configured on the provider.
    uid str
    The Google-generated unique ID for the MulticloudDataTransferConfig resource. This value is unique across all MulticloudDataTransferConfig resources. If a resource is deleted and another with the same name is created, the new resource is assigned a different and unique ID.
    update_time str
    Time when the MulticloudDataTransferConfig resource was updated.
    createTime String
    Time when the MulticloudDataTransferConfig resource was created.
    destinationsActiveCount Number
    The number of Destination resources in use with the MulticloudDataTransferConfig resource.
    destinationsCount Number
    The number of Destination resources configured for the MulticloudDataTransferConfig resource.
    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.
    etag String
    The etag is computed by the server, and might be sent with update and delete requests so that the client has an up-to-date value before proceeding.
    id String
    The provider-assigned unique ID for this managed resource.
    pulumiLabels Map<String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    uid String
    The Google-generated unique ID for the MulticloudDataTransferConfig resource. This value is unique across all MulticloudDataTransferConfig resources. If a resource is deleted and another with the same name is created, the new resource is assigned a different and unique ID.
    updateTime String
    Time when the MulticloudDataTransferConfig resource was updated.

    Look up Existing MulticloudDataTransferConfig Resource

    Get an existing MulticloudDataTransferConfig 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?: MulticloudDataTransferConfigState, opts?: CustomResourceOptions): MulticloudDataTransferConfig
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            create_time: Optional[str] = None,
            description: Optional[str] = None,
            destinations_active_count: Optional[int] = None,
            destinations_count: Optional[int] = None,
            effective_labels: Optional[Mapping[str, str]] = None,
            etag: Optional[str] = None,
            labels: Optional[Mapping[str, str]] = None,
            location: Optional[str] = None,
            name: Optional[str] = None,
            project: Optional[str] = None,
            pulumi_labels: Optional[Mapping[str, str]] = None,
            services: Optional[Sequence[MulticloudDataTransferConfigServiceArgs]] = None,
            uid: Optional[str] = None,
            update_time: Optional[str] = None) -> MulticloudDataTransferConfig
    func GetMulticloudDataTransferConfig(ctx *Context, name string, id IDInput, state *MulticloudDataTransferConfigState, opts ...ResourceOption) (*MulticloudDataTransferConfig, error)
    public static MulticloudDataTransferConfig Get(string name, Input<string> id, MulticloudDataTransferConfigState? state, CustomResourceOptions? opts = null)
    public static MulticloudDataTransferConfig get(String name, Output<String> id, MulticloudDataTransferConfigState state, CustomResourceOptions options)
    resources:  _:    type: gcp:networkconnectivity:MulticloudDataTransferConfig    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
    Time when the MulticloudDataTransferConfig resource was created.
    Description string
    A description of this resource.
    DestinationsActiveCount int
    The number of Destination resources in use with the MulticloudDataTransferConfig resource.
    DestinationsCount int
    The number of Destination resources configured for the MulticloudDataTransferConfig resource.
    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.
    Etag string
    The etag is computed by the server, and might be sent with update and delete requests so that the client has an up-to-date value before proceeding.
    Labels Dictionary<string, string>

    User-defined labels.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    Location string
    The location of the multicloud data transfer config.
    Name string
    The name of the MulticloudDataTransferConfig resource.
    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.
    Services List<MulticloudDataTransferConfigService>
    Maps services to their current or planned states. Service names are keys, and the associated values describe the state of the service. Structure is documented below.
    Uid string
    The Google-generated unique ID for the MulticloudDataTransferConfig resource. This value is unique across all MulticloudDataTransferConfig resources. If a resource is deleted and another with the same name is created, the new resource is assigned a different and unique ID.
    UpdateTime string
    Time when the MulticloudDataTransferConfig resource was updated.
    CreateTime string
    Time when the MulticloudDataTransferConfig resource was created.
    Description string
    A description of this resource.
    DestinationsActiveCount int
    The number of Destination resources in use with the MulticloudDataTransferConfig resource.
    DestinationsCount int
    The number of Destination resources configured for the MulticloudDataTransferConfig resource.
    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.
    Etag string
    The etag is computed by the server, and might be sent with update and delete requests so that the client has an up-to-date value before proceeding.
    Labels map[string]string

    User-defined labels.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    Location string
    The location of the multicloud data transfer config.
    Name string
    The name of the MulticloudDataTransferConfig resource.
    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.
    Services []MulticloudDataTransferConfigServiceArgs
    Maps services to their current or planned states. Service names are keys, and the associated values describe the state of the service. Structure is documented below.
    Uid string
    The Google-generated unique ID for the MulticloudDataTransferConfig resource. This value is unique across all MulticloudDataTransferConfig resources. If a resource is deleted and another with the same name is created, the new resource is assigned a different and unique ID.
    UpdateTime string
    Time when the MulticloudDataTransferConfig resource was updated.
    createTime String
    Time when the MulticloudDataTransferConfig resource was created.
    description String
    A description of this resource.
    destinationsActiveCount Integer
    The number of Destination resources in use with the MulticloudDataTransferConfig resource.
    destinationsCount Integer
    The number of Destination resources configured for the MulticloudDataTransferConfig resource.
    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.
    etag String
    The etag is computed by the server, and might be sent with update and delete requests so that the client has an up-to-date value before proceeding.
    labels Map<String,String>

    User-defined labels.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    location String
    The location of the multicloud data transfer config.
    name String
    The name of the MulticloudDataTransferConfig resource.
    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.
    services List<MulticloudDataTransferConfigService>
    Maps services to their current or planned states. Service names are keys, and the associated values describe the state of the service. Structure is documented below.
    uid String
    The Google-generated unique ID for the MulticloudDataTransferConfig resource. This value is unique across all MulticloudDataTransferConfig resources. If a resource is deleted and another with the same name is created, the new resource is assigned a different and unique ID.
    updateTime String
    Time when the MulticloudDataTransferConfig resource was updated.
    createTime string
    Time when the MulticloudDataTransferConfig resource was created.
    description string
    A description of this resource.
    destinationsActiveCount number
    The number of Destination resources in use with the MulticloudDataTransferConfig resource.
    destinationsCount number
    The number of Destination resources configured for the MulticloudDataTransferConfig resource.
    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.
    etag string
    The etag is computed by the server, and might be sent with update and delete requests so that the client has an up-to-date value before proceeding.
    labels {[key: string]: string}

    User-defined labels.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    location string
    The location of the multicloud data transfer config.
    name string
    The name of the MulticloudDataTransferConfig resource.
    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.
    services MulticloudDataTransferConfigService[]
    Maps services to their current or planned states. Service names are keys, and the associated values describe the state of the service. Structure is documented below.
    uid string
    The Google-generated unique ID for the MulticloudDataTransferConfig resource. This value is unique across all MulticloudDataTransferConfig resources. If a resource is deleted and another with the same name is created, the new resource is assigned a different and unique ID.
    updateTime string
    Time when the MulticloudDataTransferConfig resource was updated.
    create_time str
    Time when the MulticloudDataTransferConfig resource was created.
    description str
    A description of this resource.
    destinations_active_count int
    The number of Destination resources in use with the MulticloudDataTransferConfig resource.
    destinations_count int
    The number of Destination resources configured for the MulticloudDataTransferConfig resource.
    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.
    etag str
    The etag is computed by the server, and might be sent with update and delete requests so that the client has an up-to-date value before proceeding.
    labels Mapping[str, str]

    User-defined labels.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    location str
    The location of the multicloud data transfer config.
    name str
    The name of the MulticloudDataTransferConfig resource.
    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.
    services Sequence[MulticloudDataTransferConfigServiceArgs]
    Maps services to their current or planned states. Service names are keys, and the associated values describe the state of the service. Structure is documented below.
    uid str
    The Google-generated unique ID for the MulticloudDataTransferConfig resource. This value is unique across all MulticloudDataTransferConfig resources. If a resource is deleted and another with the same name is created, the new resource is assigned a different and unique ID.
    update_time str
    Time when the MulticloudDataTransferConfig resource was updated.
    createTime String
    Time when the MulticloudDataTransferConfig resource was created.
    description String
    A description of this resource.
    destinationsActiveCount Number
    The number of Destination resources in use with the MulticloudDataTransferConfig resource.
    destinationsCount Number
    The number of Destination resources configured for the MulticloudDataTransferConfig resource.
    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.
    etag String
    The etag is computed by the server, and might be sent with update and delete requests so that the client has an up-to-date value before proceeding.
    labels Map<String>

    User-defined labels.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    location String
    The location of the multicloud data transfer config.
    name String
    The name of the MulticloudDataTransferConfig resource.
    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.
    services List<Property Map>
    Maps services to their current or planned states. Service names are keys, and the associated values describe the state of the service. Structure is documented below.
    uid String
    The Google-generated unique ID for the MulticloudDataTransferConfig resource. This value is unique across all MulticloudDataTransferConfig resources. If a resource is deleted and another with the same name is created, the new resource is assigned a different and unique ID.
    updateTime String
    Time when the MulticloudDataTransferConfig resource was updated.

    Supporting Types

    MulticloudDataTransferConfigService, MulticloudDataTransferConfigServiceArgs

    ServiceName string
    The name of the service, like "big-query" or "cloud-storage". This corresponds to the map key in the API.
    States List<MulticloudDataTransferConfigServiceState>

    (Output) The state and activation time details for the service. Structure is documented below.

    <a name=<span pulumi-lang-nodejs=""nestedServicesStates"" pulumi-lang-dotnet=""NestedServicesStates"" pulumi-lang-go=""nestedServicesStates"" pulumi-lang-python=""nested_services_states"" pulumi-lang-yaml=""nestedServicesStates"" pulumi-lang-java=""nestedServicesStates"">"nested_services_states">The states block contains:

    ServiceName string
    The name of the service, like "big-query" or "cloud-storage". This corresponds to the map key in the API.
    States []MulticloudDataTransferConfigServiceState

    (Output) The state and activation time details for the service. Structure is documented below.

    <a name=<span pulumi-lang-nodejs=""nestedServicesStates"" pulumi-lang-dotnet=""NestedServicesStates"" pulumi-lang-go=""nestedServicesStates"" pulumi-lang-python=""nested_services_states"" pulumi-lang-yaml=""nestedServicesStates"" pulumi-lang-java=""nestedServicesStates"">"nested_services_states">The states block contains:

    serviceName String
    The name of the service, like "big-query" or "cloud-storage". This corresponds to the map key in the API.
    states List<MulticloudDataTransferConfigServiceState>

    (Output) The state and activation time details for the service. Structure is documented below.

    <a name=<span pulumi-lang-nodejs=""nestedServicesStates"" pulumi-lang-dotnet=""NestedServicesStates"" pulumi-lang-go=""nestedServicesStates"" pulumi-lang-python=""nested_services_states"" pulumi-lang-yaml=""nestedServicesStates"" pulumi-lang-java=""nestedServicesStates"">"nested_services_states">The states block contains:

    serviceName string
    The name of the service, like "big-query" or "cloud-storage". This corresponds to the map key in the API.
    states MulticloudDataTransferConfigServiceState[]

    (Output) The state and activation time details for the service. Structure is documented below.

    <a name=<span pulumi-lang-nodejs=""nestedServicesStates"" pulumi-lang-dotnet=""NestedServicesStates"" pulumi-lang-go=""nestedServicesStates"" pulumi-lang-python=""nested_services_states"" pulumi-lang-yaml=""nestedServicesStates"" pulumi-lang-java=""nestedServicesStates"">"nested_services_states">The states block contains:

    service_name str
    The name of the service, like "big-query" or "cloud-storage". This corresponds to the map key in the API.
    states Sequence[MulticloudDataTransferConfigServiceState]

    (Output) The state and activation time details for the service. Structure is documented below.

    <a name=<span pulumi-lang-nodejs=""nestedServicesStates"" pulumi-lang-dotnet=""NestedServicesStates"" pulumi-lang-go=""nestedServicesStates"" pulumi-lang-python=""nested_services_states"" pulumi-lang-yaml=""nestedServicesStates"" pulumi-lang-java=""nestedServicesStates"">"nested_services_states">The states block contains:

    serviceName String
    The name of the service, like "big-query" or "cloud-storage". This corresponds to the map key in the API.
    states List<Property Map>

    (Output) The state and activation time details for the service. Structure is documented below.

    <a name=<span pulumi-lang-nodejs=""nestedServicesStates"" pulumi-lang-dotnet=""NestedServicesStates"" pulumi-lang-go=""nestedServicesStates"" pulumi-lang-python=""nested_services_states"" pulumi-lang-yaml=""nestedServicesStates"" pulumi-lang-java=""nestedServicesStates"">"nested_services_states">The states block contains:

    MulticloudDataTransferConfigServiceState, MulticloudDataTransferConfigServiceStateArgs

    EffectiveTime string
    The time when the state becomes effective
    State string
    The state of the resource.
    EffectiveTime string
    The time when the state becomes effective
    State string
    The state of the resource.
    effectiveTime String
    The time when the state becomes effective
    state String
    The state of the resource.
    effectiveTime string
    The time when the state becomes effective
    state string
    The state of the resource.
    effective_time str
    The time when the state becomes effective
    state str
    The state of the resource.
    effectiveTime String
    The time when the state becomes effective
    state String
    The state of the resource.

    Import

    MulticloudDataTransferConfig can be imported using any of these accepted formats:

    • projects/{{project}}/locations/{{location}}/multicloudDataTransferConfigs/{{name}}

    • {{project}}/{{location}}/{{name}}

    • {{location}}/{{name}}

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

    $ pulumi import gcp:networkconnectivity/multicloudDataTransferConfig:MulticloudDataTransferConfig default projects/{{project}}/locations/{{location}}/multicloudDataTransferConfigs/{{name}}
    
    $ pulumi import gcp:networkconnectivity/multicloudDataTransferConfig:MulticloudDataTransferConfig default {{project}}/{{location}}/{{name}}
    
    $ pulumi import gcp:networkconnectivity/multicloudDataTransferConfig:MulticloudDataTransferConfig default {{location}}/{{name}}
    

    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.10.0 published on Friday, Jan 16, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate