import * as pulumi from "@pulumi/pulumi";
/**
 * A Firewall endpoint is a Cloud Firewall resource that enables
 * layer 7 advanced protection capabilities, such as intrusion prevention,
 * in your network.
 *
 * To get more information about FirewallEndpoint, see:
 *
 * * [API documentation](https://cloud.google.com/firewall/docs/reference/network-security/rest/v1/organizations.locations.firewallEndpoints)
 * * How-to Guides
 *     * [Create and associate firewall endpoints](https://cloud.google.com/firewall/docs/configure-firewall-endpoints)
 *     * [Firewall endpoint overview](https://cloud.google.com/firewall/docs/about-firewall-endpoints)
 *
 * > **Warning:** If you are using User ADCs (Application Default Credentials) with this resource,
 * you must specify a `billingProjectId` and set `userProjectOverride` to true
 * in the provider configuration. Otherwise the ACM API will return a 403 error.
 * Your account must have the `serviceusage.services.use` permission on the
 * `billingProjectId` you defined.
 *
 * ## Example Usage
 *
 * ### Network Security Firewall Endpoint Basic
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 *
 * const _default = new gcp.networksecurity.FirewallEndpoint("default", {
 *     name: "my-firewall-endpoint",
 *     parent: "organizations/123456789",
 *     location: "us-central1-a",
 *     billingProjectId: "my-project-name",
 *     labels: {
 *         foo: "bar",
 *     },
 * });
 * ```
 *
 * ## Import
 *
 * FirewallEndpoint can be imported using any of these accepted formats:
 *
 * * `{{parent}}/locations/{{location}}/firewallEndpoints/{{name}}`
 *
 * When using the `pulumi import` command, FirewallEndpoint can be imported using one of the formats above. For example:
 *
 * ```sh
 * $ pulumi import gcp:networksecurity/firewallEndpoint:FirewallEndpoint default {{parent}}/locations/{{location}}/firewallEndpoints/{{name}}
 * ```
 */
export declare class FirewallEndpoint extends pulumi.CustomResource {
    /**
     * Get an existing FirewallEndpoint 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<pulumi.ID>, state?: FirewallEndpointState, opts?: pulumi.CustomResourceOptions): FirewallEndpoint;
    /**
     * Returns true if the given object is an instance of FirewallEndpoint.  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 FirewallEndpoint;
    /**
     * List of networks that are associated with this endpoint in the local zone.
     * This is a projection of the FirewallEndpointAssociations pointing at this
     * endpoint. A network will only appear in this list after traffic routing is
     * fully configured. Format: projects/{project}/global/networks/{name}.
     */
    readonly associatedNetworks: pulumi.Output<string[]>;
    /**
     * Project to bill on endpoint uptime usage.
     */
    readonly billingProjectId: pulumi.Output<string>;
    /**
     * Time the firewall endpoint was created in UTC.
     */
    readonly createTime: pulumi.Output<string>;
    /**
     * All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
     */
    readonly effectiveLabels: pulumi.Output<{
        [key: string]: string;
    }>;
    /**
     * A map of key/value label pairs to assign to the resource.
     *
     * **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
     * Please refer to the field `effectiveLabels` for all of the labels present on the resource.
     */
    readonly labels: pulumi.Output<{
        [key: string]: string;
    } | undefined>;
    /**
     * The location (zone) of the firewall endpoint.
     */
    readonly location: pulumi.Output<string>;
    /**
     * The name of the firewall endpoint resource.
     */
    readonly name: pulumi.Output<string>;
    /**
     * The name of the parent this firewall endpoint belongs to.
     * Format: organizations/{organization_id}.
     *
     *
     * - - -
     */
    readonly parent: pulumi.Output<string>;
    /**
     * The combination of labels configured directly on the resource
     * and default labels configured on the provider.
     */
    readonly pulumiLabels: pulumi.Output<{
        [key: string]: string;
    }>;
    /**
     * Whether reconciling is in progress, recommended per https://google.aip.dev/128.
     */
    readonly reconciling: pulumi.Output<boolean>;
    /**
     * Server-defined URL of this resource.
     */
    readonly selfLink: pulumi.Output<string>;
    /**
     * The current state of the endpoint.
     */
    readonly state: pulumi.Output<string>;
    /**
     * Time the firewall endpoint was updated in UTC.
     */
    readonly updateTime: pulumi.Output<string>;
    /**
     * Create a FirewallEndpoint 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: FirewallEndpointArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * Input properties used for looking up and filtering FirewallEndpoint resources.
 */
export interface FirewallEndpointState {
    /**
     * List of networks that are associated with this endpoint in the local zone.
     * This is a projection of the FirewallEndpointAssociations pointing at this
     * endpoint. A network will only appear in this list after traffic routing is
     * fully configured. Format: projects/{project}/global/networks/{name}.
     */
    associatedNetworks?: pulumi.Input<pulumi.Input<string>[]>;
    /**
     * Project to bill on endpoint uptime usage.
     */
    billingProjectId?: pulumi.Input<string>;
    /**
     * Time the firewall endpoint was created in UTC.
     */
    createTime?: pulumi.Input<string>;
    /**
     * All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
     */
    effectiveLabels?: pulumi.Input<{
        [key: string]: pulumi.Input<string>;
    }>;
    /**
     * A map of key/value label pairs to assign to the resource.
     *
     * **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
     * Please refer to the field `effectiveLabels` for all of the labels present on the resource.
     */
    labels?: pulumi.Input<{
        [key: string]: pulumi.Input<string>;
    }>;
    /**
     * The location (zone) of the firewall endpoint.
     */
    location?: pulumi.Input<string>;
    /**
     * The name of the firewall endpoint resource.
     */
    name?: pulumi.Input<string>;
    /**
     * The name of the parent this firewall endpoint belongs to.
     * Format: organizations/{organization_id}.
     *
     *
     * - - -
     */
    parent?: pulumi.Input<string>;
    /**
     * The combination of labels configured directly on the resource
     * and default labels configured on the provider.
     */
    pulumiLabels?: pulumi.Input<{
        [key: string]: pulumi.Input<string>;
    }>;
    /**
     * Whether reconciling is in progress, recommended per https://google.aip.dev/128.
     */
    reconciling?: pulumi.Input<boolean>;
    /**
     * Server-defined URL of this resource.
     */
    selfLink?: pulumi.Input<string>;
    /**
     * The current state of the endpoint.
     */
    state?: pulumi.Input<string>;
    /**
     * Time the firewall endpoint was updated in UTC.
     */
    updateTime?: pulumi.Input<string>;
}
/**
 * The set of arguments for constructing a FirewallEndpoint resource.
 */
export interface FirewallEndpointArgs {
    /**
     * Project to bill on endpoint uptime usage.
     */
    billingProjectId: pulumi.Input<string>;
    /**
     * A map of key/value label pairs to assign to the resource.
     *
     * **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
     * Please refer to the field `effectiveLabels` for all of the labels present on the resource.
     */
    labels?: pulumi.Input<{
        [key: string]: pulumi.Input<string>;
    }>;
    /**
     * The location (zone) of the firewall endpoint.
     */
    location: pulumi.Input<string>;
    /**
     * The name of the firewall endpoint resource.
     */
    name?: pulumi.Input<string>;
    /**
     * The name of the parent this firewall endpoint belongs to.
     * Format: organizations/{organization_id}.
     *
     *
     * - - -
     */
    parent: pulumi.Input<string>;
}
