import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This resource provides the Dedicated 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/DedicatedVantagePoint * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/apm/apm_synthetics * * Registers a new dedicated vantage point. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDedicatedVantagePoint = new oci.apmsynthetics.DedicatedVantagePoint("test_dedicated_vantage_point", { * apmDomainId: testApmDomain.id, * displayName: dedicatedVantagePointDisplayName, * dvpStackDetails: { * dvpStackId: testStack.id, * dvpStackType: dedicatedVantagePointDvpStackDetailsDvpStackType, * dvpStreamId: testStream.id, * dvpVersion: dedicatedVantagePointDvpStackDetailsDvpVersion, * }, * region: dedicatedVantagePointRegion, * definedTags: { * "foo-namespace.bar-key": "value", * }, * freeformTags: { * "bar-key": "value", * }, * status: dedicatedVantagePointStatus, * }); * ``` * * ## Import * * DedicatedVantagePoints can be imported using the `id`, e.g. * * ```sh * $ pulumi import oci:ApmSynthetics/dedicatedVantagePoint:DedicatedVantagePoint test_dedicated_vantage_point "dedicatedVantagePoints/{dedicatedVantagePointId}/apmDomainId/{apmDomainId}" * ``` */ export declare class DedicatedVantagePoint extends pulumi.CustomResource { /** * Get an existing DedicatedVantagePoint 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?: DedicatedVantagePointState, opts?: pulumi.CustomResourceOptions): DedicatedVantagePoint; /** * Returns true if the given object is an instance of DedicatedVantagePoint. 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 DedicatedVantagePoint; /** * (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; }>; /** * Unique dedicated vantage point name that cannot be edited. The name should not contain any confidential information. */ readonly displayName: pulumi.Output; /** * (Updatable) Details of a Dedicated Vantage Point (DVP) stack in Resource Manager. */ readonly dvpStackDetails: 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; }>; /** * Details of the monitor count per state. Example: `{ "total" : 5, "enabled" : 3 , "disabled" : 2, "invalid" : 0 }` */ readonly monitorStatusCountMaps: pulumi.Output; /** * Unique permanent name of the dedicated vantage point. This is the same as the displayName. */ readonly name: pulumi.Output; /** * (Updatable) Name of the region. */ readonly region: pulumi.Output; /** * (Updatable) Status of the dedicated 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 status: 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; /** * Create a DedicatedVantagePoint 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: DedicatedVantagePointArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering DedicatedVantagePoint resources. */ export interface DedicatedVantagePointState { /** * (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>; /** * Unique dedicated vantage point name that cannot be edited. The name should not contain any confidential information. */ displayName?: pulumi.Input; /** * (Updatable) Details of a Dedicated Vantage Point (DVP) stack in Resource Manager. */ dvpStackDetails?: 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>; /** * Details of the monitor count per state. Example: `{ "total" : 5, "enabled" : 3 , "disabled" : 2, "invalid" : 0 }` */ monitorStatusCountMaps?: pulumi.Input[] | undefined>; /** * Unique permanent name of the dedicated vantage point. This is the same as the displayName. */ name?: pulumi.Input; /** * (Updatable) Name of the region. */ region?: pulumi.Input; /** * (Updatable) Status of the dedicated 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 */ status?: 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; } /** * The set of arguments for constructing a DedicatedVantagePoint resource. */ export interface DedicatedVantagePointArgs { /** * (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>; /** * Unique dedicated vantage point name that cannot be edited. The name should not contain any confidential information. */ displayName: pulumi.Input; /** * (Updatable) Details of a Dedicated Vantage Point (DVP) stack in Resource Manager. */ dvpStackDetails: 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>; /** * (Updatable) Name of the region. */ region: pulumi.Input; /** * (Updatable) Status of the dedicated 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 */ status?: pulumi.Input; } //# sourceMappingURL=dedicatedVantagePoint.d.ts.map