import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Opa Instance resource in Oracle Cloud Infrastructure Opa service. * * Gets a OpaInstance by identifier * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOpaInstance = oci.opa.getOpaInstance({ * opaInstanceId: testOpaInstanceOciOpaOpaInstance.id, * }); * ``` */ export declare function getOpaInstance(args: GetOpaInstanceArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getOpaInstance. */ export interface GetOpaInstanceArgs { /** * unique OpaInstance identifier */ opaInstanceId: string; } /** * A collection of values returned by getOpaInstance. */ export interface GetOpaInstanceResult { /** * A list of associated attachments to other services */ readonly attachments: outputs.Opa.GetOpaInstanceAttachment[]; /** * Compartment Identifier */ readonly compartmentId: string; /** * The entitlement used for billing purposes */ readonly consumptionModel: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ readonly definedTags: { [key: string]: string; }; /** * Description of the Process Automation instance. */ readonly description: string; /** * OpaInstance Identifier, can be renamed */ readonly displayName: string; /** * 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: { [key: string]: string; }; /** * Unique identifier that is immutable on creation */ readonly id: string; readonly idcsAt: string; /** * This property specifies the name of the Identity Application instance OPA has created inside the user-specified identity domain. This identity application instance may be used to host user roll mappings to grant access to this OPA instance for users within the identity domain. */ readonly identityAppDisplayName: string; /** * This property specifies the GUID of the Identity Application instance OPA has created inside the user-specified identity domain. This identity application instance may be used to host user role mappings to grant access to this OPA instance for users within the identity domain. */ readonly identityAppGuid: string; /** * This property specifies the OPC Service Instance GUID of the Identity Application instance OPA has created inside the user-specified identity domain. This identity application instance may be used to host user roll mappings to grant access to this OPA instance for users within the identity domain. */ readonly identityAppOpcServiceInstanceGuid: string; /** * This property specifies the domain url of the Identity Application instance OPA has created inside the user-specified identity domain. This identity application instance may be used to host user roll mappings to grant access to this OPA instance for users within the identity domain. */ readonly identityDomainUrl: string; /** * OPA Instance URL */ readonly instanceUrl: string; /** * indicates if breakGlass is enabled for the opa instance. */ readonly isBreakglassEnabled: boolean; /** * MeteringType Identifier */ readonly meteringType: string; readonly opaInstanceId: string; /** * Shape of the instance. */ readonly shapeName: string; /** * The current state of the OpaInstance. */ readonly state: string; /** * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The time when OpaInstance was created. An RFC3339 formatted datetime string */ readonly timeCreated: string; /** * The time the OpaInstance was updated. An RFC3339 formatted datetime string */ readonly timeUpdated: string; } /** * This data source provides details about a specific Opa Instance resource in Oracle Cloud Infrastructure Opa service. * * Gets a OpaInstance by identifier * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOpaInstance = oci.opa.getOpaInstance({ * opaInstanceId: testOpaInstanceOciOpaOpaInstance.id, * }); * ``` */ export declare function getOpaInstanceOutput(args: GetOpaInstanceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getOpaInstance. */ export interface GetOpaInstanceOutputArgs { /** * unique OpaInstance identifier */ opaInstanceId: pulumi.Input; } //# sourceMappingURL=getOpaInstance.d.ts.map