Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Bicep resource definition
The resourceAnchors resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Oracle.Database/resourceAnchors resource, add the following Bicep to your template.
resource symbolicname 'Oracle.Database/resourceAnchors@2026-06-01' = {
location: 'string'
name: 'string'
properties: {}
tags: {
{customized property}: 'string'
}
}
Property Values
Oracle.Database/resourceAnchors
| 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. | ResourceAnchorProperties |
| tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
ResourceAnchorProperties
| Name | Description | Value |
|---|
TrackedResourceTags
| Name | Description | Value |
|---|
ARM template resource definition
The resourceAnchors resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands For a list of changed properties in each API version, see change log.
Usage Examples
Resource format
To create a Oracle.Database/resourceAnchors resource, add the following JSON to your template.
{
"type": "Oracle.Database/resourceAnchors",
"apiVersion": "2026-06-01",
"name": "string",
"location": "string",
"properties": {
},
"tags": {
"{customized property}": "string"
}
}
Property Values
Oracle.Database/resourceAnchors
| Name | Description | Value |
|---|---|---|
| apiVersion | The api version | '2026-06-01' |
| 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. | ResourceAnchorProperties |
| tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
| type | The resource type | 'Oracle.Database/resourceAnchors' |
ResourceAnchorProperties
| Name | Description | Value |
|---|
TrackedResourceTags
| Name | Description | Value |
|---|
Terraform (AzAPI provider) resource definition
The resourceAnchors 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/resourceAnchors resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Oracle.Database/resourceAnchors@2026-06-01"
name = "string"
parent_id = "string"
location = "string"
tags = {
{customized property} = "string"
}
body = {
properties = {
}
}
}
Property Values
Oracle.Database/resourceAnchors
| 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. | ResourceAnchorProperties |
| tags | Resource tags | Dictionary of tag names and values. |
| type | The resource type | "Oracle.Database/resourceAnchors@2026-06-01" |
ResourceAnchorProperties
| Name | Description | Value |
|---|
TrackedResourceTags
| Name | Description | Value |
|---|