AWSRoute53ResponseMessages.php 700 B

12345678910111213
  1. <?php
  2. namespace MGModule\DNSManager2\mgLibs\custom\dns\submodules\AWSRoute53;
  3. class AWSRoute53ResponseMessages
  4. {
  5. public static $messages = array(
  6. "RRSet with DNS name {rname} is not permitted in zone {dname}" => "This record type with name {rname} cannot be created in zone {dname}",
  7. "Invalid Resource Record: FATAL problem: {code} {value} encountered with {ip}" => "Invalid Resource Record{value}",
  8. 'Tried to create an alias that targets {ip}, type {type} in zone {id}, but the alias target name does not lie within the target zone' =>
  9. 'Tried to create an alias that targets {ip}, but the alias target name does not lie within the target zone'
  10. );
  11. }