<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Re: Unable to add a description data in TAGS in ATLAS through CURL in Archives of Support Questions (Read Only)</title>
    <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Unable-to-add-a-description-data-in-TAGS-in-ATLAS-through/m-p/179072#M75827</link>
    <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/14489/amestry.html" nodeid="14489"&gt;@Ashutosh Mestry&lt;/A&gt; , Its Syntax Mistake, Now working Fine..Thanks....!!!&lt;/P&gt;</description>
    <pubDate>Tue, 20 Mar 2018 14:28:11 GMT</pubDate>
    <dc:creator>nittala999</dc:creator>
    <dc:date>2018-03-20T14:28:11Z</dc:date>
    <item>
      <title>Unable to add a description data in TAGS in ATLAS through CURL</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Unable-to-add-a-description-data-in-TAGS-in-ATLAS-through/m-p/179066#M75821</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Please let me know where i need to put the description value in below CURL command&lt;/P&gt;&lt;P&gt;curl -v -u admin:admin -H "Content-Type: application/json" -X PUT -d '[
{
   "typeName": "Test",
   "attributes": {
       "attr1":"valu1",
       "attr2":true,
       "attr3": 60
   } },
{
   "typeName": "Test",
   "attributes": {
       "attr4":"valu1",
       "attr5":true,
       "attr6": 60
}}
]' &lt;A href="http://localhost:21000/api/atlas/v2/entity/guid/686bbea3-0c7b-41f1-98af-9feddb6f741f/classifications" target="_blank"&gt;http://localhost:21000/api/atlas/v2/entity/guid/686bbea3-0c7b-41f1-98af-9feddb6f741f/classifications&lt;/A&gt; &lt;/P&gt;&lt;P&gt;Thanks in advance..!!!&lt;/P&gt;</description>
      <pubDate>Wed, 14 Mar 2018 19:16:09 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Unable-to-add-a-description-data-in-TAGS-in-ATLAS-through/m-p/179066#M75821</guid>
      <dc:creator>nittala999</dc:creator>
      <dc:date>2018-03-14T19:16:09Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to add a description data in TAGS in ATLAS through CURL</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Unable-to-add-a-description-data-in-TAGS-in-ATLAS-through/m-p/179067#M75822</link>
      <description>&lt;P&gt;Are you trying to add a description to a tag? If so you are using the wrong API. The one you are using is to add tags to entities, like hive tables.&lt;/P&gt;&lt;P&gt;To add a description to a tag you need to use /v2/types/typedefs (POST to add a new tag and PUT to edit an existing one )- see &lt;A href="https://atlas.apache.org/api/v2/ui/index.html#!/TypesREST/resource_TypesREST_createAtlasTypeDefs_POST" target="_blank"&gt;https://atlas.apache.org/api/v2/ui/index.html#!/TypesREST/resource_TypesREST_createAtlasTypeDefs_POST&lt;/A&gt;&lt;/P&gt;&lt;PRE&gt;{
  "classificationDefs":[
    {
      "createdBy": "admin",
      "name": "test_tag_name",
      "description": "Description of your tag",
      "attributeDefs": [
          {
            "name":"attribute_name_1",
            "typeName":"string",
            "isOptional":"true",
            "isUnique":"false",
            "isIndexable":"true",
            "cardinality":"SINGLE"
          },
		  {
            "name":"attribute_name_2",
            "typeName":"string",
            "isOptional":"true",
            "isUnique":"false",
            "isIndexable":"true",
            "cardinality":"SINGLE"
          },
		  {
            "name":"update_date",
            "typeName":"date",
            "isOptional":"true",
            "isUnique":"false",
            "isIndexable":"true",
            "cardinality":"SINGLE"
          }],
     "superTypes": []
    }
  ]
}
&lt;/PRE&gt;</description>
      <pubDate>Wed, 14 Mar 2018 22:48:10 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Unable-to-add-a-description-data-in-TAGS-in-ATLAS-through/m-p/179067#M75822</guid>
      <dc:creator>laura_ngo</dc:creator>
      <dc:date>2018-03-14T22:48:10Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to add a description data in TAGS in ATLAS through CURL</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Unable-to-add-a-description-data-in-TAGS-in-ATLAS-through/m-p/179068#M75823</link>
      <description>&lt;P&gt;&lt;A href="https://community.hortonworks.com/users/3758/laurango.html"&gt;@Laura Ngo&lt;/A&gt; , Thanks for u r quick response,&lt;/P&gt;&lt;P&gt;I tried with&lt;U&gt; POST &lt;/U&gt;and &lt;STRONG&gt;&lt;U&gt;&lt;A href="http://localhost:21000/api/atlas/v2/types/typedefs" target="_blank"&gt;http://localhost:21000/api/atlas/v2/types/typedefs&lt;/A&gt; ,&lt;/U&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Command executed fine and no errors are showing&lt;/P&gt;&lt;P&gt;But new value is not reflected , Still its showing old Typedefs&lt;/P&gt;&lt;P&gt;New Typedef not added&lt;/P&gt;&lt;P&gt;Can you please help on this...!!!&lt;/P&gt;&lt;P&gt;Thanks in Advance&lt;/P&gt;</description>
      <pubDate>Thu, 15 Mar 2018 15:21:31 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Unable-to-add-a-description-data-in-TAGS-in-ATLAS-through/m-p/179068#M75823</guid>
      <dc:creator>nittala999</dc:creator>
      <dc:date>2018-03-15T15:21:31Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to add a description data in TAGS in ATLAS through CURL</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Unable-to-add-a-description-data-in-TAGS-in-ATLAS-through/m-p/179069#M75824</link>
      <description>&lt;P&gt;If you want to change something you need to use PUT. Use POST to add new tags.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Mar 2018 03:16:04 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Unable-to-add-a-description-data-in-TAGS-in-ATLAS-through/m-p/179069#M75824</guid>
      <dc:creator>laura_ngo</dc:creator>
      <dc:date>2018-03-16T03:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to add a description data in TAGS in ATLAS through CURL</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Unable-to-add-a-description-data-in-TAGS-in-ATLAS-through/m-p/179070#M75825</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/3758/laurango.html" nodeid="3758"&gt;@Laura Ngo&lt;/A&gt; , I tried with POST also , Same issue, Its not reflecting&lt;/P&gt;</description>
      <pubDate>Fri, 16 Mar 2018 13:03:56 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Unable-to-add-a-description-data-in-TAGS-in-ATLAS-through/m-p/179070#M75825</guid>
      <dc:creator>nittala999</dc:creator>
      <dc:date>2018-03-16T13:03:56Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to add a description data in TAGS in ATLAS through CURL</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Unable-to-add-a-description-data-in-TAGS-in-ATLAS-through/m-p/179071#M75826</link>
      <description>&lt;P&gt;Do you see any exceptions in the logs? &lt;/P&gt;</description>
      <pubDate>Mon, 19 Mar 2018 01:25:34 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Unable-to-add-a-description-data-in-TAGS-in-ATLAS-through/m-p/179071#M75826</guid>
      <dc:creator>amestry</dc:creator>
      <dc:date>2018-03-19T01:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to add a description data in TAGS in ATLAS through CURL</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Unable-to-add-a-description-data-in-TAGS-in-ATLAS-through/m-p/179072#M75827</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/14489/amestry.html" nodeid="14489"&gt;@Ashutosh Mestry&lt;/A&gt; , Its Syntax Mistake, Now working Fine..Thanks....!!!&lt;/P&gt;</description>
      <pubDate>Tue, 20 Mar 2018 14:28:11 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Unable-to-add-a-description-data-in-TAGS-in-ATLAS-through/m-p/179072#M75827</guid>
      <dc:creator>nittala999</dc:creator>
      <dc:date>2018-03-20T14:28:11Z</dc:date>
    </item>
  </channel>
</rss>

