import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Resource Analytics Instance resource in Oracle Cloud Infrastructure Resource Analytics service. * * Gets information about a ResourceAnalyticsInstance. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testResourceAnalyticsInstance = oci.oci.getResourceAnalyticsResourceAnalyticsInstance({ * resourceAnalyticsInstanceId: testResourceAnalyticsInstanceOciResourceAnalyticsResourceAnalyticsInstance.id, * }); * ``` */ export declare function getResourceAnalyticsResourceAnalyticsInstance(args: GetResourceAnalyticsResourceAnalyticsInstanceArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getResourceAnalyticsResourceAnalyticsInstance. */ export interface GetResourceAnalyticsResourceAnalyticsInstanceArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the ResourceAnalyticsInstance. */ resourceAnalyticsInstanceId: string; } /** * A collection of values returned by getResourceAnalyticsResourceAnalyticsInstance. */ export interface GetResourceAnalyticsResourceAnalyticsInstanceResult { readonly adwAdminPasswords: outputs.oci.GetResourceAnalyticsResourceAnalyticsInstanceAdwAdminPassword[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the created ADW instance. */ readonly adwId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: string; readonly computeCount: number; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * A description of the ResourceAnalyticsInstance instance. */ readonly description: string; /** * A user-friendly name. Does not have to be unique, and it's changeable. */ readonly displayName: string; /** * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the ResourceAnalyticsInstance. */ readonly id: string; readonly isMutualTlsRequired: boolean; readonly licenseModel: string; /** * A message that describes the current state of the ResourceAnalyticsInstance in more detail. For example, can be used to provide actionable information for a resource in the Failed state. */ readonly lifecycleDetails: string; readonly nsgIds: string[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the OAC enabled for the ResourceAnalyticsInstance. */ readonly oacId: string; readonly resourceAnalyticsInstanceId: string; /** * The current state of the ResourceAnalyticsInstance. */ readonly state: string; readonly subnetId: 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 ResourceAnalyticsInstance 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 ResourceAnalyticsInstance 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 Resource Analytics Instance resource in Oracle Cloud Infrastructure Resource Analytics service. * * Gets information about a ResourceAnalyticsInstance. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testResourceAnalyticsInstance = oci.oci.getResourceAnalyticsResourceAnalyticsInstance({ * resourceAnalyticsInstanceId: testResourceAnalyticsInstanceOciResourceAnalyticsResourceAnalyticsInstance.id, * }); * ``` */ export declare function getResourceAnalyticsResourceAnalyticsInstanceOutput(args: GetResourceAnalyticsResourceAnalyticsInstanceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getResourceAnalyticsResourceAnalyticsInstance. */ export interface GetResourceAnalyticsResourceAnalyticsInstanceOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the ResourceAnalyticsInstance. */ resourceAnalyticsInstanceId: pulumi.Input; } //# sourceMappingURL=getResourceAnalyticsResourceAnalyticsInstance.d.ts.map