Managing Entitlements Sets
Administrative APIs for managing entitlements sets
Common Entitlements Sets Types
# An entitlement
type Entitlement {
# Name of the entitlement
name: String!
# Optional description of the entitlement
description: String
# Value of the entitlement. Type Float to allow for values
# values larger than possible with Int. Value is a
# positive integer.
value: Float!
}
# A set of entitlements
type EntitlementsSet {
# Time of initial creation of an entitlements set in milliseconds
# since epoch. Number is integral, float type provides sufficient
# precision.
createdAtEpochMs: Float!
# Time of most recent update of an entitlements set in milliseconds
# since epoch. Number is integral, float type provides sufficient
# precision.
updatedAtEpochMs: Float!
# Version of the entitlements set. Incremented each time an update is made.
version: Int!
# Name of the entitlements set.
name: String!
# Optional description of the entitlements set.
description: String
# Entitlements conferred by this entitlements set.
entitlements: [Entitlement!]!
}Add a New Entitlements Set
Possible Errors
Get an Entitlements Set
Possible Errors
List all Entitlements Sets
Possible Errors
Update an Existing Entitlements Set
Possible Errors
Remove an Entitlements Set
Possible Errors
Last updated