import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class ZeroTrustAccessInfrastructureTarget extends pulumi.CustomResource { /** * Get an existing ZeroTrustAccessInfrastructureTarget 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?: ZeroTrustAccessInfrastructureTargetState, opts?: pulumi.CustomResourceOptions): ZeroTrustAccessInfrastructureTarget; /** * Returns true if the given object is an instance of ZeroTrustAccessInfrastructureTarget. 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 ZeroTrustAccessInfrastructureTarget; /** * Account identifier */ readonly accountId: pulumi.Output; /** * Date and time at which the target was created */ readonly createdAt: pulumi.Output; /** * A non-unique field that refers to a target. Case insensitive, maximum * length of 255 characters, supports the use of special characters dash * and period, does not support spaces, and must start and end with an * alphanumeric character. */ readonly hostname: pulumi.Output; /** * The IPv4/IPv6 address that identifies where to reach a target */ readonly ip: pulumi.Output; /** * Date and time at which the target was modified */ readonly modifiedAt: pulumi.Output; /** * Create a ZeroTrustAccessInfrastructureTarget 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: ZeroTrustAccessInfrastructureTargetArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ZeroTrustAccessInfrastructureTarget resources. */ export interface ZeroTrustAccessInfrastructureTargetState { /** * Account identifier */ accountId?: pulumi.Input; /** * Date and time at which the target was created */ createdAt?: pulumi.Input; /** * A non-unique field that refers to a target. Case insensitive, maximum * length of 255 characters, supports the use of special characters dash * and period, does not support spaces, and must start and end with an * alphanumeric character. */ hostname?: pulumi.Input; /** * The IPv4/IPv6 address that identifies where to reach a target */ ip?: pulumi.Input; /** * Date and time at which the target was modified */ modifiedAt?: pulumi.Input; } /** * The set of arguments for constructing a ZeroTrustAccessInfrastructureTarget resource. */ export interface ZeroTrustAccessInfrastructureTargetArgs { /** * Account identifier */ accountId: pulumi.Input; /** * A non-unique field that refers to a target. Case insensitive, maximum * length of 255 characters, supports the use of special characters dash * and period, does not support spaces, and must start and end with an * alphanumeric character. */ hostname: pulumi.Input; /** * The IPv4/IPv6 address that identifies where to reach a target */ ip: pulumi.Input; } //# sourceMappingURL=zeroTrustAccessInfrastructureTarget.d.ts.map