Get Group Members

get

/serviceapi/entityModel/uds/groups/{groupName}/members

Retrieves the members of a tag-based group.

Request

Supported Media Types
Path Parameters
Query Parameters
Back to Top

Response

Supported Media Types

200 Response

successful operation
Body ()
Root Schema : ItemListUdsManageableEntity
Type: object
Show Source
Nested Schema : items
Type: array
The items
Show Source
  • UdsManageableEntity

    This model describes an entity managed by Oracle Management Cloud. An entity is defined by its name and type. It can have a different display name than the entity name. The display name is used in the GUI to display the entity. There can be associations to other entities and an entity can be tagged by a key/value pair.

Nested Schema : UdsManageableEntity
Type: object

This model describes an entity managed by Oracle Management Cloud. An entity is defined by its name and type. It can have a different display name than the entity name. The display name is used in the GUI to display the entity. There can be associations to other entities and an entity can be tagged by a key/value pair.

Show Source
Nested Schema : associations
Type: array
The associated entities
Show Source
  • UdsAssociation

    This model describes an association between two or more entities. An entity can have associations to other entities which are called associates.

Nested Schema : properties
Type: object
Additional Properties Allowed
Show Source
The properties assigned to the entity
Nested Schema : tags
Type: object
Additional Properties Allowed
Show Source
The tags assigned to the entity
Nested Schema : UdsAssociation
Type: object

This model describes an association between two or more entities. An entity can have associations to other entities which are called associates.

Show Source
Nested Schema : tags
Type: object
Additional Properties Allowed
Show Source
The association tags
Back to Top

Examples

Get all the members of Group MyMarketingEntities:

curl -u ${OMC_USERNAME}:${PASSWORD} -X GET "https://serverurl/serviceapi/entityModel/uds/groups/MyMarketingEntities/members"

Result might look like

{
  "count": 2,
  "items": [
    {
      "entityType": "MyHostType",
      "entityName": "MyHostBosMarketing",
      "entityDisplayName": "MyHostBosMarketing",
      "tags": {
        "loc": "bos",
        "org": "marketing"
      },
      "typeDisplayName": "MyHostType"
    },
    {
      "entityType": "MyHostType",
      "entityName": "MyHostSfoMarketing",
      "entityDisplayName": "MyHostSfoMarketing",
      "tags": {
        "loc": "sfo",
        "org": "marketing"
      },
      "typeDisplayName": "MyHostType"
    }
  ]
}
Back to Top