1. Packages
  2. AWS
  3. API Docs
  4. odb
  5. Network
AWS v7.8.0 published on Tuesday, Oct 7, 2025 by Pulumi

aws.odb.Network

Deploy with Pulumi
aws logo
AWS v7.8.0 published on Tuesday, Oct 7, 2025 by Pulumi

    Resource for managing odb Network resource in AWS for Oracle Database@AWS.

    Example Usage

    Create Network Resource

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

    Constructor syntax

    new Network(name: string, args: NetworkArgs, opts?: CustomResourceOptions);
    @overload
    def Network(resource_name: str,
                args: NetworkArgs,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def Network(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                display_name: Optional[str] = None,
                availability_zone_id: Optional[str] = None,
                backup_subnet_cidr: Optional[str] = None,
                client_subnet_cidr: Optional[str] = None,
                s3_access: Optional[str] = None,
                zero_etl_access: Optional[str] = None,
                custom_domain_name: Optional[str] = None,
                default_dns_prefix: Optional[str] = None,
                availability_zone: Optional[str] = None,
                region: Optional[str] = None,
                s3_policy_document: Optional[str] = None,
                tags: Optional[Mapping[str, str]] = None,
                timeouts: Optional[NetworkTimeoutsArgs] = None)
    func NewNetwork(ctx *Context, name string, args NetworkArgs, opts ...ResourceOption) (*Network, error)
    public Network(string name, NetworkArgs args, CustomResourceOptions? opts = null)
    public Network(String name, NetworkArgs args)
    public Network(String name, NetworkArgs args, CustomResourceOptions options)
    
    type: aws:odb:Network
    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 NetworkArgs
    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 NetworkArgs
    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 NetworkArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NetworkArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NetworkArgs
    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 networkResource = new Aws.Odb.Network("networkResource", new()
    {
        DisplayName = "string",
        AvailabilityZoneId = "string",
        BackupSubnetCidr = "string",
        ClientSubnetCidr = "string",
        S3Access = "string",
        ZeroEtlAccess = "string",
        CustomDomainName = "string",
        DefaultDnsPrefix = "string",
        AvailabilityZone = "string",
        Region = "string",
        S3PolicyDocument = "string",
        Tags = 
        {
            { "string", "string" },
        },
        Timeouts = new Aws.Odb.Inputs.NetworkTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Update = "string",
        },
    });
    
    example, err := odb.NewNetwork(ctx, "networkResource", &odb.NetworkArgs{
    	DisplayName:        pulumi.String("string"),
    	AvailabilityZoneId: pulumi.String("string"),
    	BackupSubnetCidr:   pulumi.String("string"),
    	ClientSubnetCidr:   pulumi.String("string"),
    	S3Access:           pulumi.String("string"),
    	ZeroEtlAccess:      pulumi.String("string"),
    	CustomDomainName:   pulumi.String("string"),
    	DefaultDnsPrefix:   pulumi.String("string"),
    	AvailabilityZone:   pulumi.String("string"),
    	Region:             pulumi.String("string"),
    	S3PolicyDocument:   pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Timeouts: &odb.NetworkTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    })
    
    var networkResource = new Network("networkResource", NetworkArgs.builder()
        .displayName("string")
        .availabilityZoneId("string")
        .backupSubnetCidr("string")
        .clientSubnetCidr("string")
        .s3Access("string")
        .zeroEtlAccess("string")
        .customDomainName("string")
        .defaultDnsPrefix("string")
        .availabilityZone("string")
        .region("string")
        .s3PolicyDocument("string")
        .tags(Map.of("string", "string"))
        .timeouts(NetworkTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .update("string")
            .build())
        .build());
    
    network_resource = aws.odb.Network("networkResource",
        display_name="string",
        availability_zone_id="string",
        backup_subnet_cidr="string",
        client_subnet_cidr="string",
        s3_access="string",
        zero_etl_access="string",
        custom_domain_name="string",
        default_dns_prefix="string",
        availability_zone="string",
        region="string",
        s3_policy_document="string",
        tags={
            "string": "string",
        },
        timeouts={
            "create": "string",
            "delete": "string",
            "update": "string",
        })
    
    const networkResource = new aws.odb.Network("networkResource", {
        displayName: "string",
        availabilityZoneId: "string",
        backupSubnetCidr: "string",
        clientSubnetCidr: "string",
        s3Access: "string",
        zeroEtlAccess: "string",
        customDomainName: "string",
        defaultDnsPrefix: "string",
        availabilityZone: "string",
        region: "string",
        s3PolicyDocument: "string",
        tags: {
            string: "string",
        },
        timeouts: {
            create: "string",
            "delete": "string",
            update: "string",
        },
    });
    
    type: aws:odb:Network
    properties:
        availabilityZone: string
        availabilityZoneId: string
        backupSubnetCidr: string
        clientSubnetCidr: string
        customDomainName: string
        defaultDnsPrefix: string
        displayName: string
        region: string
        s3Access: string
        s3PolicyDocument: string
        tags:
            string: string
        timeouts:
            create: string
            delete: string
            update: string
        zeroEtlAccess: string
    

    Network Resource Properties

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

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The Network resource accepts the following input properties:

    AvailabilityZoneId string
    BackupSubnetCidr string
    ClientSubnetCidr string
    DisplayName string
    S3Access string
    Specifies the configuration for Amazon S3 access from the ODB network.
    ZeroEtlAccess string

    Specifies the configuration for Zero-ETL access from the ODB network.

    The following arguments are optional:

    AvailabilityZone string
    CustomDomainName string
    The name of the custom domain that the network is located. custom_domain_name and default_dns_prefix both can't be given.
    DefaultDnsPrefix string
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    S3PolicyDocument string
    Specifies the endpoint policy for Amazon S3 access from the ODB network.
    Tags Dictionary<string, string>
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    Timeouts NetworkTimeouts
    AvailabilityZoneId string
    BackupSubnetCidr string
    ClientSubnetCidr string
    DisplayName string
    S3Access string
    Specifies the configuration for Amazon S3 access from the ODB network.
    ZeroEtlAccess string

    Specifies the configuration for Zero-ETL access from the ODB network.

    The following arguments are optional:

    AvailabilityZone string
    CustomDomainName string
    The name of the custom domain that the network is located. custom_domain_name and default_dns_prefix both can't be given.
    DefaultDnsPrefix string
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    S3PolicyDocument string
    Specifies the endpoint policy for Amazon S3 access from the ODB network.
    Tags map[string]string
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    Timeouts NetworkTimeoutsArgs
    availabilityZoneId String
    backupSubnetCidr String
    clientSubnetCidr String
    displayName String
    s3Access String
    Specifies the configuration for Amazon S3 access from the ODB network.
    zeroEtlAccess String

    Specifies the configuration for Zero-ETL access from the ODB network.

    The following arguments are optional:

    availabilityZone String
    customDomainName String
    The name of the custom domain that the network is located. custom_domain_name and default_dns_prefix both can't be given.
    defaultDnsPrefix String
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    s3PolicyDocument String
    Specifies the endpoint policy for Amazon S3 access from the ODB network.
    tags Map<String,String>
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts NetworkTimeouts
    availabilityZoneId string
    backupSubnetCidr string
    clientSubnetCidr string
    displayName string
    s3Access string
    Specifies the configuration for Amazon S3 access from the ODB network.
    zeroEtlAccess string

    Specifies the configuration for Zero-ETL access from the ODB network.

    The following arguments are optional:

    availabilityZone string
    customDomainName string
    The name of the custom domain that the network is located. custom_domain_name and default_dns_prefix both can't be given.
    defaultDnsPrefix string
    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    s3PolicyDocument string
    Specifies the endpoint policy for Amazon S3 access from the ODB network.
    tags {[key: string]: string}
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts NetworkTimeouts
    availability_zone_id str
    backup_subnet_cidr str
    client_subnet_cidr str
    display_name str
    s3_access str
    Specifies the configuration for Amazon S3 access from the ODB network.
    zero_etl_access str

    Specifies the configuration for Zero-ETL access from the ODB network.

    The following arguments are optional:

    availability_zone str
    custom_domain_name str
    The name of the custom domain that the network is located. custom_domain_name and default_dns_prefix both can't be given.
    default_dns_prefix str
    region str
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    s3_policy_document str
    Specifies the endpoint policy for Amazon S3 access from the ODB network.
    tags Mapping[str, str]
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts NetworkTimeoutsArgs
    availabilityZoneId String
    backupSubnetCidr String
    clientSubnetCidr String
    displayName String
    s3Access String
    Specifies the configuration for Amazon S3 access from the ODB network.
    zeroEtlAccess String

    Specifies the configuration for Zero-ETL access from the ODB network.

    The following arguments are optional:

    availabilityZone String
    customDomainName String
    The name of the custom domain that the network is located. custom_domain_name and default_dns_prefix both can't be given.
    defaultDnsPrefix String
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    s3PolicyDocument String
    Specifies the endpoint policy for Amazon S3 access from the ODB network.
    tags Map<String>
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts Property Map

    Outputs

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

    Arn string
    Amazon Resource Name (ARN) of the odb network resource.
    CreatedAt string
    The date and time when the ODB network was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    ManagedServices List<NetworkManagedService>
    The name of the OCI resource anchor for the Exadata infrastructure.
    OciDnsForwardingConfigs List<NetworkOciDnsForwardingConfig>
    The number of storage servers requested for the Exadata infrastructure.
    OciNetworkAnchorId string
    The unique identifier of the OCI network anchor for the ODB network.
    OciNetworkAnchorUrl string
    The URL of the OCI network anchor for the ODB network.
    OciResourceAnchorName string
    The name of the OCI resource anchor for the ODB network.
    OciVcnId string
    The unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
    OciVcnUrl string
    The URL of the OCI VCN for the ODB network.
    PeeredCidrs List<string>
    The list of CIDR ranges from the peered VPC that are allowed access to the ODB network. Please refer odb network peering documentation.
    PercentProgress double
    The amount of progress made on the current operation on the ODB network, expressed as a percentage.
    Status string
    The status of the network resource.
    StatusReason string
    Additional information about the current status of the ODB network.
    TagsAll Dictionary<string, string>
    Arn string
    Amazon Resource Name (ARN) of the odb network resource.
    CreatedAt string
    The date and time when the ODB network was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    ManagedServices []NetworkManagedService
    The name of the OCI resource anchor for the Exadata infrastructure.
    OciDnsForwardingConfigs []NetworkOciDnsForwardingConfig
    The number of storage servers requested for the Exadata infrastructure.
    OciNetworkAnchorId string
    The unique identifier of the OCI network anchor for the ODB network.
    OciNetworkAnchorUrl string
    The URL of the OCI network anchor for the ODB network.
    OciResourceAnchorName string
    The name of the OCI resource anchor for the ODB network.
    OciVcnId string
    The unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
    OciVcnUrl string
    The URL of the OCI VCN for the ODB network.
    PeeredCidrs []string
    The list of CIDR ranges from the peered VPC that are allowed access to the ODB network. Please refer odb network peering documentation.
    PercentProgress float64
    The amount of progress made on the current operation on the ODB network, expressed as a percentage.
    Status string
    The status of the network resource.
    StatusReason string
    Additional information about the current status of the ODB network.
    TagsAll map[string]string
    arn String
    Amazon Resource Name (ARN) of the odb network resource.
    createdAt String
    The date and time when the ODB network was created.
    id String
    The provider-assigned unique ID for this managed resource.
    managedServices List<NetworkManagedService>
    The name of the OCI resource anchor for the Exadata infrastructure.
    ociDnsForwardingConfigs List<NetworkOciDnsForwardingConfig>
    The number of storage servers requested for the Exadata infrastructure.
    ociNetworkAnchorId String
    The unique identifier of the OCI network anchor for the ODB network.
    ociNetworkAnchorUrl String
    The URL of the OCI network anchor for the ODB network.
    ociResourceAnchorName String
    The name of the OCI resource anchor for the ODB network.
    ociVcnId String
    The unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
    ociVcnUrl String
    The URL of the OCI VCN for the ODB network.
    peeredCidrs List<String>
    The list of CIDR ranges from the peered VPC that are allowed access to the ODB network. Please refer odb network peering documentation.
    percentProgress Double
    The amount of progress made on the current operation on the ODB network, expressed as a percentage.
    status String
    The status of the network resource.
    statusReason String
    Additional information about the current status of the ODB network.
    tagsAll Map<String,String>
    arn string
    Amazon Resource Name (ARN) of the odb network resource.
    createdAt string
    The date and time when the ODB network was created.
    id string
    The provider-assigned unique ID for this managed resource.
    managedServices NetworkManagedService[]
    The name of the OCI resource anchor for the Exadata infrastructure.
    ociDnsForwardingConfigs NetworkOciDnsForwardingConfig[]
    The number of storage servers requested for the Exadata infrastructure.
    ociNetworkAnchorId string
    The unique identifier of the OCI network anchor for the ODB network.
    ociNetworkAnchorUrl string
    The URL of the OCI network anchor for the ODB network.
    ociResourceAnchorName string
    The name of the OCI resource anchor for the ODB network.
    ociVcnId string
    The unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
    ociVcnUrl string
    The URL of the OCI VCN for the ODB network.
    peeredCidrs string[]
    The list of CIDR ranges from the peered VPC that are allowed access to the ODB network. Please refer odb network peering documentation.
    percentProgress number
    The amount of progress made on the current operation on the ODB network, expressed as a percentage.
    status string
    The status of the network resource.
    statusReason string
    Additional information about the current status of the ODB network.
    tagsAll {[key: string]: string}
    arn str
    Amazon Resource Name (ARN) of the odb network resource.
    created_at str
    The date and time when the ODB network was created.
    id str
    The provider-assigned unique ID for this managed resource.
    managed_services Sequence[NetworkManagedService]
    The name of the OCI resource anchor for the Exadata infrastructure.
    oci_dns_forwarding_configs Sequence[NetworkOciDnsForwardingConfig]
    The number of storage servers requested for the Exadata infrastructure.
    oci_network_anchor_id str
    The unique identifier of the OCI network anchor for the ODB network.
    oci_network_anchor_url str
    The URL of the OCI network anchor for the ODB network.
    oci_resource_anchor_name str
    The name of the OCI resource anchor for the ODB network.
    oci_vcn_id str
    The unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
    oci_vcn_url str
    The URL of the OCI VCN for the ODB network.
    peered_cidrs Sequence[str]
    The list of CIDR ranges from the peered VPC that are allowed access to the ODB network. Please refer odb network peering documentation.
    percent_progress float
    The amount of progress made on the current operation on the ODB network, expressed as a percentage.
    status str
    The status of the network resource.
    status_reason str
    Additional information about the current status of the ODB network.
    tags_all Mapping[str, str]
    arn String
    Amazon Resource Name (ARN) of the odb network resource.
    createdAt String
    The date and time when the ODB network was created.
    id String
    The provider-assigned unique ID for this managed resource.
    managedServices List<Property Map>
    The name of the OCI resource anchor for the Exadata infrastructure.
    ociDnsForwardingConfigs List<Property Map>
    The number of storage servers requested for the Exadata infrastructure.
    ociNetworkAnchorId String
    The unique identifier of the OCI network anchor for the ODB network.
    ociNetworkAnchorUrl String
    The URL of the OCI network anchor for the ODB network.
    ociResourceAnchorName String
    The name of the OCI resource anchor for the ODB network.
    ociVcnId String
    The unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
    ociVcnUrl String
    The URL of the OCI VCN for the ODB network.
    peeredCidrs List<String>
    The list of CIDR ranges from the peered VPC that are allowed access to the ODB network. Please refer odb network peering documentation.
    percentProgress Number
    The amount of progress made on the current operation on the ODB network, expressed as a percentage.
    status String
    The status of the network resource.
    statusReason String
    Additional information about the current status of the ODB network.
    tagsAll Map<String>

    Look up Existing Network Resource

    Get an existing Network 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?: NetworkState, opts?: CustomResourceOptions): Network
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            arn: Optional[str] = None,
            availability_zone: Optional[str] = None,
            availability_zone_id: Optional[str] = None,
            backup_subnet_cidr: Optional[str] = None,
            client_subnet_cidr: Optional[str] = None,
            created_at: Optional[str] = None,
            custom_domain_name: Optional[str] = None,
            default_dns_prefix: Optional[str] = None,
            display_name: Optional[str] = None,
            managed_services: Optional[Sequence[NetworkManagedServiceArgs]] = None,
            oci_dns_forwarding_configs: Optional[Sequence[NetworkOciDnsForwardingConfigArgs]] = None,
            oci_network_anchor_id: Optional[str] = None,
            oci_network_anchor_url: Optional[str] = None,
            oci_resource_anchor_name: Optional[str] = None,
            oci_vcn_id: Optional[str] = None,
            oci_vcn_url: Optional[str] = None,
            peered_cidrs: Optional[Sequence[str]] = None,
            percent_progress: Optional[float] = None,
            region: Optional[str] = None,
            s3_access: Optional[str] = None,
            s3_policy_document: Optional[str] = None,
            status: Optional[str] = None,
            status_reason: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None,
            timeouts: Optional[NetworkTimeoutsArgs] = None,
            zero_etl_access: Optional[str] = None) -> Network
    func GetNetwork(ctx *Context, name string, id IDInput, state *NetworkState, opts ...ResourceOption) (*Network, error)
    public static Network Get(string name, Input<string> id, NetworkState? state, CustomResourceOptions? opts = null)
    public static Network get(String name, Output<String> id, NetworkState state, CustomResourceOptions options)
    resources:  _:    type: aws:odb:Network    get:      id: ${id}
    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:
    Arn string
    Amazon Resource Name (ARN) of the odb network resource.
    AvailabilityZone string
    AvailabilityZoneId string
    BackupSubnetCidr string
    ClientSubnetCidr string
    CreatedAt string
    The date and time when the ODB network was created.
    CustomDomainName string
    The name of the custom domain that the network is located. custom_domain_name and default_dns_prefix both can't be given.
    DefaultDnsPrefix string
    DisplayName string
    ManagedServices List<NetworkManagedService>
    The name of the OCI resource anchor for the Exadata infrastructure.
    OciDnsForwardingConfigs List<NetworkOciDnsForwardingConfig>
    The number of storage servers requested for the Exadata infrastructure.
    OciNetworkAnchorId string
    The unique identifier of the OCI network anchor for the ODB network.
    OciNetworkAnchorUrl string
    The URL of the OCI network anchor for the ODB network.
    OciResourceAnchorName string
    The name of the OCI resource anchor for the ODB network.
    OciVcnId string
    The unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
    OciVcnUrl string
    The URL of the OCI VCN for the ODB network.
    PeeredCidrs List<string>
    The list of CIDR ranges from the peered VPC that are allowed access to the ODB network. Please refer odb network peering documentation.
    PercentProgress double
    The amount of progress made on the current operation on the ODB network, expressed as a percentage.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    S3Access string
    Specifies the configuration for Amazon S3 access from the ODB network.
    S3PolicyDocument string
    Specifies the endpoint policy for Amazon S3 access from the ODB network.
    Status string
    The status of the network resource.
    StatusReason string
    Additional information about the current status of the ODB network.
    Tags Dictionary<string, string>
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll Dictionary<string, string>
    Timeouts NetworkTimeouts
    ZeroEtlAccess string

    Specifies the configuration for Zero-ETL access from the ODB network.

    The following arguments are optional:

    Arn string
    Amazon Resource Name (ARN) of the odb network resource.
    AvailabilityZone string
    AvailabilityZoneId string
    BackupSubnetCidr string
    ClientSubnetCidr string
    CreatedAt string
    The date and time when the ODB network was created.
    CustomDomainName string
    The name of the custom domain that the network is located. custom_domain_name and default_dns_prefix both can't be given.
    DefaultDnsPrefix string
    DisplayName string
    ManagedServices []NetworkManagedServiceArgs
    The name of the OCI resource anchor for the Exadata infrastructure.
    OciDnsForwardingConfigs []NetworkOciDnsForwardingConfigArgs
    The number of storage servers requested for the Exadata infrastructure.
    OciNetworkAnchorId string
    The unique identifier of the OCI network anchor for the ODB network.
    OciNetworkAnchorUrl string
    The URL of the OCI network anchor for the ODB network.
    OciResourceAnchorName string
    The name of the OCI resource anchor for the ODB network.
    OciVcnId string
    The unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
    OciVcnUrl string
    The URL of the OCI VCN for the ODB network.
    PeeredCidrs []string
    The list of CIDR ranges from the peered VPC that are allowed access to the ODB network. Please refer odb network peering documentation.
    PercentProgress float64
    The amount of progress made on the current operation on the ODB network, expressed as a percentage.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    S3Access string
    Specifies the configuration for Amazon S3 access from the ODB network.
    S3PolicyDocument string
    Specifies the endpoint policy for Amazon S3 access from the ODB network.
    Status string
    The status of the network resource.
    StatusReason string
    Additional information about the current status of the ODB network.
    Tags map[string]string
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll map[string]string
    Timeouts NetworkTimeoutsArgs
    ZeroEtlAccess string

    Specifies the configuration for Zero-ETL access from the ODB network.

    The following arguments are optional:

    arn String
    Amazon Resource Name (ARN) of the odb network resource.
    availabilityZone String
    availabilityZoneId String
    backupSubnetCidr String
    clientSubnetCidr String
    createdAt String
    The date and time when the ODB network was created.
    customDomainName String
    The name of the custom domain that the network is located. custom_domain_name and default_dns_prefix both can't be given.
    defaultDnsPrefix String
    displayName String
    managedServices List<NetworkManagedService>
    The name of the OCI resource anchor for the Exadata infrastructure.
    ociDnsForwardingConfigs List<NetworkOciDnsForwardingConfig>
    The number of storage servers requested for the Exadata infrastructure.
    ociNetworkAnchorId String
    The unique identifier of the OCI network anchor for the ODB network.
    ociNetworkAnchorUrl String
    The URL of the OCI network anchor for the ODB network.
    ociResourceAnchorName String
    The name of the OCI resource anchor for the ODB network.
    ociVcnId String
    The unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
    ociVcnUrl String
    The URL of the OCI VCN for the ODB network.
    peeredCidrs List<String>
    The list of CIDR ranges from the peered VPC that are allowed access to the ODB network. Please refer odb network peering documentation.
    percentProgress Double
    The amount of progress made on the current operation on the ODB network, expressed as a percentage.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    s3Access String
    Specifies the configuration for Amazon S3 access from the ODB network.
    s3PolicyDocument String
    Specifies the endpoint policy for Amazon S3 access from the ODB network.
    status String
    The status of the network resource.
    statusReason String
    Additional information about the current status of the ODB network.
    tags Map<String,String>
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String,String>
    timeouts NetworkTimeouts
    zeroEtlAccess String

    Specifies the configuration for Zero-ETL access from the ODB network.

    The following arguments are optional:

    arn string
    Amazon Resource Name (ARN) of the odb network resource.
    availabilityZone string
    availabilityZoneId string
    backupSubnetCidr string
    clientSubnetCidr string
    createdAt string
    The date and time when the ODB network was created.
    customDomainName string
    The name of the custom domain that the network is located. custom_domain_name and default_dns_prefix both can't be given.
    defaultDnsPrefix string
    displayName string
    managedServices NetworkManagedService[]
    The name of the OCI resource anchor for the Exadata infrastructure.
    ociDnsForwardingConfigs NetworkOciDnsForwardingConfig[]
    The number of storage servers requested for the Exadata infrastructure.
    ociNetworkAnchorId string
    The unique identifier of the OCI network anchor for the ODB network.
    ociNetworkAnchorUrl string
    The URL of the OCI network anchor for the ODB network.
    ociResourceAnchorName string
    The name of the OCI resource anchor for the ODB network.
    ociVcnId string
    The unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
    ociVcnUrl string
    The URL of the OCI VCN for the ODB network.
    peeredCidrs string[]
    The list of CIDR ranges from the peered VPC that are allowed access to the ODB network. Please refer odb network peering documentation.
    percentProgress number
    The amount of progress made on the current operation on the ODB network, expressed as a percentage.
    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    s3Access string
    Specifies the configuration for Amazon S3 access from the ODB network.
    s3PolicyDocument string
    Specifies the endpoint policy for Amazon S3 access from the ODB network.
    status string
    The status of the network resource.
    statusReason string
    Additional information about the current status of the ODB network.
    tags {[key: string]: string}
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll {[key: string]: string}
    timeouts NetworkTimeouts
    zeroEtlAccess string

    Specifies the configuration for Zero-ETL access from the ODB network.

    The following arguments are optional:

    arn str
    Amazon Resource Name (ARN) of the odb network resource.
    availability_zone str
    availability_zone_id str
    backup_subnet_cidr str
    client_subnet_cidr str
    created_at str
    The date and time when the ODB network was created.
    custom_domain_name str
    The name of the custom domain that the network is located. custom_domain_name and default_dns_prefix both can't be given.
    default_dns_prefix str
    display_name str
    managed_services Sequence[NetworkManagedServiceArgs]
    The name of the OCI resource anchor for the Exadata infrastructure.
    oci_dns_forwarding_configs Sequence[NetworkOciDnsForwardingConfigArgs]
    The number of storage servers requested for the Exadata infrastructure.
    oci_network_anchor_id str
    The unique identifier of the OCI network anchor for the ODB network.
    oci_network_anchor_url str
    The URL of the OCI network anchor for the ODB network.
    oci_resource_anchor_name str
    The name of the OCI resource anchor for the ODB network.
    oci_vcn_id str
    The unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
    oci_vcn_url str
    The URL of the OCI VCN for the ODB network.
    peered_cidrs Sequence[str]
    The list of CIDR ranges from the peered VPC that are allowed access to the ODB network. Please refer odb network peering documentation.
    percent_progress float
    The amount of progress made on the current operation on the ODB network, expressed as a percentage.
    region str
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    s3_access str
    Specifies the configuration for Amazon S3 access from the ODB network.
    s3_policy_document str
    Specifies the endpoint policy for Amazon S3 access from the ODB network.
    status str
    The status of the network resource.
    status_reason str
    Additional information about the current status of the ODB network.
    tags Mapping[str, str]
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tags_all Mapping[str, str]
    timeouts NetworkTimeoutsArgs
    zero_etl_access str

    Specifies the configuration for Zero-ETL access from the ODB network.

    The following arguments are optional:

    arn String
    Amazon Resource Name (ARN) of the odb network resource.
    availabilityZone String
    availabilityZoneId String
    backupSubnetCidr String
    clientSubnetCidr String
    createdAt String
    The date and time when the ODB network was created.
    customDomainName String
    The name of the custom domain that the network is located. custom_domain_name and default_dns_prefix both can't be given.
    defaultDnsPrefix String
    displayName String
    managedServices List<Property Map>
    The name of the OCI resource anchor for the Exadata infrastructure.
    ociDnsForwardingConfigs List<Property Map>
    The number of storage servers requested for the Exadata infrastructure.
    ociNetworkAnchorId String
    The unique identifier of the OCI network anchor for the ODB network.
    ociNetworkAnchorUrl String
    The URL of the OCI network anchor for the ODB network.
    ociResourceAnchorName String
    The name of the OCI resource anchor for the ODB network.
    ociVcnId String
    The unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
    ociVcnUrl String
    The URL of the OCI VCN for the ODB network.
    peeredCidrs List<String>
    The list of CIDR ranges from the peered VPC that are allowed access to the ODB network. Please refer odb network peering documentation.
    percentProgress Number
    The amount of progress made on the current operation on the ODB network, expressed as a percentage.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    s3Access String
    Specifies the configuration for Amazon S3 access from the ODB network.
    s3PolicyDocument String
    Specifies the endpoint policy for Amazon S3 access from the ODB network.
    status String
    The status of the network resource.
    statusReason String
    Additional information about the current status of the ODB network.
    tags Map<String>
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String>
    timeouts Property Map
    zeroEtlAccess String

    Specifies the configuration for Zero-ETL access from the ODB network.

    The following arguments are optional:

    Supporting Types

    NetworkManagedService, NetworkManagedServiceArgs

    ManagedS3BackupAccesses List<NetworkManagedServiceManagedS3BackupAccess>
    ManagedServiceIpv4Cidrs List<string>
    ResourceGatewayArn string
    S3Accesses List<NetworkManagedServiceS3Access>
    Specifies the configuration for Amazon S3 access from the ODB network.
    ServiceNetworkArn string
    ServiceNetworkEndpoints List<NetworkManagedServiceServiceNetworkEndpoint>
    ZeroEtlAccesses List<NetworkManagedServiceZeroEtlAccess>

    Specifies the configuration for Zero-ETL access from the ODB network.

    The following arguments are optional:

    ManagedS3BackupAccesses []NetworkManagedServiceManagedS3BackupAccess
    ManagedServiceIpv4Cidrs []string
    ResourceGatewayArn string
    S3Accesses []NetworkManagedServiceS3Access
    Specifies the configuration for Amazon S3 access from the ODB network.
    ServiceNetworkArn string
    ServiceNetworkEndpoints []NetworkManagedServiceServiceNetworkEndpoint
    ZeroEtlAccesses []NetworkManagedServiceZeroEtlAccess

    Specifies the configuration for Zero-ETL access from the ODB network.

    The following arguments are optional:

    managedS3BackupAccesses List<NetworkManagedServiceManagedS3BackupAccess>
    managedServiceIpv4Cidrs List<String>
    resourceGatewayArn String
    s3Accesses List<NetworkManagedServiceS3Access>
    Specifies the configuration for Amazon S3 access from the ODB network.
    serviceNetworkArn String
    serviceNetworkEndpoints List<NetworkManagedServiceServiceNetworkEndpoint>
    zeroEtlAccesses List<NetworkManagedServiceZeroEtlAccess>

    Specifies the configuration for Zero-ETL access from the ODB network.

    The following arguments are optional:

    managedS3BackupAccesses NetworkManagedServiceManagedS3BackupAccess[]
    managedServiceIpv4Cidrs string[]
    resourceGatewayArn string
    s3Accesses NetworkManagedServiceS3Access[]
    Specifies the configuration for Amazon S3 access from the ODB network.
    serviceNetworkArn string
    serviceNetworkEndpoints NetworkManagedServiceServiceNetworkEndpoint[]
    zeroEtlAccesses NetworkManagedServiceZeroEtlAccess[]

    Specifies the configuration for Zero-ETL access from the ODB network.

    The following arguments are optional:

    managedS3BackupAccesses List<Property Map>
    managedServiceIpv4Cidrs List<String>
    resourceGatewayArn String
    s3Accesses List<Property Map>
    Specifies the configuration for Amazon S3 access from the ODB network.
    serviceNetworkArn String
    serviceNetworkEndpoints List<Property Map>
    zeroEtlAccesses List<Property Map>

    Specifies the configuration for Zero-ETL access from the ODB network.

    The following arguments are optional:

    NetworkManagedServiceManagedS3BackupAccess, NetworkManagedServiceManagedS3BackupAccessArgs

    Ipv4Addresses List<string>
    Status string
    The status of the network resource.
    Ipv4Addresses []string
    Status string
    The status of the network resource.
    ipv4Addresses List<String>
    status String
    The status of the network resource.
    ipv4Addresses string[]
    status string
    The status of the network resource.
    ipv4_addresses Sequence[str]
    status str
    The status of the network resource.
    ipv4Addresses List<String>
    status String
    The status of the network resource.

    NetworkManagedServiceS3Access, NetworkManagedServiceS3AccessArgs

    DomainName string
    Ipv4Addresses List<string>
    S3PolicyDocument string
    Specifies the endpoint policy for Amazon S3 access from the ODB network.
    Status string
    The status of the network resource.
    DomainName string
    Ipv4Addresses []string
    S3PolicyDocument string
    Specifies the endpoint policy for Amazon S3 access from the ODB network.
    Status string
    The status of the network resource.
    domainName String
    ipv4Addresses List<String>
    s3PolicyDocument String
    Specifies the endpoint policy for Amazon S3 access from the ODB network.
    status String
    The status of the network resource.
    domainName string
    ipv4Addresses string[]
    s3PolicyDocument string
    Specifies the endpoint policy for Amazon S3 access from the ODB network.
    status string
    The status of the network resource.
    domain_name str
    ipv4_addresses Sequence[str]
    s3_policy_document str
    Specifies the endpoint policy for Amazon S3 access from the ODB network.
    status str
    The status of the network resource.
    domainName String
    ipv4Addresses List<String>
    s3PolicyDocument String
    Specifies the endpoint policy for Amazon S3 access from the ODB network.
    status String
    The status of the network resource.

    NetworkManagedServiceServiceNetworkEndpoint, NetworkManagedServiceServiceNetworkEndpointArgs

    NetworkManagedServiceZeroEtlAccess, NetworkManagedServiceZeroEtlAccessArgs

    Cidr string
    Status string
    The status of the network resource.
    Cidr string
    Status string
    The status of the network resource.
    cidr String
    status String
    The status of the network resource.
    cidr string
    status string
    The status of the network resource.
    cidr str
    status str
    The status of the network resource.
    cidr String
    status String
    The status of the network resource.

    NetworkOciDnsForwardingConfig, NetworkOciDnsForwardingConfigArgs

    NetworkTimeouts, NetworkTimeoutsArgs

    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).

    Import

    Using pulumi import, import Odb Network using the id. For example:

    $ pulumi import aws:odb/network:Network example example
    

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

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo
    AWS v7.8.0 published on Tuesday, Oct 7, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate