GeminiGcpEnablementSettingArgs

data class GeminiGcpEnablementSettingArgs(val enableCustomerDataSharing: Output<Boolean>? = null, val geminiGcpEnablementSettingId: Output<String>? = null, val labels: Output<Map<String, String>>? = null, val location: Output<String>? = null, val project: Output<String>? = null) : ConvertibleToJava<GeminiGcpEnablementSettingArgs>

The resource for managing GeminiGcpEnablement settings for Admin Control.

Example Usage

Gemini Gemini Gcp Enablement Setting Basic

import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const example = new gcp.gemini.GeminiGcpEnablementSetting("example", {
geminiGcpEnablementSettingId: "ls1-tf",
location: "global",
labels: {
my_key: "my_value",
},
enableCustomerDataSharing: true,
});
import pulumi
import pulumi_gcp as gcp
example = gcp.gemini.GeminiGcpEnablementSetting("example",
gemini_gcp_enablement_setting_id="ls1-tf",
location="global",
labels={
"my_key": "my_value",
},
enable_customer_data_sharing=True)
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var example = new Gcp.Gemini.GeminiGcpEnablementSetting("example", new()
{
GeminiGcpEnablementSettingId = "ls1-tf",
Location = "global",
Labels =
{
{ "my_key", "my_value" },
},
EnableCustomerDataSharing = 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.NewGeminiGcpEnablementSetting(ctx, "example", &gemini.GeminiGcpEnablementSettingArgs{
GeminiGcpEnablementSettingId: pulumi.String("ls1-tf"),
Location: pulumi.String("global"),
Labels: pulumi.StringMap{
"my_key": pulumi.String("my_value"),
},
EnableCustomerDataSharing: pulumi.Bool(true),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.gemini.GeminiGcpEnablementSetting;
import com.pulumi.gcp.gemini.GeminiGcpEnablementSettingArgs;
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 GeminiGcpEnablementSetting("example", GeminiGcpEnablementSettingArgs.builder()
.geminiGcpEnablementSettingId("ls1-tf")
.location("global")
.labels(Map.of("my_key", "my_value"))
.enableCustomerDataSharing(true)
.build());
}
}
resources:
example:
type: gcp:gemini:GeminiGcpEnablementSetting
properties:
geminiGcpEnablementSettingId: ls1-tf
location: global
labels:
my_key: my_value
enableCustomerDataSharing: true

Import

GeminiGcpEnablementSetting can be imported using any of these accepted formats:

  • projects/{{project}}/locations/{{location}}/geminiGcpEnablementSettings/{{gemini_gcp_enablement_setting_id}}

  • {{project}}/{{location}}/{{gemini_gcp_enablement_setting_id}}

  • {{location}}/{{gemini_gcp_enablement_setting_id}} When using the pulumi import command, GeminiGcpEnablementSetting can be imported using one of the formats above. For example:

$ pulumi import gcp:gemini/geminiGcpEnablementSetting:GeminiGcpEnablementSetting default projects/{{project}}/locations/{{location}}/geminiGcpEnablementSettings/{{gemini_gcp_enablement_setting_id}}
$ pulumi import gcp:gemini/geminiGcpEnablementSetting:GeminiGcpEnablementSetting default {{project}}/{{location}}/{{gemini_gcp_enablement_setting_id}}
$ pulumi import gcp:gemini/geminiGcpEnablementSetting:GeminiGcpEnablementSetting default {{location}}/{{gemini_gcp_enablement_setting_id}}

Constructors

Link copied to clipboard
constructor(enableCustomerDataSharing: Output<Boolean>? = null, geminiGcpEnablementSettingId: Output<String>? = null, labels: Output<Map<String, String>>? = null, location: Output<String>? = null, project: Output<String>? = null)

Properties

Link copied to clipboard
val enableCustomerDataSharing: Output<Boolean>? = null

Whether customer data sharing should be enabled.

Link copied to clipboard

Id of the Gemini Gcp Enablement setting.

Link copied to clipboard
val labels: Output<Map<String, String>>? = null

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.

Link copied to clipboard
val location: Output<String>? = null

Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.

Link copied to clipboard
val project: Output<String>? = null

The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

Functions

Link copied to clipboard
open override fun toJava(): GeminiGcpEnablementSettingArgs