import * as pulumi from "@pulumi/pulumi"; /** * Provides a Cloudflare Teams Proxy Endpoint resource. Teams Proxy Endpoints are used for pointing proxy clients at * Cloudflare Secure Gateway. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const corporateOffice = new cloudflare.TeamsProxyEndpoint("corporate_office", { * accountId: "1d5fdc9e88c8a8c4518b068cd94331fe", * ips: ["192.0.2.0/24"], * name: "office", * }); * ``` * * ## Import * * Teams Proxy Endpoints can be imported using a composite ID formed of account ID and teams proxy_endpoint ID. * * ```sh * $ pulumi import cloudflare:index/teamsProxyEndpoint:TeamsProxyEndpoint corporate_office cb029e245cfdd66dc8d2e570d5dd3322/d41d8cd98f00b204e9800998ecf8427e * ``` */ export declare class TeamsProxyEndpoint extends pulumi.CustomResource { /** * Get an existing TeamsProxyEndpoint 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?: TeamsProxyEndpointState, opts?: pulumi.CustomResourceOptions): TeamsProxyEndpoint; /** * Returns true if the given object is an instance of TeamsProxyEndpoint. 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 TeamsProxyEndpoint; /** * The account to which the teams proxy endpoint should be added. */ readonly accountId: pulumi.Output; /** * The networks CIDRs that will be allowed to initiate proxy connections. */ readonly ips: pulumi.Output; /** * Name of the teams proxy endpoint. */ readonly name: pulumi.Output; /** * The FQDN that proxy clients should be pointed at. */ readonly subdomain: pulumi.Output; /** * Create a TeamsProxyEndpoint 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: TeamsProxyEndpointArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering TeamsProxyEndpoint resources. */ export interface TeamsProxyEndpointState { /** * The account to which the teams proxy endpoint should be added. */ accountId?: pulumi.Input; /** * The networks CIDRs that will be allowed to initiate proxy connections. */ ips?: pulumi.Input[]>; /** * Name of the teams proxy endpoint. */ name?: pulumi.Input; /** * The FQDN that proxy clients should be pointed at. */ subdomain?: pulumi.Input; } /** * The set of arguments for constructing a TeamsProxyEndpoint resource. */ export interface TeamsProxyEndpointArgs { /** * The account to which the teams proxy endpoint should be added. */ accountId: pulumi.Input; /** * The networks CIDRs that will be allowed to initiate proxy connections. */ ips: pulumi.Input[]>; /** * Name of the teams proxy endpoint. */ name: pulumi.Input; }