CodeRepositoryIndex

class CodeRepositoryIndex : KotlinCustomResource

The resource for managing Code Repository Index for Gemini Code Assist. To get more information about CodeRepositoryIndex, see:

Example Usage

Gemini Code Repository Index Basic

import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const example = new gcp.gemini.CodeRepositoryIndex("example", {
location: "us-central1",
codeRepositoryIndexId: "code-repository-index-example",
kmsKey: "projects/projectExample/locations/locationExample/keyRings/keyRingExample/cryptoKeys/cryptoKeyExample",
});
import pulumi
import pulumi_gcp as gcp
example = gcp.gemini.CodeRepositoryIndex("example",
location="us-central1",
code_repository_index_id="code-repository-index-example",
kms_key="projects/projectExample/locations/locationExample/keyRings/keyRingExample/cryptoKeys/cryptoKeyExample")
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var example = new Gcp.Gemini.CodeRepositoryIndex("example", new()
{
Location = "us-central1",
CodeRepositoryIndexId = "code-repository-index-example",
KmsKey = "projects/projectExample/locations/locationExample/keyRings/keyRingExample/cryptoKeys/cryptoKeyExample",
});
});
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.NewCodeRepositoryIndex(ctx, "example", &gemini.CodeRepositoryIndexArgs{
Location: pulumi.String("us-central1"),
CodeRepositoryIndexId: pulumi.String("code-repository-index-example"),
KmsKey: pulumi.String("projects/projectExample/locations/locationExample/keyRings/keyRingExample/cryptoKeys/cryptoKeyExample"),
})
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.CodeRepositoryIndex;
import com.pulumi.gcp.gemini.CodeRepositoryIndexArgs;
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 CodeRepositoryIndex("example", CodeRepositoryIndexArgs.builder()
.location("us-central1")
.codeRepositoryIndexId("code-repository-index-example")
.kmsKey("projects/projectExample/locations/locationExample/keyRings/keyRingExample/cryptoKeys/cryptoKeyExample")
.build());
}
}
resources:
example:
type: gcp:gemini:CodeRepositoryIndex
properties:
location: us-central1
codeRepositoryIndexId: code-repository-index-example
kmsKey: projects/projectExample/locations/locationExample/keyRings/keyRingExample/cryptoKeys/cryptoKeyExample

Import

CodeRepositoryIndex can be imported using any of these accepted formats:

  • projects/{{project}}/locations/{{location}}/codeRepositoryIndexes/{{code_repository_index_id}}

  • {{project}}/{{location}}/{{code_repository_index_id}}

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

$ pulumi import gcp:gemini/codeRepositoryIndex:CodeRepositoryIndex default projects/{{project}}/locations/{{location}}/codeRepositoryIndexes/{{code_repository_index_id}}
$ pulumi import gcp:gemini/codeRepositoryIndex:CodeRepositoryIndex default {{project}}/{{location}}/{{code_repository_index_id}}
$ pulumi import gcp:gemini/codeRepositoryIndex:CodeRepositoryIndex default {{location}}/{{code_repository_index_id}}

Properties

Link copied to clipboard

Required. Id of the Code Repository Index.

Link copied to clipboard
val createTime: Output<String>

Output only. 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 forceDestroy: Output<Boolean>?

If set to true, will allow deletion of the CodeRepositoryIndex even if there are existing RepositoryGroups for the resource. These RepositoryGroups will also be deleted.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val kmsKey: Output<String>?

Optional. Immutable. Customer-managed encryption key name, in the format projects/*/locations/*/keyRings/*/cryptoKeys/*. ////

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

Optional. 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>

The location of the Code Repository Index, for example us-central1.

Link copied to clipboard
val name: Output<String>

Immutable. Identifier. Name of Code Repository Index.

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
val state: Output<String>

Output only. Code Repository Index instance State. Possible values are: STATE_UNSPECIFIED, CREATING, ACTIVE, DELETING, SUSPENDED.

Link copied to clipboard
val updateTime: Output<String>

Output only. Update time stamp.

Link copied to clipboard
val urn: Output<String>