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/teamsProxyEndpoint:TeamsProxyEndpoint example '/' * ``` * * @deprecated cloudflare.index/teamsproxyendpoint.TeamsProxyEndpoint has been deprecated in favor of cloudflare.index/zerotrustgatewayproxyendpoint.ZeroTrustGatewayProxyEndpoint */ 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; 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 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. */ /** @deprecated cloudflare.index/teamsproxyendpoint.TeamsProxyEndpoint has been deprecated in favor of cloudflare.index/zerotrustgatewayproxyendpoint.ZeroTrustGatewayProxyEndpoint */ constructor(name: string, args: TeamsProxyEndpointArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering TeamsProxyEndpoint resources. */ export interface TeamsProxyEndpointState { 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 TeamsProxyEndpoint resource. */ export interface TeamsProxyEndpointArgs { accountId: pulumi.Input; /** * A list of CIDRs to restrict ingress connections. */ ips: pulumi.Input[]>; /** * The name of the proxy endpoint. */ name: pulumi.Input; }