@@ -123,6 +123,11 @@ class ActivityEntityType:
123123 PEERING_GROUP_NODE = "peering_group_node"
124124 PEERING_GROUP_RESOURCE = "peering_group_resource"
125125 PEERING_GROUP_PEER = "peering_group_peer"
126+ ORG_INTEGRATION = "org_integration"
127+ CREDENTIAL = "credential"
128+ CERTIFICATE_AUTHORITY = "certificate_authority"
129+ POLICY = "policy"
130+ PROXY_CLUSTER_KEY = "proxy_cluster_key"
126131
127132
128133# Activity Verbs, describe which kind of activity has taken place.
@@ -321,12 +326,28 @@ class ActivityVerb:
321326 RESOURCE_UNLOCKED = "user unlocked a resource"
322327 RESOURCE_FORCE_UNLOCKED = "admin force-unlocked a resource"
323328 CONCURRENT_AUTHENTICATION_REVOKED_PER_ORG_SETTING = "concurrent authentications revoked per organization settings"
329+ PEERING_GROUP_TOGGLED = "peering group toggled"
330+ PEERING_GROUP_CREATED = "peering group created"
331+ PEERING_GROUP_DELETED = "peering group deleted"
332+ PEERING_GROUP_LINKED = "peering groups linked"
333+ PEERING_GROUP_UNLINKED = "peering groups unlinked"
334+ PEERING_GROUP_ATTACHED = "entity attached to peering group"
335+ PEERING_GROUP_DETACHED = "entity detached from peering group"
324336 ORG_INTEGRATION_INSTALLED = "org integration installed"
325337 USER_INTEGRATION_AUTHORIZED = "user authorized integration"
326338 ORG_INTEGRATION_UNINSTALLED = "org integration uninstalled"
327339 USER_INTEGRATION_DEAUTHORIZED = "user deauthorized integration"
328340 SERVICE_NOW_TOKEN_ADDED = "ServiceNow token created"
329341 SERVICE_NOW_TOKEN_DELETED = "ServiceNow token deleted"
342+ CREDENTIAL_CREATED = "credential created"
343+ CREDENTIAL_DELETED = "credential deleted"
344+ CERTIFICATE_AUTHORITY_UPDATED = "certificate authority updated"
345+ POLICY_CREATED = "policy created"
346+ POLICY_UPDATED = "policy updated"
347+ POLICY_DELETED = "policy deleted"
348+ AUTHENTICATION_REVOKED_BY_POLICY = "authentication revoked by policy"
349+ PROXY_CLUSTER_KEY_CREATED = "proxy cluster key created"
350+ PROXY_CLUSTER_KEY_DELETED = "proxy cluster key deleted"
330351 MANAGED_SECRET_CREATED = "managed secret created"
331352 MANAGED_SECRET_UPDATED = "managed secret updated"
332353 MANAGED_SECRET_EXPIRATION_TIME_UPDATED = "managed secret expiration time updated"
@@ -418,6 +439,8 @@ class Permission:
418439 BILLING_READ = "billing:read"
419440 CREDENTIAL_READ = "credential:read"
420441 CREDENTIAL_WRITE = "credential:write"
442+ POLICY_READ = "policy:read"
443+ POLICY_WRITE = "policy:write"
421444 MANAGED_SECRET_CREATE = "managedsecret:create"
422445 MANAGED_SECRET_LIST = "managedsecret:list"
423446 MANAGED_SECRET_DELETE = "managedsecret:delete"
0 commit comments