All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.gcp.vertex.kotlin.AiIndexEndpointArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 8.10.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.vertex.kotlin

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.vertex.AiIndexEndpointArgs.builder
import com.pulumi.gcp.vertex.kotlin.inputs.AiIndexEndpointPrivateServiceConnectConfigArgs
import com.pulumi.gcp.vertex.kotlin.inputs.AiIndexEndpointPrivateServiceConnectConfigArgsBuilder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Boolean
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.Map
import kotlin.jvm.JvmName

/**
 * An endpoint indexes are deployed into. An index endpoint can have multiple deployed indexes.
 * To get more information about IndexEndpoint, see:
 * * [API documentation](https://cloud.google.com/vertex-ai/docs/reference/rest/v1/projects.locations.indexEndpoints/)
 * ## Example Usage
 * ### Vertex Ai Index Endpoint
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const vertexNetwork = new gcp.compute.Network("vertex_network", {name: "network-name"});
 * const project = gcp.organizations.getProject({});
 * const indexEndpoint = new gcp.vertex.AiIndexEndpoint("index_endpoint", {
 *     displayName: "sample-endpoint",
 *     description: "A sample vertex endpoint",
 *     region: "us-central1",
 *     labels: {
 *         "label-one": "value-one",
 *     },
 *     network: pulumi.all([project, vertexNetwork.name]).apply(([project, name]) => `projects/${project.number}/global/networks/${name}`),
 * });
 * const vertexRange = new gcp.compute.GlobalAddress("vertex_range", {
 *     name: "address-name",
 *     purpose: "VPC_PEERING",
 *     addressType: "INTERNAL",
 *     prefixLength: 24,
 *     network: vertexNetwork.id,
 * });
 * const vertexVpcConnection = new gcp.servicenetworking.Connection("vertex_vpc_connection", {
 *     network: vertexNetwork.id,
 *     service: "servicenetworking.googleapis.com",
 *     reservedPeeringRanges: [vertexRange.name],
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * vertex_network = gcp.compute.Network("vertex_network", name="network-name")
 * project = gcp.organizations.get_project()
 * index_endpoint = gcp.vertex.AiIndexEndpoint("index_endpoint",
 *     display_name="sample-endpoint",
 *     description="A sample vertex endpoint",
 *     region="us-central1",
 *     labels={
 *         "label-one": "value-one",
 *     },
 *     network=vertex_network.name.apply(lambda name: f"projects/{project.number}/global/networks/{name}"))
 * vertex_range = gcp.compute.GlobalAddress("vertex_range",
 *     name="address-name",
 *     purpose="VPC_PEERING",
 *     address_type="INTERNAL",
 *     prefix_length=24,
 *     network=vertex_network.id)
 * vertex_vpc_connection = gcp.servicenetworking.Connection("vertex_vpc_connection",
 *     network=vertex_network.id,
 *     service="servicenetworking.googleapis.com",
 *     reserved_peering_ranges=[vertex_range.name])
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Gcp = Pulumi.Gcp;
 * return await Deployment.RunAsync(() =>
 * {
 *     var vertexNetwork = new Gcp.Compute.Network("vertex_network", new()
 *     {
 *         Name = "network-name",
 *     });
 *     var project = Gcp.Organizations.GetProject.Invoke();
 *     var indexEndpoint = new Gcp.Vertex.AiIndexEndpoint("index_endpoint", new()
 *     {
 *         DisplayName = "sample-endpoint",
 *         Description = "A sample vertex endpoint",
 *         Region = "us-central1",
 *         Labels =
 *         {
 *             { "label-one", "value-one" },
 *         },
 *         Network = Output.Tuple(project, vertexNetwork.Name).Apply(values =>
 *         {
 *             var project = values.Item1;
 *             var name = values.Item2;
 *             return $"projects/{project.Apply(getProjectResult => getProjectResult.Number)}/global/networks/{name}";
 *         }),
 *     });
 *     var vertexRange = new Gcp.Compute.GlobalAddress("vertex_range", new()
 *     {
 *         Name = "address-name",
 *         Purpose = "VPC_PEERING",
 *         AddressType = "INTERNAL",
 *         PrefixLength = 24,
 *         Network = vertexNetwork.Id,
 *     });
 *     var vertexVpcConnection = new Gcp.ServiceNetworking.Connection("vertex_vpc_connection", new()
 *     {
 *         Network = vertexNetwork.Id,
 *         Service = "servicenetworking.googleapis.com",
 *         ReservedPeeringRanges = new[]
 *         {
 *             vertexRange.Name,
 *         },
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"fmt"
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/compute"
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/organizations"
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/servicenetworking"
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/vertex"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		vertexNetwork, err := compute.NewNetwork(ctx, "vertex_network", &compute.NetworkArgs{
 * 			Name: pulumi.String("network-name"),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		project, err := organizations.LookupProject(ctx, nil, nil)
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = vertex.NewAiIndexEndpoint(ctx, "index_endpoint", &vertex.AiIndexEndpointArgs{
 * 			DisplayName: pulumi.String("sample-endpoint"),
 * 			Description: pulumi.String("A sample vertex endpoint"),
 * 			Region:      pulumi.String("us-central1"),
 * 			Labels: pulumi.StringMap{
 * 				"label-one": pulumi.String("value-one"),
 * 			},
 * 			Network: vertexNetwork.Name.ApplyT(func(name string) (string, error) {
 * 				return fmt.Sprintf("projects/%v/global/networks/%v", project.Number, name), nil
 * 			}).(pulumi.StringOutput),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		vertexRange, err := compute.NewGlobalAddress(ctx, "vertex_range", &compute.GlobalAddressArgs{
 * 			Name:         pulumi.String("address-name"),
 * 			Purpose:      pulumi.String("VPC_PEERING"),
 * 			AddressType:  pulumi.String("INTERNAL"),
 * 			PrefixLength: pulumi.Int(24),
 * 			Network:      vertexNetwork.ID(),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = servicenetworking.NewConnection(ctx, "vertex_vpc_connection", &servicenetworking.ConnectionArgs{
 * 			Network: vertexNetwork.ID(),
 * 			Service: pulumi.String("servicenetworking.googleapis.com"),
 * 			ReservedPeeringRanges: pulumi.StringArray{
 * 				vertexRange.Name,
 * 			},
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		return nil
 * 	})
 * }
 * ```
 * ```java
 * package generated_program;
 * import com.pulumi.Context;
 * import com.pulumi.Pulumi;
 * import com.pulumi.core.Output;
 * import com.pulumi.gcp.compute.Network;
 * import com.pulumi.gcp.compute.NetworkArgs;
 * import com.pulumi.gcp.organizations.OrganizationsFunctions;
 * import com.pulumi.gcp.organizations.inputs.GetProjectArgs;
 * import com.pulumi.gcp.vertex.AiIndexEndpoint;
 * import com.pulumi.gcp.vertex.AiIndexEndpointArgs;
 * import com.pulumi.gcp.compute.GlobalAddress;
 * import com.pulumi.gcp.compute.GlobalAddressArgs;
 * import com.pulumi.gcp.servicenetworking.Connection;
 * import com.pulumi.gcp.servicenetworking.ConnectionArgs;
 * 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 vertexNetwork = new Network("vertexNetwork", NetworkArgs.builder()
 *             .name("network-name")
 *             .build());
 *         final var project = OrganizationsFunctions.getProject();
 *         var indexEndpoint = new AiIndexEndpoint("indexEndpoint", AiIndexEndpointArgs.builder()
 *             .displayName("sample-endpoint")
 *             .description("A sample vertex endpoint")
 *             .region("us-central1")
 *             .labels(Map.of("label-one", "value-one"))
 *             .network(vertexNetwork.name().applyValue(name -> String.format("projects/%s/global/networks/%s", project.applyValue(getProjectResult -> getProjectResult.number()),name)))
 *             .build());
 *         var vertexRange = new GlobalAddress("vertexRange", GlobalAddressArgs.builder()
 *             .name("address-name")
 *             .purpose("VPC_PEERING")
 *             .addressType("INTERNAL")
 *             .prefixLength(24)
 *             .network(vertexNetwork.id())
 *             .build());
 *         var vertexVpcConnection = new Connection("vertexVpcConnection", ConnectionArgs.builder()
 *             .network(vertexNetwork.id())
 *             .service("servicenetworking.googleapis.com")
 *             .reservedPeeringRanges(vertexRange.name())
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   indexEndpoint:
 *     type: gcp:vertex:AiIndexEndpoint
 *     name: index_endpoint
 *     properties:
 *       displayName: sample-endpoint
 *       description: A sample vertex endpoint
 *       region: us-central1
 *       labels:
 *         label-one: value-one
 *       network: projects/${project.number}/global/networks/${vertexNetwork.name}
 *   vertexVpcConnection:
 *     type: gcp:servicenetworking:Connection
 *     name: vertex_vpc_connection
 *     properties:
 *       network: ${vertexNetwork.id}
 *       service: servicenetworking.googleapis.com
 *       reservedPeeringRanges:
 *         - ${vertexRange.name}
 *   vertexRange:
 *     type: gcp:compute:GlobalAddress
 *     name: vertex_range
 *     properties:
 *       name: address-name
 *       purpose: VPC_PEERING
 *       addressType: INTERNAL
 *       prefixLength: 24
 *       network: ${vertexNetwork.id}
 *   vertexNetwork:
 *     type: gcp:compute:Network
 *     name: vertex_network
 *     properties:
 *       name: network-name
 * variables:
 *   project:
 *     fn::invoke:
 *       Function: gcp:organizations:getProject
 *       Arguments: {}
 * ```
 * 
 * ### Vertex Ai Index Endpoint With Psc
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const project = gcp.organizations.getProject({});
 * const indexEndpoint = new gcp.vertex.AiIndexEndpoint("index_endpoint", {
 *     displayName: "sample-endpoint",
 *     description: "A sample vertex endpoint",
 *     region: "us-central1",
 *     labels: {
 *         "label-one": "value-one",
 *     },
 *     privateServiceConnectConfig: {
 *         enablePrivateServiceConnect: true,
 *         projectAllowlists: [project.then(project => project.number)],
 *     },
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * project = gcp.organizations.get_project()
 * index_endpoint = gcp.vertex.AiIndexEndpoint("index_endpoint",
 *     display_name="sample-endpoint",
 *     description="A sample vertex endpoint",
 *     region="us-central1",
 *     labels={
 *         "label-one": "value-one",
 *     },
 *     private_service_connect_config=gcp.vertex.AiIndexEndpointPrivateServiceConnectConfigArgs(
 *         enable_private_service_connect=True,
 *         project_allowlists=[project.number],
 *     ))
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Gcp = Pulumi.Gcp;
 * return await Deployment.RunAsync(() =>
 * {
 *     var project = Gcp.Organizations.GetProject.Invoke();
 *     var indexEndpoint = new Gcp.Vertex.AiIndexEndpoint("index_endpoint", new()
 *     {
 *         DisplayName = "sample-endpoint",
 *         Description = "A sample vertex endpoint",
 *         Region = "us-central1",
 *         Labels =
 *         {
 *             { "label-one", "value-one" },
 *         },
 *         PrivateServiceConnectConfig = new Gcp.Vertex.Inputs.AiIndexEndpointPrivateServiceConnectConfigArgs
 *         {
 *             EnablePrivateServiceConnect = true,
 *             ProjectAllowlists = new[]
 *             {
 *                 project.Apply(getProjectResult => getProjectResult.Number),
 *             },
 *         },
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/organizations"
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/vertex"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		project, err := organizations.LookupProject(ctx, nil, nil)
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = vertex.NewAiIndexEndpoint(ctx, "index_endpoint", &vertex.AiIndexEndpointArgs{
 * 			DisplayName: pulumi.String("sample-endpoint"),
 * 			Description: pulumi.String("A sample vertex endpoint"),
 * 			Region:      pulumi.String("us-central1"),
 * 			Labels: pulumi.StringMap{
 * 				"label-one": pulumi.String("value-one"),
 * 			},
 * 			PrivateServiceConnectConfig: &vertex.AiIndexEndpointPrivateServiceConnectConfigArgs{
 * 				EnablePrivateServiceConnect: pulumi.Bool(true),
 * 				ProjectAllowlists: pulumi.StringArray{
 * 					pulumi.String(project.Number),
 * 				},
 * 			},
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		return nil
 * 	})
 * }
 * ```
 * ```java
 * package generated_program;
 * import com.pulumi.Context;
 * import com.pulumi.Pulumi;
 * import com.pulumi.core.Output;
 * import com.pulumi.gcp.organizations.OrganizationsFunctions;
 * import com.pulumi.gcp.organizations.inputs.GetProjectArgs;
 * import com.pulumi.gcp.vertex.AiIndexEndpoint;
 * import com.pulumi.gcp.vertex.AiIndexEndpointArgs;
 * import com.pulumi.gcp.vertex.inputs.AiIndexEndpointPrivateServiceConnectConfigArgs;
 * 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) {
 *         final var project = OrganizationsFunctions.getProject();
 *         var indexEndpoint = new AiIndexEndpoint("indexEndpoint", AiIndexEndpointArgs.builder()
 *             .displayName("sample-endpoint")
 *             .description("A sample vertex endpoint")
 *             .region("us-central1")
 *             .labels(Map.of("label-one", "value-one"))
 *             .privateServiceConnectConfig(AiIndexEndpointPrivateServiceConnectConfigArgs.builder()
 *                 .enablePrivateServiceConnect(true)
 *                 .projectAllowlists(project.applyValue(getProjectResult -> getProjectResult.number()))
 *                 .build())
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   indexEndpoint:
 *     type: gcp:vertex:AiIndexEndpoint
 *     name: index_endpoint
 *     properties:
 *       displayName: sample-endpoint
 *       description: A sample vertex endpoint
 *       region: us-central1
 *       labels:
 *         label-one: value-one
 *       privateServiceConnectConfig:
 *         enablePrivateServiceConnect: true
 *         projectAllowlists:
 *           - ${project.number}
 * variables:
 *   project:
 *     fn::invoke:
 *       Function: gcp:organizations:getProject
 *       Arguments: {}
 * ```
 * 
 * ### Vertex Ai Index Endpoint With Public Endpoint
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const indexEndpoint = new gcp.vertex.AiIndexEndpoint("index_endpoint", {
 *     displayName: "sample-endpoint",
 *     description: "A sample vertex endpoint with an public endpoint",
 *     region: "us-central1",
 *     labels: {
 *         "label-one": "value-one",
 *     },
 *     publicEndpointEnabled: true,
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * index_endpoint = gcp.vertex.AiIndexEndpoint("index_endpoint",
 *     display_name="sample-endpoint",
 *     description="A sample vertex endpoint with an public endpoint",
 *     region="us-central1",
 *     labels={
 *         "label-one": "value-one",
 *     },
 *     public_endpoint_enabled=True)
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Gcp = Pulumi.Gcp;
 * return await Deployment.RunAsync(() =>
 * {
 *     var indexEndpoint = new Gcp.Vertex.AiIndexEndpoint("index_endpoint", new()
 *     {
 *         DisplayName = "sample-endpoint",
 *         Description = "A sample vertex endpoint with an public endpoint",
 *         Region = "us-central1",
 *         Labels =
 *         {
 *             { "label-one", "value-one" },
 *         },
 *         PublicEndpointEnabled = true,
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/vertex"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		_, err := vertex.NewAiIndexEndpoint(ctx, "index_endpoint", &vertex.AiIndexEndpointArgs{
 * 			DisplayName: pulumi.String("sample-endpoint"),
 * 			Description: pulumi.String("A sample vertex endpoint with an public endpoint"),
 * 			Region:      pulumi.String("us-central1"),
 * 			Labels: pulumi.StringMap{
 * 				"label-one": pulumi.String("value-one"),
 * 			},
 * 			PublicEndpointEnabled: pulumi.Bool(true),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		return nil
 * 	})
 * }
 * ```
 * ```java
 * package generated_program;
 * import com.pulumi.Context;
 * import com.pulumi.Pulumi;
 * import com.pulumi.core.Output;
 * import com.pulumi.gcp.vertex.AiIndexEndpoint;
 * import com.pulumi.gcp.vertex.AiIndexEndpointArgs;
 * 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 indexEndpoint = new AiIndexEndpoint("indexEndpoint", AiIndexEndpointArgs.builder()
 *             .displayName("sample-endpoint")
 *             .description("A sample vertex endpoint with an public endpoint")
 *             .region("us-central1")
 *             .labels(Map.of("label-one", "value-one"))
 *             .publicEndpointEnabled(true)
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   indexEndpoint:
 *     type: gcp:vertex:AiIndexEndpoint
 *     name: index_endpoint
 *     properties:
 *       displayName: sample-endpoint
 *       description: A sample vertex endpoint with an public endpoint
 *       region: us-central1
 *       labels:
 *         label-one: value-one
 *       publicEndpointEnabled: true
 * ```
 * 
 * ## Import
 * IndexEndpoint can be imported using any of these accepted formats:
 * * `projects/{{project}}/locations/{{region}}/indexEndpoints/{{name}}`
 * * `{{project}}/{{region}}/{{name}}`
 * * `{{region}}/{{name}}`
 * * `{{name}}`
 * When using the `pulumi import` command, IndexEndpoint can be imported using one of the formats above. For example:
 * ```sh
 * $ pulumi import gcp:vertex/aiIndexEndpoint:AiIndexEndpoint default projects/{{project}}/locations/{{region}}/indexEndpoints/{{name}}
 * ```
 * ```sh
 * $ pulumi import gcp:vertex/aiIndexEndpoint:AiIndexEndpoint default {{project}}/{{region}}/{{name}}
 * ```
 * ```sh
 * $ pulumi import gcp:vertex/aiIndexEndpoint:AiIndexEndpoint default {{region}}/{{name}}
 * ```
 * ```sh
 * $ pulumi import gcp:vertex/aiIndexEndpoint:AiIndexEndpoint default {{name}}
 * ```
 * @property description The description of the Index.
 * @property displayName The display name of the Index. The name can be up to 128 characters long and can consist of any UTF-8 characters.
 * - - -
 * @property labels The labels with user-defined metadata to organize your Indexes.
 * **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.
 * @property network The full name of the Google Compute Engine [network](https://cloud.google.com//compute/docs/networks-and-firewalls#networks) to which the index endpoint should be peered.
 * Private services access must already be configured for the network. If left unspecified, the index endpoint is not peered with any network.
 * [Format](https://cloud.google.com/compute/docs/reference/rest/v1/networks/insert): `projects/{project}/global/networks/{network}`.
 * Where `{project}` is a project number, as in `12345`, and `{network}` is network name.
 * @property privateServiceConnectConfig Optional. Configuration for private service connect. `network` and `privateServiceConnectConfig` are mutually exclusive.
 * Structure is documented below.
 * @property project The ID of the project in which the resource belongs.
 * If it is not provided, the provider project is used.
 * @property publicEndpointEnabled If true, the deployed index will be accessible through public endpoint.
 * @property region The region of the index endpoint. eg us-central1
 */
