Removing the <|extra|> marker because it's only used in DNS custom code (#103)

<!-- This change is generated by MagicModules. -->
/cc @rambleraptor
This commit is contained in:
The Magician 2018-10-11 10:03:25 -07:00 committed by Alex Stephen
parent 5142625c7f
commit 87c61abfb3

View file

@ -266,7 +266,10 @@ def self_link(module):
def collection(module):
res = {'project': module.params['project'], 'managed_zone': replace_resource_dict(module.params['managed_zone'], 'name')}
res = {
'project': module.params['project'],
'managed_zone': replace_resource_dict(module.params['managed_zone'], 'name')
}
return "https://www.googleapis.com/dns/v1/projects/{project}/managedZones/{managed_zone}/changes".format(**res)