import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This resource provides the On Premise Vantage Point resource in Oracle Cloud Infrastructure Apm Synthetics service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/apm-synthetic-monitoring/latest/OnPremiseVantagePoint * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/apm/apm_synthetics * * Registers a new On-premise vantage point. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOnPremiseVantagePoint = new oci.apmsynthetics.OnPremiseVantagePoint("test_on_premise_vantage_point", { * apmDomainId: testApmDomain.id, * name: onPremiseVantagePointName, * definedTags: { * "foo-namespace.bar-key": "value", * }, * description: onPremiseVantagePointDescription, * freeformTags: { * "bar-key": "value", * }, * type: onPremiseVantagePointType, * }); * ``` * * ## Import * * OnPremiseVantagePoints can be imported using the `id`, e.g. * * ```sh * $ pulumi import oci:ApmSynthetics/onPremiseVantagePoint:OnPremiseVantagePoint test_on_premise_vantage_point "onPremiseVantagePoints/{onPremiseVantagePointId}/apmDomainId/{apmDomainId}" * ``` */ export declare class OnPremiseVantagePoint extends pulumi.CustomResource { /** * Get an existing OnPremiseVantagePoint 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?: OnPremiseVantagePointState, opts?: pulumi.CustomResourceOptions): OnPremiseVantagePoint; /** * Returns true if the given object is an instance of OnPremiseVantagePoint. 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 OnPremiseVantagePoint; /** * (Updatable) The APM domain ID the request is intended for. */ readonly apmDomainId: pulumi.Output; /** * (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ readonly definedTags: pulumi.Output<{ [key: string]: string; }>; /** * (Updatable) A short description about the On-premise vantage point. */ readonly description: pulumi.Output; /** * Unique permanent name of the On-premise vantage point. */ readonly displayName: pulumi.Output; /** * (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ readonly freeformTags: pulumi.Output<{ [key: string]: string; }>; /** * Unique On-premise vantage point name that cannot be edited. The name should not contain any confidential information. */ readonly name: pulumi.Output; /** * The time the resource was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2020-02-12T22:47:12.613Z` */ readonly timeCreated: pulumi.Output; /** * The time the resource was updated, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2020-02-13T22:47:12.613Z` */ readonly timeUpdated: pulumi.Output; /** * Type of On-premise vantage point. * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ readonly type: pulumi.Output; /** * Details of the workers in a specific On-premise vantage point. */ readonly workersSummaries: pulumi.Output; /** * Create a OnPremiseVantagePoint 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: OnPremiseVantagePointArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering OnPremiseVantagePoint resources. */ export interface OnPremiseVantagePointState { /** * (Updatable) The APM domain ID the request is intended for. */ apmDomainId?: pulumi.Input; /** * (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ definedTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * (Updatable) A short description about the On-premise vantage point. */ description?: pulumi.Input; /** * Unique permanent name of the On-premise vantage point. */ displayName?: pulumi.Input; /** * (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ freeformTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * Unique On-premise vantage point name that cannot be edited. The name should not contain any confidential information. */ name?: pulumi.Input; /** * The time the resource was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2020-02-12T22:47:12.613Z` */ timeCreated?: pulumi.Input; /** * The time the resource was updated, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2020-02-13T22:47:12.613Z` */ timeUpdated?: pulumi.Input; /** * Type of On-premise vantage point. * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ type?: pulumi.Input; /** * Details of the workers in a specific On-premise vantage point. */ workersSummaries?: pulumi.Input[] | undefined>; } /** * The set of arguments for constructing a OnPremiseVantagePoint resource. */ export interface OnPremiseVantagePointArgs { /** * (Updatable) The APM domain ID the request is intended for. */ apmDomainId: pulumi.Input; /** * (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ definedTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * (Updatable) A short description about the On-premise vantage point. */ description?: pulumi.Input; /** * (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ freeformTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * Unique On-premise vantage point name that cannot be edited. The name should not contain any confidential information. */ name?: pulumi.Input; /** * Type of On-premise vantage point. * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ type?: pulumi.Input; } //# sourceMappingURL=onPremiseVantagePoint.d.ts.map