1. Registry
  2. Packages
  3. AWS
  4. API Docs
  5. odb
  6. Network
Viewing docs for AWS v7.46.0
published on Thursday, Sep 10, 2026 by Pulumi
aws logo aws logo
Viewing docs for AWS v7.46.0
published on Thursday, Sep 10, 2026 by Pulumi

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

    Example Usage

    Disabled S3 and Zero-ETL Access

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.odb.Network("example", {
        displayName: "odb-my-net",
        availabilityZoneId: "use1-az6",
        clientSubnetCidr: "10.2.0.0/24",
        backupSubnetCidr: "10.2.1.0/24",
        s3Access: "DISABLED",
        zeroEtlAccess: "DISABLED",
        tags: {
            env: "dev",
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.odb.Network("example",
        display_name="odb-my-net",
        availability_zone_id="use1-az6",
        client_subnet_cidr="10.2.0.0/24",
        backup_subnet_cidr="10.2.1.0/24",
        s3_access="DISABLED",
        zero_etl_access="DISABLED",
        tags={
            "env": "dev",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/odb"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := odb.NewNetwork(ctx, "example", &odb.NetworkArgs{
    			DisplayName:        pulumi.String("odb-my-net"),
    			AvailabilityZoneId: pulumi.String("use1-az6"),
    			ClientSubnetCidr:   pulumi.String("10.2.0.0/24"),
    			BackupSubnetCidr:   pulumi.String("10.2.1.0/24"),
    			S3Access:           pulumi.String("DISABLED"),
    			ZeroEtlAccess:      pulumi.String("DISABLED"),
    			Tags: pulumi.StringMap{
    				"env": pulumi.String("dev"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.Odb.Network("example", new()
        {
            DisplayName = "odb-my-net",
            AvailabilityZoneId = "use1-az6",
            ClientSubnetCidr = "10.2.0.0/24",
            BackupSubnetCidr = "10.2.1.0/24",
            S3Access = "DISABLED",
            ZeroEtlAccess = "DISABLED",
            Tags = 
            {
                { "env", "dev" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.odb.Network;
    import com.pulumi.aws.odb.NetworkArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    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 example = new Network("example", NetworkArgs.builder()
                .displayName("odb-my-net")
                .availabilityZoneId("use1-az6")
                .clientSubnetCidr("10.2.0.0/24")
                .backupSubnetCidr("10.2.1.0/24")
                .s3Access("DISABLED")
                .zeroEtlAccess("DISABLED")
                .tags(Map.of("env", "dev"))
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:odb:Network
        properties:
          displayName: odb-my-net
          availabilityZoneId: use1-az6
          clientSubnetCidr: 10.2.0.0/24
          backupSubnetCidr: 10.2.1.0/24
          s3Access: DISABLED
          zeroEtlAccess: DISABLED
          tags:
            env: dev
    
    pulumi {
      required_providers {
        aws = {
          source = "pulumi/aws"
        }
      }
    }
    
    resource "aws_odb_network" "example" {
      display_name         = "odb-my-net"
      availability_zone_id = "use1-az6"
      client_subnet_cidr   = "10.2.0.0/24"
      backup_subnet_cidr   = "10.2.1.0/24"
      s3_access            = "DISABLED"
      zero_etl_access      = "DISABLED"
      tags = {
        "env" = "dev"
      }
    }
    

    Enabled S3 and Zero-ETL Access

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.odb.Network("example", {
        displayName: "odb-my-net",
        availabilityZoneId: "use1-az6",
        clientSubnetCidr: "10.2.0.0/24",
        backupSubnetCidr: "10.2.1.0/24",
        s3Access: "ENABLED",
        zeroEtlAccess: "ENABLED",
        tags: {
            env: "dev",
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.odb.Network("example",
        display_name="odb-my-net",
        availability_zone_id="use1-az6",
        client_subnet_cidr="10.2.0.0/24",
        backup_subnet_cidr="10.2.1.0/24",
        s3_access="ENABLED",
        zero_etl_access="ENABLED",
        tags={
            "env": "dev",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/odb"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := odb.NewNetwork(ctx, "example", &odb.NetworkArgs{
    			DisplayName:        pulumi.String("odb-my-net"),
    			AvailabilityZoneId: pulumi.String("use1-az6"),
    			ClientSubnetCidr:   pulumi.String("10.2.0.0/24"),
    			BackupSubnetCidr:   pulumi.String("10.2.1.0/24"),
    			S3Access:           pulumi.String("ENABLED"),
    			ZeroEtlAccess:      pulumi.String("ENABLED"),
    			Tags: pulumi.StringMap{
    				"env": pulumi.String("dev"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.Odb.Network("example", new()
        {
            DisplayName = "odb-my-net",
            AvailabilityZoneId = "use1-az6",
            ClientSubnetCidr = "10.2.0.0/24",
            BackupSubnetCidr = "10.2.1.0/24",
            S3Access = "ENABLED",
            ZeroEtlAccess = "ENABLED",
            Tags = 
            {
                { "env", "dev" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.odb.Network;
    import com.pulumi.aws.odb.NetworkArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    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 example = new Network("example", NetworkArgs.builder()
                .displayName("odb-my-net")
                .availabilityZoneId("use1-az6")
                .clientSubnetCidr("10.2.0.0/24")
                .backupSubnetCidr("10.2.1.0/24")
                .s3Access("ENABLED")
                .zeroEtlAccess("ENABLED")
                .tags(Map.of("env", "dev"))
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:odb:Network
        properties:
          displayName: odb-my-net
          availabilityZoneId: use1-az6
          clientSubnetCidr: 10.2.0.0/24
          backupSubnetCidr: 10.2.1.0/24
          s3Access: ENABLED
          zeroEtlAccess: ENABLED
          tags:
            env: dev
    
    pulumi {
      required_providers {
        aws = {
          source = "pulumi/aws"
        }
      }
    }
    
    resource "aws_odb_network" "example" {
      display_name         = "odb-my-net"
      availability_zone_id = "use1-az6"
      client_subnet_cidr   = "10.2.0.0/24"
      backup_subnet_cidr   = "10.2.1.0/24"
      s3_access            = "ENABLED"
      zero_etl_access      = "ENABLED"
      tags = {
        "env" = "dev"
      }
    }
    

    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,
                s3_access: Optional[str] = None,
                availability_zone_id: Optional[str] = None,
                backup_subnet_cidr: Optional[str] = None,
                zero_etl_access: Optional[str] = None,
                client_subnet_cidr: Optional[str] = None,
                display_name: Optional[str] = None,
                kms_policy_document: Optional[str] = None,
                delete_associated_resources: Optional[bool] = None,
                default_dns_prefix: Optional[str] = None,
                custom_domain_name: Optional[str] = None,
                cross_region_s3_restore_sources_accesses: Optional[Sequence[str]] = None,
                region: Optional[str] = None,
                availability_zone: Optional[str] = None,
                s3_policy_document: Optional[str] = None,
                sts_access: Optional[str] = None,
                sts_policy_document: Optional[str] = None,
                tags: Optional[Mapping[str, str]] = None,
                timeouts: Optional[NetworkTimeoutsArgs] = None,
                kms_access: Optional[str] = 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.
    
    
    resource "aws_odb_network" "name" {
        # resource properties
    }

    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()
    {
        S3Access = "string",
        AvailabilityZoneId = "string",
        BackupSubnetCidr = "string",
        ZeroEtlAccess = "string",
        ClientSubnetCidr = "string",
        DisplayName = "string",
        KmsPolicyDocument = "string",
        DeleteAssociatedResources = false,
        DefaultDnsPrefix = "string",
        CustomDomainName = "string",
        CrossRegionS3RestoreSourcesAccesses = new[]
        {
            "string",
        },
        Region = "string",
        AvailabilityZone = "string",
        S3PolicyDocument = "string",
        StsAccess = "string",
        StsPolicyDocument = "string",
        Tags = 
        {
            { "string", "string" },
        },
        Timeouts = new Aws.Odb.Inputs.NetworkTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Update = "string",
        },
        KmsAccess = "string",
    });
    
    example, err := odb.NewNetwork(ctx, "networkResource", &odb.NetworkArgs{
    	S3Access:                  pulumi.String("string"),
    	AvailabilityZoneId:        pulumi.String("string"),
    	BackupSubnetCidr:          pulumi.String("string"),
    	ZeroEtlAccess:             pulumi.String("string"),
    	ClientSubnetCidr:          pulumi.String("string"),
    	DisplayName:               pulumi.String("string"),
    	KmsPolicyDocument:         pulumi.String("string"),
    	DeleteAssociatedResources: pulumi.Bool(false),
    	DefaultDnsPrefix:          pulumi.String("string"),
    	CustomDomainName:          pulumi.String("string"),
    	CrossRegionS3RestoreSourcesAccesses: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Region:            pulumi.String("string"),
    	AvailabilityZone:  pulumi.String("string"),
    	S3PolicyDocument:  pulumi.String("string"),
    	StsAccess:         pulumi.String("string"),
    	StsPolicyDocument: 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"),
    	},
    	KmsAccess: pulumi.String("string"),
    })
    
    resource "aws_odb_network" "networkResource" {
      lifecycle {
        create_before_destroy = true
      }
      s3_access                                = "string"
      availability_zone_id                     = "string"
      backup_subnet_cidr                       = "string"
      zero_etl_access                          = "string"
      client_subnet_cidr                       = "string"
      display_name                             = "string"
      kms_policy_document                      = "string"
      delete_associated_resources              = false
      default_dns_prefix                       = "string"
      custom_domain_name                       = "string"
      cross_region_s3_restore_sources_accesses = ["string"]
      region                                   = "string"
      availability_zone                        = "string"
      s3_policy_document                       = "string"
      sts_access                               = "string"
      sts_policy_document                      = "string"
      tags = {
        "string" = "string"
      }
      timeouts = {
        create = "string"
        delete = "string"
        update = "string"
      }
      kms_access = "string"
    }
    
    var networkResource = new Network("networkResource", NetworkArgs.builder()
        .s3Access("string")
        .availabilityZoneId("string")
        .backupSubnetCidr("string")
        .zeroEtlAccess("string")
        .clientSubnetCidr("string")
        .displayName("string")
        .kmsPolicyDocument("string")
        .deleteAssociatedResources(false)
        .defaultDnsPrefix("string")
        .customDomainName("string")
        .crossRegionS3RestoreSourcesAccesses("string")
        .region("string")
        .availabilityZone("string")
        .s3PolicyDocument("string")
        .stsAccess("string")
        .stsPolicyDocument("string")
        .tags(Map.of("string", "string"))
        .timeouts(NetworkTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .update("string")
            .build())
        .kmsAccess("string")
        .build());
    
    network_resource = aws.odb.Network("networkResource",
        s3_access="string",
        availability_zone_id="string",
        backup_subnet_cidr="string",
        zero_etl_access="string",
        client_subnet_cidr="string",
        display_name="string",
        kms_policy_document="string",
        delete_associated_resources=False,
        default_dns_prefix="string",
        custom_domain_name="string",
        cross_region_s3_restore_sources_accesses=["string"],
        region="string",
        availability_zone="string",
        s3_policy_document="string",
        sts_access="string",
        sts_policy_document="string",
        tags={
            "string": "string",
        },
        timeouts={
            "create": "string",
            "delete": "string",
            "update": "string",
        },
        kms_access="string")
    
    const networkResource = new aws.odb.Network("networkResource", {
        s3Access: "string",
        availabilityZoneId: "string",
        backupSubnetCidr: "string",
        zeroEtlAccess: "string",
        clientSubnetCidr: "string",
        displayName: "string",
        kmsPolicyDocument: "string",
        deleteAssociatedResources: false,
        defaultDnsPrefix: "string",
        customDomainName: "string",
        crossRegionS3RestoreSourcesAccesses: ["string"],
        region: "string",
        availabilityZone: "string",
        s3PolicyDocument: "string",
        stsAccess: "string",
        stsPolicyDocument: "string",
        tags: {
            string: "string",
        },
        timeouts: {
            create: "string",
            "delete": "string",
            update: "string",
        },
        kmsAccess: "string",
    });
    
    type: aws:odb:Network
    properties:
        availabilityZone: string
        availabilityZoneId: string
        backupSubnetCidr: string
        clientSubnetCidr: string
        crossRegionS3RestoreSourcesAccesses:
            - string
        customDomainName: string
        defaultDnsPrefix: string
        deleteAssociatedResources: false
        displayName: string
        kmsAccess: string
        kmsPolicyDocument: string
        region: string
        s3Access: string
        s3PolicyDocument: string
        stsAccess: string
        stsPolicyDocument: 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
    AZ ID of the AZ where the ODB network is located. Changing this will force terraform to create new resource.
    BackupSubnetCidr string
    CIDR range of the backup subnet for the ODB network. Changing this will force terraform to create new resource.
    ClientSubnetCidr string
    CIDR notation for the network resource. Changing this will force terraform to create new resource.
    DisplayName string
    User-friendly name for the odb network. Changing this will force terraform to create a new resource.
    S3Access string
    Configuration for Amazon S3 access from the ODB network.
    ZeroEtlAccess string

    Configuration for Zero-ETL access from the ODB network.

    The following arguments are optional:

    AvailabilityZone string
    Name of the Availability Zone (AZ) where the odb network is located. Changing this will force terraform to create new resource. Make sure availabilityZone maps correctly with availabilityZoneId.
    CrossRegionS3RestoreSourcesAccesses List<string>
    List of regions enabled for cross-region restore in the ODB network.
    CustomDomainName string
    Name of the custom domain that the network is located. customDomainName and defaultDnsPrefix both can't be given. Changing this will force terraform to create new resource.
    DefaultDnsPrefix string
    Default DNS prefix for the network resource. Changing this will force terraform to create new resource.
    DeleteAssociatedResources bool
    If set to true deletes associated OCI resources. Default false.
    KmsAccess string
    Configuration for KMS access from the ODB network.
    KmsPolicyDocument string
    Endpoint policy for KMS access from the ODB network.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    S3PolicyDocument string
    Endpoint policy for Amazon S3 access from the ODB network.
    StsAccess string
    Configuration for STS access from the ODB network.
    StsPolicyDocument string
    Endpoint policy for STS access from the ODB network.
    Tags Dictionary<string, string>
    Map of tags to assign to the exadata infrastructure. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    Timeouts NetworkTimeouts
    AvailabilityZoneId string
    AZ ID of the AZ where the ODB network is located. Changing this will force terraform to create new resource.
    BackupSubnetCidr string
    CIDR range of the backup subnet for the ODB network. Changing this will force terraform to create new resource.
    ClientSubnetCidr string
    CIDR notation for the network resource. Changing this will force terraform to create new resource.
    DisplayName string
    User-friendly name for the odb network. Changing this will force terraform to create a new resource.
    S3Access string
    Configuration for Amazon S3 access from the ODB network.
    ZeroEtlAccess string

    Configuration for Zero-ETL access from the ODB network.

    The following arguments are optional:

    AvailabilityZone string
    Name of the Availability Zone (AZ) where the odb network is located. Changing this will force terraform to create new resource. Make sure availabilityZone maps correctly with availabilityZoneId.
    CrossRegionS3RestoreSourcesAccesses []string
    List of regions enabled for cross-region restore in the ODB network.
    CustomDomainName string
    Name of the custom domain that the network is located. customDomainName and defaultDnsPrefix both can't be given. Changing this will force terraform to create new resource.
    DefaultDnsPrefix string
    Default DNS prefix for the network resource. Changing this will force terraform to create new resource.
    DeleteAssociatedResources bool
    If set to true deletes associated OCI resources. Default false.
    KmsAccess string
    Configuration for KMS access from the ODB network.
    KmsPolicyDocument string
    Endpoint policy for KMS access from the ODB network.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    S3PolicyDocument string
    Endpoint policy for Amazon S3 access from the ODB network.
    StsAccess string
    Configuration for STS access from the ODB network.
    StsPolicyDocument string
    Endpoint policy for STS access from the ODB network.
    Tags map[string]string
    Map of tags to assign to the exadata infrastructure. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    Timeouts NetworkTimeoutsArgs
    availability_zone_id string
    AZ ID of the AZ where the ODB network is located. Changing this will force terraform to create new resource.
    backup_subnet_cidr string
    CIDR range of the backup subnet for the ODB network. Changing this will force terraform to create new resource.
    client_subnet_cidr string
    CIDR notation for the network resource. Changing this will force terraform to create new resource.
    display_name string
    User-friendly name for the odb network. Changing this will force terraform to create a new resource.
    s3_access string
    Configuration for Amazon S3 access from the ODB network.
    zero_etl_access string

    Configuration for Zero-ETL access from the ODB network.

    The following arguments are optional:

    availability_zone string
    Name of the Availability Zone (AZ) where the odb network is located. Changing this will force terraform to create new resource. Make sure availabilityZone maps correctly with availabilityZoneId.
    cross_region_s3_restore_sources_accesses list(string)
    List of regions enabled for cross-region restore in the ODB network.
    custom_domain_name string
    Name of the custom domain that the network is located. customDomainName and defaultDnsPrefix both can't be given. Changing this will force terraform to create new resource.
    default_dns_prefix string
    Default DNS prefix for the network resource. Changing this will force terraform to create new resource.
    delete_associated_resources bool
    If set to true deletes associated OCI resources. Default false.
    kms_access string
    Configuration for KMS access from the ODB network.
    kms_policy_document string
    Endpoint policy for KMS access from the ODB network.
    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    s3_policy_document string
    Endpoint policy for Amazon S3 access from the ODB network.
    sts_access string
    Configuration for STS access from the ODB network.
    sts_policy_document string
    Endpoint policy for STS access from the ODB network.
    tags map(string)
    Map of tags to assign to the exadata infrastructure. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts object
    availabilityZoneId String
    AZ ID of the AZ where the ODB network is located. Changing this will force terraform to create new resource.
    backupSubnetCidr String
    CIDR range of the backup subnet for the ODB network. Changing this will force terraform to create new resource.
    clientSubnetCidr String
    CIDR notation for the network resource. Changing this will force terraform to create new resource.
    displayName String
    User-friendly name for the odb network. Changing this will force terraform to create a new resource.
    s3Access String
    Configuration for Amazon S3 access from the ODB network.
    zeroEtlAccess String

    Configuration for Zero-ETL access from the ODB network.

    The following arguments are optional:

    availabilityZone String
    Name of the Availability Zone (AZ) where the odb network is located. Changing this will force terraform to create new resource. Make sure availabilityZone maps correctly with availabilityZoneId.
    crossRegionS3RestoreSourcesAccesses List<String>
    List of regions enabled for cross-region restore in the ODB network.
    customDomainName String
    Name of the custom domain that the network is located. customDomainName and defaultDnsPrefix both can't be given. Changing this will force terraform to create new resource.
    defaultDnsPrefix String
    Default DNS prefix for the network resource. Changing this will force terraform to create new resource.
    deleteAssociatedResources Boolean
    If set to true deletes associated OCI resources. Default false.
    kmsAccess String
    Configuration for KMS access from the ODB network.
    kmsPolicyDocument String
    Endpoint policy for KMS access from the ODB network.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    s3PolicyDocument String
    Endpoint policy for Amazon S3 access from the ODB network.
    stsAccess String
    Configuration for STS access from the ODB network.
    stsPolicyDocument String
    Endpoint policy for STS access from the ODB network.
    tags Map<String,String>
    Map of tags to assign to the exadata infrastructure. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts NetworkTimeouts
    availabilityZoneId string
    AZ ID of the AZ where the ODB network is located. Changing this will force terraform to create new resource.
    backupSubnetCidr string
    CIDR range of the backup subnet for the ODB network. Changing this will force terraform to create new resource.
    clientSubnetCidr string
    CIDR notation for the network resource. Changing this will force terraform to create new resource.
    displayName string
    User-friendly name for the odb network. Changing this will force terraform to create a new resource.
    s3Access string
    Configuration for Amazon S3 access from the ODB network.
    zeroEtlAccess string

    Configuration for Zero-ETL access from the ODB network.

    The following arguments are optional:

    availabilityZone string
    Name of the Availability Zone (AZ) where the odb network is located. Changing this will force terraform to create new resource. Make sure availabilityZone maps correctly with availabilityZoneId.
    crossRegionS3RestoreSourcesAccesses string[]
    List of regions enabled for cross-region restore in the ODB network.
    customDomainName string
    Name of the custom domain that the network is located. customDomainName and defaultDnsPrefix both can't be given. Changing this will force terraform to create new resource.
    defaultDnsPrefix string
    Default DNS prefix for the network resource. Changing this will force terraform to create new resource.
    deleteAssociatedResources boolean
    If set to true deletes associated OCI resources. Default false.
    kmsAccess string
    Configuration for KMS access from the ODB network.
    kmsPolicyDocument string
    Endpoint policy for KMS access from the ODB network.
    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    s3PolicyDocument string
    Endpoint policy for Amazon S3 access from the ODB network.
    stsAccess string
    Configuration for STS access from the ODB network.
    stsPolicyDocument string
    Endpoint policy for STS access from the ODB network.
    tags {[key: string]: string}
    Map of tags to assign to the exadata infrastructure. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts NetworkTimeouts
    availability_zone_id str
    AZ ID of the AZ where the ODB network is located. Changing this will force terraform to create new resource.
    backup_subnet_cidr str
    CIDR range of the backup subnet for the ODB network. Changing this will force terraform to create new resource.
    client_subnet_cidr str
    CIDR notation for the network resource. Changing this will force terraform to create new resource.
    display_name str
    User-friendly name for the odb network. Changing this will force terraform to create a new resource.
    s3_access str
    Configuration for Amazon S3 access from the ODB network.
    zero_etl_access str

    Configuration for Zero-ETL access from the ODB network.

    The following arguments are optional:

    availability_zone str
    Name of the Availability Zone (AZ) where the odb network is located. Changing this will force terraform to create new resource. Make sure availabilityZone maps correctly with availabilityZoneId.
    cross_region_s3_restore_sources_accesses Sequence[str]
    List of regions enabled for cross-region restore in the ODB network.
    custom_domain_name str
    Name of the custom domain that the network is located. customDomainName and defaultDnsPrefix both can't be given. Changing this will force terraform to create new resource.
    default_dns_prefix str
    Default DNS prefix for the network resource. Changing this will force terraform to create new resource.
    delete_associated_resources bool
    If set to true deletes associated OCI resources. Default false.
    kms_access str
    Configuration for KMS access from the ODB network.
    kms_policy_document str
    Endpoint policy for KMS access from the ODB network.
    region str
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    s3_policy_document str
    Endpoint policy for Amazon S3 access from the ODB network.
    sts_access str
    Configuration for STS access from the ODB network.
    sts_policy_document str
    Endpoint policy for STS access from the ODB network.
    tags Mapping[str, str]
    Map of tags to assign to the exadata infrastructure. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts NetworkTimeoutsArgs
    availabilityZoneId String
    AZ ID of the AZ where the ODB network is located. Changing this will force terraform to create new resource.
    backupSubnetCidr String
    CIDR range of the backup subnet for the ODB network. Changing this will force terraform to create new resource.
    clientSubnetCidr String
    CIDR notation for the network resource. Changing this will force terraform to create new resource.
    displayName String
    User-friendly name for the odb network. Changing this will force terraform to create a new resource.
    s3Access String
    Configuration for Amazon S3 access from the ODB network.
    zeroEtlAccess String

    Configuration for Zero-ETL access from the ODB network.

    The following arguments are optional:

    availabilityZone String
    Name of the Availability Zone (AZ) where the odb network is located. Changing this will force terraform to create new resource. Make sure availabilityZone maps correctly with availabilityZoneId.
    crossRegionS3RestoreSourcesAccesses List<String>
    List of regions enabled for cross-region restore in the ODB network.
    customDomainName String
    Name of the custom domain that the network is located. customDomainName and defaultDnsPrefix both can't be given. Changing this will force terraform to create new resource.
    defaultDnsPrefix String
    Default DNS prefix for the network resource. Changing this will force terraform to create new resource.
    deleteAssociatedResources Boolean
    If set to true deletes associated OCI resources. Default false.
    kmsAccess String
    Configuration for KMS access from the ODB network.
    kmsPolicyDocument String
    Endpoint policy for KMS access from the ODB network.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    s3PolicyDocument String
    Endpoint policy for Amazon S3 access from the ODB network.
    stsAccess String
    Configuration for STS access from the ODB network.
    stsPolicyDocument String
    Endpoint policy for STS access from the ODB network.
    tags Map<String>
    Map of tags to assign to the exadata infrastructure. If configured with a provider defaultTags 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
    ARN of the odb network resource.
    CreatedAt string
    Date and time when the ODB network was created.
    Ec2PlacementGroupIds List<string>
    List of EC2 placement group IDs associated with the ODB network.
    Id string
    The provider-assigned unique ID for this managed resource.
    ManagedServices List<NetworkManagedService>
    Managed services configuration for the ODB network. See managedServices Block below.
    OciDnsForwardingConfigs List<NetworkOciDnsForwardingConfig>
    DNS resolver endpoints in OCI for forwarding DNS queries for the ociPrivateZone domain. See ociDnsForwardingConfigs Block below.
    OciNetworkAnchorId string
    Unique identifier of the OCI network anchor for the ODB network.
    OciNetworkAnchorUrl string
    URL of the OCI network anchor for the ODB network.
    OciResourceAnchorName string
    Name of the OCI resource anchor for the ODB network.
    OciVcnId string
    Unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
    OciVcnUrl string
    URL of the OCI VCN for the ODB network.
    PeeredCidrs List<string>
    List of CIDR ranges from the peered VPC that are allowed access to the ODB network. See the ODB network peering documentation for more information.
    PercentProgress double
    Amount of progress made on the current operation on the ODB network, expressed as a percentage.
    Status string
    Status of the Zero-ETL access.
    StatusReason string
    Additional information about the current status of the ODB network.
    TagsAll Dictionary<string, string>
    Arn string
    ARN of the odb network resource.
    CreatedAt string
    Date and time when the ODB network was created.
    Ec2PlacementGroupIds []string
    List of EC2 placement group IDs associated with the ODB network.
    Id string
    The provider-assigned unique ID for this managed resource.
    ManagedServices []NetworkManagedService
    Managed services configuration for the ODB network. See managedServices Block below.
    OciDnsForwardingConfigs []NetworkOciDnsForwardingConfig
    DNS resolver endpoints in OCI for forwarding DNS queries for the ociPrivateZone domain. See ociDnsForwardingConfigs Block below.
    OciNetworkAnchorId string
    Unique identifier of the OCI network anchor for the ODB network.
    OciNetworkAnchorUrl string
    URL of the OCI network anchor for the ODB network.
    OciResourceAnchorName string
    Name of the OCI resource anchor for the ODB network.
    OciVcnId string
    Unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
    OciVcnUrl string
    URL of the OCI VCN for the ODB network.
    PeeredCidrs []string
    List of CIDR ranges from the peered VPC that are allowed access to the ODB network. See the ODB network peering documentation for more information.
    PercentProgress float64
    Amount of progress made on the current operation on the ODB network, expressed as a percentage.
    Status string
    Status of the Zero-ETL access.
    StatusReason string
    Additional information about the current status of the ODB network.
    TagsAll map[string]string
    arn string
    ARN of the odb network resource.
    created_at string
    Date and time when the ODB network was created.
    ec2_placement_group_ids list(string)
    List of EC2 placement group IDs associated with the ODB network.
    id string
    The provider-assigned unique ID for this managed resource.
    managed_services list(object)
    Managed services configuration for the ODB network. See managedServices Block below.
    oci_dns_forwarding_configs list(object)
    DNS resolver endpoints in OCI for forwarding DNS queries for the ociPrivateZone domain. See ociDnsForwardingConfigs Block below.
    oci_network_anchor_id string
    Unique identifier of the OCI network anchor for the ODB network.
    oci_network_anchor_url string
    URL of the OCI network anchor for the ODB network.
    oci_resource_anchor_name string
    Name of the OCI resource anchor for the ODB network.
    oci_vcn_id string
    Unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
    oci_vcn_url string
    URL of the OCI VCN for the ODB network.
    peered_cidrs list(string)
    List of CIDR ranges from the peered VPC that are allowed access to the ODB network. See the ODB network peering documentation for more information.
    percent_progress number
    Amount of progress made on the current operation on the ODB network, expressed as a percentage.
    status string
    Status of the Zero-ETL access.
    status_reason string
    Additional information about the current status of the ODB network.
    tags_all map(string)
    arn String
    ARN of the odb network resource.
    createdAt String
    Date and time when the ODB network was created.
    ec2PlacementGroupIds List<String>
    List of EC2 placement group IDs associated with the ODB network.
    id String
    The provider-assigned unique ID for this managed resource.
    managedServices List<NetworkManagedService>
    Managed services configuration for the ODB network. See managedServices Block below.
    ociDnsForwardingConfigs List<NetworkOciDnsForwardingConfig>
    DNS resolver endpoints in OCI for forwarding DNS queries for the ociPrivateZone domain. See ociDnsForwardingConfigs Block below.
    ociNetworkAnchorId String
    Unique identifier of the OCI network anchor for the ODB network.
    ociNetworkAnchorUrl String
    URL of the OCI network anchor for the ODB network.
    ociResourceAnchorName String
    Name of the OCI resource anchor for the ODB network.
    ociVcnId String
    Unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
    ociVcnUrl String
    URL of the OCI VCN for the ODB network.
    peeredCidrs List<String>
    List of CIDR ranges from the peered VPC that are allowed access to the ODB network. See the ODB network peering documentation for more information.
    percentProgress Double
    Amount of progress made on the current operation on the ODB network, expressed as a percentage.
    status String
    Status of the Zero-ETL access.
    statusReason String
    Additional information about the current status of the ODB network.
    tagsAll Map<String,String>
    arn string
    ARN of the odb network resource.
    createdAt string
    Date and time when the ODB network was created.
    ec2PlacementGroupIds string[]
    List of EC2 placement group IDs associated with the ODB network.
    id string
    The provider-assigned unique ID for this managed resource.
    managedServices NetworkManagedService[]
    Managed services configuration for the ODB network. See managedServices Block below.
    ociDnsForwardingConfigs NetworkOciDnsForwardingConfig[]
    DNS resolver endpoints in OCI for forwarding DNS queries for the ociPrivateZone domain. See ociDnsForwardingConfigs Block below.
    ociNetworkAnchorId string
    Unique identifier of the OCI network anchor for the ODB network.
    ociNetworkAnchorUrl string
    URL of the OCI network anchor for the ODB network.
    ociResourceAnchorName string
    Name of the OCI resource anchor for the ODB network.
    ociVcnId string
    Unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
    ociVcnUrl string
    URL of the OCI VCN for the ODB network.
    peeredCidrs string[]
    List of CIDR ranges from the peered VPC that are allowed access to the ODB network. See the ODB network peering documentation for more information.
    percentProgress number
    Amount of progress made on the current operation on the ODB network, expressed as a percentage.
    status string
    Status of the Zero-ETL access.
    statusReason string
    Additional information about the current status of the ODB network.
    tagsAll {[key: string]: string}
    arn str
    ARN of the odb network resource.
    created_at str
    Date and time when the ODB network was created.
    ec2_placement_group_ids Sequence[str]
    List of EC2 placement group IDs associated with the ODB network.
    id str
    The provider-assigned unique ID for this managed resource.
    managed_services Sequence[NetworkManagedService]
    Managed services configuration for the ODB network. See managedServices Block below.
    oci_dns_forwarding_configs Sequence[NetworkOciDnsForwardingConfig]
    DNS resolver endpoints in OCI for forwarding DNS queries for the ociPrivateZone domain. See ociDnsForwardingConfigs Block below.
    oci_network_anchor_id str
    Unique identifier of the OCI network anchor for the ODB network.
    oci_network_anchor_url str
    URL of the OCI network anchor for the ODB network.
    oci_resource_anchor_name str
    Name of the OCI resource anchor for the ODB network.
    oci_vcn_id str
    Unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
    oci_vcn_url str
    URL of the OCI VCN for the ODB network.
    peered_cidrs Sequence[str]
    List of CIDR ranges from the peered VPC that are allowed access to the ODB network. See the ODB network peering documentation for more information.
    percent_progress float
    Amount of progress made on the current operation on the ODB network, expressed as a percentage.
    status str
    Status of the Zero-ETL access.
    status_reason str
    Additional information about the current status of the ODB network.
    tags_all Mapping[str, str]
    arn String
    ARN of the odb network resource.
    createdAt String
    Date and time when the ODB network was created.
    ec2PlacementGroupIds List<String>
    List of EC2 placement group IDs associated with the ODB network.
    id String
    The provider-assigned unique ID for this managed resource.
    managedServices List<Property Map>
    Managed services configuration for the ODB network. See managedServices Block below.
    ociDnsForwardingConfigs List<Property Map>
    DNS resolver endpoints in OCI for forwarding DNS queries for the ociPrivateZone domain. See ociDnsForwardingConfigs Block below.
    ociNetworkAnchorId String
    Unique identifier of the OCI network anchor for the ODB network.
    ociNetworkAnchorUrl String
    URL of the OCI network anchor for the ODB network.
    ociResourceAnchorName String
    Name of the OCI resource anchor for the ODB network.
    ociVcnId String
    Unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
    ociVcnUrl String
    URL of the OCI VCN for the ODB network.
    peeredCidrs List<String>
    List of CIDR ranges from the peered VPC that are allowed access to the ODB network. See the ODB network peering documentation for more information.
    percentProgress Number
    Amount of progress made on the current operation on the ODB network, expressed as a percentage.
    status String
    Status of the Zero-ETL access.
    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,
            cross_region_s3_restore_sources_accesses: Optional[Sequence[str]] = None,
            custom_domain_name: Optional[str] = None,
            default_dns_prefix: Optional[str] = None,
            delete_associated_resources: Optional[bool] = None,
            display_name: Optional[str] = None,
            ec2_placement_group_ids: Optional[Sequence[str]] = None,
            kms_access: Optional[str] = None,
            kms_policy_document: 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,
            sts_access: Optional[str] = None,
            sts_policy_document: 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}
    import {
      to = aws_odb_network.example
      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
    ARN of the odb network resource.
    AvailabilityZone string
    Name of the Availability Zone (AZ) where the odb network is located. Changing this will force terraform to create new resource. Make sure availabilityZone maps correctly with availabilityZoneId.
    AvailabilityZoneId string
    AZ ID of the AZ where the ODB network is located. Changing this will force terraform to create new resource.
    BackupSubnetCidr string
    CIDR range of the backup subnet for the ODB network. Changing this will force terraform to create new resource.
    ClientSubnetCidr string
    CIDR notation for the network resource. Changing this will force terraform to create new resource.
    CreatedAt string
    Date and time when the ODB network was created.
    CrossRegionS3RestoreSourcesAccesses List<string>
    List of regions enabled for cross-region restore in the ODB network.
    CustomDomainName string
    Name of the custom domain that the network is located. customDomainName and defaultDnsPrefix both can't be given. Changing this will force terraform to create new resource.
    DefaultDnsPrefix string
    Default DNS prefix for the network resource. Changing this will force terraform to create new resource.
    DeleteAssociatedResources bool
    If set to true deletes associated OCI resources. Default false.
    DisplayName string
    User-friendly name for the odb network. Changing this will force terraform to create a new resource.
    Ec2PlacementGroupIds List<string>
    List of EC2 placement group IDs associated with the ODB network.
    KmsAccess string
    Configuration for KMS access from the ODB network.
    KmsPolicyDocument string
    Endpoint policy for KMS access from the ODB network.
    ManagedServices List<NetworkManagedService>
    Managed services configuration for the ODB network. See managedServices Block below.
    OciDnsForwardingConfigs List<NetworkOciDnsForwardingConfig>
    DNS resolver endpoints in OCI for forwarding DNS queries for the ociPrivateZone domain. See ociDnsForwardingConfigs Block below.
    OciNetworkAnchorId string
    Unique identifier of the OCI network anchor for the ODB network.
    OciNetworkAnchorUrl string
    URL of the OCI network anchor for the ODB network.
    OciResourceAnchorName string
    Name of the OCI resource anchor for the ODB network.
    OciVcnId string
    Unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
    OciVcnUrl string
    URL of the OCI VCN for the ODB network.
    PeeredCidrs List<string>
    List of CIDR ranges from the peered VPC that are allowed access to the ODB network. See the ODB network peering documentation for more information.
    PercentProgress double
    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
    Configuration for Amazon S3 access from the ODB network.
    S3PolicyDocument string
    Endpoint policy for Amazon S3 access from the ODB network.
    Status string
    Status of the Zero-ETL access.
    StatusReason string
    Additional information about the current status of the ODB network.
    StsAccess string
    Configuration for STS access from the ODB network.
    StsPolicyDocument string
    Endpoint policy for STS access from the ODB network.
    Tags Dictionary<string, string>
    Map of tags to assign to the exadata infrastructure. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll Dictionary<string, string>
    Timeouts NetworkTimeouts
    ZeroEtlAccess string

    Configuration for Zero-ETL access from the ODB network.

    The following arguments are optional:

    Arn string
    ARN of the odb network resource.
    AvailabilityZone string
    Name of the Availability Zone (AZ) where the odb network is located. Changing this will force terraform to create new resource. Make sure availabilityZone maps correctly with availabilityZoneId.
    AvailabilityZoneId string
    AZ ID of the AZ where the ODB network is located. Changing this will force terraform to create new resource.
    BackupSubnetCidr string
    CIDR range of the backup subnet for the ODB network. Changing this will force terraform to create new resource.
    ClientSubnetCidr string
    CIDR notation for the network resource. Changing this will force terraform to create new resource.
    CreatedAt string
    Date and time when the ODB network was created.
    CrossRegionS3RestoreSourcesAccesses []string
    List of regions enabled for cross-region restore in the ODB network.
    CustomDomainName string
    Name of the custom domain that the network is located. customDomainName and defaultDnsPrefix both can't be given. Changing this will force terraform to create new resource.
    DefaultDnsPrefix string
    Default DNS prefix for the network resource. Changing this will force terraform to create new resource.
    DeleteAssociatedResources bool
    If set to true deletes associated OCI resources. Default false.
    DisplayName string
    User-friendly name for the odb network. Changing this will force terraform to create a new resource.
    Ec2PlacementGroupIds []string
    List of EC2 placement group IDs associated with the ODB network.
    KmsAccess string
    Configuration for KMS access from the ODB network.
    KmsPolicyDocument string
    Endpoint policy for KMS access from the ODB network.
    ManagedServices []NetworkManagedServiceArgs
    Managed services configuration for the ODB network. See managedServices Block below.
    OciDnsForwardingConfigs []NetworkOciDnsForwardingConfigArgs
    DNS resolver endpoints in OCI for forwarding DNS queries for the ociPrivateZone domain. See ociDnsForwardingConfigs Block below.
    OciNetworkAnchorId string
    Unique identifier of the OCI network anchor for the ODB network.
    OciNetworkAnchorUrl string
    URL of the OCI network anchor for the ODB network.
    OciResourceAnchorName string
    Name of the OCI resource anchor for the ODB network.
    OciVcnId string
    Unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
    OciVcnUrl string
    URL of the OCI VCN for the ODB network.
    PeeredCidrs []string
    List of CIDR ranges from the peered VPC that are allowed access to the ODB network. See the ODB network peering documentation for more information.
    PercentProgress float64
    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
    Configuration for Amazon S3 access from the ODB network.
    S3PolicyDocument string
    Endpoint policy for Amazon S3 access from the ODB network.
    Status string
    Status of the Zero-ETL access.
    StatusReason string
    Additional information about the current status of the ODB network.
    StsAccess string
    Configuration for STS access from the ODB network.
    StsPolicyDocument string
    Endpoint policy for STS access from the ODB network.
    Tags map[string]string
    Map of tags to assign to the exadata infrastructure. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll map[string]string
    Timeouts NetworkTimeoutsArgs
    ZeroEtlAccess string

    Configuration for Zero-ETL access from the ODB network.

    The following arguments are optional:

    arn string
    ARN of the odb network resource.
    availability_zone string
    Name of the Availability Zone (AZ) where the odb network is located. Changing this will force terraform to create new resource. Make sure availabilityZone maps correctly with availabilityZoneId.
    availability_zone_id string
    AZ ID of the AZ where the ODB network is located. Changing this will force terraform to create new resource.
    backup_subnet_cidr string
    CIDR range of the backup subnet for the ODB network. Changing this will force terraform to create new resource.
    client_subnet_cidr string
    CIDR notation for the network resource. Changing this will force terraform to create new resource.
    created_at string
    Date and time when the ODB network was created.
    cross_region_s3_restore_sources_accesses list(string)
    List of regions enabled for cross-region restore in the ODB network.
    custom_domain_name string
    Name of the custom domain that the network is located. customDomainName and defaultDnsPrefix both can't be given. Changing this will force terraform to create new resource.
    default_dns_prefix string
    Default DNS prefix for the network resource. Changing this will force terraform to create new resource.
    delete_associated_resources bool
    If set to true deletes associated OCI resources. Default false.
    display_name string
    User-friendly name for the odb network. Changing this will force terraform to create a new resource.
    ec2_placement_group_ids list(string)
    List of EC2 placement group IDs associated with the ODB network.
    kms_access string
    Configuration for KMS access from the ODB network.
    kms_policy_document string
    Endpoint policy for KMS access from the ODB network.
    managed_services list(object)
    Managed services configuration for the ODB network. See managedServices Block below.
    oci_dns_forwarding_configs list(object)
    DNS resolver endpoints in OCI for forwarding DNS queries for the ociPrivateZone domain. See ociDnsForwardingConfigs Block below.
    oci_network_anchor_id string
    Unique identifier of the OCI network anchor for the ODB network.
    oci_network_anchor_url string
    URL of the OCI network anchor for the ODB network.
    oci_resource_anchor_name string
    Name of the OCI resource anchor for the ODB network.
    oci_vcn_id string
    Unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
    oci_vcn_url string
    URL of the OCI VCN for the ODB network.
    peered_cidrs list(string)
    List of CIDR ranges from the peered VPC that are allowed access to the ODB network. See the ODB network peering documentation for more information.
    percent_progress number
    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.
    s3_access string
    Configuration for Amazon S3 access from the ODB network.
    s3_policy_document string
    Endpoint policy for Amazon S3 access from the ODB network.
    status string
    Status of the Zero-ETL access.
    status_reason string
    Additional information about the current status of the ODB network.
    sts_access string
    Configuration for STS access from the ODB network.
    sts_policy_document string
    Endpoint policy for STS access from the ODB network.
    tags map(string)
    Map of tags to assign to the exadata infrastructure. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tags_all map(string)
    timeouts object
    zero_etl_access string

    Configuration for Zero-ETL access from the ODB network.

    The following arguments are optional:

    arn String
    ARN of the odb network resource.
    availabilityZone String
    Name of the Availability Zone (AZ) where the odb network is located. Changing this will force terraform to create new resource. Make sure availabilityZone maps correctly with availabilityZoneId.
    availabilityZoneId String
    AZ ID of the AZ where the ODB network is located. Changing this will force terraform to create new resource.
    backupSubnetCidr String
    CIDR range of the backup subnet for the ODB network. Changing this will force terraform to create new resource.
    clientSubnetCidr String
    CIDR notation for the network resource. Changing this will force terraform to create new resource.
    createdAt String
    Date and time when the ODB network was created.
    crossRegionS3RestoreSourcesAccesses List<String>
    List of regions enabled for cross-region restore in the ODB network.
    customDomainName String
    Name of the custom domain that the network is located. customDomainName and defaultDnsPrefix both can't be given. Changing this will force terraform to create new resource.
    defaultDnsPrefix String
    Default DNS prefix for the network resource. Changing this will force terraform to create new resource.
    deleteAssociatedResources Boolean
    If set to true deletes associated OCI resources. Default false.
    displayName String
    User-friendly name for the odb network. Changing this will force terraform to create a new resource.
    ec2PlacementGroupIds List<String>
    List of EC2 placement group IDs associated with the ODB network.
    kmsAccess String
    Configuration for KMS access from the ODB network.
    kmsPolicyDocument String
    Endpoint policy for KMS access from the ODB network.
    managedServices List<NetworkManagedService>
    Managed services configuration for the ODB network. See managedServices Block below.
    ociDnsForwardingConfigs List<NetworkOciDnsForwardingConfig>
    DNS resolver endpoints in OCI for forwarding DNS queries for the ociPrivateZone domain. See ociDnsForwardingConfigs Block below.
    ociNetworkAnchorId String
    Unique identifier of the OCI network anchor for the ODB network.
    ociNetworkAnchorUrl String
    URL of the OCI network anchor for the ODB network.
    ociResourceAnchorName String
    Name of the OCI resource anchor for the ODB network.
    ociVcnId String
    Unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
    ociVcnUrl String
    URL of the OCI VCN for the ODB network.
    peeredCidrs List<String>
    List of CIDR ranges from the peered VPC that are allowed access to the ODB network. See the ODB network peering documentation for more information.
    percentProgress Double
    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
    Configuration for Amazon S3 access from the ODB network.
    s3PolicyDocument String
    Endpoint policy for Amazon S3 access from the ODB network.
    status String
    Status of the Zero-ETL access.
    statusReason String
    Additional information about the current status of the ODB network.
    stsAccess String
    Configuration for STS access from the ODB network.
    stsPolicyDocument String
    Endpoint policy for STS access from the ODB network.
    tags Map<String,String>
    Map of tags to assign to the exadata infrastructure. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String,String>
    timeouts NetworkTimeouts
    zeroEtlAccess String

    Configuration for Zero-ETL access from the ODB network.

    The following arguments are optional:

    arn string
    ARN of the odb network resource.
    availabilityZone string
    Name of the Availability Zone (AZ) where the odb network is located. Changing this will force terraform to create new resource. Make sure availabilityZone maps correctly with availabilityZoneId.
    availabilityZoneId string
    AZ ID of the AZ where the ODB network is located. Changing this will force terraform to create new resource.
    backupSubnetCidr string
    CIDR range of the backup subnet for the ODB network. Changing this will force terraform to create new resource.
    clientSubnetCidr string
    CIDR notation for the network resource. Changing this will force terraform to create new resource.
    createdAt string
    Date and time when the ODB network was created.
    crossRegionS3RestoreSourcesAccesses string[]
    List of regions enabled for cross-region restore in the ODB network.
    customDomainName string
    Name of the custom domain that the network is located. customDomainName and defaultDnsPrefix both can't be given. Changing this will force terraform to create new resource.
    defaultDnsPrefix string
    Default DNS prefix for the network resource. Changing this will force terraform to create new resource.
    deleteAssociatedResources boolean
    If set to true deletes associated OCI resources. Default false.
    displayName string
    User-friendly name for the odb network. Changing this will force terraform to create a new resource.
    ec2PlacementGroupIds string[]
    List of EC2 placement group IDs associated with the ODB network.
    kmsAccess string
    Configuration for KMS access from the ODB network.
    kmsPolicyDocument string
    Endpoint policy for KMS access from the ODB network.
    managedServices NetworkManagedService[]
    Managed services configuration for the ODB network. See managedServices Block below.
    ociDnsForwardingConfigs NetworkOciDnsForwardingConfig[]
    DNS resolver endpoints in OCI for forwarding DNS queries for the ociPrivateZone domain. See ociDnsForwardingConfigs Block below.
    ociNetworkAnchorId string
    Unique identifier of the OCI network anchor for the ODB network.
    ociNetworkAnchorUrl string
    URL of the OCI network anchor for the ODB network.
    ociResourceAnchorName string
    Name of the OCI resource anchor for the ODB network.
    ociVcnId string
    Unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
    ociVcnUrl string
    URL of the OCI VCN for the ODB network.
    peeredCidrs string[]
    List of CIDR ranges from the peered VPC that are allowed access to the ODB network. See the ODB network peering documentation for more information.
    percentProgress number
    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
    Configuration for Amazon S3 access from the ODB network.
    s3PolicyDocument string
    Endpoint policy for Amazon S3 access from the ODB network.
    status string
    Status of the Zero-ETL access.
    statusReason string
    Additional information about the current status of the ODB network.
    stsAccess string
    Configuration for STS access from the ODB network.
    stsPolicyDocument string
    Endpoint policy for STS access from the ODB network.
    tags {[key: string]: string}
    Map of tags to assign to the exadata infrastructure. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll {[key: string]: string}
    timeouts NetworkTimeouts
    zeroEtlAccess string

    Configuration for Zero-ETL access from the ODB network.

    The following arguments are optional:

    arn str
    ARN of the odb network resource.
    availability_zone str
    Name of the Availability Zone (AZ) where the odb network is located. Changing this will force terraform to create new resource. Make sure availabilityZone maps correctly with availabilityZoneId.
    availability_zone_id str
    AZ ID of the AZ where the ODB network is located. Changing this will force terraform to create new resource.
    backup_subnet_cidr str
    CIDR range of the backup subnet for the ODB network. Changing this will force terraform to create new resource.
    client_subnet_cidr str
    CIDR notation for the network resource. Changing this will force terraform to create new resource.
    created_at str
    Date and time when the ODB network was created.
    cross_region_s3_restore_sources_accesses Sequence[str]
    List of regions enabled for cross-region restore in the ODB network.
    custom_domain_name str
    Name of the custom domain that the network is located. customDomainName and defaultDnsPrefix both can't be given. Changing this will force terraform to create new resource.
    default_dns_prefix str
    Default DNS prefix for the network resource. Changing this will force terraform to create new resource.
    delete_associated_resources bool
    If set to true deletes associated OCI resources. Default false.
    display_name str
    User-friendly name for the odb network. Changing this will force terraform to create a new resource.
    ec2_placement_group_ids Sequence[str]
    List of EC2 placement group IDs associated with the ODB network.
    kms_access str
    Configuration for KMS access from the ODB network.
    kms_policy_document str
    Endpoint policy for KMS access from the ODB network.
    managed_services Sequence[NetworkManagedServiceArgs]
    Managed services configuration for the ODB network. See managedServices Block below.
    oci_dns_forwarding_configs Sequence[NetworkOciDnsForwardingConfigArgs]
    DNS resolver endpoints in OCI for forwarding DNS queries for the ociPrivateZone domain. See ociDnsForwardingConfigs Block below.
    oci_network_anchor_id str
    Unique identifier of the OCI network anchor for the ODB network.
    oci_network_anchor_url str
    URL of the OCI network anchor for the ODB network.
    oci_resource_anchor_name str
    Name of the OCI resource anchor for the ODB network.
    oci_vcn_id str
    Unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
    oci_vcn_url str
    URL of the OCI VCN for the ODB network.
    peered_cidrs Sequence[str]
    List of CIDR ranges from the peered VPC that are allowed access to the ODB network. See the ODB network peering documentation for more information.
    percent_progress float
    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
    Configuration for Amazon S3 access from the ODB network.
    s3_policy_document str
    Endpoint policy for Amazon S3 access from the ODB network.
    status str
    Status of the Zero-ETL access.
    status_reason str
    Additional information about the current status of the ODB network.
    sts_access str
    Configuration for STS access from the ODB network.
    sts_policy_document str
    Endpoint policy for STS access from the ODB network.
    tags Mapping[str, str]
    Map of tags to assign to the exadata infrastructure. If configured with a provider defaultTags 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

    Configuration for Zero-ETL access from the ODB network.

    The following arguments are optional:

    arn String
    ARN of the odb network resource.
    availabilityZone String
    Name of the Availability Zone (AZ) where the odb network is located. Changing this will force terraform to create new resource. Make sure availabilityZone maps correctly with availabilityZoneId.
    availabilityZoneId String
    AZ ID of the AZ where the ODB network is located. Changing this will force terraform to create new resource.
    backupSubnetCidr String
    CIDR range of the backup subnet for the ODB network. Changing this will force terraform to create new resource.
    clientSubnetCidr String
    CIDR notation for the network resource. Changing this will force terraform to create new resource.
    createdAt String
    Date and time when the ODB network was created.
    crossRegionS3RestoreSourcesAccesses List<String>
    List of regions enabled for cross-region restore in the ODB network.
    customDomainName String
    Name of the custom domain that the network is located. customDomainName and defaultDnsPrefix both can't be given. Changing this will force terraform to create new resource.
    defaultDnsPrefix String
    Default DNS prefix for the network resource. Changing this will force terraform to create new resource.
    deleteAssociatedResources Boolean
    If set to true deletes associated OCI resources. Default false.
    displayName String
    User-friendly name for the odb network. Changing this will force terraform to create a new resource.
    ec2PlacementGroupIds List<String>
    List of EC2 placement group IDs associated with the ODB network.
    kmsAccess String
    Configuration for KMS access from the ODB network.
    kmsPolicyDocument String
    Endpoint policy for KMS access from the ODB network.
    managedServices List<Property Map>
    Managed services configuration for the ODB network. See managedServices Block below.
    ociDnsForwardingConfigs List<Property Map>
    DNS resolver endpoints in OCI for forwarding DNS queries for the ociPrivateZone domain. See ociDnsForwardingConfigs Block below.
    ociNetworkAnchorId String
    Unique identifier of the OCI network anchor for the ODB network.
    ociNetworkAnchorUrl String
    URL of the OCI network anchor for the ODB network.
    ociResourceAnchorName String
    Name of the OCI resource anchor for the ODB network.
    ociVcnId String
    Unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
    ociVcnUrl String
    URL of the OCI VCN for the ODB network.
    peeredCidrs List<String>
    List of CIDR ranges from the peered VPC that are allowed access to the ODB network. See the ODB network peering documentation for more information.
    percentProgress Number
    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
    Configuration for Amazon S3 access from the ODB network.
    s3PolicyDocument String
    Endpoint policy for Amazon S3 access from the ODB network.
    status String
    Status of the Zero-ETL access.
    statusReason String
    Additional information about the current status of the ODB network.
    stsAccess String
    Configuration for STS access from the ODB network.
    stsPolicyDocument String
    Endpoint policy for STS access from the ODB network.
    tags Map<String>
    Map of tags to assign to the exadata infrastructure. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String>
    timeouts Property Map
    zeroEtlAccess String

    Configuration for Zero-ETL access from the ODB network.

    The following arguments are optional:

    Supporting Types

    NetworkManagedService, NetworkManagedServiceArgs

    CrossRegionS3RestoreSourcesAccesses List<NetworkManagedServiceCrossRegionS3RestoreSourcesAccess>
    List of regions enabled for cross-region restore in the ODB network.
    KmsAccesses List<NetworkManagedServiceKmsAccess>
    Configuration for KMS access from the ODB network.
    ManagedS3BackupAccesses List<NetworkManagedServiceManagedS3BackupAccess>
    Managed S3 backup access configuration. See managedS3BackupAccess Block below.
    ManagedServiceIpv4Cidrs List<string>
    List of IPv4 CIDR ranges used by the managed services.
    ResourceGatewayArn string
    ARN of the resource gateway.
    S3Accesses List<NetworkManagedServiceS3Access>
    Configuration for Amazon S3 access from the ODB network.
    ServiceNetworkArn string
    ARN of the service network.
    ServiceNetworkEndpoints List<NetworkManagedServiceServiceNetworkEndpoint>
    Service network endpoint configuration. See serviceNetworkEndpoint Block below.
    StsAccesses List<NetworkManagedServiceStsAccess>
    Configuration for STS access from the ODB network.
    ZeroEtlAccesses List<NetworkManagedServiceZeroEtlAccess>

    Configuration for Zero-ETL access from the ODB network.

    The following arguments are optional:

    CrossRegionS3RestoreSourcesAccesses []NetworkManagedServiceCrossRegionS3RestoreSourcesAccess
    List of regions enabled for cross-region restore in the ODB network.
    KmsAccesses []NetworkManagedServiceKmsAccess
    Configuration for KMS access from the ODB network.
    ManagedS3BackupAccesses []NetworkManagedServiceManagedS3BackupAccess
    Managed S3 backup access configuration. See managedS3BackupAccess Block below.
    ManagedServiceIpv4Cidrs []string
    List of IPv4 CIDR ranges used by the managed services.
    ResourceGatewayArn string
    ARN of the resource gateway.
    S3Accesses []NetworkManagedServiceS3Access
    Configuration for Amazon S3 access from the ODB network.
    ServiceNetworkArn string
    ARN of the service network.
    ServiceNetworkEndpoints []NetworkManagedServiceServiceNetworkEndpoint
    Service network endpoint configuration. See serviceNetworkEndpoint Block below.
    StsAccesses []NetworkManagedServiceStsAccess
    Configuration for STS access from the ODB network.
    ZeroEtlAccesses []NetworkManagedServiceZeroEtlAccess

    Configuration for Zero-ETL access from the ODB network.

    The following arguments are optional:

    cross_region_s3_restore_sources_accesses list(object)
    List of regions enabled for cross-region restore in the ODB network.
    kms_accesses list(object)
    Configuration for KMS access from the ODB network.
    managed_s3_backup_accesses list(object)
    Managed S3 backup access configuration. See managedS3BackupAccess Block below.
    managed_service_ipv4_cidrs list(string)
    List of IPv4 CIDR ranges used by the managed services.
    resource_gateway_arn string
    ARN of the resource gateway.
    s3_accesses list(object)
    Configuration for Amazon S3 access from the ODB network.
    service_network_arn string
    ARN of the service network.
    service_network_endpoints list(object)
    Service network endpoint configuration. See serviceNetworkEndpoint Block below.
    sts_accesses list(object)
    Configuration for STS access from the ODB network.
    zero_etl_accesses list(object)

    Configuration for Zero-ETL access from the ODB network.

    The following arguments are optional:

    crossRegionS3RestoreSourcesAccesses List<NetworkManagedServiceCrossRegionS3RestoreSourcesAccess>
    List of regions enabled for cross-region restore in the ODB network.
    kmsAccesses List<NetworkManagedServiceKmsAccess>
    Configuration for KMS access from the ODB network.
    managedS3BackupAccesses List<NetworkManagedServiceManagedS3BackupAccess>
    Managed S3 backup access configuration. See managedS3BackupAccess Block below.
    managedServiceIpv4Cidrs List<String>
    List of IPv4 CIDR ranges used by the managed services.
    resourceGatewayArn String
    ARN of the resource gateway.
    s3Accesses List<NetworkManagedServiceS3Access>
    Configuration for Amazon S3 access from the ODB network.
    serviceNetworkArn String
    ARN of the service network.
    serviceNetworkEndpoints List<NetworkManagedServiceServiceNetworkEndpoint>
    Service network endpoint configuration. See serviceNetworkEndpoint Block below.
    stsAccesses List<NetworkManagedServiceStsAccess>
    Configuration for STS access from the ODB network.
    zeroEtlAccesses List<NetworkManagedServiceZeroEtlAccess>

    Configuration for Zero-ETL access from the ODB network.

    The following arguments are optional:

    crossRegionS3RestoreSourcesAccesses NetworkManagedServiceCrossRegionS3RestoreSourcesAccess[]
    List of regions enabled for cross-region restore in the ODB network.
    kmsAccesses NetworkManagedServiceKmsAccess[]
    Configuration for KMS access from the ODB network.
    managedS3BackupAccesses NetworkManagedServiceManagedS3BackupAccess[]
    Managed S3 backup access configuration. See managedS3BackupAccess Block below.
    managedServiceIpv4Cidrs string[]
    List of IPv4 CIDR ranges used by the managed services.
    resourceGatewayArn string
    ARN of the resource gateway.
    s3Accesses NetworkManagedServiceS3Access[]
    Configuration for Amazon S3 access from the ODB network.
    serviceNetworkArn string
    ARN of the service network.
    serviceNetworkEndpoints NetworkManagedServiceServiceNetworkEndpoint[]
    Service network endpoint configuration. See serviceNetworkEndpoint Block below.
    stsAccesses NetworkManagedServiceStsAccess[]
    Configuration for STS access from the ODB network.
    zeroEtlAccesses NetworkManagedServiceZeroEtlAccess[]

    Configuration for Zero-ETL access from the ODB network.

    The following arguments are optional:

    cross_region_s3_restore_sources_accesses Sequence[NetworkManagedServiceCrossRegionS3RestoreSourcesAccess]
    List of regions enabled for cross-region restore in the ODB network.
    kms_accesses Sequence[NetworkManagedServiceKmsAccess]
    Configuration for KMS access from the ODB network.
    managed_s3_backup_accesses Sequence[NetworkManagedServiceManagedS3BackupAccess]
    Managed S3 backup access configuration. See managedS3BackupAccess Block below.
    managed_service_ipv4_cidrs Sequence[str]
    List of IPv4 CIDR ranges used by the managed services.
    resource_gateway_arn str
    ARN of the resource gateway.
    s3_accesses Sequence[NetworkManagedServiceS3Access]
    Configuration for Amazon S3 access from the ODB network.
    service_network_arn str
    ARN of the service network.
    service_network_endpoints Sequence[NetworkManagedServiceServiceNetworkEndpoint]
    Service network endpoint configuration. See serviceNetworkEndpoint Block below.
    sts_accesses Sequence[NetworkManagedServiceStsAccess]
    Configuration for STS access from the ODB network.
    zero_etl_accesses Sequence[NetworkManagedServiceZeroEtlAccess]

    Configuration for Zero-ETL access from the ODB network.

    The following arguments are optional:

    crossRegionS3RestoreSourcesAccesses List<Property Map>
    List of regions enabled for cross-region restore in the ODB network.
    kmsAccesses List<Property Map>
    Configuration for KMS access from the ODB network.
    managedS3BackupAccesses List<Property Map>
    Managed S3 backup access configuration. See managedS3BackupAccess Block below.
    managedServiceIpv4Cidrs List<String>
    List of IPv4 CIDR ranges used by the managed services.
    resourceGatewayArn String
    ARN of the resource gateway.
    s3Accesses List<Property Map>
    Configuration for Amazon S3 access from the ODB network.
    serviceNetworkArn String
    ARN of the service network.
    serviceNetworkEndpoints List<Property Map>
    Service network endpoint configuration. See serviceNetworkEndpoint Block below.
    stsAccesses List<Property Map>
    Configuration for STS access from the ODB network.
    zeroEtlAccesses List<Property Map>

    Configuration for Zero-ETL access from the ODB network.

    The following arguments are optional:

    NetworkManagedServiceCrossRegionS3RestoreSourcesAccess, NetworkManagedServiceCrossRegionS3RestoreSourcesAccessArgs

    Ipv4Addresses List<string>
    List of IPv4 addresses for the Amazon STS access.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    Status string
    Status of the Zero-ETL access.
    Ipv4Addresses []string
    List of IPv4 addresses for the Amazon STS access.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    Status string
    Status of the Zero-ETL access.
    ipv4_addresses list(string)
    List of IPv4 addresses for the Amazon STS access.
    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    status string
    Status of the Zero-ETL access.
    ipv4Addresses List<String>
    List of IPv4 addresses for the Amazon STS access.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    status String
    Status of the Zero-ETL access.
    ipv4Addresses string[]
    List of IPv4 addresses for the Amazon STS access.
    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    status string
    Status of the Zero-ETL access.
    ipv4_addresses Sequence[str]
    List of IPv4 addresses for the Amazon STS access.
    region str
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    status str
    Status of the Zero-ETL access.
    ipv4Addresses List<String>
    List of IPv4 addresses for the Amazon STS access.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    status String
    Status of the Zero-ETL access.

    NetworkManagedServiceKmsAccess, NetworkManagedServiceKmsAccessArgs

    DomainName string
    Domain name for which the DNS queries are forwarded.
    Ipv4Addresses List<string>
    List of IPv4 addresses for the Amazon STS access.
    KmsPolicyDocument string
    Endpoint policy for KMS access from the ODB network.
    Status string
    Status of the Zero-ETL access.
    DomainName string
    Domain name for which the DNS queries are forwarded.
    Ipv4Addresses []string
    List of IPv4 addresses for the Amazon STS access.
    KmsPolicyDocument string
    Endpoint policy for KMS access from the ODB network.
    Status string
    Status of the Zero-ETL access.
    domain_name string
    Domain name for which the DNS queries are forwarded.
    ipv4_addresses list(string)
    List of IPv4 addresses for the Amazon STS access.
    kms_policy_document string
    Endpoint policy for KMS access from the ODB network.
    status string
    Status of the Zero-ETL access.
    domainName String
    Domain name for which the DNS queries are forwarded.
    ipv4Addresses List<String>
    List of IPv4 addresses for the Amazon STS access.
    kmsPolicyDocument String
    Endpoint policy for KMS access from the ODB network.
    status String
    Status of the Zero-ETL access.
    domainName string
    Domain name for which the DNS queries are forwarded.
    ipv4Addresses string[]
    List of IPv4 addresses for the Amazon STS access.
    kmsPolicyDocument string
    Endpoint policy for KMS access from the ODB network.
    status string
    Status of the Zero-ETL access.
    domain_name str
    Domain name for which the DNS queries are forwarded.
    ipv4_addresses Sequence[str]
    List of IPv4 addresses for the Amazon STS access.
    kms_policy_document str
    Endpoint policy for KMS access from the ODB network.
    status str
    Status of the Zero-ETL access.
    domainName String
    Domain name for which the DNS queries are forwarded.
    ipv4Addresses List<String>
    List of IPv4 addresses for the Amazon STS access.
    kmsPolicyDocument String
    Endpoint policy for KMS access from the ODB network.
    status String
    Status of the Zero-ETL access.

    NetworkManagedServiceManagedS3BackupAccess, NetworkManagedServiceManagedS3BackupAccessArgs

    Ipv4Addresses List<string>
    List of IPv4 addresses for the Amazon STS access.
    Status string
    Status of the Zero-ETL access.
    Ipv4Addresses []string
    List of IPv4 addresses for the Amazon STS access.
    Status string
    Status of the Zero-ETL access.
    ipv4_addresses list(string)
    List of IPv4 addresses for the Amazon STS access.
    status string
    Status of the Zero-ETL access.
    ipv4Addresses List<String>
    List of IPv4 addresses for the Amazon STS access.
    status String
    Status of the Zero-ETL access.
    ipv4Addresses string[]
    List of IPv4 addresses for the Amazon STS access.
    status string
    Status of the Zero-ETL access.
    ipv4_addresses Sequence[str]
    List of IPv4 addresses for the Amazon STS access.
    status str
    Status of the Zero-ETL access.
    ipv4Addresses List<String>
    List of IPv4 addresses for the Amazon STS access.
    status String
    Status of the Zero-ETL access.

    NetworkManagedServiceS3Access, NetworkManagedServiceS3AccessArgs

    DomainName string
    Domain name for which the DNS queries are forwarded.
    Ipv4Addresses List<string>
    List of IPv4 addresses for the Amazon STS access.
    S3PolicyDocument string
    Endpoint policy for Amazon S3 access from the ODB network.
    Status string
    Status of the Zero-ETL access.
    DomainName string
    Domain name for which the DNS queries are forwarded.
    Ipv4Addresses []string
    List of IPv4 addresses for the Amazon STS access.
    S3PolicyDocument string
    Endpoint policy for Amazon S3 access from the ODB network.
    Status string
    Status of the Zero-ETL access.
    domain_name string
    Domain name for which the DNS queries are forwarded.
    ipv4_addresses list(string)
    List of IPv4 addresses for the Amazon STS access.
    s3_policy_document string
    Endpoint policy for Amazon S3 access from the ODB network.
    status string
    Status of the Zero-ETL access.
    domainName String
    Domain name for which the DNS queries are forwarded.
    ipv4Addresses List<String>
    List of IPv4 addresses for the Amazon STS access.
    s3PolicyDocument String
    Endpoint policy for Amazon S3 access from the ODB network.
    status String
    Status of the Zero-ETL access.
    domainName string
    Domain name for which the DNS queries are forwarded.
    ipv4Addresses string[]
    List of IPv4 addresses for the Amazon STS access.
    s3PolicyDocument string
    Endpoint policy for Amazon S3 access from the ODB network.
    status string
    Status of the Zero-ETL access.
    domain_name str
    Domain name for which the DNS queries are forwarded.
    ipv4_addresses Sequence[str]
    List of IPv4 addresses for the Amazon STS access.
    s3_policy_document str
    Endpoint policy for Amazon S3 access from the ODB network.
    status str
    Status of the Zero-ETL access.
    domainName String
    Domain name for which the DNS queries are forwarded.
    ipv4Addresses List<String>
    List of IPv4 addresses for the Amazon STS access.
    s3PolicyDocument String
    Endpoint policy for Amazon S3 access from the ODB network.
    status String
    Status of the Zero-ETL access.

    NetworkManagedServiceServiceNetworkEndpoint, NetworkManagedServiceServiceNetworkEndpointArgs

    VpcEndpointId string
    Unique identifier of the VPC endpoint.
    VpcEndpointType string
    Type of the VPC endpoint.
    VpcEndpointId string
    Unique identifier of the VPC endpoint.
    VpcEndpointType string
    Type of the VPC endpoint.
    vpc_endpoint_id string
    Unique identifier of the VPC endpoint.
    vpc_endpoint_type string
    Type of the VPC endpoint.
    vpcEndpointId String
    Unique identifier of the VPC endpoint.
    vpcEndpointType String
    Type of the VPC endpoint.
    vpcEndpointId string
    Unique identifier of the VPC endpoint.
    vpcEndpointType string
    Type of the VPC endpoint.
    vpc_endpoint_id str
    Unique identifier of the VPC endpoint.
    vpc_endpoint_type str
    Type of the VPC endpoint.
    vpcEndpointId String
    Unique identifier of the VPC endpoint.
    vpcEndpointType String
    Type of the VPC endpoint.

    NetworkManagedServiceStsAccess, NetworkManagedServiceStsAccessArgs

    DomainName string
    Domain name for which the DNS queries are forwarded.
    Ipv4Addresses List<string>
    List of IPv4 addresses for the Amazon STS access.
    Status string
    Status of the Zero-ETL access.
    StsPolicyDocument string
    Endpoint policy for STS access from the ODB network.
    DomainName string
    Domain name for which the DNS queries are forwarded.
    Ipv4Addresses []string
    List of IPv4 addresses for the Amazon STS access.
    Status string
    Status of the Zero-ETL access.
    StsPolicyDocument string
    Endpoint policy for STS access from the ODB network.
    domain_name string
    Domain name for which the DNS queries are forwarded.
    ipv4_addresses list(string)
    List of IPv4 addresses for the Amazon STS access.
    status string
    Status of the Zero-ETL access.
    sts_policy_document string
    Endpoint policy for STS access from the ODB network.
    domainName String
    Domain name for which the DNS queries are forwarded.
    ipv4Addresses List<String>
    List of IPv4 addresses for the Amazon STS access.
    status String
    Status of the Zero-ETL access.
    stsPolicyDocument String
    Endpoint policy for STS access from the ODB network.
    domainName string
    Domain name for which the DNS queries are forwarded.
    ipv4Addresses string[]
    List of IPv4 addresses for the Amazon STS access.
    status string
    Status of the Zero-ETL access.
    stsPolicyDocument string
    Endpoint policy for STS access from the ODB network.
    domain_name str
    Domain name for which the DNS queries are forwarded.
    ipv4_addresses Sequence[str]
    List of IPv4 addresses for the Amazon STS access.
    status str
    Status of the Zero-ETL access.
    sts_policy_document str
    Endpoint policy for STS access from the ODB network.
    domainName String
    Domain name for which the DNS queries are forwarded.
    ipv4Addresses List<String>
    List of IPv4 addresses for the Amazon STS access.
    status String
    Status of the Zero-ETL access.
    stsPolicyDocument String
    Endpoint policy for STS access from the ODB network.

    NetworkManagedServiceZeroEtlAccess, NetworkManagedServiceZeroEtlAccessArgs

    Cidr string
    CIDR range for the Zero-ETL access.
    Status string
    Status of the Zero-ETL access.
    Cidr string
    CIDR range for the Zero-ETL access.
    Status string
    Status of the Zero-ETL access.
    cidr string
    CIDR range for the Zero-ETL access.
    status string
    Status of the Zero-ETL access.
    cidr String
    CIDR range for the Zero-ETL access.
    status String
    Status of the Zero-ETL access.
    cidr string
    CIDR range for the Zero-ETL access.
    status string
    Status of the Zero-ETL access.
    cidr str
    CIDR range for the Zero-ETL access.
    status str
    Status of the Zero-ETL access.
    cidr String
    CIDR range for the Zero-ETL access.
    status String
    Status of the Zero-ETL access.

    NetworkOciDnsForwardingConfig, NetworkOciDnsForwardingConfigArgs

    DomainName string
    Domain name for which the DNS queries are forwarded.
    OciDnsListenerIp string
    IP address of the OCI DNS listener.
    DomainName string
    Domain name for which the DNS queries are forwarded.
    OciDnsListenerIp string
    IP address of the OCI DNS listener.
    domain_name string
    Domain name for which the DNS queries are forwarded.
    oci_dns_listener_ip string
    IP address of the OCI DNS listener.
    domainName String
    Domain name for which the DNS queries are forwarded.
    ociDnsListenerIp String
    IP address of the OCI DNS listener.
    domainName string
    Domain name for which the DNS queries are forwarded.
    ociDnsListenerIp string
    IP address of the OCI DNS listener.
    domain_name str
    Domain name for which the DNS queries are forwarded.
    oci_dns_listener_ip str
    IP address of the OCI DNS listener.
    domainName String
    Domain name for which the DNS queries are forwarded.
    ociDnsListenerIp String
    IP address of the OCI DNS listener.

    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 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 logo
    Viewing docs for AWS v7.46.0
    published on Thursday, Sep 10, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial