import * as pulumi from "@pulumi/pulumi"; import * as enums from "../../types/enums"; /** * Creates a new Endpoint in a given project and location. * Auto-naming is currently not supported for this resource. */ export declare class Endpoint extends pulumi.CustomResource { /** * Get an existing Endpoint 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 opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): Endpoint; /** * Returns true if the given object is an instance of Endpoint. 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 Endpoint; /** * The create time timestamp. */ readonly createTime: pulumi.Output; /** * User-provided description of the endpoint */ readonly description: pulumi.Output; /** * The fully qualified URL of the endpoint's ILB Forwarding Rule. */ readonly endpointForwardingRule: pulumi.Output; /** * Required. The endpoint identifier. This will be part of the endpoint's resource name. This value must start with a lowercase letter followed by up to 62 lowercase letters, numbers, or hyphens, and cannot end with a hyphen. Values that do not match this pattern will trigger an INVALID_ARGUMENT error. */ readonly endpointId: pulumi.Output; /** * The IP address of the IDS Endpoint's ILB. */ readonly endpointIp: pulumi.Output; /** * The labels of the endpoint. */ readonly labels: pulumi.Output<{ [key: string]: string; }>; readonly location: pulumi.Output; /** * The name of the endpoint. */ readonly name: pulumi.Output; /** * The fully qualified URL of the network to which the IDS Endpoint is attached. */ readonly network: pulumi.Output; readonly project: pulumi.Output; /** * An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */ readonly requestId: pulumi.Output; /** * Lowest threat severity that this endpoint will alert on. */ readonly severity: pulumi.Output; /** * Current state of the endpoint. */ readonly state: pulumi.Output; /** * List of threat IDs to be excepted from generating alerts. */ readonly threatExceptions: pulumi.Output; /** * Whether the endpoint should report traffic logs in addition to threat logs. */ readonly trafficLogs: pulumi.Output; /** * The update time timestamp. */ readonly updateTime: pulumi.Output; /** * Create a Endpoint 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: EndpointArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Endpoint resource. */ export interface EndpointArgs { /** * User-provided description of the endpoint */ description?: pulumi.Input; /** * Required. The endpoint identifier. This will be part of the endpoint's resource name. This value must start with a lowercase letter followed by up to 62 lowercase letters, numbers, or hyphens, and cannot end with a hyphen. Values that do not match this pattern will trigger an INVALID_ARGUMENT error. */ endpointId: pulumi.Input; /** * The labels of the endpoint. */ labels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; location?: pulumi.Input; /** * The fully qualified URL of the network to which the IDS Endpoint is attached. */ network: pulumi.Input; project?: pulumi.Input; /** * An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */ requestId?: pulumi.Input; /** * Lowest threat severity that this endpoint will alert on. */ severity: pulumi.Input; /** * List of threat IDs to be excepted from generating alerts. */ threatExceptions?: pulumi.Input[]>; /** * Whether the endpoint should report traffic logs in addition to threat logs. */ trafficLogs?: pulumi.Input; }