UNPKG

@pulumi/gcp

Version:

A Pulumi package for creating and managing Google Cloud Platform resources.

207 lines (206 loc) 8.03 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Specifies application endpoint(s) to protect behind a Security Gateway. * * ## Example Usage * * ### Beyondcorp Security Gateway Application Basic * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * const _default = new gcp.beyondcorp.SecurityGateway("default", { * securityGatewayId: "default", * displayName: "My Security Gateway resource", * hubs: [{ * region: "us-central1", * }], * }); * const example = new gcp.beyondcorp.Application("example", { * securityGatewaysId: _default.securityGatewayId, * applicationId: "google", * endpointMatchers: [{ * hostname: "google.com", * }], * }); * ``` * * ## Import * * Application can be imported using any of these accepted formats: * * * `projects/{{project}}/locations/global/securityGateways/{{security_gateways_id}}/applications/{{application_id}}` * * * `{{project}}/{{security_gateways_id}}/{{application_id}}` * * * `{{security_gateways_id}}/{{application_id}}` * * When using the `pulumi import` command, Application can be imported using one of the formats above. For example: * * ```sh * $ pulumi import gcp:beyondcorp/application:Application default projects/{{project}}/locations/global/securityGateways/{{security_gateways_id}}/applications/{{application_id}} * ``` * * ```sh * $ pulumi import gcp:beyondcorp/application:Application default {{project}}/{{security_gateways_id}}/{{application_id}} * ``` * * ```sh * $ pulumi import gcp:beyondcorp/application:Application default {{security_gateways_id}}/{{application_id}} * ``` */ export declare class Application extends pulumi.CustomResource { /** * Get an existing Application 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?: ApplicationState, opts?: pulumi.CustomResourceOptions): Application; /** * Returns true if the given object is an instance of Application. 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 Application; /** * Optional. User-settable Application resource ID. * * Must start with a letter. * * Must contain between 4-63 characters from `/a-z-/`. * * Must end with a number or letter. */ readonly applicationId: pulumi.Output<string>; /** * Output only. Timestamp when the resource was created. */ readonly createTime: pulumi.Output<string>; /** * Optional. An arbitrary user-provided name for the Application resource. Cannot exceed 64 characters. */ readonly displayName: pulumi.Output<string | undefined>; /** * Required. Endpoint matchers associated with an application. * A combination of hostname and ports as endpoint matcher is used to match * the application. * Match conditions for OR logic. * An array of match conditions to allow for multiple matching criteria. * The rule is considered a match if one the conditions are met. * The conditions can be one of the following combination * (Hostname), (Hostname & Ports) * EXAMPLES: * Hostname - ("*.abc.com"), ("xyz.abc.com") * Hostname and Ports - ("abc.com" and "22"), ("abc.com" and "22,33") etc * Structure is documented below. */ readonly endpointMatchers: pulumi.Output<outputs.beyondcorp.ApplicationEndpointMatcher[]>; /** * Identifier. Name of the resource. */ readonly name: pulumi.Output<string>; readonly project: pulumi.Output<string>; /** * Part of `parent`. See documentation of `projectsId`. */ readonly securityGatewaysId: pulumi.Output<string>; /** * Output only. Timestamp when the resource was last modified. */ readonly updateTime: pulumi.Output<string>; /** * Create a Application 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: ApplicationArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Application resources. */ export interface ApplicationState { /** * Optional. User-settable Application resource ID. * * Must start with a letter. * * Must contain between 4-63 characters from `/a-z-/`. * * Must end with a number or letter. */ applicationId?: pulumi.Input<string>; /** * Output only. Timestamp when the resource was created. */ createTime?: pulumi.Input<string>; /** * Optional. An arbitrary user-provided name for the Application resource. Cannot exceed 64 characters. */ displayName?: pulumi.Input<string>; /** * Required. Endpoint matchers associated with an application. * A combination of hostname and ports as endpoint matcher is used to match * the application. * Match conditions for OR logic. * An array of match conditions to allow for multiple matching criteria. * The rule is considered a match if one the conditions are met. * The conditions can be one of the following combination * (Hostname), (Hostname & Ports) * EXAMPLES: * Hostname - ("*.abc.com"), ("xyz.abc.com") * Hostname and Ports - ("abc.com" and "22"), ("abc.com" and "22,33") etc * Structure is documented below. */ endpointMatchers?: pulumi.Input<pulumi.Input<inputs.beyondcorp.ApplicationEndpointMatcher>[]>; /** * Identifier. Name of the resource. */ name?: pulumi.Input<string>; project?: pulumi.Input<string>; /** * Part of `parent`. See documentation of `projectsId`. */ securityGatewaysId?: pulumi.Input<string>; /** * Output only. Timestamp when the resource was last modified. */ updateTime?: pulumi.Input<string>; } /** * The set of arguments for constructing a Application resource. */ export interface ApplicationArgs { /** * Optional. User-settable Application resource ID. * * Must start with a letter. * * Must contain between 4-63 characters from `/a-z-/`. * * Must end with a number or letter. */ applicationId: pulumi.Input<string>; /** * Optional. An arbitrary user-provided name for the Application resource. Cannot exceed 64 characters. */ displayName?: pulumi.Input<string>; /** * Required. Endpoint matchers associated with an application. * A combination of hostname and ports as endpoint matcher is used to match * the application. * Match conditions for OR logic. * An array of match conditions to allow for multiple matching criteria. * The rule is considered a match if one the conditions are met. * The conditions can be one of the following combination * (Hostname), (Hostname & Ports) * EXAMPLES: * Hostname - ("*.abc.com"), ("xyz.abc.com") * Hostname and Ports - ("abc.com" and "22"), ("abc.com" and "22,33") etc * Structure is documented below. */ endpointMatchers: pulumi.Input<pulumi.Input<inputs.beyondcorp.ApplicationEndpointMatcher>[]>; project?: pulumi.Input<string>; /** * Part of `parent`. See documentation of `projectsId`. */ securityGatewaysId: pulumi.Input<string>; }