Alert.png The wiki is deprecated and due to be decommissioned by the end of September 2022.
The content is being migrated to other supports, new updates will be ignored and lost.
If needed you can get in touch with EGI SDIS team using operations @ egi.eu.

Difference between revisions of "GOCDB/PI/get site method"

From EGIWiki
< GOCDB‎ | PI
Jump to navigation Jump to search
Line 90: Line 90:


=== Output Example ===
=== Output Example ===
 
<Source lang="XML">
  <?xml version="1.0"?>
  <?xml version="1.0"?>
  <results>
  <results>
Line 129: Line 129:
   </SITE>
   </SITE>
  </results>
  </results>
</Source>


[[GOCDB/PI/Technical_Documentation|Back to GOCDB technical Documentation main page]]
[[GOCDB/PI/Technical_Documentation|Back to GOCDB technical Documentation main page]]

Revision as of 15:54, 11 March 2014

Main EGI.eu operations services Support Documentation Tools Activities Performance Technology Catch-all Services Resource Allocation Security


GOC DB menu: Home Documentation Index


Method: get_site - GOCDB4

Description Returns site information including contacts, grouped by site
Protection Level Protected (level 2)

Entry point

parameters

parameter effect format/value(s) default example
sitename Only return infos for site with specified site name any sitename all  ?method=get_site&sitename=RAL-LCG2
roc (ngi) Limit results to sites belonging to given NGI any NGI name all  ?method=get_site&roc=NGI_DE
country Limit results to sites belonging to given country any country all  ?method=get_site&country=Poland
certification_status Limit results to sites with given certification status one of "Candidate", "Uncertified", "Certified", "Closed", Suspended" all  ?method=get_site&certification_status=Certified
exclude_certification_status Exclude from results sites with given certification status one of "Candidate", "Uncertified", "Certified", "Closed", Suspended" none  ?method=get_site&exclude_certification_status=Closed
production_status Limit results to sites within given production infrastructure one of "Production", "Test" "PPS","SC" all  ?method=get_site&production_status=Production
scope Show only sites with the requested scope-tags (Local and EGI are currently the only available scopes) A comma separated list of scope-tag values or an empty value to return all scopes, i.e. '&scope=' EGI  ?method=get_site&scope=Local
scope_match Match 'all' or 'any' of the specified scope-tags 'all' or 'any' all  ?method=get_site&scope=Local,EGI&scope_match=any
extensions Limit results by one or many key value pairs See Extensions Mechanism none  ?method=get_site&extensions=(KeyName=KeyValue)


Output Example

 <?xml version="1.0"?>
 <results>
  <SITE ID="1" PRIMARY_KEY="194G0" NAME="RAL-LCG2">
   <PRIMARY_KEY>194G0</PRIMARY_KEY>
   <SHORT_NAME>RAL-LCG2</SHORT_NAME>
   <GOCDB_PORTAL_URL>
    <nowiki>https://next.gocdb.eu/portal/index.php?Page_Type=View_Object&object_id=1133&grid_id=0</nowiki>
   </GOCDB_PORTAL_URL>
   <OFFICIAL_NAME>RAL, GridPP Tier-1 Computing, Oxfordshire UK</OFFICIAL_NAME>
   <SITE_DESCRIPTION>Rutherford Appleton Laboratory - Tier1</SITE_DESCRIPTION>
   <HOME_URL><nowiki>http://mywebsite.com</nowiki></HOME_URL>
   <CONTACT_EMAIL>contact@demo.com</CONTACT_EMAIL>
   <CONTACT_TEL>+44 (0) 1235 446777 </CONTACT_TEL>
   <ALARM_EMAIL>alarm@demo.com</ALARM_EMAIL>
   <GIIS_URL> ldap://site-bdii.gridpp.rl.ac.uk:2170/mds-vo-name=RAL-LCG2,o=grid
   </GIIS_URL>
   <TIER>2</TIER>
   <COUNTRY_CODE>GB</COUNTRY_CODE>
   <COUNTRY>United Kingdom</COUNTRY>
   <ROC>UKI</ROC>
   <SUBGRID>Tier1A</SUBGRID>
   <PRODUCTION_INFRASTRUCTURE>Production</PRODUCTION_INFRASTRUCTURE>
   <CERTIFICATION_STATUS>Certified</CERTIFICATION_STATUS>
   <TIMEZONE>Europe/London</TIMEZONE>
   <LATITUDE>51</LATITUDE>
   <LONGITUDE>-1</LONGITUDE>
   <DOMAIN>
    <DOMAIN_NAME>gridpp.rl.ac.uk</DOMAIN_NAME>
   </DOMAIN>
   <EXTENSIONS>                       <!-- note, EXTENSIONS value can be empty e.g: <EXTENSIONS/> -->
       <EXTENSION>
       <LOCAL_ID>01</LOCAL_ID>
       <KEY>VO</KEY>
       <VALUE>LHCB</VALUE>
       </EXTENSION>
   </EXTENSIONS>
  </SITE>
 </results>

Back to GOCDB technical Documentation main page