oci.Oda.OdaPrivateEndpointScanProxy
Explore with Pulumi AI
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.
Constructor 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:
- Oda
Private stringEndpoint Id - Unique ODA Private Endpoint identifier which is the OCID.
- Protocol string
- The protocol used for communication between client, scanProxy and RAC's scan listeners
- Scan
Listener List<OdaInfos 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 stringType 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 stringEndpoint Id - Unique ODA Private Endpoint identifier which is the OCID.
- Protocol string
- The protocol used for communication between client, scanProxy and RAC's scan listeners
- Scan
Listener []OdaInfos Private Endpoint Scan Proxy Scan Listener Info Args - The FQDN/IPs and port information of customer's Real Application Cluster (RAC)'s SCAN listeners.
- Scan
Listener stringType 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 StringEndpoint Id - Unique ODA Private Endpoint identifier which is the OCID.
- protocol String
- The protocol used for communication between client, scanProxy and RAC's scan listeners
- scan
Listener List<PrivateInfos Endpoint Scan Proxy Scan Listener Info> - The FQDN/IPs and port information of customer's Real Application Cluster (RAC)'s SCAN listeners.
- scan
Listener StringType 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 stringEndpoint Id - Unique ODA Private Endpoint identifier which is the OCID.
- protocol string
- The protocol used for communication between client, scanProxy and RAC's scan listeners
- scan
Listener OdaInfos 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 stringType 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_ strendpoint_ id - 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_ Sequence[oda.infos Oda Private Endpoint Scan Proxy Scan Listener Info Args] - 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
** 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 StringEndpoint Id - Unique ODA Private Endpoint identifier which is the OCID.
- protocol String
- The protocol used for communication between client, scanProxy and RAC's scan listeners
- scan
Listener List<Property Map>Infos - The FQDN/IPs and port information of customer's Real Application Cluster (RAC)'s SCAN listeners.
- scan
Listener StringType 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.
- Time
Created 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.
- Time
Created 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.
- time
Created 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.
- time
Created 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.
- time
Created 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.
- Oda
Private stringEndpoint Id - Unique ODA Private Endpoint identifier which is the OCID.
- Protocol string
- The protocol used for communication between client, scanProxy and RAC's scan listeners
- Scan
Listener List<OdaInfos 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 stringType 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.
- Time
Created string - When the resource was created. A date-time string as described in RFC 3339, section 14.29.
- Oda
Private stringEndpoint Id - Unique ODA Private Endpoint identifier which is the OCID.
- Protocol string
- The protocol used for communication between client, scanProxy and RAC's scan listeners
- Scan
Listener []OdaInfos Private Endpoint Scan Proxy Scan Listener Info Args - The FQDN/IPs and port information of customer's Real Application Cluster (RAC)'s SCAN listeners.
- Scan
Listener stringType 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.
- Time
Created string - When the resource was created. A date-time string as described in RFC 3339, section 14.29.
- oda
Private StringEndpoint Id - Unique ODA Private Endpoint identifier which is the OCID.
- protocol String
- The protocol used for communication between client, scanProxy and RAC's scan listeners
- scan
Listener List<PrivateInfos Endpoint Scan Proxy Scan Listener Info> - The FQDN/IPs and port information of customer's Real Application Cluster (RAC)'s SCAN listeners.
- scan
Listener StringType 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.
- time
Created String - When the resource was created. A date-time string as described in RFC 3339, section 14.29.
- oda
Private stringEndpoint Id - Unique ODA Private Endpoint identifier which is the OCID.
- protocol string
- The protocol used for communication between client, scanProxy and RAC's scan listeners
- scan
Listener OdaInfos 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 stringType 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.
- time
Created string - When the resource was created. A date-time string as described in RFC 3339, section 14.29.
- oda_
private_ strendpoint_ id - 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_ Sequence[oda.infos Oda Private Endpoint Scan Proxy Scan Listener Info Args] - 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
** 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.
- oda
Private StringEndpoint Id - Unique ODA Private Endpoint identifier which is the OCID.
- protocol String
- The protocol used for communication between client, scanProxy and RAC's scan listeners
- scan
Listener List<Property Map>Infos - The FQDN/IPs and port information of customer's Real Application Cluster (RAC)'s SCAN listeners.
- scan
Listener StringType 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.
- time
Created String - When the resource was created. A date-time string as described in RFC 3339, section 14.29.
Supporting Types
OdaPrivateEndpointScanProxyScanListenerInfo, OdaPrivateEndpointScanProxyScanListenerInfoArgs
- Scan
Listener stringFqdn - FQDN of the customer's Real Application Cluster (RAC)'s SCAN listeners.
- Scan
Listener stringIp - 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.
- Scan
Listener stringFqdn - FQDN of the customer's Real Application Cluster (RAC)'s SCAN listeners.
- Scan
Listener stringIp - 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.
- scan
Listener StringFqdn - FQDN of the customer's Real Application Cluster (RAC)'s SCAN listeners.
- scan
Listener StringIp - A SCAN listener's IP of the customer's Real Application Cluster (RAC).
- scan
Listener IntegerPort - The port that customer's Real Application Cluster (RAC)'s SCAN listeners are listening on.
- scan
Listener stringFqdn - FQDN of the customer's Real Application Cluster (RAC)'s SCAN listeners.
- scan
Listener stringIp - A SCAN listener's IP of the customer's Real Application Cluster (RAC).
- scan
Listener 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.
- scan
Listener StringFqdn - FQDN of the customer's Real Application Cluster (RAC)'s SCAN listeners.
- scan
Listener StringIp - A SCAN listener's IP of the customer's Real Application Cluster (RAC).
- scan
Listener NumberPort - 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.