The description parameter is required to the API call to manageZones.create, however, this parameter is not exposed in Client.zone. This leads to the awkward pattern:
zone = client.zone('zone-name', dns_name='example.com.')
zone.description = 'My zone'
zone.create()
Where it should be:
zone = client.zone('zone-name', dns_name='example.com.', description='My zone')
zone.create()
The
descriptionparameter is required to the API call tomanageZones.create, however, this parameter is not exposed inClient.zone. This leads to the awkward pattern:Where it should be: