Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 by Pulumi
oci.Oda.getOdaPrivateEndpointScanProxy
Explore with Pulumi AI
This data source provides details about a specific Oda Private Endpoint Scan Proxy resource in Oracle Cloud Infrastructure Digital Assistant service.
Gets the specified ODA Private Endpoint Scan Proxy.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testOdaPrivateEndpointScanProxy = oci.Oda.getOdaPrivateEndpointScanProxy({
    odaPrivateEndpointId: testOdaPrivateEndpoint.id,
    odaPrivateEndpointScanProxyId: testOdaPrivateEndpointScanProxyOciOdaOdaPrivateEndpointScanProxy.id,
});
import pulumi
import pulumi_oci as oci
test_oda_private_endpoint_scan_proxy = oci.Oda.get_oda_private_endpoint_scan_proxy(oda_private_endpoint_id=test_oda_private_endpoint["id"],
    oda_private_endpoint_scan_proxy_id=test_oda_private_endpoint_scan_proxy_oci_oda_oda_private_endpoint_scan_proxy["id"])
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/oda"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := oda.GetOdaPrivateEndpointScanProxy(ctx, &oda.GetOdaPrivateEndpointScanProxyArgs{
			OdaPrivateEndpointId:          testOdaPrivateEndpoint.Id,
			OdaPrivateEndpointScanProxyId: testOdaPrivateEndpointScanProxyOciOdaOdaPrivateEndpointScanProxy.Id,
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() => 
{
    var testOdaPrivateEndpointScanProxy = Oci.Oda.GetOdaPrivateEndpointScanProxy.Invoke(new()
    {
        OdaPrivateEndpointId = testOdaPrivateEndpoint.Id,
        OdaPrivateEndpointScanProxyId = testOdaPrivateEndpointScanProxyOciOdaOdaPrivateEndpointScanProxy.Id,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Oda.OdaFunctions;
import com.pulumi.oci.Oda.inputs.GetOdaPrivateEndpointScanProxyArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        final var testOdaPrivateEndpointScanProxy = OdaFunctions.getOdaPrivateEndpointScanProxy(GetOdaPrivateEndpointScanProxyArgs.builder()
            .odaPrivateEndpointId(testOdaPrivateEndpoint.id())
            .odaPrivateEndpointScanProxyId(testOdaPrivateEndpointScanProxyOciOdaOdaPrivateEndpointScanProxy.id())
            .build());
    }
}
variables:
  testOdaPrivateEndpointScanProxy:
    fn::invoke:
      function: oci:Oda:getOdaPrivateEndpointScanProxy
      arguments:
        odaPrivateEndpointId: ${testOdaPrivateEndpoint.id}
        odaPrivateEndpointScanProxyId: ${testOdaPrivateEndpointScanProxyOciOdaOdaPrivateEndpointScanProxy.id}
Using getOdaPrivateEndpointScanProxy
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getOdaPrivateEndpointScanProxy(args: GetOdaPrivateEndpointScanProxyArgs, opts?: InvokeOptions): Promise<GetOdaPrivateEndpointScanProxyResult>
function getOdaPrivateEndpointScanProxyOutput(args: GetOdaPrivateEndpointScanProxyOutputArgs, opts?: InvokeOptions): Output<GetOdaPrivateEndpointScanProxyResult>def get_oda_private_endpoint_scan_proxy(oda_private_endpoint_id: Optional[str] = None,
                                        oda_private_endpoint_scan_proxy_id: Optional[str] = None,
                                        opts: Optional[InvokeOptions] = None) -> GetOdaPrivateEndpointScanProxyResult
def get_oda_private_endpoint_scan_proxy_output(oda_private_endpoint_id: Optional[pulumi.Input[str]] = None,
                                        oda_private_endpoint_scan_proxy_id: Optional[pulumi.Input[str]] = None,
                                        opts: Optional[InvokeOptions] = None) -> Output[GetOdaPrivateEndpointScanProxyResult]func LookupOdaPrivateEndpointScanProxy(ctx *Context, args *LookupOdaPrivateEndpointScanProxyArgs, opts ...InvokeOption) (*LookupOdaPrivateEndpointScanProxyResult, error)
func LookupOdaPrivateEndpointScanProxyOutput(ctx *Context, args *LookupOdaPrivateEndpointScanProxyOutputArgs, opts ...InvokeOption) LookupOdaPrivateEndpointScanProxyResultOutput> Note: This function is named LookupOdaPrivateEndpointScanProxy in the Go SDK.
public static class GetOdaPrivateEndpointScanProxy 
{
    public static Task<GetOdaPrivateEndpointScanProxyResult> InvokeAsync(GetOdaPrivateEndpointScanProxyArgs args, InvokeOptions? opts = null)
    public static Output<GetOdaPrivateEndpointScanProxyResult> Invoke(GetOdaPrivateEndpointScanProxyInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetOdaPrivateEndpointScanProxyResult> getOdaPrivateEndpointScanProxy(GetOdaPrivateEndpointScanProxyArgs args, InvokeOptions options)
public static Output<GetOdaPrivateEndpointScanProxyResult> getOdaPrivateEndpointScanProxy(GetOdaPrivateEndpointScanProxyArgs args, InvokeOptions options)
fn::invoke:
  function: oci:Oda/getOdaPrivateEndpointScanProxy:getOdaPrivateEndpointScanProxy
  arguments:
    # arguments dictionaryThe following arguments are supported:
- OdaPrivate stringEndpoint Id 
- Unique ODA Private Endpoint identifier which is the OCID.
- OdaPrivate stringEndpoint Scan Proxy Id 
- Unique ODA Private Endpoint Scan Proxy identifier.
- OdaPrivate stringEndpoint Id 
- Unique ODA Private Endpoint identifier which is the OCID.
- OdaPrivate stringEndpoint Scan Proxy Id 
- Unique ODA Private Endpoint Scan Proxy identifier.
- odaPrivate StringEndpoint Id 
- Unique ODA Private Endpoint identifier which is the OCID.
- odaPrivate StringEndpoint Scan Proxy Id 
- Unique ODA Private Endpoint Scan Proxy identifier.
- odaPrivate stringEndpoint Id 
- Unique ODA Private Endpoint identifier which is the OCID.
- odaPrivate stringEndpoint Scan Proxy Id 
- Unique ODA Private Endpoint Scan Proxy identifier.
- oda_private_ strendpoint_ id 
- Unique ODA Private Endpoint identifier which is the OCID.
- oda_private_ strendpoint_ scan_ proxy_ id 
- Unique ODA Private Endpoint Scan Proxy identifier.
- odaPrivate StringEndpoint Id 
- Unique ODA Private Endpoint identifier which is the OCID.
- odaPrivate StringEndpoint Scan Proxy Id 
- Unique ODA Private Endpoint Scan Proxy identifier.
getOdaPrivateEndpointScanProxy Result
The following output properties are available:
- Id string
- The OCID of the ODA Private Endpoint Scan Proxy.
- OdaPrivate stringEndpoint Id 
- OdaPrivate stringEndpoint Scan Proxy Id 
- Protocol string
- The protocol used for communication between client, scanProxy and RAC's scan listeners
- ScanListener List<GetInfos Oda Private Endpoint Scan Proxy Scan Listener Info> 
- The FQDN/IPs and port information of customer's Real Application Cluster (RAC)'s SCAN listeners.
- ScanListener stringType 
- Type indicating whether Scan listener is specified by its FQDN or list of IPs
- State string
- The current state of the ODA Private Endpoint Scan Proxy.
- TimeCreated string
- When the resource was created. A date-time string as described in RFC 3339, section 14.29.
- Id string
- The OCID of the ODA Private Endpoint Scan Proxy.
- OdaPrivate stringEndpoint Id 
- OdaPrivate stringEndpoint Scan Proxy Id 
- Protocol string
- The protocol used for communication between client, scanProxy and RAC's scan listeners
- ScanListener []GetInfos Oda Private Endpoint Scan Proxy Scan Listener Info 
- The FQDN/IPs and port information of customer's Real Application Cluster (RAC)'s SCAN listeners.
- ScanListener stringType 
- Type indicating whether Scan listener is specified by its FQDN or list of IPs
- State string
- The current state of the ODA Private Endpoint Scan Proxy.
- TimeCreated string
- When the resource was created. A date-time string as described in RFC 3339, section 14.29.
- id String
- The OCID of the ODA Private Endpoint Scan Proxy.
- odaPrivate StringEndpoint Id 
- odaPrivate StringEndpoint Scan Proxy Id 
- protocol String
- The protocol used for communication between client, scanProxy and RAC's scan listeners
- scanListener List<GetInfos Private Endpoint Scan Proxy Scan Listener Info> 
- The FQDN/IPs and port information of customer's Real Application Cluster (RAC)'s SCAN listeners.
- scanListener StringType 
- Type indicating whether Scan listener is specified by its FQDN or list of IPs
- state String
- The current state of the ODA Private Endpoint Scan Proxy.
- timeCreated String
- When the resource was created. A date-time string as described in RFC 3339, section 14.29.
- id string
- The OCID of the ODA Private Endpoint Scan Proxy.
- odaPrivate stringEndpoint Id 
- odaPrivate stringEndpoint Scan Proxy Id 
- protocol string
- The protocol used for communication between client, scanProxy and RAC's scan listeners
- scanListener GetInfos Oda Private Endpoint Scan Proxy Scan Listener Info[] 
- The FQDN/IPs and port information of customer's Real Application Cluster (RAC)'s SCAN listeners.
- scanListener stringType 
- Type indicating whether Scan listener is specified by its FQDN or list of IPs
- state string
- The current state of the ODA Private Endpoint Scan Proxy.
- timeCreated string
- When the resource was created. A date-time string as described in RFC 3339, section 14.29.
- id str
- The OCID of the ODA Private Endpoint Scan Proxy.
- oda_private_ strendpoint_ id 
- oda_private_ strendpoint_ scan_ proxy_ id 
- protocol str
- The protocol used for communication between client, scanProxy and RAC's scan listeners
- scan_listener_ Sequence[Getinfos Oda Private Endpoint Scan Proxy Scan Listener Info] 
- The FQDN/IPs and port information of customer's Real Application Cluster (RAC)'s SCAN listeners.
- scan_listener_ strtype 
- Type indicating whether Scan listener is specified by its FQDN or list of IPs
- state str
- The current state of the ODA Private Endpoint Scan Proxy.
- time_created str
- When the resource was created. A date-time string as described in RFC 3339, section 14.29.
- id String
- The OCID of the ODA Private Endpoint Scan Proxy.
- odaPrivate StringEndpoint Id 
- odaPrivate StringEndpoint Scan Proxy Id 
- protocol String
- The protocol used for communication between client, scanProxy and RAC's scan listeners
- scanListener List<Property Map>Infos 
- The FQDN/IPs and port information of customer's Real Application Cluster (RAC)'s SCAN listeners.
- scanListener StringType 
- Type indicating whether Scan listener is specified by its FQDN or list of IPs
- state String
- The current state of the ODA Private Endpoint Scan Proxy.
- timeCreated String
- When the resource was created. A date-time string as described in RFC 3339, section 14.29.
Supporting Types
GetOdaPrivateEndpointScanProxyScanListenerInfo        
- ScanListener stringFqdn 
- FQDN of the customer's Real Application Cluster (RAC)'s SCAN listeners.
- ScanListener stringIp 
- A SCAN listener's IP of the customer's Real Application Cluster (RAC).
- ScanListener intPort 
- The port that customer's Real Application Cluster (RAC)'s SCAN listeners are listening on.
- ScanListener stringFqdn 
- FQDN of the customer's Real Application Cluster (RAC)'s SCAN listeners.
- ScanListener stringIp 
- A SCAN listener's IP of the customer's Real Application Cluster (RAC).
- ScanListener intPort 
- The port that customer's Real Application Cluster (RAC)'s SCAN listeners are listening on.
- scanListener StringFqdn 
- FQDN of the customer's Real Application Cluster (RAC)'s SCAN listeners.
- scanListener StringIp 
- A SCAN listener's IP of the customer's Real Application Cluster (RAC).
- scanListener IntegerPort 
- The port that customer's Real Application Cluster (RAC)'s SCAN listeners are listening on.
- scanListener stringFqdn 
- FQDN of the customer's Real Application Cluster (RAC)'s SCAN listeners.
- scanListener stringIp 
- A SCAN listener's IP of the customer's Real Application Cluster (RAC).
- scanListener numberPort 
- The port that customer's Real Application Cluster (RAC)'s SCAN listeners are listening on.
- scan_listener_ strfqdn 
- FQDN of the customer's Real Application Cluster (RAC)'s SCAN listeners.
- scan_listener_ strip 
- A SCAN listener's IP of the customer's Real Application Cluster (RAC).
- scan_listener_ intport 
- The port that customer's Real Application Cluster (RAC)'s SCAN listeners are listening on.
- scanListener StringFqdn 
- FQDN of the customer's Real Application Cluster (RAC)'s SCAN listeners.
- scanListener StringIp 
- A SCAN listener's IP of the customer's Real Application Cluster (RAC).
- scanListener NumberPort 
- The port that customer's Real Application Cluster (RAC)'s SCAN listeners are listening on.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.