1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Oda
  5. OdaPrivateEndpointScanProxy
Oracle Cloud Infrastructure v1.33.0 published on Thursday, Apr 25, 2024 by Pulumi

oci.Oda.OdaPrivateEndpointScanProxy

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.33.0 published on Thursday, Apr 25, 2024 by Pulumi

    This resource provides the Oda Private Endpoint Scan Proxy resource in Oracle Cloud Infrastructure Digital Assistant service.

    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

    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: odaPrivateEndpointScanProxyScanListenerInfosScanListenerPort,
        }],
        scanListenerType: odaPrivateEndpointScanProxyScanListenerType,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_oda_private_endpoint_scan_proxy = oci.oda.OdaPrivateEndpointScanProxy("test_oda_private_endpoint_scan_proxy",
        oda_private_endpoint_id=test_oda_private_endpoint["id"],
        protocol=oda_private_endpoint_scan_proxy_protocol,
        scan_listener_infos=[oci.oda.OdaPrivateEndpointScanProxyScanListenerInfoArgs(
            scan_listener_fqdn=oda_private_endpoint_scan_proxy_scan_listener_infos_scan_listener_fqdn,
            scan_listener_ip=oda_private_endpoint_scan_proxy_scan_listener_infos_scan_listener_ip,
            scan_listener_port=oda_private_endpoint_scan_proxy_scan_listener_infos_scan_listener_port,
        )],
        scan_listener_type=oda_private_endpoint_scan_proxy_scan_listener_type)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/Oda"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := Oda.NewOdaPrivateEndpointScanProxy(ctx, "test_oda_private_endpoint_scan_proxy", &Oda.OdaPrivateEndpointScanProxyArgs{
    			OdaPrivateEndpointId: pulumi.Any(testOdaPrivateEndpoint.Id),
    			Protocol:             pulumi.Any(odaPrivateEndpointScanProxyProtocol),
    			ScanListenerInfos: oda.OdaPrivateEndpointScanProxyScanListenerInfoArray{
    				&oda.OdaPrivateEndpointScanProxyScanListenerInfoArgs{
    					ScanListenerFqdn: pulumi.Any(odaPrivateEndpointScanProxyScanListenerInfosScanListenerFqdn),
    					ScanListenerIp:   pulumi.Any(odaPrivateEndpointScanProxyScanListenerInfosScanListenerIp),
    					ScanListenerPort: pulumi.Any(odaPrivateEndpointScanProxyScanListenerInfosScanListenerPort),
    				},
    			},
    			ScanListenerType: pulumi.Any(odaPrivateEndpointScanProxyScanListenerType),
    		})
    		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 = new Oci.Oda.OdaPrivateEndpointScanProxy("test_oda_private_endpoint_scan_proxy", new()
        {
            OdaPrivateEndpointId = testOdaPrivateEndpoint.Id,
            Protocol = odaPrivateEndpointScanProxyProtocol,
            ScanListenerInfos = new[]
            {
                new Oci.Oda.Inputs.OdaPrivateEndpointScanProxyScanListenerInfoArgs
                {
                    ScanListenerFqdn = odaPrivateEndpointScanProxyScanListenerInfosScanListenerFqdn,
                    ScanListenerIp = odaPrivateEndpointScanProxyScanListenerInfosScanListenerIp,
                    ScanListenerPort = odaPrivateEndpointScanProxyScanListenerInfosScanListenerPort,
                },
            },
            ScanListenerType = odaPrivateEndpointScanProxyScanListenerType,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Oda.OdaPrivateEndpointScanProxy;
    import com.pulumi.oci.Oda.OdaPrivateEndpointScanProxyArgs;
    import com.pulumi.oci.Oda.inputs.OdaPrivateEndpointScanProxyScanListenerInfoArgs;
    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) {
            var testOdaPrivateEndpointScanProxy = new OdaPrivateEndpointScanProxy("testOdaPrivateEndpointScanProxy", OdaPrivateEndpointScanProxyArgs.builder()        
                .odaPrivateEndpointId(testOdaPrivateEndpoint.id())
                .protocol(odaPrivateEndpointScanProxyProtocol)
                .scanListenerInfos(OdaPrivateEndpointScanProxyScanListenerInfoArgs.builder()
                    .scanListenerFqdn(odaPrivateEndpointScanProxyScanListenerInfosScanListenerFqdn)
                    .scanListenerIp(odaPrivateEndpointScanProxyScanListenerInfosScanListenerIp)
                    .scanListenerPort(odaPrivateEndpointScanProxyScanListenerInfosScanListenerPort)
                    .build())
                .scanListenerType(odaPrivateEndpointScanProxyScanListenerType)
                .build());
    
        }
    }
    
    resources:
      testOdaPrivateEndpointScanProxy:
        type: oci:Oda:OdaPrivateEndpointScanProxy
        name: test_oda_private_endpoint_scan_proxy
        properties:
          odaPrivateEndpointId: ${testOdaPrivateEndpoint.id}
          protocol: ${odaPrivateEndpointScanProxyProtocol}
          scanListenerInfos:
            - scanListenerFqdn: ${odaPrivateEndpointScanProxyScanListenerInfosScanListenerFqdn}
              scanListenerIp: ${odaPrivateEndpointScanProxyScanListenerInfosScanListenerIp}
              scanListenerPort: ${odaPrivateEndpointScanProxyScanListenerInfosScanListenerPort}
          scanListenerType: ${odaPrivateEndpointScanProxyScanListenerType}
    

    Create OdaPrivateEndpointScanProxy Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new OdaPrivateEndpointScanProxy(name: string, args: OdaPrivateEndpointScanProxyArgs, opts?: CustomResourceOptions);
    @overload
    def OdaPrivateEndpointScanProxy(resource_name: str,
                                    args: OdaPrivateEndpointScanProxyArgs,
                                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def OdaPrivateEndpointScanProxy(resource_name: str,
                                    opts: Optional[ResourceOptions] = None,
                                    oda_private_endpoint_id: Optional[str] = None,
                                    protocol: Optional[str] = None,
                                    scan_listener_infos: Optional[Sequence[_oda.OdaPrivateEndpointScanProxyScanListenerInfoArgs]] = None,
                                    scan_listener_type: Optional[str] = None)
    func NewOdaPrivateEndpointScanProxy(ctx *Context, name string, args OdaPrivateEndpointScanProxyArgs, opts ...ResourceOption) (*OdaPrivateEndpointScanProxy, error)
    public OdaPrivateEndpointScanProxy(string name, OdaPrivateEndpointScanProxyArgs args, CustomResourceOptions? opts = null)
    public OdaPrivateEndpointScanProxy(String name, OdaPrivateEndpointScanProxyArgs args)
    public OdaPrivateEndpointScanProxy(String name, OdaPrivateEndpointScanProxyArgs args, CustomResourceOptions options)
    
    type: oci:Oda:OdaPrivateEndpointScanProxy
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args OdaPrivateEndpointScanProxyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args OdaPrivateEndpointScanProxyArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args OdaPrivateEndpointScanProxyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args OdaPrivateEndpointScanProxyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args OdaPrivateEndpointScanProxyArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var odaPrivateEndpointScanProxyResource = new Oci.Oda.OdaPrivateEndpointScanProxy("odaPrivateEndpointScanProxyResource", new()
    {
        OdaPrivateEndpointId = "string",
        Protocol = "string",
        ScanListenerInfos = new[]
        {
            new Oci.Oda.Inputs.OdaPrivateEndpointScanProxyScanListenerInfoArgs
            {
                ScanListenerFqdn = "string",
                ScanListenerIp = "string",
                ScanListenerPort = 0,
            },
        },
        ScanListenerType = "string",
    });
    
    example, err := Oda.NewOdaPrivateEndpointScanProxy(ctx, "odaPrivateEndpointScanProxyResource", &Oda.OdaPrivateEndpointScanProxyArgs{
    	OdaPrivateEndpointId: pulumi.String("string"),
    	Protocol:             pulumi.String("string"),
    	ScanListenerInfos: oda.OdaPrivateEndpointScanProxyScanListenerInfoArray{
    		&oda.OdaPrivateEndpointScanProxyScanListenerInfoArgs{
    			ScanListenerFqdn: pulumi.String("string"),
    			ScanListenerIp:   pulumi.String("string"),
    			ScanListenerPort: pulumi.Int(0),
    		},
    	},
    	ScanListenerType: pulumi.String("string"),
    })
    
    var odaPrivateEndpointScanProxyResource = new OdaPrivateEndpointScanProxy("odaPrivateEndpointScanProxyResource", OdaPrivateEndpointScanProxyArgs.builder()        
        .odaPrivateEndpointId("string")
        .protocol("string")
        .scanListenerInfos(OdaPrivateEndpointScanProxyScanListenerInfoArgs.builder()
            .scanListenerFqdn("string")
            .scanListenerIp("string")
            .scanListenerPort(0)
            .build())
        .scanListenerType("string")
        .build());
    
    oda_private_endpoint_scan_proxy_resource = oci.oda.OdaPrivateEndpointScanProxy("odaPrivateEndpointScanProxyResource",
        oda_private_endpoint_id="string",
        protocol="string",
        scan_listener_infos=[oci.oda.OdaPrivateEndpointScanProxyScanListenerInfoArgs(
            scan_listener_fqdn="string",
            scan_listener_ip="string",
            scan_listener_port=0,
        )],
        scan_listener_type="string")
    
    const odaPrivateEndpointScanProxyResource = new oci.oda.OdaPrivateEndpointScanProxy("odaPrivateEndpointScanProxyResource", {
        odaPrivateEndpointId: "string",
        protocol: "string",
        scanListenerInfos: [{
            scanListenerFqdn: "string",
            scanListenerIp: "string",
            scanListenerPort: 0,
        }],
        scanListenerType: "string",
    });
    
    type: oci:Oda:OdaPrivateEndpointScanProxy
    properties:
        odaPrivateEndpointId: string
        protocol: string
        scanListenerInfos:
            - scanListenerFqdn: string
              scanListenerIp: string
              scanListenerPort: 0
        scanListenerType: string
    

    OdaPrivateEndpointScanProxy Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The OdaPrivateEndpointScanProxy resource accepts the following input properties:

    OdaPrivateEndpointId string
    Unique ODA Private Endpoint identifier which is the OCID.
    Protocol string
    The protocol used for communication between client, scanProxy and RAC's scan listeners
    ScanListenerInfos List<OdaPrivateEndpointScanProxyScanListenerInfo>
    The FQDN/IPs and port information of customer's Real Application Cluster (RAC)'s SCAN listeners.
    ScanListenerType string

    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

    OdaPrivateEndpointId string
    Unique ODA Private Endpoint identifier which is the OCID.
    Protocol string
    The protocol used for communication between client, scanProxy and RAC's scan listeners
    ScanListenerInfos []OdaPrivateEndpointScanProxyScanListenerInfoArgs
    The FQDN/IPs and port information of customer's Real Application Cluster (RAC)'s SCAN listeners.
    ScanListenerType string

    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

    odaPrivateEndpointId String
    Unique ODA Private Endpoint identifier which is the OCID.
    protocol String
    The protocol used for communication between client, scanProxy and RAC's scan listeners
    scanListenerInfos List<PrivateEndpointScanProxyScanListenerInfo>
    The FQDN/IPs and port information of customer's Real Application Cluster (RAC)'s SCAN listeners.
    scanListenerType String

    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

    odaPrivateEndpointId string
    Unique ODA Private Endpoint identifier which is the OCID.
    protocol string
    The protocol used for communication between client, scanProxy and RAC's scan listeners
    scanListenerInfos OdaPrivateEndpointScanProxyScanListenerInfo[]
    The FQDN/IPs and port information of customer's Real Application Cluster (RAC)'s SCAN listeners.
    scanListenerType string

    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

    oda_private_endpoint_id str
    Unique ODA Private Endpoint identifier which is the OCID.
    protocol str
    The protocol used for communication between client, scanProxy and RAC's scan listeners
    scan_listener_infos Sequence[oda.OdaPrivateEndpointScanProxyScanListenerInfoArgs]
    The FQDN/IPs and port information of customer's Real Application Cluster (RAC)'s SCAN listeners.
    scan_listener_type str

    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

    odaPrivateEndpointId String
    Unique ODA Private Endpoint identifier which is the OCID.
    protocol String
    The protocol used for communication between client, scanProxy and RAC's scan listeners
    scanListenerInfos List<Property Map>
    The FQDN/IPs and port information of customer's Real Application Cluster (RAC)'s SCAN listeners.
    scanListenerType String

    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

    Outputs

    All input properties are implicitly available as output properties. Additionally, the OdaPrivateEndpointScanProxy resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    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 provider-assigned unique ID for this managed resource.
    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 provider-assigned unique ID for this managed resource.
    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 provider-assigned unique ID for this managed resource.
    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 provider-assigned unique ID for this managed resource.
    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 provider-assigned unique ID for this managed resource.
    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.

    Look up Existing OdaPrivateEndpointScanProxy Resource

    Get an existing OdaPrivateEndpointScanProxy resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: OdaPrivateEndpointScanProxyState, opts?: CustomResourceOptions): OdaPrivateEndpointScanProxy
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            oda_private_endpoint_id: Optional[str] = None,
            protocol: Optional[str] = None,
            scan_listener_infos: Optional[Sequence[_oda.OdaPrivateEndpointScanProxyScanListenerInfoArgs]] = None,
            scan_listener_type: Optional[str] = None,
            state: Optional[str] = None,
            time_created: Optional[str] = None) -> OdaPrivateEndpointScanProxy
    func GetOdaPrivateEndpointScanProxy(ctx *Context, name string, id IDInput, state *OdaPrivateEndpointScanProxyState, opts ...ResourceOption) (*OdaPrivateEndpointScanProxy, error)
    public static OdaPrivateEndpointScanProxy Get(string name, Input<string> id, OdaPrivateEndpointScanProxyState? state, CustomResourceOptions? opts = null)
    public static OdaPrivateEndpointScanProxy get(String name, Output<String> id, OdaPrivateEndpointScanProxyState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    OdaPrivateEndpointId string
    Unique ODA Private Endpoint identifier which is the OCID.
    Protocol string
    The protocol used for communication between client, scanProxy and RAC's scan listeners
    ScanListenerInfos List<OdaPrivateEndpointScanProxyScanListenerInfo>
    The FQDN/IPs and port information of customer's Real Application Cluster (RAC)'s SCAN listeners.
    ScanListenerType string

    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

    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.
    OdaPrivateEndpointId string
    Unique ODA Private Endpoint identifier which is the OCID.
    Protocol string
    The protocol used for communication between client, scanProxy and RAC's scan listeners
    ScanListenerInfos []OdaPrivateEndpointScanProxyScanListenerInfoArgs
    The FQDN/IPs and port information of customer's Real Application Cluster (RAC)'s SCAN listeners.
    ScanListenerType string

    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

    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.
    odaPrivateEndpointId String
    Unique ODA Private Endpoint identifier which is the OCID.
    protocol String
    The protocol used for communication between client, scanProxy and RAC's scan listeners
    scanListenerInfos List<PrivateEndpointScanProxyScanListenerInfo>
    The FQDN/IPs and port information of customer's Real Application Cluster (RAC)'s SCAN listeners.
    scanListenerType String

    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

    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.
    odaPrivateEndpointId string
    Unique ODA Private Endpoint identifier which is the OCID.
    protocol string
    The protocol used for communication between client, scanProxy and RAC's scan listeners
    scanListenerInfos OdaPrivateEndpointScanProxyScanListenerInfo[]
    The FQDN/IPs and port information of customer's Real Application Cluster (RAC)'s SCAN listeners.
    scanListenerType string

    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

    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.
    oda_private_endpoint_id str
    Unique ODA Private Endpoint identifier which is the OCID.
    protocol str
    The protocol used for communication between client, scanProxy and RAC's scan listeners
    scan_listener_infos Sequence[oda.OdaPrivateEndpointScanProxyScanListenerInfoArgs]
    The FQDN/IPs and port information of customer's Real Application Cluster (RAC)'s SCAN listeners.
    scan_listener_type str

    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

    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.
    odaPrivateEndpointId String
    Unique ODA Private Endpoint identifier which is the OCID.
    protocol String
    The protocol used for communication between client, scanProxy and RAC's scan listeners
    scanListenerInfos List<Property Map>
    The FQDN/IPs and port information of customer's Real Application Cluster (RAC)'s SCAN listeners.
    scanListenerType String

    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

    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

    OdaPrivateEndpointScanProxyScanListenerInfo, OdaPrivateEndpointScanProxyScanListenerInfoArgs

    ScanListenerFqdn string
    FQDN of the customer's Real Application Cluster (RAC)'s SCAN listeners.
    ScanListenerIp string
    A SCAN listener's IP of the customer's Real Application Cluster (RAC).
    ScanListenerPort int
    The port that customer's Real Application Cluster (RAC)'s SCAN listeners are listening on.
    ScanListenerFqdn string
    FQDN of the customer's Real Application Cluster (RAC)'s SCAN listeners.
    ScanListenerIp string
    A SCAN listener's IP of the customer's Real Application Cluster (RAC).
    ScanListenerPort int
    The port that customer's Real Application Cluster (RAC)'s SCAN listeners are listening on.
    scanListenerFqdn String
    FQDN of the customer's Real Application Cluster (RAC)'s SCAN listeners.
    scanListenerIp String
    A SCAN listener's IP of the customer's Real Application Cluster (RAC).
    scanListenerPort Integer
    The port that customer's Real Application Cluster (RAC)'s SCAN listeners are listening on.
    scanListenerFqdn string
    FQDN of the customer's Real Application Cluster (RAC)'s SCAN listeners.
    scanListenerIp string
    A SCAN listener's IP of the customer's Real Application Cluster (RAC).
    scanListenerPort number
    The port that customer's Real Application Cluster (RAC)'s SCAN listeners are listening on.
    scan_listener_fqdn str
    FQDN of the customer's Real Application Cluster (RAC)'s SCAN listeners.
    scan_listener_ip str
    A SCAN listener's IP of the customer's Real Application Cluster (RAC).
    scan_listener_port int
    The port that customer's Real Application Cluster (RAC)'s SCAN listeners are listening on.
    scanListenerFqdn String
    FQDN of the customer's Real Application Cluster (RAC)'s SCAN listeners.
    scanListenerIp String
    A SCAN listener's IP of the customer's Real Application Cluster (RAC).
    scanListenerPort Number
    The port that customer's Real Application Cluster (RAC)'s SCAN listeners are listening on.

    Import

    OdaPrivateEndpointScanProxies can be imported using the id, e.g.

    $ pulumi import oci:Oda/odaPrivateEndpointScanProxy:OdaPrivateEndpointScanProxy test_oda_private_endpoint_scan_proxy "odaPrivateEndpoints/{odaPrivateEndpointId}/odaPrivateEndpointScanProxies/{odaPrivateEndpointScanProxyId}"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.33.0 published on Thursday, Apr 25, 2024 by Pulumi