aws.odb.Network
Resource for managing odb Network resource in AWS for Oracle Database@AWS.
Example Usage
Create Network Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Network(name: string, args: NetworkArgs, opts?: CustomResourceOptions);
@overload
def Network(resource_name: str,
args: NetworkArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Network(resource_name: str,
opts: Optional[ResourceOptions] = None,
display_name: Optional[str] = None,
availability_zone_id: Optional[str] = None,
backup_subnet_cidr: Optional[str] = None,
client_subnet_cidr: Optional[str] = None,
s3_access: Optional[str] = None,
zero_etl_access: Optional[str] = None,
custom_domain_name: Optional[str] = None,
default_dns_prefix: Optional[str] = None,
availability_zone: Optional[str] = None,
region: Optional[str] = None,
s3_policy_document: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
timeouts: Optional[NetworkTimeoutsArgs] = None)
func NewNetwork(ctx *Context, name string, args NetworkArgs, opts ...ResourceOption) (*Network, error)
public Network(string name, NetworkArgs args, CustomResourceOptions? opts = null)
public Network(String name, NetworkArgs args)
public Network(String name, NetworkArgs args, CustomResourceOptions options)
type: aws:odb:Network
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args NetworkArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args NetworkArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args NetworkArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NetworkArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NetworkArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var networkResource = new Aws.Odb.Network("networkResource", new()
{
DisplayName = "string",
AvailabilityZoneId = "string",
BackupSubnetCidr = "string",
ClientSubnetCidr = "string",
S3Access = "string",
ZeroEtlAccess = "string",
CustomDomainName = "string",
DefaultDnsPrefix = "string",
AvailabilityZone = "string",
Region = "string",
S3PolicyDocument = "string",
Tags =
{
{ "string", "string" },
},
Timeouts = new Aws.Odb.Inputs.NetworkTimeoutsArgs
{
Create = "string",
Delete = "string",
Update = "string",
},
});
example, err := odb.NewNetwork(ctx, "networkResource", &odb.NetworkArgs{
DisplayName: pulumi.String("string"),
AvailabilityZoneId: pulumi.String("string"),
BackupSubnetCidr: pulumi.String("string"),
ClientSubnetCidr: pulumi.String("string"),
S3Access: pulumi.String("string"),
ZeroEtlAccess: pulumi.String("string"),
CustomDomainName: pulumi.String("string"),
DefaultDnsPrefix: pulumi.String("string"),
AvailabilityZone: pulumi.String("string"),
Region: pulumi.String("string"),
S3PolicyDocument: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Timeouts: &odb.NetworkTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Update: pulumi.String("string"),
},
})
var networkResource = new Network("networkResource", NetworkArgs.builder()
.displayName("string")
.availabilityZoneId("string")
.backupSubnetCidr("string")
.clientSubnetCidr("string")
.s3Access("string")
.zeroEtlAccess("string")
.customDomainName("string")
.defaultDnsPrefix("string")
.availabilityZone("string")
.region("string")
.s3PolicyDocument("string")
.tags(Map.of("string", "string"))
.timeouts(NetworkTimeoutsArgs.builder()
.create("string")
.delete("string")
.update("string")
.build())
.build());
network_resource = aws.odb.Network("networkResource",
display_name="string",
availability_zone_id="string",
backup_subnet_cidr="string",
client_subnet_cidr="string",
s3_access="string",
zero_etl_access="string",
custom_domain_name="string",
default_dns_prefix="string",
availability_zone="string",
region="string",
s3_policy_document="string",
tags={
"string": "string",
},
timeouts={
"create": "string",
"delete": "string",
"update": "string",
})
const networkResource = new aws.odb.Network("networkResource", {
displayName: "string",
availabilityZoneId: "string",
backupSubnetCidr: "string",
clientSubnetCidr: "string",
s3Access: "string",
zeroEtlAccess: "string",
customDomainName: "string",
defaultDnsPrefix: "string",
availabilityZone: "string",
region: "string",
s3PolicyDocument: "string",
tags: {
string: "string",
},
timeouts: {
create: "string",
"delete": "string",
update: "string",
},
});
type: aws:odb:Network
properties:
availabilityZone: string
availabilityZoneId: string
backupSubnetCidr: string
clientSubnetCidr: string
customDomainName: string
defaultDnsPrefix: string
displayName: string
region: string
s3Access: string
s3PolicyDocument: string
tags:
string: string
timeouts:
create: string
delete: string
update: string
zeroEtlAccess: string
Network Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Network resource accepts the following input properties:
- Availability
Zone stringId - Backup
Subnet stringCidr - Client
Subnet stringCidr - Display
Name string - S3Access string
- Specifies the configuration for Amazon S3 access from the ODB network.
- Zero
Etl stringAccess Specifies the configuration for Zero-ETL access from the ODB network.
The following arguments are optional:
- Availability
Zone string - Custom
Domain stringName - The name of the custom domain that the network is located. custom_domain_name and default_dns_prefix both can't be given.
- Default
Dns stringPrefix - Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- S3Policy
Document string - Specifies the endpoint policy for Amazon S3 access from the ODB network.
- Dictionary<string, string>
- A map of tags to assign to the exadata infrastructure. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Timeouts
Network
Timeouts
- Availability
Zone stringId - Backup
Subnet stringCidr - Client
Subnet stringCidr - Display
Name string - S3Access string
- Specifies the configuration for Amazon S3 access from the ODB network.
- Zero
Etl stringAccess Specifies the configuration for Zero-ETL access from the ODB network.
The following arguments are optional:
- Availability
Zone string - Custom
Domain stringName - The name of the custom domain that the network is located. custom_domain_name and default_dns_prefix both can't be given.
- Default
Dns stringPrefix - Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- S3Policy
Document string - Specifies the endpoint policy for Amazon S3 access from the ODB network.
- map[string]string
- A map of tags to assign to the exadata infrastructure. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Timeouts
Network
Timeouts Args
- availability
Zone StringId - backup
Subnet StringCidr - client
Subnet StringCidr - display
Name String - s3Access String
- Specifies the configuration for Amazon S3 access from the ODB network.
- zero
Etl StringAccess Specifies the configuration for Zero-ETL access from the ODB network.
The following arguments are optional:
- availability
Zone String - custom
Domain StringName - The name of the custom domain that the network is located. custom_domain_name and default_dns_prefix both can't be given.
- default
Dns StringPrefix - region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- s3Policy
Document String - Specifies the endpoint policy for Amazon S3 access from the ODB network.
- Map<String,String>
- A map of tags to assign to the exadata infrastructure. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Network
Timeouts
- availability
Zone stringId - backup
Subnet stringCidr - client
Subnet stringCidr - display
Name string - s3Access string
- Specifies the configuration for Amazon S3 access from the ODB network.
- zero
Etl stringAccess Specifies the configuration for Zero-ETL access from the ODB network.
The following arguments are optional:
- availability
Zone string - custom
Domain stringName - The name of the custom domain that the network is located. custom_domain_name and default_dns_prefix both can't be given.
- default
Dns stringPrefix - region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- s3Policy
Document string - Specifies the endpoint policy for Amazon S3 access from the ODB network.
- {[key: string]: string}
- A map of tags to assign to the exadata infrastructure. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Network
Timeouts
- availability_
zone_ strid - backup_
subnet_ strcidr - client_
subnet_ strcidr - display_
name str - s3_
access str - Specifies the configuration for Amazon S3 access from the ODB network.
- zero_
etl_ straccess Specifies the configuration for Zero-ETL access from the ODB network.
The following arguments are optional:
- availability_
zone str - custom_
domain_ strname - The name of the custom domain that the network is located. custom_domain_name and default_dns_prefix both can't be given.
- default_
dns_ strprefix - region str
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- s3_
policy_ strdocument - Specifies the endpoint policy for Amazon S3 access from the ODB network.
- Mapping[str, str]
- A map of tags to assign to the exadata infrastructure. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Network
Timeouts Args
- availability
Zone StringId - backup
Subnet StringCidr - client
Subnet StringCidr - display
Name String - s3Access String
- Specifies the configuration for Amazon S3 access from the ODB network.
- zero
Etl StringAccess Specifies the configuration for Zero-ETL access from the ODB network.
The following arguments are optional:
- availability
Zone String - custom
Domain StringName - The name of the custom domain that the network is located. custom_domain_name and default_dns_prefix both can't be given.
- default
Dns StringPrefix - region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- s3Policy
Document String - Specifies the endpoint policy for Amazon S3 access from the ODB network.
- Map<String>
- A map of tags to assign to the exadata infrastructure. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the Network resource produces the following output properties:
- Arn string
- Amazon Resource Name (ARN) of the odb network resource.
- Created
At string - The date and time when the ODB network was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Managed
Services List<NetworkManaged Service> - The name of the OCI resource anchor for the Exadata infrastructure.
- Oci
Dns List<NetworkForwarding Configs Oci Dns Forwarding Config> - The number of storage servers requested for the Exadata infrastructure.
- Oci
Network stringAnchor Id - The unique identifier of the OCI network anchor for the ODB network.
- Oci
Network stringAnchor Url - The URL of the OCI network anchor for the ODB network.
- Oci
Resource stringAnchor Name - The name of the OCI resource anchor for the ODB network.
- Oci
Vcn stringId - The unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
- Oci
Vcn stringUrl - The URL of the OCI VCN for the ODB network.
- Peered
Cidrs List<string> - The list of CIDR ranges from the peered VPC that are allowed access to the ODB network. Please refer odb network peering documentation.
- Percent
Progress double - The amount of progress made on the current operation on the ODB network, expressed as a percentage.
- Status string
- The status of the network resource.
- Status
Reason string - Additional information about the current status of the ODB network.
- Dictionary<string, string>
- Arn string
- Amazon Resource Name (ARN) of the odb network resource.
- Created
At string - The date and time when the ODB network was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Managed
Services []NetworkManaged Service - The name of the OCI resource anchor for the Exadata infrastructure.
- Oci
Dns []NetworkForwarding Configs Oci Dns Forwarding Config - The number of storage servers requested for the Exadata infrastructure.
- Oci
Network stringAnchor Id - The unique identifier of the OCI network anchor for the ODB network.
- Oci
Network stringAnchor Url - The URL of the OCI network anchor for the ODB network.
- Oci
Resource stringAnchor Name - The name of the OCI resource anchor for the ODB network.
- Oci
Vcn stringId - The unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
- Oci
Vcn stringUrl - The URL of the OCI VCN for the ODB network.
- Peered
Cidrs []string - The list of CIDR ranges from the peered VPC that are allowed access to the ODB network. Please refer odb network peering documentation.
- Percent
Progress float64 - The amount of progress made on the current operation on the ODB network, expressed as a percentage.
- Status string
- The status of the network resource.
- Status
Reason string - Additional information about the current status of the ODB network.
- map[string]string
- arn String
- Amazon Resource Name (ARN) of the odb network resource.
- created
At String - The date and time when the ODB network was created.
- id String
- The provider-assigned unique ID for this managed resource.
- managed
Services List<NetworkManaged Service> - The name of the OCI resource anchor for the Exadata infrastructure.
- oci
Dns List<NetworkForwarding Configs Oci Dns Forwarding Config> - The number of storage servers requested for the Exadata infrastructure.
- oci
Network StringAnchor Id - The unique identifier of the OCI network anchor for the ODB network.
- oci
Network StringAnchor Url - The URL of the OCI network anchor for the ODB network.
- oci
Resource StringAnchor Name - The name of the OCI resource anchor for the ODB network.
- oci
Vcn StringId - The unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
- oci
Vcn StringUrl - The URL of the OCI VCN for the ODB network.
- peered
Cidrs List<String> - The list of CIDR ranges from the peered VPC that are allowed access to the ODB network. Please refer odb network peering documentation.
- percent
Progress Double - The amount of progress made on the current operation on the ODB network, expressed as a percentage.
- status String
- The status of the network resource.
- status
Reason String - Additional information about the current status of the ODB network.
- Map<String,String>
- arn string
- Amazon Resource Name (ARN) of the odb network resource.
- created
At string - The date and time when the ODB network was created.
- id string
- The provider-assigned unique ID for this managed resource.
- managed
Services NetworkManaged Service[] - The name of the OCI resource anchor for the Exadata infrastructure.
- oci
Dns NetworkForwarding Configs Oci Dns Forwarding Config[] - The number of storage servers requested for the Exadata infrastructure.
- oci
Network stringAnchor Id - The unique identifier of the OCI network anchor for the ODB network.
- oci
Network stringAnchor Url - The URL of the OCI network anchor for the ODB network.
- oci
Resource stringAnchor Name - The name of the OCI resource anchor for the ODB network.
- oci
Vcn stringId - The unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
- oci
Vcn stringUrl - The URL of the OCI VCN for the ODB network.
- peered
Cidrs string[] - The list of CIDR ranges from the peered VPC that are allowed access to the ODB network. Please refer odb network peering documentation.
- percent
Progress number - The amount of progress made on the current operation on the ODB network, expressed as a percentage.
- status string
- The status of the network resource.
- status
Reason string - Additional information about the current status of the ODB network.
- {[key: string]: string}
- arn str
- Amazon Resource Name (ARN) of the odb network resource.
- created_
at str - The date and time when the ODB network was created.
- id str
- The provider-assigned unique ID for this managed resource.
- managed_
services Sequence[NetworkManaged Service] - The name of the OCI resource anchor for the Exadata infrastructure.
- oci_
dns_ Sequence[Networkforwarding_ configs Oci Dns Forwarding Config] - The number of storage servers requested for the Exadata infrastructure.
- oci_
network_ stranchor_ id - The unique identifier of the OCI network anchor for the ODB network.
- oci_
network_ stranchor_ url - The URL of the OCI network anchor for the ODB network.
- oci_
resource_ stranchor_ name - The name of the OCI resource anchor for the ODB network.
- oci_
vcn_ strid - The unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
- oci_
vcn_ strurl - The URL of the OCI VCN for the ODB network.
- peered_
cidrs Sequence[str] - The list of CIDR ranges from the peered VPC that are allowed access to the ODB network. Please refer odb network peering documentation.
- percent_
progress float - The amount of progress made on the current operation on the ODB network, expressed as a percentage.
- status str
- The status of the network resource.
- status_
reason str - Additional information about the current status of the ODB network.
- Mapping[str, str]
- arn String
- Amazon Resource Name (ARN) of the odb network resource.
- created
At String - The date and time when the ODB network was created.
- id String
- The provider-assigned unique ID for this managed resource.
- managed
Services List<Property Map> - The name of the OCI resource anchor for the Exadata infrastructure.
- oci
Dns List<Property Map>Forwarding Configs - The number of storage servers requested for the Exadata infrastructure.
- oci
Network StringAnchor Id - The unique identifier of the OCI network anchor for the ODB network.
- oci
Network StringAnchor Url - The URL of the OCI network anchor for the ODB network.
- oci
Resource StringAnchor Name - The name of the OCI resource anchor for the ODB network.
- oci
Vcn StringId - The unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
- oci
Vcn StringUrl - The URL of the OCI VCN for the ODB network.
- peered
Cidrs List<String> - The list of CIDR ranges from the peered VPC that are allowed access to the ODB network. Please refer odb network peering documentation.
- percent
Progress Number - The amount of progress made on the current operation on the ODB network, expressed as a percentage.
- status String
- The status of the network resource.
- status
Reason String - Additional information about the current status of the ODB network.
- Map<String>
Look up Existing Network Resource
Get an existing Network resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: NetworkState, opts?: CustomResourceOptions): Network
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
arn: Optional[str] = None,
availability_zone: Optional[str] = None,
availability_zone_id: Optional[str] = None,
backup_subnet_cidr: Optional[str] = None,
client_subnet_cidr: Optional[str] = None,
created_at: Optional[str] = None,
custom_domain_name: Optional[str] = None,
default_dns_prefix: Optional[str] = None,
display_name: Optional[str] = None,
managed_services: Optional[Sequence[NetworkManagedServiceArgs]] = None,
oci_dns_forwarding_configs: Optional[Sequence[NetworkOciDnsForwardingConfigArgs]] = None,
oci_network_anchor_id: Optional[str] = None,
oci_network_anchor_url: Optional[str] = None,
oci_resource_anchor_name: Optional[str] = None,
oci_vcn_id: Optional[str] = None,
oci_vcn_url: Optional[str] = None,
peered_cidrs: Optional[Sequence[str]] = None,
percent_progress: Optional[float] = None,
region: Optional[str] = None,
s3_access: Optional[str] = None,
s3_policy_document: Optional[str] = None,
status: Optional[str] = None,
status_reason: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None,
timeouts: Optional[NetworkTimeoutsArgs] = None,
zero_etl_access: Optional[str] = None) -> Network
func GetNetwork(ctx *Context, name string, id IDInput, state *NetworkState, opts ...ResourceOption) (*Network, error)
public static Network Get(string name, Input<string> id, NetworkState? state, CustomResourceOptions? opts = null)
public static Network get(String name, Output<String> id, NetworkState state, CustomResourceOptions options)
resources: _: type: aws:odb:Network get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Arn string
- Amazon Resource Name (ARN) of the odb network resource.
- Availability
Zone string - Availability
Zone stringId - Backup
Subnet stringCidr - Client
Subnet stringCidr - Created
At string - The date and time when the ODB network was created.
- Custom
Domain stringName - The name of the custom domain that the network is located. custom_domain_name and default_dns_prefix both can't be given.
- Default
Dns stringPrefix - Display
Name string - Managed
Services List<NetworkManaged Service> - The name of the OCI resource anchor for the Exadata infrastructure.
- Oci
Dns List<NetworkForwarding Configs Oci Dns Forwarding Config> - The number of storage servers requested for the Exadata infrastructure.
- Oci
Network stringAnchor Id - The unique identifier of the OCI network anchor for the ODB network.
- Oci
Network stringAnchor Url - The URL of the OCI network anchor for the ODB network.
- Oci
Resource stringAnchor Name - The name of the OCI resource anchor for the ODB network.
- Oci
Vcn stringId - The unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
- Oci
Vcn stringUrl - The URL of the OCI VCN for the ODB network.
- Peered
Cidrs List<string> - The list of CIDR ranges from the peered VPC that are allowed access to the ODB network. Please refer odb network peering documentation.
- Percent
Progress double - The amount of progress made on the current operation on the ODB network, expressed as a percentage.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- S3Access string
- Specifies the configuration for Amazon S3 access from the ODB network.
- S3Policy
Document string - Specifies the endpoint policy for Amazon S3 access from the ODB network.
- Status string
- The status of the network resource.
- Status
Reason string - Additional information about the current status of the ODB network.
- Dictionary<string, string>
- A map of tags to assign to the exadata infrastructure. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Dictionary<string, string>
- Timeouts
Network
Timeouts - Zero
Etl stringAccess Specifies the configuration for Zero-ETL access from the ODB network.
The following arguments are optional:
- Arn string
- Amazon Resource Name (ARN) of the odb network resource.
- Availability
Zone string - Availability
Zone stringId - Backup
Subnet stringCidr - Client
Subnet stringCidr - Created
At string - The date and time when the ODB network was created.
- Custom
Domain stringName - The name of the custom domain that the network is located. custom_domain_name and default_dns_prefix both can't be given.
- Default
Dns stringPrefix - Display
Name string - Managed
Services []NetworkManaged Service Args - The name of the OCI resource anchor for the Exadata infrastructure.
- Oci
Dns []NetworkForwarding Configs Oci Dns Forwarding Config Args - The number of storage servers requested for the Exadata infrastructure.
- Oci
Network stringAnchor Id - The unique identifier of the OCI network anchor for the ODB network.
- Oci
Network stringAnchor Url - The URL of the OCI network anchor for the ODB network.
- Oci
Resource stringAnchor Name - The name of the OCI resource anchor for the ODB network.
- Oci
Vcn stringId - The unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
- Oci
Vcn stringUrl - The URL of the OCI VCN for the ODB network.
- Peered
Cidrs []string - The list of CIDR ranges from the peered VPC that are allowed access to the ODB network. Please refer odb network peering documentation.
- Percent
Progress float64 - The amount of progress made on the current operation on the ODB network, expressed as a percentage.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- S3Access string
- Specifies the configuration for Amazon S3 access from the ODB network.
- S3Policy
Document string - Specifies the endpoint policy for Amazon S3 access from the ODB network.
- Status string
- The status of the network resource.
- Status
Reason string - Additional information about the current status of the ODB network.
- map[string]string
- A map of tags to assign to the exadata infrastructure. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - map[string]string
- Timeouts
Network
Timeouts Args - Zero
Etl stringAccess Specifies the configuration for Zero-ETL access from the ODB network.
The following arguments are optional:
- arn String
- Amazon Resource Name (ARN) of the odb network resource.
- availability
Zone String - availability
Zone StringId - backup
Subnet StringCidr - client
Subnet StringCidr - created
At String - The date and time when the ODB network was created.
- custom
Domain StringName - The name of the custom domain that the network is located. custom_domain_name and default_dns_prefix both can't be given.
- default
Dns StringPrefix - display
Name String - managed
Services List<NetworkManaged Service> - The name of the OCI resource anchor for the Exadata infrastructure.
- oci
Dns List<NetworkForwarding Configs Oci Dns Forwarding Config> - The number of storage servers requested for the Exadata infrastructure.
- oci
Network StringAnchor Id - The unique identifier of the OCI network anchor for the ODB network.
- oci
Network StringAnchor Url - The URL of the OCI network anchor for the ODB network.
- oci
Resource StringAnchor Name - The name of the OCI resource anchor for the ODB network.
- oci
Vcn StringId - The unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
- oci
Vcn StringUrl - The URL of the OCI VCN for the ODB network.
- peered
Cidrs List<String> - The list of CIDR ranges from the peered VPC that are allowed access to the ODB network. Please refer odb network peering documentation.
- percent
Progress Double - The amount of progress made on the current operation on the ODB network, expressed as a percentage.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- s3Access String
- Specifies the configuration for Amazon S3 access from the ODB network.
- s3Policy
Document String - Specifies the endpoint policy for Amazon S3 access from the ODB network.
- status String
- The status of the network resource.
- status
Reason String - Additional information about the current status of the ODB network.
- Map<String,String>
- A map of tags to assign to the exadata infrastructure. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String,String>
- timeouts
Network
Timeouts - zero
Etl StringAccess Specifies the configuration for Zero-ETL access from the ODB network.
The following arguments are optional:
- arn string
- Amazon Resource Name (ARN) of the odb network resource.
- availability
Zone string - availability
Zone stringId - backup
Subnet stringCidr - client
Subnet stringCidr - created
At string - The date and time when the ODB network was created.
- custom
Domain stringName - The name of the custom domain that the network is located. custom_domain_name and default_dns_prefix both can't be given.
- default
Dns stringPrefix - display
Name string - managed
Services NetworkManaged Service[] - The name of the OCI resource anchor for the Exadata infrastructure.
- oci
Dns NetworkForwarding Configs Oci Dns Forwarding Config[] - The number of storage servers requested for the Exadata infrastructure.
- oci
Network stringAnchor Id - The unique identifier of the OCI network anchor for the ODB network.
- oci
Network stringAnchor Url - The URL of the OCI network anchor for the ODB network.
- oci
Resource stringAnchor Name - The name of the OCI resource anchor for the ODB network.
- oci
Vcn stringId - The unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
- oci
Vcn stringUrl - The URL of the OCI VCN for the ODB network.
- peered
Cidrs string[] - The list of CIDR ranges from the peered VPC that are allowed access to the ODB network. Please refer odb network peering documentation.
- percent
Progress number - The amount of progress made on the current operation on the ODB network, expressed as a percentage.
- region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- s3Access string
- Specifies the configuration for Amazon S3 access from the ODB network.
- s3Policy
Document string - Specifies the endpoint policy for Amazon S3 access from the ODB network.
- status string
- The status of the network resource.
- status
Reason string - Additional information about the current status of the ODB network.
- {[key: string]: string}
- A map of tags to assign to the exadata infrastructure. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - {[key: string]: string}
- timeouts
Network
Timeouts - zero
Etl stringAccess Specifies the configuration for Zero-ETL access from the ODB network.
The following arguments are optional:
- arn str
- Amazon Resource Name (ARN) of the odb network resource.
- availability_
zone str - availability_
zone_ strid - backup_
subnet_ strcidr - client_
subnet_ strcidr - created_
at str - The date and time when the ODB network was created.
- custom_
domain_ strname - The name of the custom domain that the network is located. custom_domain_name and default_dns_prefix both can't be given.
- default_
dns_ strprefix - display_
name str - managed_
services Sequence[NetworkManaged Service Args] - The name of the OCI resource anchor for the Exadata infrastructure.
- oci_
dns_ Sequence[Networkforwarding_ configs Oci Dns Forwarding Config Args] - The number of storage servers requested for the Exadata infrastructure.
- oci_
network_ stranchor_ id - The unique identifier of the OCI network anchor for the ODB network.
- oci_
network_ stranchor_ url - The URL of the OCI network anchor for the ODB network.
- oci_
resource_ stranchor_ name - The name of the OCI resource anchor for the ODB network.
- oci_
vcn_ strid - The unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
- oci_
vcn_ strurl - The URL of the OCI VCN for the ODB network.
- peered_
cidrs Sequence[str] - The list of CIDR ranges from the peered VPC that are allowed access to the ODB network. Please refer odb network peering documentation.
- percent_
progress float - The amount of progress made on the current operation on the ODB network, expressed as a percentage.
- region str
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- s3_
access str - Specifies the configuration for Amazon S3 access from the ODB network.
- s3_
policy_ strdocument - Specifies the endpoint policy for Amazon S3 access from the ODB network.
- status str
- The status of the network resource.
- status_
reason str - Additional information about the current status of the ODB network.
- Mapping[str, str]
- A map of tags to assign to the exadata infrastructure. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Mapping[str, str]
- timeouts
Network
Timeouts Args - zero_
etl_ straccess Specifies the configuration for Zero-ETL access from the ODB network.
The following arguments are optional:
- arn String
- Amazon Resource Name (ARN) of the odb network resource.
- availability
Zone String - availability
Zone StringId - backup
Subnet StringCidr - client
Subnet StringCidr - created
At String - The date and time when the ODB network was created.
- custom
Domain StringName - The name of the custom domain that the network is located. custom_domain_name and default_dns_prefix both can't be given.
- default
Dns StringPrefix - display
Name String - managed
Services List<Property Map> - The name of the OCI resource anchor for the Exadata infrastructure.
- oci
Dns List<Property Map>Forwarding Configs - The number of storage servers requested for the Exadata infrastructure.
- oci
Network StringAnchor Id - The unique identifier of the OCI network anchor for the ODB network.
- oci
Network StringAnchor Url - The URL of the OCI network anchor for the ODB network.
- oci
Resource StringAnchor Name - The name of the OCI resource anchor for the ODB network.
- oci
Vcn StringId - The unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
- oci
Vcn StringUrl - The URL of the OCI VCN for the ODB network.
- peered
Cidrs List<String> - The list of CIDR ranges from the peered VPC that are allowed access to the ODB network. Please refer odb network peering documentation.
- percent
Progress Number - The amount of progress made on the current operation on the ODB network, expressed as a percentage.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- s3Access String
- Specifies the configuration for Amazon S3 access from the ODB network.
- s3Policy
Document String - Specifies the endpoint policy for Amazon S3 access from the ODB network.
- status String
- The status of the network resource.
- status
Reason String - Additional information about the current status of the ODB network.
- Map<String>
- A map of tags to assign to the exadata infrastructure. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String>
- timeouts Property Map
- zero
Etl StringAccess Specifies the configuration for Zero-ETL access from the ODB network.
The following arguments are optional:
Supporting Types
NetworkManagedService, NetworkManagedServiceArgs
- Managed
S3Backup List<NetworkAccesses Managed Service Managed S3Backup Access> - Managed
Service List<string>Ipv4Cidrs - Resource
Gateway stringArn - S3Accesses
List<Network
Managed Service S3Access> - Specifies the configuration for Amazon S3 access from the ODB network.
- Service
Network stringArn - Service
Network List<NetworkEndpoints Managed Service Service Network Endpoint> - Zero
Etl List<NetworkAccesses Managed Service Zero Etl Access> Specifies the configuration for Zero-ETL access from the ODB network.
The following arguments are optional:
- Managed
S3Backup []NetworkAccesses Managed Service Managed S3Backup Access - Managed
Service []stringIpv4Cidrs - Resource
Gateway stringArn - S3Accesses
[]Network
Managed Service S3Access - Specifies the configuration for Amazon S3 access from the ODB network.
- Service
Network stringArn - Service
Network []NetworkEndpoints Managed Service Service Network Endpoint - Zero
Etl []NetworkAccesses Managed Service Zero Etl Access Specifies the configuration for Zero-ETL access from the ODB network.
The following arguments are optional:
- managed
S3Backup List<NetworkAccesses Managed Service Managed S3Backup Access> - managed
Service List<String>Ipv4Cidrs - resource
Gateway StringArn - s3Accesses
List<Network
Managed Service S3Access> - Specifies the configuration for Amazon S3 access from the ODB network.
- service
Network StringArn - service
Network List<NetworkEndpoints Managed Service Service Network Endpoint> - zero
Etl List<NetworkAccesses Managed Service Zero Etl Access> Specifies the configuration for Zero-ETL access from the ODB network.
The following arguments are optional:
- managed
S3Backup NetworkAccesses Managed Service Managed S3Backup Access[] - managed
Service string[]Ipv4Cidrs - resource
Gateway stringArn - s3Accesses
Network
Managed Service S3Access[] - Specifies the configuration for Amazon S3 access from the ODB network.
- service
Network stringArn - service
Network NetworkEndpoints Managed Service Service Network Endpoint[] - zero
Etl NetworkAccesses Managed Service Zero Etl Access[] Specifies the configuration for Zero-ETL access from the ODB network.
The following arguments are optional:
- managed_
s3_ Sequence[Networkbackup_ accesses Managed Service Managed S3Backup Access] - managed_
service_ Sequence[str]ipv4_ cidrs - resource_
gateway_ strarn - s3_
accesses Sequence[NetworkManaged Service S3Access] - Specifies the configuration for Amazon S3 access from the ODB network.
- service_
network_ strarn - service_
network_ Sequence[Networkendpoints Managed Service Service Network Endpoint] - zero_
etl_ Sequence[Networkaccesses Managed Service Zero Etl Access] Specifies the configuration for Zero-ETL access from the ODB network.
The following arguments are optional:
- managed
S3Backup List<Property Map>Accesses - managed
Service List<String>Ipv4Cidrs - resource
Gateway StringArn - s3Accesses List<Property Map>
- Specifies the configuration for Amazon S3 access from the ODB network.
- service
Network StringArn - service
Network List<Property Map>Endpoints - zero
Etl List<Property Map>Accesses Specifies the configuration for Zero-ETL access from the ODB network.
The following arguments are optional:
NetworkManagedServiceManagedS3BackupAccess, NetworkManagedServiceManagedS3BackupAccessArgs
- Ipv4Addresses List<string>
- Status string
- The status of the network resource.
- Ipv4Addresses []string
- Status string
- The status of the network resource.
- ipv4Addresses List<String>
- status String
- The status of the network resource.
- ipv4Addresses string[]
- status string
- The status of the network resource.
- ipv4_
addresses Sequence[str] - status str
- The status of the network resource.
- ipv4Addresses List<String>
- status String
- The status of the network resource.
NetworkManagedServiceS3Access, NetworkManagedServiceS3AccessArgs
- Domain
Name string - Ipv4Addresses List<string>
- S3Policy
Document string - Specifies the endpoint policy for Amazon S3 access from the ODB network.
- Status string
- The status of the network resource.
- Domain
Name string - Ipv4Addresses []string
- S3Policy
Document string - Specifies the endpoint policy for Amazon S3 access from the ODB network.
- Status string
- The status of the network resource.
- domain
Name String - ipv4Addresses List<String>
- s3Policy
Document String - Specifies the endpoint policy for Amazon S3 access from the ODB network.
- status String
- The status of the network resource.
- domain
Name string - ipv4Addresses string[]
- s3Policy
Document string - Specifies the endpoint policy for Amazon S3 access from the ODB network.
- status string
- The status of the network resource.
- domain_
name str - ipv4_
addresses Sequence[str] - s3_
policy_ strdocument - Specifies the endpoint policy for Amazon S3 access from the ODB network.
- status str
- The status of the network resource.
- domain
Name String - ipv4Addresses List<String>
- s3Policy
Document String - Specifies the endpoint policy for Amazon S3 access from the ODB network.
- status String
- The status of the network resource.
NetworkManagedServiceServiceNetworkEndpoint, NetworkManagedServiceServiceNetworkEndpointArgs
- Vpc
Endpoint stringId - Vpc
Endpoint stringType
- Vpc
Endpoint stringId - Vpc
Endpoint stringType
- vpc
Endpoint StringId - vpc
Endpoint StringType
- vpc
Endpoint stringId - vpc
Endpoint stringType
- vpc_
endpoint_ strid - vpc_
endpoint_ strtype
- vpc
Endpoint StringId - vpc
Endpoint StringType
NetworkManagedServiceZeroEtlAccess, NetworkManagedServiceZeroEtlAccessArgs
NetworkOciDnsForwardingConfig, NetworkOciDnsForwardingConfigArgs
- Domain
Name string - Oci
Dns stringListener Ip
- Domain
Name string - Oci
Dns stringListener Ip
- domain
Name String - oci
Dns StringListener Ip
- domain
Name string - oci
Dns stringListener Ip
- domain_
name str - oci_
dns_ strlistener_ ip
- domain
Name String - oci
Dns StringListener Ip
NetworkTimeouts, NetworkTimeoutsArgs
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- Update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- Update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- update String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- update str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- update String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
Import
Using pulumi import
, import Odb Network using the id
. For example:
$ pulumi import aws:odb/network:Network example example
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aws
Terraform Provider.