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

gcp.gemini.DataSharingWithGoogleSetting

Explore with Pulumi AI

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

    The resource for managing DataSharingWithGoogle settings for Admin Control.

    Example Usage

    Gemini Data Sharing With Google Setting Basic

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const example = new gcp.gemini.DataSharingWithGoogleSetting("example", {
        dataSharingWithGoogleSettingId: "ls1-tf",
        location: "global",
        labels: {
            my_key: "my_value",
        },
        enablePreviewDataSharing: true,
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    example = gcp.gemini.DataSharingWithGoogleSetting("example",
        data_sharing_with_google_setting_id="ls1-tf",
        location="global",
        labels={
            "my_key": "my_value",
        },
        enable_preview_data_sharing=True)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/gemini"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := gemini.NewDataSharingWithGoogleSetting(ctx, "example", &gemini.DataSharingWithGoogleSettingArgs{
    			DataSharingWithGoogleSettingId: pulumi.String("ls1-tf"),
    			Location:                       pulumi.String("global"),
    			Labels: pulumi.StringMap{
    				"my_key": pulumi.String("my_value"),
    			},
    			EnablePreviewDataSharing: pulumi.Bool(true),
    		})
    		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.Gemini.DataSharingWithGoogleSetting("example", new()
        {
            DataSharingWithGoogleSettingId = "ls1-tf",
            Location = "global",
            Labels = 
            {
                { "my_key", "my_value" },
            },
            EnablePreviewDataSharing = true,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.gemini.DataSharingWithGoogleSetting;
    import com.pulumi.gcp.gemini.DataSharingWithGoogleSettingArgs;
    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 DataSharingWithGoogleSetting("example", DataSharingWithGoogleSettingArgs.builder()
                .dataSharingWithGoogleSettingId("ls1-tf")
                .location("global")
                .labels(Map.of("my_key", "my_value"))
                .enablePreviewDataSharing(true)
                .build());
    
        }
    }
    
    resources:
      example:
        type: gcp:gemini:DataSharingWithGoogleSetting
        properties:
          dataSharingWithGoogleSettingId: ls1-tf
          location: global
          labels:
            my_key: my_value
          enablePreviewDataSharing: true
    

    Create DataSharingWithGoogleSetting Resource

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

    Constructor syntax

    new DataSharingWithGoogleSetting(name: string, args: DataSharingWithGoogleSettingArgs, opts?: CustomResourceOptions);
    @overload
    def DataSharingWithGoogleSetting(resource_name: str,
                                     args: DataSharingWithGoogleSettingArgs,
                                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def DataSharingWithGoogleSetting(resource_name: str,
                                     opts: Optional[ResourceOptions] = None,
                                     data_sharing_with_google_setting_id: Optional[str] = None,
                                     enable_preview_data_sharing: Optional[bool] = None,
                                     labels: Optional[Mapping[str, str]] = None,
                                     location: Optional[str] = None,
                                     project: Optional[str] = None)
    func NewDataSharingWithGoogleSetting(ctx *Context, name string, args DataSharingWithGoogleSettingArgs, opts ...ResourceOption) (*DataSharingWithGoogleSetting, error)
    public DataSharingWithGoogleSetting(string name, DataSharingWithGoogleSettingArgs args, CustomResourceOptions? opts = null)
    public DataSharingWithGoogleSetting(String name, DataSharingWithGoogleSettingArgs args)
    public DataSharingWithGoogleSetting(String name, DataSharingWithGoogleSettingArgs args, CustomResourceOptions options)
    
    type: gcp:gemini:DataSharingWithGoogleSetting
    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 DataSharingWithGoogleSettingArgs
    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 DataSharingWithGoogleSettingArgs
    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 DataSharingWithGoogleSettingArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DataSharingWithGoogleSettingArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DataSharingWithGoogleSettingArgs
    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 dataSharingWithGoogleSettingResource = new Gcp.Gemini.DataSharingWithGoogleSetting("dataSharingWithGoogleSettingResource", new()
    {
        DataSharingWithGoogleSettingId = "string",
        EnablePreviewDataSharing = false,
        Labels = 
        {
            { "string", "string" },
        },
        Location = "string",
        Project = "string",
    });
    
    example, err := gemini.NewDataSharingWithGoogleSetting(ctx, "dataSharingWithGoogleSettingResource", &gemini.DataSharingWithGoogleSettingArgs{
    	DataSharingWithGoogleSettingId: pulumi.String("string"),
    	EnablePreviewDataSharing:       pulumi.Bool(false),
    	Labels: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Location: pulumi.String("string"),
    	Project:  pulumi.String("string"),
    })
    
    var dataSharingWithGoogleSettingResource = new DataSharingWithGoogleSetting("dataSharingWithGoogleSettingResource", DataSharingWithGoogleSettingArgs.builder()
        .dataSharingWithGoogleSettingId("string")
        .enablePreviewDataSharing(false)
        .labels(Map.of("string", "string"))
        .location("string")
        .project("string")
        .build());
    
    data_sharing_with_google_setting_resource = gcp.gemini.DataSharingWithGoogleSetting("dataSharingWithGoogleSettingResource",
        data_sharing_with_google_setting_id="string",
        enable_preview_data_sharing=False,
        labels={
            "string": "string",
        },
        location="string",
        project="string")
    
    const dataSharingWithGoogleSettingResource = new gcp.gemini.DataSharingWithGoogleSetting("dataSharingWithGoogleSettingResource", {
        dataSharingWithGoogleSettingId: "string",
        enablePreviewDataSharing: false,
        labels: {
            string: "string",
        },
        location: "string",
        project: "string",
    });
    
    type: gcp:gemini:DataSharingWithGoogleSetting
    properties:
        dataSharingWithGoogleSettingId: string
        enablePreviewDataSharing: false
        labels:
            string: string
        location: string
        project: string
    

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

    DataSharingWithGoogleSettingId string
    Id of the Data Sharing With Google Setting.


    EnablePreviewDataSharing bool
    Whether preview data sharing should be enabled.
    Labels Dictionary<string, string>
    Labels as key value pairs. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    Location string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    DataSharingWithGoogleSettingId string
    Id of the Data Sharing With Google Setting.


    EnablePreviewDataSharing bool
    Whether preview data sharing should be enabled.
    Labels map[string]string
    Labels as key value pairs. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    Location string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    dataSharingWithGoogleSettingId String
    Id of the Data Sharing With Google Setting.


    enablePreviewDataSharing Boolean
    Whether preview data sharing should be enabled.
    labels Map<String,String>
    Labels as key value pairs. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    location String
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    dataSharingWithGoogleSettingId string
    Id of the Data Sharing With Google Setting.


    enablePreviewDataSharing boolean
    Whether preview data sharing should be enabled.
    labels {[key: string]: string}
    Labels as key value pairs. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    location string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    data_sharing_with_google_setting_id str
    Id of the Data Sharing With Google Setting.


    enable_preview_data_sharing bool
    Whether preview data sharing should be enabled.
    labels Mapping[str, str]
    Labels as key value pairs. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    location str
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    project str
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    dataSharingWithGoogleSettingId String
    Id of the Data Sharing With Google Setting.


    enablePreviewDataSharing Boolean
    Whether preview data sharing should be enabled.
    labels Map<String>
    Labels as key value pairs. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    location String
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    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 DataSharingWithGoogleSetting resource produces the following output properties:

    CreateTime string
    Create time stamp.
    EffectiveLabels Dictionary<string, string>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Identifier. Name of the resource. Format:projects/{project}/locations/{location}/dataSharingWithGoogleSettings/{dataSharingWithGoogleSetting}
    PulumiLabels Dictionary<string, string>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    UpdateTime string
    Update time stamp.
    CreateTime string
    Create time stamp.
    EffectiveLabels map[string]string
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Identifier. Name of the resource. Format:projects/{project}/locations/{location}/dataSharingWithGoogleSettings/{dataSharingWithGoogleSetting}
    PulumiLabels map[string]string
    The combination of labels configured directly on the resource and default labels configured on the provider.
    UpdateTime string
    Update time stamp.
    createTime String
    Create time stamp.
    effectiveLabels Map<String,String>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Identifier. Name of the resource. Format:projects/{project}/locations/{location}/dataSharingWithGoogleSettings/{dataSharingWithGoogleSetting}
    pulumiLabels Map<String,String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    updateTime String
    Update time stamp.
    createTime string
    Create time stamp.
    effectiveLabels {[key: string]: string}
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    Identifier. Name of the resource. Format:projects/{project}/locations/{location}/dataSharingWithGoogleSettings/{dataSharingWithGoogleSetting}
    pulumiLabels {[key: string]: string}
    The combination of labels configured directly on the resource and default labels configured on the provider.
    updateTime string
    Update time stamp.
    create_time str
    Create time stamp.
    effective_labels Mapping[str, str]
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    Identifier. Name of the resource. Format:projects/{project}/locations/{location}/dataSharingWithGoogleSettings/{dataSharingWithGoogleSetting}
    pulumi_labels Mapping[str, str]
    The combination of labels configured directly on the resource and default labels configured on the provider.
    update_time str
    Update time stamp.
    createTime String
    Create time stamp.
    effectiveLabels Map<String>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Identifier. Name of the resource. Format:projects/{project}/locations/{location}/dataSharingWithGoogleSettings/{dataSharingWithGoogleSetting}
    pulumiLabels Map<String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    updateTime String
    Update time stamp.

    Look up Existing DataSharingWithGoogleSetting Resource

    Get an existing DataSharingWithGoogleSetting 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?: DataSharingWithGoogleSettingState, opts?: CustomResourceOptions): DataSharingWithGoogleSetting
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            create_time: Optional[str] = None,
            data_sharing_with_google_setting_id: Optional[str] = None,
            effective_labels: Optional[Mapping[str, str]] = None,
            enable_preview_data_sharing: Optional[bool] = 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,
            update_time: Optional[str] = None) -> DataSharingWithGoogleSetting
    func GetDataSharingWithGoogleSetting(ctx *Context, name string, id IDInput, state *DataSharingWithGoogleSettingState, opts ...ResourceOption) (*DataSharingWithGoogleSetting, error)
    public static DataSharingWithGoogleSetting Get(string name, Input<string> id, DataSharingWithGoogleSettingState? state, CustomResourceOptions? opts = null)
    public static DataSharingWithGoogleSetting get(String name, Output<String> id, DataSharingWithGoogleSettingState state, CustomResourceOptions options)
    resources:  _:    type: gcp:gemini:DataSharingWithGoogleSetting    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
    Create time stamp.
    DataSharingWithGoogleSettingId string
    Id of the Data Sharing With Google Setting.


    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.
    EnablePreviewDataSharing bool
    Whether preview data sharing should be enabled.
    Labels Dictionary<string, string>
    Labels as key value pairs. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    Location string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    Name string
    Identifier. Name of the resource. Format:projects/{project}/locations/{location}/dataSharingWithGoogleSettings/{dataSharingWithGoogleSetting}
    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.
    UpdateTime string
    Update time stamp.
    CreateTime string
    Create time stamp.
    DataSharingWithGoogleSettingId string
    Id of the Data Sharing With Google Setting.


    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.
    EnablePreviewDataSharing bool
    Whether preview data sharing should be enabled.
    Labels map[string]string
    Labels as key value pairs. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    Location string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    Name string
    Identifier. Name of the resource. Format:projects/{project}/locations/{location}/dataSharingWithGoogleSettings/{dataSharingWithGoogleSetting}
    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.
    UpdateTime string
    Update time stamp.
    createTime String
    Create time stamp.
    dataSharingWithGoogleSettingId String
    Id of the Data Sharing With Google Setting.


    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.
    enablePreviewDataSharing Boolean
    Whether preview data sharing should be enabled.
    labels Map<String,String>
    Labels as key value pairs. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    location String
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    name String
    Identifier. Name of the resource. Format:projects/{project}/locations/{location}/dataSharingWithGoogleSettings/{dataSharingWithGoogleSetting}
    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.
    updateTime String
    Update time stamp.
    createTime string
    Create time stamp.
    dataSharingWithGoogleSettingId string
    Id of the Data Sharing With Google Setting.


    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.
    enablePreviewDataSharing boolean
    Whether preview data sharing should be enabled.
    labels {[key: string]: string}
    Labels as key value pairs. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    location string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    name string
    Identifier. Name of the resource. Format:projects/{project}/locations/{location}/dataSharingWithGoogleSettings/{dataSharingWithGoogleSetting}
    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.
    updateTime string
    Update time stamp.
    create_time str
    Create time stamp.
    data_sharing_with_google_setting_id str
    Id of the Data Sharing With Google Setting.


    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.
    enable_preview_data_sharing bool
    Whether preview data sharing should be enabled.
    labels Mapping[str, str]
    Labels as key value pairs. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    location str
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    name str
    Identifier. Name of the resource. Format:projects/{project}/locations/{location}/dataSharingWithGoogleSettings/{dataSharingWithGoogleSetting}
    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.
    update_time str
    Update time stamp.
    createTime String
    Create time stamp.
    dataSharingWithGoogleSettingId String
    Id of the Data Sharing With Google Setting.


    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.
    enablePreviewDataSharing Boolean
    Whether preview data sharing should be enabled.
    labels Map<String>
    Labels as key value pairs. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    location String
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    name String
    Identifier. Name of the resource. Format:projects/{project}/locations/{location}/dataSharingWithGoogleSettings/{dataSharingWithGoogleSetting}
    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.
    updateTime String
    Update time stamp.

    Import

    DataSharingWithGoogleSetting can be imported using any of these accepted formats:

    • projects/{{project}}/locations/{{location}}/dataSharingWithGoogleSettings/{{data_sharing_with_google_setting_id}}

    • {{project}}/{{location}}/{{data_sharing_with_google_setting_id}}

    • {{location}}/{{data_sharing_with_google_setting_id}}

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

    $ pulumi import gcp:gemini/dataSharingWithGoogleSetting:DataSharingWithGoogleSetting default projects/{{project}}/locations/{{location}}/dataSharingWithGoogleSettings/{{data_sharing_with_google_setting_id}}
    
    $ pulumi import gcp:gemini/dataSharingWithGoogleSetting:DataSharingWithGoogleSetting default {{project}}/{{location}}/{{data_sharing_with_google_setting_id}}
    
    $ pulumi import gcp:gemini/dataSharingWithGoogleSetting:DataSharingWithGoogleSetting default {{location}}/{{data_sharing_with_google_setting_id}}
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Google Cloud (GCP) Classic pulumi/pulumi-gcp
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the google-beta Terraform Provider.
    gcp logo
    Google Cloud v8.23.0 published on Monday, Mar 24, 2025 by Pulumi