public data class AiIndexEndpointArgs(
    public val description: Output? = null,
    public val displayName: Output? = null,
    public val labels: Output>? = null,
    public val network: Output? = null,
    public val privateServiceConnectConfig: Output? =
        null,
    public val project: Output? = null,
    public val publicEndpointEnabled: Output? = null,
    public val region: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.vertex.AiIndexEndpointArgs =
        com.pulumi.gcp.vertex.AiIndexEndpointArgs.builder()
            .description(description?.applyValue({ args0 -> args0 }))
            .displayName(displayName?.applyValue({ args0 -> args0 }))
            .labels(labels?.applyValue({ args0 -> args0.map({ args0 -> args0.key.to(args0.value) }).toMap() }))
            .network(network?.applyValue({ args0 -> args0 }))
            .privateServiceConnectConfig(
                privateServiceConnectConfig?.applyValue({ args0 ->
                    args0.let({ args0 ->
                        args0.toJava()
                    })
                }),
            )
            .project(project?.applyValue({ args0 -> args0 }))
            .publicEndpointEnabled(publicEndpointEnabled?.applyValue({ args0 -> args0 }))
            .region(region?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [AiIndexEndpointArgs].
 */
@PulumiTagMarker
public class AiIndexEndpointArgsBuilder internal constructor() {
    private var description: Output? = null

    private var displayName: Output? = null

    private var labels: Output>? = null

    private var network: Output? = null

    private var privateServiceConnectConfig: Output? =
        null

    private var project: Output? = null

    private var publicEndpointEnabled: Output? = null

    private var region: Output? = null

    /**
     * @param value The description of the Index.
     */
    @JvmName("ktmocijhjkyopurg")
    public suspend fun description(`value`: Output) {
        this.description = value
    }

    /**
     * @param value The display name of the Index. The name can be up to 128 characters long and can consist of any UTF-8 characters.
     * - - -
     */
    @JvmName("opncnmaoulfucuke")
    public suspend fun displayName(`value`: Output) {
        this.displayName = value
    }

    /**
     * @param value The labels with user-defined metadata to organize your Indexes.
     * **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.
     */
    @JvmName("xxppbxghneqkxgdf")
    public suspend fun labels(`value`: Output>) {
        this.labels = value
    }

    /**
     * @param value The full name of the Google Compute Engine [network](https://cloud.google.com//compute/docs/networks-and-firewalls#networks) to which the index endpoint should be peered.
     * Private services access must already be configured for the network. If left unspecified, the index endpoint is not peered with any network.
     * [Format](https://cloud.google.com/compute/docs/reference/rest/v1/networks/insert): `projects/{project}/global/networks/{network}`.
     * Where `{project}` is a project number, as in `12345`, and `{network}` is network name.
     */
    @JvmName("bjpgvcgjiyotcbic")
    public suspend fun network(`value`: Output) {
        this.network = value
    }

    /**
     * @param value Optional. Configuration for private service connect. `network` and `privateServiceConnectConfig` are mutually exclusive.
     * Structure is documented below.
     */
    @JvmName("wtkepdnehhjxocdi")
    public suspend fun privateServiceConnectConfig(`value`: Output) {
        this.privateServiceConnectConfig = value
    }

    /**
     * @param value The ID of the project in which the resource belongs.
     * If it is not provided, the provider project is used.
     */
    @JvmName("ivrsymjhjyqitvnp")
    public suspend fun project(`value`: Output) {
        this.project = value
    }

    /**
     * @param value If true, the deployed index will be accessible through public endpoint.
     */
    @JvmName("livitokrxgwifohy")
    public suspend fun publicEndpointEnabled(`value`: Output) {
        this.publicEndpointEnabled = value
    }

    /**
     * @param value The region of the index endpoint. eg us-central1
     */
    @JvmName("ajpadmyqutrbympg")
    public suspend fun region(`value`: Output) {
        this.region = value
    }

    /**
     * @param value The description of the Index.
     */
    @JvmName("fvmfjeqeltpiqxba")
    public suspend fun description(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.description = mapped
    }

    /**
     * @param value The display name of the Index. The name can be up to 128 characters long and can consist of any UTF-8 characters.
     * - - -
     */
    @JvmName("vdvybdurlsmbhfse")
    public suspend fun displayName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.displayName = mapped
    }

    /**
     * @param value The labels with user-defined metadata to organize your Indexes.
     * **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.
     */
    @JvmName("anbdswxvmtvkfrqf")
    public suspend fun labels(`value`: Map?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.labels = mapped
    }

    /**
     * @param values The labels with user-defined metadata to organize your Indexes.
     * **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.
     */
    @JvmName("cktylibxhtkhykcl")
    public fun labels(vararg values: Pair) {
        val toBeMapped = values.toMap()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.labels = mapped
    }

    /**
     * @param value The full name of the Google Compute Engine [network](https://cloud.google.com//compute/docs/networks-and-firewalls#networks) to which the index endpoint should be peered.
     * Private services access must already be configured for the network. If left unspecified, the index endpoint is not peered with any network.
     * [Format](https://cloud.google.com/compute/docs/reference/rest/v1/networks/insert): `projects/{project}/global/networks/{network}`.
     * Where `{project}` is a project number, as in `12345`, and `{network}` is network name.
     */
    @JvmName("ewpitvfccelbmpdy")
    public suspend fun network(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.network = mapped
    }

    /**
     * @param value Optional. Configuration for private service connect. `network` and `privateServiceConnectConfig` are mutually exclusive.
     * Structure is documented below.
     */
    @JvmName("htxerfmqlywyivfc")
    public suspend fun privateServiceConnectConfig(`value`: AiIndexEndpointPrivateServiceConnectConfigArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.privateServiceConnectConfig = mapped
    }

    /**
     * @param argument Optional. Configuration for private service connect. `network` and `privateServiceConnectConfig` are mutually exclusive.
     * Structure is documented below.
     */
    @JvmName("nstmmhbcxwwojaoi")
    public suspend fun privateServiceConnectConfig(argument: suspend AiIndexEndpointPrivateServiceConnectConfigArgsBuilder.() -> Unit) {
        val toBeMapped = AiIndexEndpointPrivateServiceConnectConfigArgsBuilder().applySuspend {
            argument()
        }.build()
        val mapped = of(toBeMapped)
        this.privateServiceConnectConfig = mapped
    }

    /**
     * @param value The ID of the project in which the resource belongs.
     * If it is not provided, the provider project is used.
     */
    @JvmName("vxmvtklmgrtkqrma")
    public suspend fun project(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.project = mapped
    }

    /**
     * @param value If true, the deployed index will be accessible through public endpoint.
     */
    @JvmName("foaxgsmdkhkcqkra")
    public suspend fun publicEndpointEnabled(`value`: Boolean?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.publicEndpointEnabled = mapped
    }

    /**
     * @param value The region of the index endpoint. eg us-central1
     */
    @JvmName("hdeytyiombpltarw")
    public suspend fun region(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.region = mapped
    }

    internal fun build(): AiIndexEndpointArgs = AiIndexEndpointArgs(
        description = description,
        displayName = displayName,
        labels = labels,
        network = network,
        privateServiceConnectConfig = privateServiceConnectConfig,
        project = project,
        publicEndpointEnabled = publicEndpointEnabled,
        region = region,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy