%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /lib/python2.7/site-packages/salt/states/
Upload File :
Create Path :
Current File : //lib/python2.7/site-packages/salt/states/boto3_route53.pyo

�
���^c@@s&dZddlmZmZmZddlZddlZddlmZddl	Z
ddlZ
eje
�Zd�Zeeeeeeeeed�	Zeeeeeed�Zeeeeeeeeeeeeeeeeeeed�Zeeeeeeeeeed	�
ZdS(
u�
Manage Route53 records with Boto 3

.. versionadded:: 2017.7.0

Create and delete Route53 records. Be aware that this interacts with Amazon's
services, and so may incur charges.

This module uses ``boto3``, which can be installed via package, or pip.

This module accepts explicit route53 credentials but can also utilize
IAM roles assigned to the instance through Instance Profiles. Dynamic
credentials are then automatically obtained from AWS API and no further
configuration is necessary. More information available `here
<http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/iam-roles-for-amazon-ec2.html>`_.

If IAM roles are not used you need to specify them either in a pillar file or
in the minion's config file:

.. code-block:: yaml

    route53.keyid: GKTADJGHEIQSXMKKRBJ08H
    route53.key: askdjghsdfjkghWupUjasdflkdfklgjsdfjajkghs

It's also possible to specify ``key``, ``keyid`` and ``region`` via a profile, either
passed in as a dict, or as a string to pull from pillars or minion config:

.. code-block:: yaml

    myprofile:
      keyid: GKTADJGHEIQSXMKKRBJ08H
      key: askdjghsdfjkghWupUjasdflkdfklgjsdfjajkghs
      region: us-east-1

.. code-block:: yaml

    An exciting new AWS Route 53 Hosted Zone:
      boto_route53.hosted_zone_present:
        - Name: example.com.
        - PrivateZone: true
        - VPCs:
          - VPCName: MyLittleVPC
            VPCRegion: us-east-1
          - VPCId: vpc-12345678
        - region: us-east-1
        - keyid: GKTADJGHEIQSXMKKRBJ08H
        - key: askdjghsdfjkghWupUjasdflkdfklgjsdfjajkghs

    mycnamerecord:
      boto_route53.rr_present:
        - Name: test.example.com.
        - ResourceRecords:
          - my-elb.us-east-1.elb.amazonaws.com.
        - DomainName: example.com.
        - TTL: 60
        - Type: CNAME
        - region: us-east-1
        - keyid: GKTADJGHEIQSXMKKRBJ08H
        - key: askdjghsdfjkghWupUjasdflkdfklgjsdfjajkghs

i(tabsolute_importtprint_functiontunicode_literalsN(tSaltInvocationErrorcC@sdtkrdStS(u)
    Only load if boto is available.
    uboto3_route53.find_hosted_zoneu
boto3_route53(t__salt__tFalse(((s=/usr/lib/python2.7/site-packages/salt/states/boto3_route53.pyt__virtual__Psc
C@s�|r|n|}i|d6td6dd6id6}
|rP|rPtd��n|rl|rltd��n|r�t|t�s�td��nx^|D]S}t|t�s�tjjj|j	d	�|j	d
�f�r�td��q�q�Wng}|r�x�|D]�}|j	d	�}
|j	d
�}|j	d�}t
d
d|
d|d|d|d|d|	�j	dg�}|r�|r�g|D]}|d|kr�|^q�}n|s�dj|p�|
|�|
d<tj
|
d�t|
d<|
St|�dkr]dj|p|
|djg|D]}|d^q��|
d<tj
|
d�t|
d<|
S|d}|rz|d}
n|s�|d}n|i|
d	6|d6g7}qWnt}t}g}g}i|d6|d6|d6|d6|d6|	d 6}t
d!|�}|s]t}t|�dkr<|d}|d }n|rH|nttj��}n�|d}|r�x3|j	d"�D]"}||kr}||g7}q}q}Wx6|D]+}||j	d"�kr�||g7}q�q�Wn|d#d$j	d%�|krt}n|p|p|p|s1d&j|�|
d<|
S|r�td'rqd(j|rSd)nd*|�|
d<d@|
d<|
S|r�|dj	d	�nd@}|r�|dj	d�nd@}t
d+d,|d-|d.|d/|d0|d1|d|d|d|d|	�
}|rL|d}d2j|rd)nd*|�|
d<tj|
d�||
dd3<q�d4j|r^d)nd*|�|
d<tj
|
d�t|
d<|
Sn|r�td'r�d5j|r�d)nd*|�|
d<d@|
d<|
St
d6d,|d.|d/|d|d|d|d|	�}|r�|d}d7j|r)d)nd*|�}tj|�d8j|
d|g�|
d<||
dd9<tjjj|
dj	d3i�|�|
dd3<q�d:j|r�d)nd*|�|
d<tj
|
d�t|
d<|
Sn|s�|r�td'r*d;j|rd)nd*|�|
d<d@|
d<|
St}t}x\|D]T}t
d<d,|d0|d	d1|dd|d|d|d|	�}|s=t}q=q=Wx\|D]T}t
d=d,|d0|d	d1|dd|d|d|d|	�}|s�t}q�q�W||
dd9<t
d!|�|
dd3<|rq|rqd>j|r8d)nd*|�}tj|�d8j|
d|g�|
d<q�d?j|r�d)nd*|�|
d<tj
|
d�t|
d<|
Sn|
S(Au�
    Ensure a hosted zone exists with the given attributes.

    name
        The name of the state definition.

    Name
        The name of the domain. This should be a fully-specified domain, and should terminate with a
        period. This is the name you have registered with your DNS registrar. It is also the name
        you will delegate from your registrar to the Amazon Route 53 delegation servers returned in
        response to this request.  If not provided, the value of name will be used.

    PrivateZone
        Set True if creating a private hosted zone.  If true, then 'VPCs' is also required.

    Comment
        Any comments you want to include about the hosted zone.

    CallerReference
        A unique string that identifies the request and that allows create_hosted_zone() calls to be
        retried without the risk of executing the operation twice.  This helps ensure idempotency
        across state calls, but can cause issues if a zone is deleted and then an attempt is made
        to recreate it with the same CallerReference.  If not provided, a unique UUID will be
        generated at each state run, which can potentially lead to duplicate zones being created if
        the state is run again while the previous zone creation is still in PENDING status (which
        can occasionally take several minutes to clear).  Maximum length of 128.

    VPCs
        A list of dicts, each dict composed of a VPCRegion, and either a VPCId or a VPCName.
        Note that this param is ONLY used if PrivateZone == True

        VPCId
            When creating a private hosted zone, either the VPC ID or VPC Name to associate with is
            required.  Exclusive with VPCName.

        VPCName
            When creating a private hosted zone, either the VPC ID or VPC Name to associate with is
            required.  Exclusive with VPCId.

        VPCRegion
            When creating a private hosted zone, the region of the associated VPC is required.  If
            not provided, an effort will be made to determine it from VPCId or VPCName, if
            possible.  This will fail if a given VPCName exists in multiple regions visible to the
            bound account, in which case you'll need to provide an explicit value for VPCRegion.
    unameuresultuucommentuchangesu8Parameter 'VPCs' is invalid when creating a public zone.u:Parameter 'VPCs' is required when creating a private zone.u)Parameter 'VPCs' must be a list of dicts.uVPCIduVPCNameu�Parameter 'VPCs' must be a list of dicts, each composed of either a 'VPCId' or a 'VPCName', and optionally a 'VPCRegion', to help distinguish between multitple matches.u	VPCRegionuboto_vpc.describe_vpcstvpc_idtnametregiontkeytkeyidtprofileuvpcsuregionuEA VPC matching given criteria (vpc: {0} / vpc_region: {1}) not found.iuNMultiple VPCs matching given criteria (vpc: {0} / vpc_region: {1}) found: {2}.u, uidiuNameuPrivateZoneukeyukeyiduprofileuboto3_route53.find_hosted_zoneuVPCsu
