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 cert status date"

From EGIWiki
< GOCDB‎ | PI
Jump to navigation Jump to search
(Created page with 'todo')
 
Line 1: Line 1:
todo
== Method: get_cert_status_date - GOCDB4 ==
 
{| {{egi-table}}
|-
| '''Description''' || Returns a list of current certification statuses for Production sites and the date they entered that status
|-
| '''Protection Level''' || Protected (level 2)
|}
 
=== Entry point ===
 
* https://goc.gridops.org/gocdbpi/private/?method=get_cert_status_date
 
=== parameters ===
 
{| {{egi-table}}
! parameter !! effect !! format/value(s) !! default !! example
|-
| status || Limit results to sites with given certification status || one of "Candidate", "Uncertified", "Certified", "Closed", Suspended" || all || ?method=get_cert_status_date&status=Suspended
|}
 
=== Output Example ===
 
<?xml version="1.0" encoding="UTF-8"?>
<results>
  <site>
    <name>SOME_SITE</name>
    <cert_status>Suspended</cert_status>
    <cert_date>21-MAR-11 03.20.22.000000 PM</cert_date>
  </site>
</results>
 
 
[[GOCDB/PI/Technical_Documentation|Back to GOCDB technical Documentation main page]]

Revision as of 13:48, 13 May 2011

Method: get_cert_status_date - GOCDB4

Description Returns a list of current certification statuses for Production sites and the date they entered that status
Protection Level Protected (level 2)

Entry point

parameters

parameter effect format/value(s) default example
status Limit results to sites with given certification status one of "Candidate", "Uncertified", "Certified", "Closed", Suspended" all ?method=get_cert_status_date&status=Suspended

Output Example

<?xml version="1.0" encoding="UTF-8"?>
<results>
  <site>
    <name>SOME_SITE</name>
    <cert_status>Suspended</cert_status>
    <cert_date>21-MAR-11 03.20.22.000000 PM</cert_date>
  </site>
</results>


Back to GOCDB technical Documentation main page