mirror of
https://github.com/google/nomulus.git
synced 2025-07-26 04:28:34 +02:00
It's simpler to have fewer of these, and it's clearer from callsites if it's always explicit exactly which domain is being created. I also removed two irregularities: domain_create.xml included hostnames but domain_create_wildcard.xml did not, and the former called the domain name %DOMAIN% whereas the latter called it %HOSTNAME%. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=204956433
22 lines
758 B
XML
22 lines
758 B
XML
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
|
<command>
|
|
<create>
|
|
<domain:create
|
|
xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
|
|
<domain:name>%DOMAIN%</domain:name>
|
|
<domain:period unit="y">2</domain:period>
|
|
<domain:ns>
|
|
<domain:hostObj>ns1.example.net</domain:hostObj>
|
|
<domain:hostObj>ns2.example.net</domain:hostObj>
|
|
</domain:ns>
|
|
<domain:registrant>jd1234</domain:registrant>
|
|
<domain:contact type="admin">sh8013</domain:contact>
|
|
<domain:contact type="tech">sh8013</domain:contact>
|
|
<domain:authInfo>
|
|
<domain:pw>2fooBAR</domain:pw>
|
|
</domain:authInfo>
|
|
</domain:create>
|
|
</create>
|
|
<clTRID>ABC-12345</clTRID>
|
|
</command>
|
|
</epp>
|