gcp.gemini.GeminiGcpEnablementSetting
Explore with Pulumi AI
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)
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
})
}
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 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
Create GeminiGcpEnablementSetting Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GeminiGcpEnablementSetting(name: string, args: GeminiGcpEnablementSettingArgs, opts?: CustomResourceOptions);
@overload
def GeminiGcpEnablementSetting(resource_name: str,
args: GeminiGcpEnablementSettingArgs,
opts: Optional[ResourceOptions] = None)
@overload
def GeminiGcpEnablementSetting(resource_name: str,
opts: Optional[ResourceOptions] = None,
gemini_gcp_enablement_setting_id: Optional[str] = None,
location: Optional[str] = None,
enable_customer_data_sharing: Optional[bool] = None,
labels: Optional[Mapping[str, str]] = None,
project: Optional[str] = None)
func NewGeminiGcpEnablementSetting(ctx *Context, name string, args GeminiGcpEnablementSettingArgs, opts ...ResourceOption) (*GeminiGcpEnablementSetting, error)
public GeminiGcpEnablementSetting(string name, GeminiGcpEnablementSettingArgs args, CustomResourceOptions? opts = null)
public GeminiGcpEnablementSetting(String name, GeminiGcpEnablementSettingArgs args)
public GeminiGcpEnablementSetting(String name, GeminiGcpEnablementSettingArgs args, CustomResourceOptions options)
type: gcp:gemini:GeminiGcpEnablementSetting
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 GeminiGcpEnablementSettingArgs
- 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 GeminiGcpEnablementSettingArgs
- 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 GeminiGcpEnablementSettingArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GeminiGcpEnablementSettingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GeminiGcpEnablementSettingArgs
- 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 geminiGcpEnablementSettingResource = new Gcp.Gemini.GeminiGcpEnablementSetting("geminiGcpEnablementSettingResource", new()
{
GeminiGcpEnablementSettingId = "string",
Location = "string",
EnableCustomerDataSharing = false,
Labels =
{
{ "string", "string" },
},
Project = "string",
});
example, err := gemini.NewGeminiGcpEnablementSetting(ctx, "geminiGcpEnablementSettingResource", &gemini.GeminiGcpEnablementSettingArgs{
GeminiGcpEnablementSettingId: pulumi.String("string"),
Location: pulumi.String("string"),
EnableCustomerDataSharing: pulumi.Bool(false),
Labels: pulumi.StringMap{
"string": pulumi.String("string"),
},
Project: pulumi.String("string"),
})
var geminiGcpEnablementSettingResource = new GeminiGcpEnablementSetting("geminiGcpEnablementSettingResource", GeminiGcpEnablementSettingArgs.builder()
.geminiGcpEnablementSettingId("string")
.location("string")
.enableCustomerDataSharing(false)
.labels(Map.of("string", "string"))
.project("string")
.build());
gemini_gcp_enablement_setting_resource = gcp.gemini.GeminiGcpEnablementSetting("geminiGcpEnablementSettingResource",
gemini_gcp_enablement_setting_id="string",
location="string",
enable_customer_data_sharing=False,
labels={
"string": "string",
},
project="string")
const geminiGcpEnablementSettingResource = new gcp.gemini.GeminiGcpEnablementSetting("geminiGcpEnablementSettingResource", {
geminiGcpEnablementSettingId: "string",
location: "string",
enableCustomerDataSharing: false,
labels: {
string: "string",
},
project: "string",
});
type: gcp:gemini:GeminiGcpEnablementSetting
properties:
enableCustomerDataSharing: false
geminiGcpEnablementSettingId: string
labels:
string: string
location: string
project: string
GeminiGcpEnablementSetting 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 GeminiGcpEnablementSetting resource accepts the following input properties:
- Gemini
Gcp stringEnablement Setting Id - Id of the Gemini Gcp Enablement setting.
- 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. - Enable
Customer boolData Sharing - Whether customer 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. - Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Gemini
Gcp stringEnablement Setting Id - Id of the Gemini Gcp Enablement setting.
- 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. - Enable
Customer boolData Sharing - Whether customer 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. - Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- gemini
Gcp StringEnablement Setting Id - Id of the Gemini Gcp Enablement setting.
- 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. - enable
Customer BooleanData Sharing - Whether customer 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. - project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- gemini
Gcp stringEnablement Setting Id - Id of the Gemini Gcp Enablement setting.
- 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. - enable
Customer booleanData Sharing - Whether customer 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. - project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- gemini_
gcp_ strenablement_ setting_ id - Id of the Gemini Gcp Enablement setting.
- 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. - enable_
customer_ booldata_ sharing - Whether customer 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. - project str
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- gemini
Gcp StringEnablement Setting Id - Id of the Gemini Gcp Enablement setting.
- 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. - enable
Customer BooleanData Sharing - Whether customer 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. - 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 GeminiGcpEnablementSetting resource produces the following output properties:
- Create
Time string - Create time stamp.
- 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. Name of the resource. Format:projects/{project}/locations/{location}/geminiGcpEnablementSettings/{geminiGcpEnablementSetting}
- Pulumi
Labels Dictionary<string, string> - The combination of labels configured directly on the resource and default labels configured on the provider.
- Update
Time string - Update time stamp.
- Create
Time string - Create time stamp.
- 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. Name of the resource. Format:projects/{project}/locations/{location}/geminiGcpEnablementSettings/{geminiGcpEnablementSetting}
- Pulumi
Labels map[string]string - The combination of labels configured directly on the resource and default labels configured on the provider.
- Update
Time string - Update time stamp.
- create
Time String - Create time stamp.
- 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. Name of the resource. Format:projects/{project}/locations/{location}/geminiGcpEnablementSettings/{geminiGcpEnablementSetting}
- pulumi
Labels Map<String,String> - The combination of labels configured directly on the resource and default labels configured on the provider.
- update
Time String - Update time stamp.
- create
Time string - Create time stamp.
- 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. Name of the resource. Format:projects/{project}/locations/{location}/geminiGcpEnablementSettings/{geminiGcpEnablementSetting}
- pulumi
Labels {[key: string]: string} - The combination of labels configured directly on the resource and default labels configured on the provider.
- update
Time 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}/geminiGcpEnablementSettings/{geminiGcpEnablementSetting}
- 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.
- create
Time String - Create time stamp.
- 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. Name of the resource. Format:projects/{project}/locations/{location}/geminiGcpEnablementSettings/{geminiGcpEnablementSetting}
- pulumi
Labels Map<String> - The combination of labels configured directly on the resource and default labels configured on the provider.
- update
Time String - Update time stamp.
Look up Existing GeminiGcpEnablementSetting Resource
Get an existing GeminiGcpEnablementSetting 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?: GeminiGcpEnablementSettingState, opts?: CustomResourceOptions): GeminiGcpEnablementSetting
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
create_time: Optional[str] = None,
effective_labels: Optional[Mapping[str, str]] = None,
enable_customer_data_sharing: Optional[bool] = None,
gemini_gcp_enablement_setting_id: 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,
update_time: Optional[str] = None) -> GeminiGcpEnablementSetting
func GetGeminiGcpEnablementSetting(ctx *Context, name string, id IDInput, state *GeminiGcpEnablementSettingState, opts ...ResourceOption) (*GeminiGcpEnablementSetting, error)
public static GeminiGcpEnablementSetting Get(string name, Input<string> id, GeminiGcpEnablementSettingState? state, CustomResourceOptions? opts = null)
public static GeminiGcpEnablementSetting get(String name, Output<String> id, GeminiGcpEnablementSettingState state, CustomResourceOptions options)
resources: _: type: gcp:gemini:GeminiGcpEnablementSetting 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 - Create time stamp.
- 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.
- Enable
Customer boolData Sharing - Whether customer data sharing should be enabled.
- Gemini
Gcp stringEnablement Setting Id - Id of the Gemini Gcp Enablement setting.
- 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}/geminiGcpEnablementSettings/{geminiGcpEnablementSetting}
- 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.
- Update
Time string - Update time stamp.
- Create
Time string - Create time stamp.
- 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.
- Enable
Customer boolData Sharing - Whether customer data sharing should be enabled.
- Gemini
Gcp stringEnablement Setting Id - Id of the Gemini Gcp Enablement setting.
- 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}/geminiGcpEnablementSettings/{geminiGcpEnablementSetting}
- 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.
- Update
Time string - Update time stamp.
- create
Time String - Create time stamp.
- 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.
- enable
Customer BooleanData Sharing - Whether customer data sharing should be enabled.
- gemini
Gcp StringEnablement Setting Id - Id of the Gemini Gcp Enablement setting.
- 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}/geminiGcpEnablementSettings/{geminiGcpEnablementSetting}
- 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.
- update
Time String - Update time stamp.
- create
Time string - Create time stamp.
- 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.
- enable
Customer booleanData Sharing - Whether customer data sharing should be enabled.
- gemini
Gcp stringEnablement Setting Id - Id of the Gemini Gcp Enablement setting.
- 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}/geminiGcpEnablementSettings/{geminiGcpEnablementSetting}
- 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.
- update
Time 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.
- enable_
customer_ booldata_ sharing - Whether customer data sharing should be enabled.
- gemini_
gcp_ strenablement_ setting_ id - Id of the Gemini Gcp Enablement setting.
- 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}/geminiGcpEnablementSettings/{geminiGcpEnablementSetting}
- 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.
- create
Time String - Create time stamp.
- 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.
- enable
Customer BooleanData Sharing - Whether customer data sharing should be enabled.
- gemini
Gcp StringEnablement Setting Id - Id of the Gemini Gcp Enablement setting.
- 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}/geminiGcpEnablementSettings/{geminiGcpEnablementSetting}
- 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.
- update
Time String - Update time stamp.
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}}
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.