HostedZoneuConfiguCommentu'Hostd Zone {0} already in desired stateutestu,Route 53 {} hosted zone {} would be created.uprivateupublicu boto3_route53.create_hosted_zonetNametCallerReferencetCommenttPrivateZonetVPCIdt	VPCRegionu/Route 53 {} hosted zone {} successfully createdunewu-Creation of Route 53 {} hosted zone {} failedu4Route 53 {} hosted zone {} comment would be updated.u(boto3_route53.update_hosted_zone_commentu7Route 53 {} hosted zone {} comment successfully updatedu  uoldu3Update of Route 53 {} hosted zone {} comment failedu<Route 53 {} hosted zone {} associated VPCs would be updated.u,boto3_route53.associate_vpc_with_hosted_zoneu/boto3_route53.disassociate_vpc_from_hosted_zoneu?Route 53 {} hosted zone {} associated VPCs successfully updatedu;Update of Route 53 {} hosted zone {} associated VPCs failedN(tTrueRt
isinstancetlisttdicttsalttutilstdatatexactly_onetgetRtformattlogterrorRtlentjointstrtuuidtuuid4t__opts__tNonetinfot
dictupdatetupdate(RR
RRRtVPCsR	R
RRtrettvt
fixed_vpcsRtVPCNameRtvpctcreatetupdate_commenttadd_vpcstdel_vpcstargstzonetzRt
vpc_regiontnewzonetrtmsgt	all_addedt	all_deled((s=/usr/lib/python2.7/site-packages/salt/states/boto3_route53.pythosted_zone_presentWs"0"


>
!,
-



"

!

	





	

3



 

 

 
cC@s�|r|n|}i|d6td6dd6id6}i|d6|d6|d6|d	6|d
6|d6}td|�}	|	s�d
j|r�dnd|�|d<tj|d�|Stdr�dj|r�dnd|�|d<d|d<|S|	d}	|	dd}
tdd|
d|d|d|d|�r�dj|r@dnd|�|d<tj|d�|	|dd<d|dd<nAdj|r�dnd|�|d<tj|d�t|d<|S|S( ug
    Ensure the Route53 Hostes Zone described is absent

    name
        The name of the state definition.

    Name
        The name of the domain. This should be a fully-specified domain, and should terminate with a
        period.  If not provided, the value of name will be used.

    PrivateZone
        Set True if deleting a private hosted zone.

    unameuresultuucommentuchangesuNameuPrivateZoneuregionukeyukeyiduprofileuboto3_route53.find_hosted_zoneu)Route 53 {} hosted zone {} already absentuprivateupublicutestu+Route 53 {} hosted zone {} would be deletediu
