import * as pulumi from "@pulumi/pulumi"; /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleZeroTrustGatewayProxyEndpoint = new cloudflare.ZeroTrustGatewayProxyEndpoint("example_zero_trust_gateway_proxy_endpoint", { * accountId: "699d98642c564d2e855e9661899b7252", * ips: ["192.0.2.1/32"], * name: "Devops team", * }); * ``` * * ## Import * * ```sh * $ pulumi import cloudflare:index/zeroTrustGatewayProxyEndpoint:ZeroTrustGatewayProxyEndpoint example '/' * ``` */ export declare class ZeroTrustGatewayProxyEndpoint extends pulumi.CustomResource { /** * Get an existing ZeroTrustGatewayProxyEndpoint 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 state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: ZeroTrustGatewayProxyEndpointState, opts?: pulumi.CustomResourceOptions): ZeroTrustGatewayProxyEndpoint; /** * Returns true if the given object is an instance of ZeroTrustGatewayProxyEndpoint. 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 ZeroTrustGatewayProxyEndpoint; readonly accountId: pulumi.Output; readonly createdAt: pulumi.Output; /** * A list of CIDRs to restrict ingress connections. */ readonly ips: pulumi.Output; /** * The name of the proxy endpoint. */ readonly name: pulumi.Output; /** * The subdomain to be used as the destination in the proxy client. */ readonly subdomain: pulumi.Output; readonly updatedAt: pulumi.Output; /** * Create a ZeroTrustGatewayProxyEndpoint 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: ZeroTrustGatewayProxyEndpointArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ZeroTrustGatewayProxyEndpoint resources. */ export interface ZeroTrustGatewayProxyEndpointState { accountId?: pulumi.Input; createdAt?: pulumi.Input; /** * A list of CIDRs to restrict ingress connections. */ ips?: pulumi.Input[]>; /** * The name of the proxy endpoint. */ name?: pulumi.Input; /** * The subdomain to be used as the destination in the proxy client. */ subdomain?: pulumi.Input; updatedAt?: pulumi.Input; } /** * The set of arguments for constructing a ZeroTrustGatewayProxyEndpoint resource. */ export interface ZeroTrustGatewayProxyEndpointArgs { accountId: pulumi.Input; /** * A list of CIDRs to restrict ingress connections. */ ips: pulumi.Input[]>; /** * The name of the proxy endpoint. */ name: pulumi.Input; }