Oracle.Database networkAnchors 2025-06-01-preview

Bicep resource definition

The networkAnchors resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

To create a Oracle.Database/networkAnchors resource, add the following Bicep to your template.

resource symbolicname 'Oracle.Database/networkAnchors@2025-06-01-preview' = {
  location: 'string'
  name: 'string'
  properties: {
    ociBackupCidrBlock: 'string'
    ociVcnDnsLabel: 'string'
    resourceAnchorId: 'string'
    subnetId: 'string'
  }
  tags: {
    {customized property}: 'string'
  }
  zones: [
    'string'
  ]
}

Property Values

Oracle.Database/networkAnchors

Name Description Value
location The geo-location where the resource lives string (required)
name The resource name string

Constraints:
Pattern = ^[a-zA-Z0-9-]{3,24}$ (required)
properties The resource-specific properties for this resource. NetworkAnchorProperties
tags Resource tags Dictionary of tag names and values. See Tags in templates
zones The availability zones. string[]

NetworkAnchorProperties

Name Description Value
ociBackupCidrBlock OCI backup subnet cidr block. string
ociVcnDnsLabel OCI DNS label. This is optional if DNS config is provided. string
resourceAnchorId Corresponding resource anchor Azure ID string (required)
subnetId Client subnet string (required)

TrackedResourceTags

Name Description Value

ARM template resource definition

The networkAnchors resource type can be deployed with operations that target:

Usage Examples

Resource format

To create a Oracle.Database/networkAnchors resource, add the following JSON to your template.

{
  "type": "Oracle.Database/networkAnchors",
  "apiVersion": "2025-06-01-preview",
  "name": "string",
  "location": "string",
  "properties": {
    "ociBackupCidrBlock": "string",
    "ociVcnDnsLabel": "string",
    "resourceAnchorId": "string",
    "subnetId": "string"
  },
  "tags": {
    "{customized property}": "string"
  },
  "zones": [ "string" ]
}

Property Values

Oracle.Database/networkAnchors

Name Description Value
apiVersion The api version '2025-06-01-preview'
location The geo-location where the resource lives string (required)
name The resource name string

Constraints:
Pattern = ^[a-zA-Z0-9-]{3,24}$ (required)
properties The resource-specific properties for this resource. NetworkAnchorProperties
tags Resource tags Dictionary of tag names and values. See Tags in templates
type The resource type 'Oracle.Database/networkAnchors'
zones The availability zones. string[]

NetworkAnchorProperties

Name Description Value
ociBackupCidrBlock OCI backup subnet cidr block. string
ociVcnDnsLabel OCI DNS label. This is optional if DNS config is provided. string
resourceAnchorId Corresponding resource anchor Azure ID string (required)
subnetId Client subnet string (required)

TrackedResourceTags

Name Description Value

Terraform (AzAPI provider) resource definition

The networkAnchors resource type can be deployed with operations that target:

  • Resource groups For a list of changed properties in each API version, see change log.

Resource format

To create a Oracle.Database/networkAnchors resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Oracle.Database/networkAnchors@2025-06-01-preview"
  name = "string"
  parent_id = "string"
  location = "string"
  tags = {
    {customized property} = "string"
  }
  body = {
    properties = {
      ociBackupCidrBlock = "string"
      ociVcnDnsLabel = "string"
      resourceAnchorId = "string"
      subnetId = "string"
    }
    zones = [
      "string"
    ]
  }
}

Property Values

Oracle.Database/networkAnchors

Name Description Value
location The geo-location where the resource lives string (required)
name The resource name string

Constraints:
Pattern = ^[a-zA-Z0-9-]{3,24}$ (required)
properties The resource-specific properties for this resource. NetworkAnchorProperties
tags Resource tags Dictionary of tag names and values.
type The resource type "Oracle.Database/networkAnchors@2025-06-01-preview"
zones The availability zones. string[]

NetworkAnchorProperties

Name Description Value
ociBackupCidrBlock OCI backup subnet cidr block. string
ociVcnDnsLabel OCI DNS label. This is optional if DNS config is provided. string
resourceAnchorId Corresponding resource anchor Azure ID string (required)
subnetId Client subnet string (required)

TrackedResourceTags

Name Description Value