import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Monitored Region resource in Oracle Cloud Infrastructure Resource Analytics service. * * Gets information about a MonitoredRegion. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testMonitoredRegion = oci.oci.getResourceAnalyticsMonitoredRegion({ * monitoredRegionId: testMonitoredRegionOciResourceAnalyticsMonitoredRegion.id, * }); * ``` */ export declare function getResourceAnalyticsMonitoredRegion(args: GetResourceAnalyticsMonitoredRegionArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getResourceAnalyticsMonitoredRegion. */ export interface GetResourceAnalyticsMonitoredRegionArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the MonitoredRegion. */ monitoredRegionId: string; } /** * A collection of values returned by getResourceAnalyticsMonitoredRegion. */ export interface GetResourceAnalyticsMonitoredRegionResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the MonitoredRegion. */ readonly id: string; /** * A message that describes the current state of the MonitoredRegion in more detail. For example, can be used to provide actionable information for a resource in the Failed state. */ readonly lifecycleDetails: string; readonly monitoredRegionId: string; /** * The [Region Identifier](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm) of this MonitoredRegion. */ readonly regionId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the ResourceAnalyticsInstance associated with this MonitoredRegion. */ readonly resourceAnalyticsInstanceId: string; /** * The current state of the MonitoredRegion. */ readonly state: string; /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The date and time the MonitoredRegion was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeCreated: string; /** * The date and time the MonitoredRegion was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeUpdated: string; } /** * This data source provides details about a specific Monitored Region resource in Oracle Cloud Infrastructure Resource Analytics service. * * Gets information about a MonitoredRegion. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testMonitoredRegion = oci.oci.getResourceAnalyticsMonitoredRegion({ * monitoredRegionId: testMonitoredRegionOciResourceAnalyticsMonitoredRegion.id, * }); * ``` */ export declare function getResourceAnalyticsMonitoredRegionOutput(args: GetResourceAnalyticsMonitoredRegionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getResourceAnalyticsMonitoredRegion. */ export interface GetResourceAnalyticsMonitoredRegionOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the MonitoredRegion. */ monitoredRegionId: pulumi.Input; } //# sourceMappingURL=getResourceAnalyticsMonitoredRegion.d.ts.map