import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This resource provides the Oda Private Endpoint Scan Proxy resource in Oracle Cloud Infrastructure Digital Assistant service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/digital-assistant/latest/OdaPrivateEndpointScanProxy * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/oracle_digital_assistant * * Starts an asynchronous job to create an ODA Private Endpoint Scan Proxy. * * To monitor the status of the job, take the `opc-work-request-id` response * header value and use it to call `GET /workRequests/{workRequestID}`. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOdaPrivateEndpointScanProxy = new oci.oda.OdaPrivateEndpointScanProxy("test_oda_private_endpoint_scan_proxy", { * odaPrivateEndpointId: testOdaPrivateEndpoint.id, * protocol: odaPrivateEndpointScanProxyProtocol, * scanListenerInfos: [{ * scanListenerFqdn: odaPrivateEndpointScanProxyScanListenerInfosScanListenerFqdn, * scanListenerIp: odaPrivateEndpointScanProxyScanListenerInfosScanListenerIp, * scanListenerPort: Number(odaPrivateEndpointScanProxyScanListenerInfosScanListenerPort), * }], * scanListenerType: odaPrivateEndpointScanProxyScanListenerType, * }); * ``` * * ## Import * * OdaPrivateEndpointScanProxies can be imported using the `id`, e.g. * * ```sh * $ pulumi import oci:Oda/odaPrivateEndpointScanProxy:OdaPrivateEndpointScanProxy test_oda_private_endpoint_scan_proxy "odaPrivateEndpoints/{odaPrivateEndpointId}/odaPrivateEndpointScanProxies/{odaPrivateEndpointScanProxyId}" * ``` */ export declare class OdaPrivateEndpointScanProxy extends pulumi.CustomResource { /** * Get an existing OdaPrivateEndpointScanProxy 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?: OdaPrivateEndpointScanProxyState, opts?: pulumi.CustomResourceOptions): OdaPrivateEndpointScanProxy; /** * Returns true if the given object is an instance of OdaPrivateEndpointScanProxy. 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 OdaPrivateEndpointScanProxy; /** * Unique ODA Private Endpoint identifier which is the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ readonly odaPrivateEndpointId: pulumi.Output; /** * The protocol used for communication between client, scanProxy and RAC's scan listeners */ readonly protocol: pulumi.Output; /** * The FQDN/IPs and port information of customer's Real Application Cluster (RAC)'s SCAN listeners. */ readonly scanListenerInfos: pulumi.Output; /** * Type indicating whether Scan listener is specified by its FQDN or list of IPs * * ** 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 scanListenerType: pulumi.Output; /** * The current state of the ODA Private Endpoint Scan Proxy. */ readonly state: pulumi.Output; /** * When the resource was created. A date-time string as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339), section 14.29. */ readonly timeCreated: pulumi.Output; /** * Create a OdaPrivateEndpointScanProxy 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: OdaPrivateEndpointScanProxyArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering OdaPrivateEndpointScanProxy resources. */ export interface OdaPrivateEndpointScanProxyState { /** * Unique ODA Private Endpoint identifier which is the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ odaPrivateEndpointId?: pulumi.Input; /** * The protocol used for communication between client, scanProxy and RAC's scan listeners */ protocol?: pulumi.Input; /** * The FQDN/IPs and port information of customer's Real Application Cluster (RAC)'s SCAN listeners. */ scanListenerInfos?: pulumi.Input[] | undefined>; /** * Type indicating whether Scan listener is specified by its FQDN or list of IPs * * ** 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 */ scanListenerType?: pulumi.Input; /** * The current state of the ODA Private Endpoint Scan Proxy. */ state?: pulumi.Input; /** * When the resource was created. A date-time string as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339), section 14.29. */ timeCreated?: pulumi.Input; } /** * The set of arguments for constructing a OdaPrivateEndpointScanProxy resource. */ export interface OdaPrivateEndpointScanProxyArgs { /** * Unique ODA Private Endpoint identifier which is the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ odaPrivateEndpointId: pulumi.Input; /** * The protocol used for communication between client, scanProxy and RAC's scan listeners */ protocol: pulumi.Input; /** * The FQDN/IPs and port information of customer's Real Application Cluster (RAC)'s SCAN listeners. */ scanListenerInfos: pulumi.Input[]>; /** * Type indicating whether Scan listener is specified by its FQDN or list of IPs * * ** 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 */ scanListenerType: pulumi.Input; } //# sourceMappingURL=odaPrivateEndpointScanProxy.d.ts.map