Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$ slcli -v vs dns-sync 77932517 --ptr Calling: SoftLayer_Virtual_Guest::getObject(id=77932517, mask='mask[id,globalIdentifier,fullyQualifiedDomainName,hostname,domain,primaryBackendIpAddress,primaryIpAddress,primaryNetworkComponent[ id, primaryIpAddress, primaryVersion6IpAddressRecord[ipAddress] ]]', filter='None', args=(), limit=None, offset=None)) Calling: SoftLayer_Account::getDomains(id=None, mask='', filter='{'domains': {'name': {'operation': '_= cgallo.com'}}}', args=(), limit=None, offset=None)) Calling: SoftLayer_Dns_Domain::getObject(id=1861630, mask='resourceRecords', filter='None', args=(), limit=None, offset=None)) Attempt to update DNS records for testing.cgallo.com [y/N]: y Calling: SoftLayer_Virtual_Guest::getReverseDomainRecords(id=77932517, mask='', filter='None', args=(), limit=None, offset=None)) Calling: SoftLayer_Dns_Domain_ResourceRecord::editObject(id=116961023, mask='', filter='None', args=({'data': 'testing.cgallo.com', 'domainId': 1761141, 'expire': None, 'host': '195', 'id': 116961023, 'minimum': None, 'mxPriority': None, 'refresh': None, 'retry': None, 'ttl': 7200, 'type': 'ptr', 'isGatewayAddress': False},), limit=None, offset=None)) SoftLayerAPIError(500): The property 'isGatewayAddress' is not valid for 'SoftLayer_Dns_Domain_ResourceRecord'.
For some reason SoftLayer_Dns_Domain_ResourceRecord datatypes have isGatewayAddress property even though its not on https://sldn.softlayer.com/reference/datatypes/SoftLayer_Dns_Domain_ResourceRecord/ which is causing problems when trying to edit a record.
SoftLayer_Dns_Domain_ResourceRecord
isGatewayAddress
Also, lets take this time to implement a PTR record creator/editor to slcli dns and duplicate the vs dns-sync to hw dns-sync
slcli dns
hw dns-sync
The text was updated successfully, but these errors were encountered:
softlayer#1195 Remove isGatewayAddress property of record template
9986084
softlayer#1195 Added hardware dns-sync command
b51572a
softlayer#1195 Added hardware dns-sync command unittests
65237ea
softlayer#1195 Fix tox E303 too many blank lines
00b12f0
softlayer#1195 refactored the vs/hw dns-sync commands, moved most of …
47417cc
…the logic to the managers/dns.py file. Fixed up unit tests to take account of the changes
Merge pull request #1207 from allmightyspiff/ATGE-issue1195
8692e52
Fix #1195 slcli vs dns-sync --ptr fails
ATGE
Successfully merging a pull request may close this issue.
For some reason
SoftLayer_Dns_Domain_ResourceRecord
datatypes haveisGatewayAddress
property even though its not on https://sldn.softlayer.com/reference/datatypes/SoftLayer_Dns_Domain_ResourceRecord/ which is causing problems when trying to edit a record.Also, lets take this time to implement a PTR record creator/editor to
slcli dns
and duplicate the vs dns-sync tohw dns-sync
The text was updated successfully, but these errors were encountered: