import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This resource provides the Opa Instance resource in Oracle Cloud Infrastructure Opa service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/opa/latest/OpaInstance * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/opa * * Creates a new OpaInstance. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOpaInstance = new oci.opa.OpaInstance("test_opa_instance", { * compartmentId: compartmentId, * displayName: opaInstanceDisplayName, * shapeName: testShape.name, * consumptionModel: opaInstanceConsumptionModel, * definedTags: { * "foo-namespace.bar-key": "value", * }, * description: opaInstanceDescription, * freeformTags: { * "bar-key": "value", * }, * idcsAt: opaInstanceIdcsAt, * isBreakglassEnabled: opaInstanceIsBreakglassEnabled === "true", * meteringType: opaInstanceMeteringType, * }); * ``` * * ## Import * * OpaInstances can be imported using the `id`, e.g. * * ```sh * $ pulumi import oci:Opa/opaInstance:OpaInstance test_opa_instance "id" * ``` */ export declare class OpaInstance extends pulumi.CustomResource { /** * Get an existing OpaInstance 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?: OpaInstanceState, opts?: pulumi.CustomResourceOptions): OpaInstance; /** * Returns true if the given object is an instance of OpaInstance. 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 OpaInstance; /** * A list of associated attachments to other services */ readonly attachments: pulumi.Output; /** * (Updatable) Compartment Identifier */ readonly compartmentId: pulumi.Output; /** * Parameter specifying which entitlement to use for billing purposes */ readonly consumptionModel: 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) Description of the Oracle Process Automation instance. */ readonly description: pulumi.Output; /** * (Updatable) OpaInstance Identifier. User-friendly name for the instance. Avoid entering confidential information. You can change this value anytime. */ 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; }>; /** * IDCS Authentication token. This is required for all realms with IDCS. This property is optional, as it is not required for non-IDCS realms. */ readonly idcsAt: pulumi.Output; /** * 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: pulumi.Output; /** * 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: pulumi.Output; /** * 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: pulumi.Output; /** * 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: pulumi.Output; /** * OPA Instance URL */ readonly instanceUrl: pulumi.Output; /** * indicates if breakGlass is enabled for the opa instance. */ readonly isBreakglassEnabled: pulumi.Output; /** * MeteringType Identifier */ readonly meteringType: pulumi.Output; /** * Shape of the instance. */ readonly shapeName: pulumi.Output; /** * (Updatable) The target state for the Opa Instance. Could be set to `ACTIVE` or `INACTIVE`. * * ** 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 state: pulumi.Output; /** * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: pulumi.Output<{ [key: string]: string; }>; /** * The time when OpaInstance was created. An RFC3339 formatted datetime string */ readonly timeCreated: pulumi.Output; /** * The time the OpaInstance was updated. An RFC3339 formatted datetime string */ readonly timeUpdated: pulumi.Output; /** * Create a OpaInstance 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: OpaInstanceArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering OpaInstance resources. */ export interface OpaInstanceState { /** * A list of associated attachments to other services */ attachments?: pulumi.Input[] | undefined>; /** * (Updatable) Compartment Identifier */ compartmentId?: pulumi.Input; /** * Parameter specifying which entitlement to use for billing purposes */ consumptionModel?: 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) Description of the Oracle Process Automation instance. */ description?: pulumi.Input; /** * (Updatable) OpaInstance Identifier. User-friendly name for the instance. Avoid entering confidential information. You can change this value anytime. */ 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>; /** * IDCS Authentication token. This is required for all realms with IDCS. This property is optional, as it is not required for non-IDCS realms. */ idcsAt?: pulumi.Input; /** * 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. */ identityAppDisplayName?: pulumi.Input; /** * 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. */ identityAppGuid?: pulumi.Input; /** * 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. */ identityAppOpcServiceInstanceGuid?: pulumi.Input; /** * 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. */ identityDomainUrl?: pulumi.Input; /** * OPA Instance URL */ instanceUrl?: pulumi.Input; /** * indicates if breakGlass is enabled for the opa instance. */ isBreakglassEnabled?: pulumi.Input; /** * MeteringType Identifier */ meteringType?: pulumi.Input; /** * Shape of the instance. */ shapeName?: pulumi.Input; /** * (Updatable) The target state for the Opa Instance. Could be set to `ACTIVE` or `INACTIVE`. * * ** 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 */ state?: pulumi.Input; /** * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ systemTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * The time when OpaInstance was created. An RFC3339 formatted datetime string */ timeCreated?: pulumi.Input; /** * The time the OpaInstance was updated. An RFC3339 formatted datetime string */ timeUpdated?: pulumi.Input; } /** * The set of arguments for constructing a OpaInstance resource. */ export interface OpaInstanceArgs { /** * (Updatable) Compartment Identifier */ compartmentId: pulumi.Input; /** * Parameter specifying which entitlement to use for billing purposes */ consumptionModel?: 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) Description of the Oracle Process Automation instance. */ description?: pulumi.Input; /** * (Updatable) OpaInstance Identifier. User-friendly name for the instance. Avoid entering confidential information. You can change this value anytime. */ 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>; /** * IDCS Authentication token. This is required for all realms with IDCS. This property is optional, as it is not required for non-IDCS realms. */ idcsAt?: pulumi.Input; /** * indicates if breakGlass is enabled for the opa instance. */ isBreakglassEnabled?: pulumi.Input; /** * MeteringType Identifier */ meteringType?: pulumi.Input; /** * Shape of the instance. */ shapeName: pulumi.Input; /** * (Updatable) The target state for the Opa Instance. Could be set to `ACTIVE` or `INACTIVE`. * * ** 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 */ state?: pulumi.Input; } //# sourceMappingURL=opaInstance.d.ts.map