Skip to content

Commit

Permalink
Update the docs around the integrated_zones parameter (#529)
Browse files Browse the repository at this point in the history
  • Loading branch information
dallasread authored Sep 26, 2023
1 parent fa5f098 commit 0b9d5d4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions content/v2/zones/records.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ Name | Type | Description
`ttl` | `integer` |
`priority` | `integer` |
`regions` | `array` | Optional set of [regions](#zone-record-regions)
`integrated_zones` | `array` | Optional set of IDs identifying the integrated zones linked to this DNSimple zone that the record should also be created in. If not specified, the record will be created in all integrated zones that support the record type. Use an empty array to indicate that the record should not be created in any integrated zones.
`integrated_zones` | `array` | Optional set of IDs identifying the zones where the record should be created. If not specified, the record creation will be applied to the DNSimple zone and all integrated zones that support the record type. If specified, "dnsimple" must be included to create the record in the DNSimple zone.

##### Example

Expand All @@ -152,7 +152,7 @@ Name | Type | Description
"ttl": 600,
"priority": 10,
"regions": ["SV1", "IAD"],
"integrated_zones": [1, 2]
"integrated_zones": [1, 2, "dnsimple"]
}
~~~

Expand Down Expand Up @@ -245,7 +245,7 @@ Name | Type | Description
`ttl` | `integer` |
`priority` | `integer` |
`regions` | `array` | Optional set of [regions](#zone-record-regions)
`integrated_zones` | `array` | Optional set of IDs identifying the integrated zones linked to this DNSimple zone that the record should also be updated in. If not specified, the record update will be applied to all integrated zones that support the record type. Use an empty array to indicate that the record update should not be applied to any integrated zones.
`integrated_zones` | `array` | Optional set of IDs identifying the zones where the record should be updated. If not specified, the record update will be applied to the DNSimple zone and all integrated zones that support the record type. If specified, "dnsimple" must be included to update the record in the DNSimple zone.

##### Example

Expand All @@ -255,7 +255,7 @@ Name | Type | Description
"ttl": 3600,
"priority": 20,
"regions": ["global"],
"integrated_zones": [1, 2]
"integrated_zones": [1, 2, "dnsimple"]
}
~~~

Expand Down Expand Up @@ -305,13 +305,13 @@ The following fields are updateable. You can pass zero or any of them.

Name | Type | Description
-----|------|------------
`integrated_zones` | `array` | Optional set of IDs identifying the integrated zones linked to this DNSimple zone that the record should also be deleted in. If not specified, the record deletion will be applied to all integrated zones that support the record type. Use an empty array to indicate that the record deletion should not be applied to any integrated zones.
`integrated_zones` | `array` | Optional set of IDs identifying the zones where the record should be deleted. If not specified, the record deletion will be applied to the DNSimple zone and all integrated zones that support the record type. If specified, "dnsimple" must be included to delete the record from the DNSimple zone.

##### Example

~~~json
{
"integrated_zones": [1, 2]
"integrated_zones": [1, 2, "dnsimple"]
}
~~~

Expand Down

0 comments on commit 0b9d5d4

Please sign in to comment.