import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; /** * Creates an IndexEndpoint. * Auto-naming is currently not supported for this resource. */ export declare class IndexEndpoint extends pulumi.CustomResource { /** * Get an existing IndexEndpoint resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): IndexEndpoint; /** * Returns true if the given object is an instance of IndexEndpoint. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is IndexEndpoint; /** * Timestamp when this IndexEndpoint was created. */ readonly createTime: pulumi.Output; /** * The indexes deployed in this endpoint. */ readonly deployedIndexes: pulumi.Output; /** * The description of the IndexEndpoint. */ readonly description: pulumi.Output; /** * The display name of the IndexEndpoint. The name can be up to 128 characters long and can consist of any UTF-8 characters. */ readonly displayName: pulumi.Output; /** * Optional. Deprecated: If true, expose the IndexEndpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set. * * @deprecated Optional. Deprecated: If true, expose the IndexEndpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set. */ readonly enablePrivateServiceConnect: pulumi.Output; /** * Immutable. Customer-managed encryption key spec for an IndexEndpoint. If set, this IndexEndpoint and all sub-resources of this IndexEndpoint will be secured by this key. */ readonly encryptionSpec: pulumi.Output; /** * Used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens. */ readonly etag: pulumi.Output; /** * The labels with user-defined metadata to organize your IndexEndpoints. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. See https://goo.gl/xmQnxf for more information and examples of labels. */ readonly labels: pulumi.Output<{ [key: string]: string; }>; readonly location: pulumi.Output; /** * The resource name of the IndexEndpoint. */ readonly name: pulumi.Output; /** * Optional. The full name of the Google Compute Engine [network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks) to which the IndexEndpoint should be peered. Private services access must already be configured for the network. If left unspecified, the Endpoint is not peered with any network. network and private_service_connect_config are mutually exclusive. [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. */ readonly network: pulumi.Output; /** * Optional. Configuration for private service connect. network and private_service_connect_config are mutually exclusive. */ readonly privateServiceConnectConfig: pulumi.Output; readonly project: pulumi.Output; /** * If public_endpoint_enabled is true, this field will be populated with the domain name to use for this index endpoint. */ readonly publicEndpointDomainName: pulumi.Output; /** * Optional. If true, the deployed index will be accessible through public endpoint. */ readonly publicEndpointEnabled: pulumi.Output; /** * Timestamp when this IndexEndpoint was last updated. This timestamp is not updated when the endpoint's DeployedIndexes are updated, e.g. due to updates of the original Indexes they are the deployments of. */ readonly updateTime: pulumi.Output; /** * Create a IndexEndpoint resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: IndexEndpointArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a IndexEndpoint resource. */ export interface IndexEndpointArgs { /** * The description of the IndexEndpoint. */ description?: pulumi.Input; /** * The display name of the IndexEndpoint. The name can be up to 128 characters long and can consist of any UTF-8 characters. */ displayName: pulumi.Input; /** * Optional. Deprecated: If true, expose the IndexEndpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set. * * @deprecated Optional. Deprecated: If true, expose the IndexEndpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set. */ enablePrivateServiceConnect?: pulumi.Input; /** * Immutable. Customer-managed encryption key spec for an IndexEndpoint. If set, this IndexEndpoint and all sub-resources of this IndexEndpoint will be secured by this key. */ encryptionSpec?: pulumi.Input; /** * Used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens. */ etag?: pulumi.Input; /** * The labels with user-defined metadata to organize your IndexEndpoints. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. See https://goo.gl/xmQnxf for more information and examples of labels. */ labels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; location?: pulumi.Input; /** * Optional. The full name of the Google Compute Engine [network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks) to which the IndexEndpoint should be peered. Private services access must already be configured for the network. If left unspecified, the Endpoint is not peered with any network. network and private_service_connect_config are mutually exclusive. [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. */ network?: pulumi.Input; /** * Optional. Configuration for private service connect. network and private_service_connect_config are mutually exclusive. */ privateServiceConnectConfig?: pulumi.Input; project?: pulumi.Input; /** * Optional. If true, the deployed index will be accessible through public endpoint. */ publicEndpointEnabled?: pulumi.Input; }