1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. gemini
  5. CodeToolsSettingBinding
Google Cloud v8.27.1 published on Friday, Apr 25, 2025 by Pulumi

gcp.gemini.CodeToolsSettingBinding

Explore with Pulumi AI

gcp logo
Google Cloud v8.27.1 published on Friday, Apr 25, 2025 by Pulumi

    The resource for managing CodeTools setting bindings for Admin Control.

    To get more information about CodeToolsSettingBinding, see:

    Example Usage

    Gemini Code Tools Setting Binding Basic

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const example = new gcp.gemini.CodeToolsSetting("example", {
        codeToolsSettingId: "ls-tf1",
        location: "global",
        labels: {
            my_key: "my_value",
        },
        enabledTools: [{
            handle: "my_handle",
            tool: "my_tool",
            accountConnector: "my_con",
            configs: [{
                key: "my_key",
                value: "my_value",
            }],
            uriOverride: "my_uri_override",
        }],
    });
    const exampleCodeToolsSettingBinding = new gcp.gemini.CodeToolsSettingBinding("example", {
        codeToolsSettingId: basic.codeToolsSettingId,
        settingBindingId: "ls-tf1b1",
        location: "global",
        target: "projects/980109375338",
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    example = gcp.gemini.CodeToolsSetting("example",
        code_tools_setting_id="ls-tf1",
        location="global",
        labels={
            "my_key": "my_value",
        },
        enabled_tools=[{
            "handle": "my_handle",
            "tool": "my_tool",
            "account_connector": "my_con",
            "configs": [{
                "key": "my_key",
                "value": "my_value",
            }],
            "uri_override": "my_uri_override",
        }])
    example_code_tools_setting_binding = gcp.gemini.CodeToolsSettingBinding("example",
        code_tools_setting_id=basic["codeToolsSettingId"],
        setting_binding_id="ls-tf1b1",
        location="global",
        target="projects/980109375338")
    
    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.NewCodeToolsSetting(ctx, "example", &gemini.CodeToolsSettingArgs{
    			CodeToolsSettingId: pulumi.String("ls-tf1"),
    			Location:           pulumi.String("global"),
    			Labels: pulumi.StringMap{
    				"my_key": pulumi.String("my_value"),
    			},
    			EnabledTools: gemini.CodeToolsSettingEnabledToolArray{
    				&gemini.CodeToolsSettingEnabledToolArgs{
    					Handle:           pulumi.String("my_handle"),
    					Tool:             pulumi.String("my_tool"),
    					AccountConnector: pulumi.String("my_con"),
    					Configs: gemini.CodeToolsSettingEnabledToolConfigArray{
    						&gemini.CodeToolsSettingEnabledToolConfigArgs{
    							Key:   pulumi.String("my_key"),
    							Value: pulumi.String("my_value"),
    						},
    					},
    					UriOverride: pulumi.String("my_uri_override"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = gemini.NewCodeToolsSettingBinding(ctx, "example", &gemini.CodeToolsSettingBindingArgs{
    			CodeToolsSettingId: pulumi.Any(basic.CodeToolsSettingId),
    			SettingBindingId:   pulumi.String("ls-tf1b1"),
    			Location:           pulumi.String("global"),
    			Target:             pulumi.String("projects/980109375338"),
    		})
    		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.CodeToolsSetting("example", new()
        {
            CodeToolsSettingId = "ls-tf1",
            Location = "global",
            Labels = 
            {
                { "my_key", "my_value" },
            },
            EnabledTools = new[]
            {
                new Gcp.Gemini.Inputs.CodeToolsSettingEnabledToolArgs
                {
                    Handle = "my_handle",
                    Tool = "my_tool",
                    AccountConnector = "my_con",
                    Configs = new[]
                    {
                        new Gcp.Gemini.Inputs.CodeToolsSettingEnabledToolConfigArgs
                        {
                            Key = "my_key",
                            Value = "my_value",
                        },
                    },
                    UriOverride = "my_uri_override",
                },
            },
        });
    
        var exampleCodeToolsSettingBinding = new Gcp.Gemini.CodeToolsSettingBinding("example", new()
        {
            CodeToolsSettingId = basic.CodeToolsSettingId,
            SettingBindingId = "ls-tf1b1",
            Location = "global",
            Target = "projects/980109375338",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.gemini.CodeToolsSetting;
    import com.pulumi.gcp.gemini.CodeToolsSettingArgs;
    import com.pulumi.gcp.gemini.inputs.CodeToolsSettingEnabledToolArgs;
    import com.pulumi.gcp.gemini.CodeToolsSettingBinding;
    import com.pulumi.gcp.gemini.CodeToolsSettingBindingArgs;
    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 CodeToolsSetting("example", CodeToolsSettingArgs.builder()
                .codeToolsSettingId("ls-tf1")
                .location("global")
                .labels(Map.of("my_key", "my_value"))
                .enabledTools(CodeToolsSettingEnabledToolArgs.builder()
                    .handle("my_handle")
                    .tool("my_tool")
                    .accountConnector("my_con")
                    .configs(CodeToolsSettingEnabledToolConfigArgs.builder()
                        .key("my_key")
                        .value("my_value")
                        .build())
                    .uriOverride("my_uri_override")
                    .build())
                .build());
    
            var exampleCodeToolsSettingBinding = new CodeToolsSettingBinding("exampleCodeToolsSettingBinding", CodeToolsSettingBindingArgs.builder()
                .codeToolsSettingId(basic.codeToolsSettingId())
                .settingBindingId("ls-tf1b1")
                .location("global")
                .target("projects/980109375338")
                .build());
    
        }
    }
    
    resources:
      example:
        type: gcp:gemini:CodeToolsSetting
        properties:
          codeToolsSettingId: ls-tf1
          location: global
          labels:
            my_key: my_value
          enabledTools:
            - handle: my_handle
              tool: my_tool
              accountConnector: my_con
              configs:
                - key: my_key
                  value: my_value
              uriOverride: my_uri_override
      exampleCodeToolsSettingBinding:
        type: gcp:gemini:CodeToolsSettingBinding
        name: example
        properties:
          codeToolsSettingId: ${basic.codeToolsSettingId}
          settingBindingId: ls-tf1b1
          location: global
          target: projects/980109375338
    

    Create CodeToolsSettingBinding Resource

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

    Constructor syntax

    new CodeToolsSettingBinding(name: string, args: CodeToolsSettingBindingArgs, opts?: CustomResourceOptions);
    @overload
    def CodeToolsSettingBinding(resource_name: str,
                                args: CodeToolsSettingBindingArgs,
                                opts: Optional[ResourceOptions] = None)
    
    @overload
    def CodeToolsSettingBinding(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                code_tools_setting_id: Optional[str] = None,
                                setting_binding_id: Optional[str] = None,
                                target: Optional[str] = None,
                                labels: Optional[Mapping[str, str]] = None,
                                location: Optional[str] = None,
                                product: Optional[str] = None,
                                project: Optional[str] = None)
    func NewCodeToolsSettingBinding(ctx *Context, name string, args CodeToolsSettingBindingArgs, opts ...ResourceOption) (*CodeToolsSettingBinding, error)
    public CodeToolsSettingBinding(string name, CodeToolsSettingBindingArgs args, CustomResourceOptions? opts = null)
    public CodeToolsSettingBinding(String name, CodeToolsSettingBindingArgs args)
    public CodeToolsSettingBinding(String name, CodeToolsSettingBindingArgs args, CustomResourceOptions options)
    
    type: gcp:gemini:CodeToolsSettingBinding
    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 CodeToolsSettingBindingArgs
    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 CodeToolsSettingBindingArgs
    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 CodeToolsSettingBindingArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CodeToolsSettingBindingArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CodeToolsSettingBindingArgs
    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 codeToolsSettingBindingResource = new Gcp.Gemini.CodeToolsSettingBinding("codeToolsSettingBindingResource", new()
    {
        CodeToolsSettingId = "string",
        SettingBindingId = "string",
        Target = "string",
        Labels = 
        {
            { "string", "string" },
        },
        Location = "string",
        Product = "string",
        Project = "string",
    });
    
    example, err := gemini.NewCodeToolsSettingBinding(ctx, "codeToolsSettingBindingResource", &gemini.CodeToolsSettingBindingArgs{
    	CodeToolsSettingId: pulumi.String("string"),
    	SettingBindingId:   pulumi.String("string"),
    	Target:             pulumi.String("string"),
    	Labels: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Location: pulumi.String("string"),
    	Product:  pulumi.String("string"),
    	Project:  pulumi.String("string"),
    })
    
    var codeToolsSettingBindingResource = new CodeToolsSettingBinding("codeToolsSettingBindingResource", CodeToolsSettingBindingArgs.builder()
        .codeToolsSettingId("string")
        .settingBindingId("string")
        .target("string")
        .labels(Map.of("string", "string"))
        .location("string")
        .product("string")
        .project("string")
        .build());
    
    code_tools_setting_binding_resource = gcp.gemini.CodeToolsSettingBinding("codeToolsSettingBindingResource",
        code_tools_setting_id="string",
        setting_binding_id="string",
        target="string",
        labels={
            "string": "string",
        },
        location="string",
        product="string",
        project="string")
    
    const codeToolsSettingBindingResource = new gcp.gemini.CodeToolsSettingBinding("codeToolsSettingBindingResource", {
        codeToolsSettingId: "string",
        settingBindingId: "string",
        target: "string",
        labels: {
            string: "string",
        },
        location: "string",
        product: "string",
        project: "string",
    });
    
    type: gcp:gemini:CodeToolsSettingBinding
    properties:
        codeToolsSettingId: string
        labels:
            string: string
        location: string
        product: string
        project: string
        settingBindingId: string
        target: string
    

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

    CodeToolsSettingId string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    SettingBindingId string
    Id of the setting binding.


    Target string
    Target of the binding.
    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.
    Product string
    Product type of the setting binding. Possible values are: GEMINI_CODE_ASSIST.
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    CodeToolsSettingId string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    SettingBindingId string
    Id of the setting binding.


    Target string
    Target of the binding.
    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.
    Product string
    Product type of the setting binding. Possible values are: GEMINI_CODE_ASSIST.
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    codeToolsSettingId String
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    settingBindingId String
    Id of the setting binding.


    target String
    Target of the binding.
    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.
    product String
    Product type of the setting binding. Possible values are: GEMINI_CODE_ASSIST.
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    codeToolsSettingId string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    settingBindingId string
    Id of the setting binding.


    target string
    Target of the binding.
    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.
    product string
    Product type of the setting binding. Possible values are: GEMINI_CODE_ASSIST.
    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    code_tools_setting_id str
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    setting_binding_id str
    Id of the setting binding.


    target str
    Target of the binding.
    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.
    product str
    Product type of the setting binding. Possible values are: GEMINI_CODE_ASSIST.
    project str
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    codeToolsSettingId String
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    settingBindingId String
    Id of the setting binding.


    target String
    Target of the binding.
    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.
    product String
    Product type of the setting binding. Possible values are: GEMINI_CODE_ASSIST.
    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 CodeToolsSettingBinding 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}/codeToolsSettings/{setting}/settingBindings/{setting_binding}
    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}/codeToolsSettings/{setting}/settingBindings/{setting_binding}
    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}/codeToolsSettings/{setting}/settingBindings/{setting_binding}
    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}/codeToolsSettings/{setting}/settingBindings/{setting_binding}
    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}/codeToolsSettings/{setting}/settingBindings/{setting_binding}
    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}/codeToolsSettings/{setting}/settingBindings/{setting_binding}
    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 CodeToolsSettingBinding Resource

    Get an existing CodeToolsSettingBinding 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?: CodeToolsSettingBindingState, opts?: CustomResourceOptions): CodeToolsSettingBinding
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            code_tools_setting_id: Optional[str] = None,
            create_time: Optional[str] = None,
            effective_labels: Optional[Mapping[str, str]] = None,
            labels: Optional[Mapping[str, str]] = None,
            location: Optional[str] = None,
            name: Optional[str] = None,
            product: Optional[str] = None,
            project: Optional[str] = None,
            pulumi_labels: Optional[Mapping[str, str]] = None,
            setting_binding_id: Optional[str] = None,
            target: Optional[str] = None,
            update_time: Optional[str] = None) -> CodeToolsSettingBinding
    func GetCodeToolsSettingBinding(ctx *Context, name string, id IDInput, state *CodeToolsSettingBindingState, opts ...ResourceOption) (*CodeToolsSettingBinding, error)
    public static CodeToolsSettingBinding Get(string name, Input<string> id, CodeToolsSettingBindingState? state, CustomResourceOptions? opts = null)
    public static CodeToolsSettingBinding get(String name, Output<String> id, CodeToolsSettingBindingState state, CustomResourceOptions options)
    resources:  _:    type: gcp:gemini:CodeToolsSettingBinding    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:
    CodeToolsSettingId string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    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.
    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}/codeToolsSettings/{setting}/settingBindings/{setting_binding}
    Product string
    Product type of the setting binding. Possible values are: GEMINI_CODE_ASSIST.
    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.
    SettingBindingId string
    Id of the setting binding.


    Target string
    Target of the binding.
    UpdateTime string
    Update time stamp.
    CodeToolsSettingId string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    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.
    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}/codeToolsSettings/{setting}/settingBindings/{setting_binding}
    Product string
    Product type of the setting binding. Possible values are: GEMINI_CODE_ASSIST.
    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.
    SettingBindingId string
    Id of the setting binding.


    Target string
    Target of the binding.
    UpdateTime string
    Update time stamp.
    codeToolsSettingId String
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    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.
    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}/codeToolsSettings/{setting}/settingBindings/{setting_binding}
    product String
    Product type of the setting binding. Possible values are: GEMINI_CODE_ASSIST.
    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.
    settingBindingId String
    Id of the setting binding.


    target String
    Target of the binding.
    updateTime String
    Update time stamp.
    codeToolsSettingId string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    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.
    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}/codeToolsSettings/{setting}/settingBindings/{setting_binding}
    product string
    Product type of the setting binding. Possible values are: GEMINI_CODE_ASSIST.
    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.
    settingBindingId string
    Id of the setting binding.


    target string
    Target of the binding.
    updateTime string
    Update time stamp.
    code_tools_setting_id str
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    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.
    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}/codeToolsSettings/{setting}/settingBindings/{setting_binding}
    product str
    Product type of the setting binding. Possible values are: GEMINI_CODE_ASSIST.
    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.
    setting_binding_id str
    Id of the setting binding.


    target str
    Target of the binding.
    update_time str
    Update time stamp.
    codeToolsSettingId String
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    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.
    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}/codeToolsSettings/{setting}/settingBindings/{setting_binding}
    product String
    Product type of the setting binding. Possible values are: GEMINI_CODE_ASSIST.
    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.
    settingBindingId String
    Id of the setting binding.


    target String
    Target of the binding.
    updateTime String
    Update time stamp.

    Import

    CodeToolsSettingBinding can be imported using any of these accepted formats:

    • projects/{{project}}/locations/{{location}}/codeToolsSettings/{{code_tools_setting_id}}/settingBindings/{{setting_binding_id}}

    • {{project}}/{{location}}/{{code_tools_setting_id}}/{{setting_binding_id}}

    • {{location}}/{{code_tools_setting_id}}/{{setting_binding_id}}

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

    $ pulumi import gcp:gemini/codeToolsSettingBinding:CodeToolsSettingBinding default projects/{{project}}/locations/{{location}}/codeToolsSettings/{{code_tools_setting_id}}/settingBindings/{{setting_binding_id}}
    
    $ pulumi import gcp:gemini/codeToolsSettingBinding:CodeToolsSettingBinding default {{project}}/{{location}}/{{code_tools_setting_id}}/{{setting_binding_id}}
    
    $ pulumi import gcp:gemini/codeToolsSettingBinding:CodeToolsSettingBinding default {{location}}/{{code_tools_setting_id}}/{{setting_binding_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.27.1 published on Friday, Apr 25, 2025 by Pulumi