GET Events/GetRegistryEventPermissions?registryID={registryID}

Returns all of the events for the specified registry

Request Information

URI Parameters

NameDescriptionTypeAdditional information
registryID

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Collection of RegistryEventDTO
NameDescriptionTypeAdditional information
RegistryID

ID of the Registry

globally unique identifier

None.

SecurityGroupID

ID of Security Group

globally unique identifier

None.

SecurityGroup

Security Group

string

None.

Allowed

Determines that the Security Group is Allowed

boolean

None.

Overridden

Determines that the Security Group is Overridden

boolean

None.

EventID

ID of an Event

globally unique identifier

None.

Event

Event

string

None.

Response Formats

application/json, text/json

Sample:
{
  "results": [
    {
      "RegistryID": "34e6e251-0854-4310-94e3-96f2409cfe27",
      "SecurityGroupID": "05876405-00c4-446f-b775-139141554b91",
      "SecurityGroup": "sample string 3",
      "Allowed": true,
      "Overridden": true,
      "EventID": "030b8663-fdd2-4edb-af4b-1475414cff20",
      "Event": "sample string 6"
    },
    {
      "RegistryID": "34e6e251-0854-4310-94e3-96f2409cfe27",
      "SecurityGroupID": "05876405-00c4-446f-b775-139141554b91",
      "SecurityGroup": "sample string 3",
      "Allowed": true,
      "Overridden": true,
      "EventID": "030b8663-fdd2-4edb-af4b-1475414cff20",
      "Event": "sample string 6"
    }
  ]
}

text/javascript

Sample:
{"results":[{"RegistryID":"34e6e251-0854-4310-94e3-96f2409cfe27","SecurityGroupID":"05876405-00c4-446f-b775-139141554b91","SecurityGroup":"sample string 3","Allowed":true,"Overridden":true,"EventID":"030b8663-fdd2-4edb-af4b-1475414cff20","Event":"sample string 6"},{"RegistryID":"34e6e251-0854-4310-94e3-96f2409cfe27","SecurityGroupID":"05876405-00c4-446f-b775-139141554b91","SecurityGroup":"sample string 3","Allowed":true,"Overridden":true,"EventID":"030b8663-fdd2-4edb-af4b-1475414cff20","Event":"sample string 6"}]}

application/bson

Sample:
Binary JSON content. See http://bsonspec.org for details.

application/xml, text/xml

Sample:
<ArrayOfRegistryEventDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Lpp.Dns.DTO">
  <RegistryEventDTO>
    <Allowed>true</Allowed>
    <Event>sample string 6</Event>
    <EventID>030b8663-fdd2-4edb-af4b-1475414cff20</EventID>
    <Overridden>true</Overridden>
    <SecurityGroup>sample string 3</SecurityGroup>
    <SecurityGroupID>05876405-00c4-446f-b775-139141554b91</SecurityGroupID>
    <RegistryID>34e6e251-0854-4310-94e3-96f2409cfe27</RegistryID>
  </RegistryEventDTO>
  <RegistryEventDTO>
    <Allowed>true</Allowed>
    <Event>sample string 6</Event>
    <EventID>030b8663-fdd2-4edb-af4b-1475414cff20</EventID>
    <Overridden>true</Overridden>
    <SecurityGroup>sample string 3</SecurityGroup>
    <SecurityGroupID>05876405-00c4-446f-b775-139141554b91</SecurityGroupID>
    <RegistryID>34e6e251-0854-4310-94e3-96f2409cfe27</RegistryID>
  </RegistryEventDTO>
</ArrayOfRegistryEventDTO>