CodeToolsSettingBinding

class CodeToolsSettingBinding : KotlinCustomResource

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")
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 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
})
}
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

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}}

Properties

Link copied to clipboard

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 createTime: Output<String>

Create time stamp.

Link copied to clipboard

All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val labels: Output<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.

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

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 name: Output<String>

Identifier. Name of the resource. Format:projects/{project}/locations/{location}/codeToolsSettings/{setting}/settingBindings/{setting_binding}

Link copied to clipboard
val product: Output<String>

Product type of the setting binding. Possible values are: GEMINI_CODE_ASSIST.

Link copied to clipboard
val project: Output<String>

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

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
val pulumiLabels: Output<Map<String, String>>

The combination of labels configured directly on the resource and default labels configured on the provider.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Id of the setting binding.

Link copied to clipboard
val target: Output<String>

Target of the binding.

Link copied to clipboard
val updateTime: Output<String>

Update time stamp.

Link copied to clipboard
val urn: Output<String>