HostedZoneuIdu boto3_route53.delete_hosted_zonetIdR	R
RRu"Route 53 {} hosted zone {} deleteduoldunewu+Failed to delete Route 53 {} hosted zone {}N(RRRRR&R$R%R(RR
RR	R
RRR*R3R4R=((s=/usr/lib/python2.7/site-packages/salt/states/boto3_route53.pythosted_zone_absent-s<"



c)C@s�|r|n|}|dYkr-td��ni|d6td6dd6id6}i|d6|d6|d	6|d
6|d6|d6|d
6}td|�}|s�dj|r�dnd|�|d<tj|d�|S|d}|dd}g}|rxxU|D]M}|jd�r |jd�}|ddkr�t	|�dkrgtj
d|�||g7}q�n|d}|d}|d}dZ}td"d#i||6d$td%|d&|d'|d(|d)|�}t	|�dkrd*j||�|d<tj|d�t|d<|St	|�dkrWd+j||�|d<tj|d�t|d<|S|d}t
||dY�} | r�tjd,|| |j�|td-| �g7}qd.j||j�|d<tj|d�t|d<|SqKd/j|d�|d<tj|d�t|d<|Sq�|d0kr>d1j|�}n||g7}q�Wgt|�D]}i|d26^q\}ntd3d4|d5|d6|d&|d'|d(|d)|�}!|r|!rtjd7|!|�g|!D]!}|jd8�|kr�|^q�}!tjd9|!�nt}"t}#d8d:d;d<d=d>d?d@dAg	}$|!syt}"tdBr�dCj||�|d<dY|d<|Snt	|!�dkr�dD|d<tj|d�t|d<|S|!d}%x9|$D]1}&t�j|&�|%j|&�kr�t}#Pq�q�W|%jdE�dYk	r?|t|%jdE�d'dF��kr�t}#q�nN|
dYk	r�|%jd?�dYk	r�t|
�t|%jd?��kr�t}#q�n|"r�|#r�dGj||�|d<tj|d�|StdBr�dHj||�|d<dY|d<|Si|d6|dI6}'|r||'dE<nxw|$D]o}&t�j|&�sRt�j|&�dkru|'jit�j|&�|&6�q"tjdJt�j|&��q"WiidKdL6|'dM6gdN6}(tdOd4|dP|(d&|d'|d(|d)|�rPdQj|||"r�dRndS�|d<tj|d�|"r1dY|ddT<n|%|ddT<|'|ddU<n@dVj|"rbdWndX||�|d<tj|d�t|d<|S([uB&
    Ensure the Route53 record is present.

    name
        The name of the state definition.  This will be used for Name if the latter is
        not provided.

    HostedZoneId
        The ID of a zone to create the record in.  Exclusive with DomainName.

    DomainName
        The domain name of a zone to create the record in.  Exclusive with HostedZoneId.

    PrivateZone
        Set to True if the resource record should be in a private zone, False if public.

    Name
        Name of the Route 53 resource record being managed.

    Type
        The record type (A, NS, MX, TXT, etc.)

    SetIdentifier
        Valid for Weighted, Latency, Geolocation, and Failover resource record sets only.
        An identifier that differentiates among multiple resource record sets that have the same
        combination of DNS name and type.  The value of SetIdentifier must be unique for each
        resource record set that has the same combination of DNS name and type. Omit SetIdentifier
        for any other types of record sets.

    Weight
        Valid for Weighted resource record sets only.  Among resource record sets that have the
        same combination of DNS name and type, a value that determines the proportion of DNS
        queries that Amazon Route 53 responds to using the current resource record set. Amazon Route
        53 calculates the sum of the weights for the resource record sets that have the same
        combination of DNS name and type. Amazon Route 53 then responds to queries based on the
        ratio of a resource's weight to the total.

        Note the following:

        - You must specify a value for the Weight element for every weighted resource record set.
        - You can only specify one ResourceRecord per weighted resource record set.
        - You can't create latency, failover, or geolocation resource record sets that have the
          same values for the Name and Type elements as weighted resource record sets.
        - You can create a maximum of 100 weighted resource record sets that have the same values
          for the Name and Type elements.
        - For weighted (but not weighted alias) resource record sets, if you set Weight to 0 for a
          resource record set, Amazon Route 53 never responds to queries with the applicable value
          for that resource record set.  However, if you set Weight to 0 for all resource record
          sets that have the same combination of DNS name and type, traffic is routed to all
          resources with equal probability.  The effect of setting Weight to 0 is different when
          you associate health checks with weighted resource record sets. For more information,
          see `Options for Configuring Amazon Route 53 Active-Active and Active-Passive Failover`__
          in the Amazon Route 53 Developer Guide.

          .. __: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-configuring-options.html

    Region
        Valid for Latency-based resource record sets only.  The Amazon EC2 Region where the resource
        that is specified in this resource record set resides. The resource typically is an AWS
        resource, such as an EC2 instance or an ELB load balancer, and is referred to by an IP
        address or a DNS domain name, depending on the record type.

    GeoLocation
        Geo location resource record sets only.  A dict that lets you control how Route 53 responds
        to DNS queries based on the geographic origin of the query.  For example, if you want all
        queries from Africa to be routed to a web server with an IP address of 192.0.2.111, create a
        resource record set with a Type of A and a ContinentCode of AF.

        .. code-block:: text

            ContinentCode
                The two-letter code for the continent.
                Valid values: AF | AN | AS | EU | OC | NA | SA
                Constraint: Specifying ContinentCode with either CountryCode or SubdivisionCode
                            returns an InvalidInput error.
            CountryCode
                The two-letter code for the country.
            SubdivisionCode
                The code for the subdivision, for example, a state in the United States or a
                province in Canada.

        Notes

        - Creating geolocation and geolocation alias resource record sets in private hosted zones
          is not supported.
        - If you create separate resource record sets for overlapping geographic regions (for
          example, one resource record set for a continent and one for a country on the same
          continent), priority goes to the smallest geographic region. This allows you to route
          most queries for a continent to one resource and to route queries for a country on that
          continent to a different resource.
        - You can't create two geolocation resource record sets that specify the same geographic
          location.
        - The value ``*`` in the CountryCode element matches all geographic locations that aren't
          specified in other geolocation resource record sets that have the same values for the
          Name and Type elements.
        - Geolocation works by mapping IP addresses to locations.  However, some IP addresses
          aren't mapped to geographic locations, so even if you create geolocation resource
          record sets that cover all seven continents, Amazon Route 53 will receive some DNS
          queries from locations that it can't identify.  We recommend that you
          create a resource record set for which the value of CountryCode is
          ``*``, which handles both queries that come from locations for which you
          haven't created geolocation resource record sets and queries from IP
          addresses that aren't mapped to a location.  If you don't create a ``*``
          resource record set, Amazon Route 53 returns a "no answer" response
          for queries from those locations.
        - You can't create non-geolocation resource record sets that have the same values for the
          Name and Type elements as geolocation resource record sets.

    TTL
        The resource record cache time to live (TTL), in seconds.
        Note the following:

        - If you're creating an alias resource record set, omit TTL. Amazon Route 53 uses the
          value of TTL for the alias target.
        - If you're associating this resource record set with a health check (if you're adding
          a HealthCheckId element), we recommend that you specify a TTL of 60 seconds or less so
          clients respond quickly to changes in health status.
        - All of the resource record sets in a group of weighted, latency, geolocation, or
          failover resource record sets must have the same value for TTL.
        - If a group of weighted resource record sets includes one or more weighted alias
          resource record sets for which the alias target is an ELB load balancer, we recommend
          that you specify a TTL of 60 seconds for all of the non-alias weighted resource record
          sets that have the same name and type. Values other than 60 seconds (the TTL for load
          balancers) will change the effect of the values that you specify for Weight.

    ResourceRecords
        A list, containing one or more values for the resource record.  No single value can exceed
        4,000 characters.  For details on how to format values for different record types, see
        `Supported DNS Resource Record Types`__ in the Amazon Route 53 Developer Guide.

        .. __: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/ResourceRecordTypes.html

        Note:  You can specify more than one value for all record types except CNAME and SOA.

        It is also possible to pass "magic" strings as resource record values.  This functionality
        can easily be extended, but for the moment supports the following:

            'magic:ec2_instance_tag:some_tag_name:some_string:some_instance_attr'

        This tells salt to lookup an EC2 instance with a tag 'some_tag_name' which has the value
        'some_string' and substitute the 'some_instance_attr' attribute of that instance as the
        resource record value being evaluated.

        This should work generally for any EC2 instance tags, as long as the instance attribute
        being fetched is available to getattr(instance, 'attribute') as seen in the code below.
        Anything else will most likely require this function to be extended to handle it.

        The canonical use-case for this (at least at our site) is to query the Name tag (which
        we always populate with the host's FQDN) to lookup the public or private IPs bound to the
        instance, so we can then automgically create Route 53 records for them.

    AliasTarget
        The rules governing how to define an AliasTarget for the various supported use-cases are
        obtuse beyond reason and attempting to paraphrase them (or even worse, cut-and-paste them
        in their entirety) would be silly and counterproductive.  If you need this feature, then
        Read The Fine Materials at the `Boto 3 Route 53 page`__ and/or the `AWS Route 53 docs`__
        and suss them for yourself - I sure won't claim to understand them partcularly well.

        .. __: http://boto3.readthedocs.io/en/latest/reference/services/route53.html#Route53.Client.change_resource_record_sets
        .. __: http://docs.aws.amazon.com/Route53/latest/APIReference/API_AliasTarget.html

    region
        The region to connect to.

    key
        Secret key to be used.

    keyid
        Access key to be used.

    profile
        Dict, or pillar key pointing to a dict, containing AWS region/key/keyid.
    uG'Type' is a required parameter when adding or updatingresource records.unameuresultuucommentuchangesuIduNameuPrivateZoneuregionukeyukeyiduprofileuboto3_route53.find_hosted_zoneu$Route 53 {} hosted zone {} not founduprivateupubliciu
HostedZoneumagic:u:iuec2_instance_tagiu2Invalid magic RR value seen: '%s'.  Passing as-is.iiiupendingu	rebootingurunningustoppingustoppeduboto_ec2.find_instancesttagstreturn_objst	in_statesR	R
RRu'No EC2 instance with tag {} == {} foundu.Multiple EC2 instances with tag {} == {} founduFound %s %s for instance %suboto3_route53.aws_encodeu%Attribute {} not found on instance {}u}Unknown RR magic value seen: {}.  Please extend the boto3_route53 state module to add support for your preferred incantation.uTXTu"{}"uValueu"boto3_route53.get_resource_recordstHostedZoneIdtStartRecordNametStartRecordTypeu)Filter recordsets %s by SetIdentifier %s.u
SetIdentifieruResulted in recordsets %s.uWeightuRegionuGeoLocationuFailoveruTTLuAliasTargetu
HealthCheckIduTrafficPolicyInstanceIdutestu8Route 53 resource record {} with type {} would be added.u7Given criteria matched more than one ResourceRecordSet.uResourceRecordscS@s|dS(NuValue((tx((s=/usr/lib/python2.7/site-packages/salt/states/boto3_route53.pyt<lambda>~suIRoute 53 resource record {} with type {} is already in the desired state.u:Route 53 resource record {} with type {} would be updated.uTypeu3Not updating ResourceRecordSet with local value: %suUPSERTuActionuResourceRecordSetuChangesu)boto3_route53.change_resource_record_setstChangeBatchu,Route 53 resource record {} with type {} {}.ucreateduupdateduoldunewu6Failed to {} Route 53 resource record {} with type {}.ucreateuupdateN(upendingu	rebootingurunningustoppingustopped(R%RRRRRR&t
startswithtsplitRtwarningRRtgetattrtdebugtidtsortedRR$tlocalsR(()RRBt
DomainNameRR
tTypet
SetIdentifiertWeighttRegiontGeoLocationtFailovertTTLtResourceRecordstAliasTargett
HealthCheckIdtTrafficPolicyInstanceIdR	R
RRR*R3R4t	fixed_rrstrrtfieldsttag_namet	tag_valuet
instance_attrtgood_statesR8tinstancetrest
recordsetsR/R(t	updatabletrrsettutResourceRecordSetRG((s=/usr/lib/python2.7/site-packages/salt/states/boto3_route53.pyt
rr_presentas
�"






	



	

)	.





!$!!




*# !	
cC@s�|r|n|}|d.kr-td��ni|d6td6dd6id6}i|d6|d6|d	6|d
6|d6|	d6|
d
6}td|�}
|
s�dj|r�dnd|�|d<tj|d�|S|
d}
|
dd}tdd|d|d|d|d|d|	d|
�}|r�|r�tjd||�g|D]!}|jd�|krH|^qH}tjd|�n|s�dj||�|d<|St	|�d kr�d!|d<tj
|d�t|d<|S|d}td"rd#j||�|d<d.|d<|Siid$d%6|d&6gd'6}td(d|d)|d|d|d|	d|
�r�d*j||�|d<tj|d�||dd+<d.|dd,<n1d-j||�|d<tj
|d�t|d<|S(/u�
    Ensure the Route53 record is deleted.

    name
        The name of the state definition.  This will be used for Name if the latter is
        not provided.

    HostedZoneId
        The ID of the zone to delete the record from.  Exclusive with DomainName.

    DomainName
        The domain name of the zone to delete the record from.  Exclusive with HostedZoneId.

    PrivateZone
        Set to True if the RR to be removed is in a private zone, False if public.

    Name
        Name of the resource record.

    Type
        The record type (A, NS, MX, TXT, etc.)

    SetIdentifier
        Valid for Weighted, Latency, Geolocation, and Failover resource record sets only.
        An identifier that differentiates among multiple resource record sets that have the same
        combination of DNS name and type.  The value of SetIdentifier must be unique for each
        resource record set that has the same combination of DNS name and type. Omit SetIdentifier
        for any other types of record sets.

    region
        The region to connect to.

    key
        Secret key to be used.

    keyid
        Access key to be used.

    profile
        Dict, or pillar key pointing to a dict, containing AWS region/key/keyid.
    u>'Type' is a required parameter when deleting resource records.unameuresultuucommentuchangesuIduNameuPrivateZoneuregionukeyukeyiduprofileuboto3_route53.find_hosted_zoneu$Route 53 {} hosted zone {} not founduprivateupubliciu
HostedZoneu"boto3_route53.get_resource_recordsRBRCRDR	R
RRu)Filter recordsets %s by SetIdentifier %s.u
SetIdentifieruResulted in recordsets %s.u8Route 53 resource record {} with type {} already absent.iu7Given criteria matched more than one ResourceRecordSet.utestu:Route 53 resource record {} with type {} would be deleted.uDELETEuActionuResourceRecordSetuChangesu)boto3_route53.change_resource_record_setsRGu1Route 53 resource record {} with type {} deleted.uoldunewu:Failed to delete Route 53 resource record {} with type {}.N(
R%RRRRRR&RLRRRRR$(RRBRPRR
RQRRR	R
RRR*R3R4ReR8RiRG((s=/usr/lib/python2.7/site-packages/salt/states/boto3_route53.pyt	rr_absent�sf,"
	.




!	

(t__doc__t
__future__RRRtloggingR"tsalt.exceptionsRtsalt.utils.dataRtsalt.utils.dictupdatet	getLoggert__name__RRR%RR<R>RjRk(((s=/usr/lib/python2.7/site-packages/salt/states/boto3_route53.pyt<module>>s,		�3�S		

Zerion Mini Shell 1.0