Skip to content

Commit 2bbca8f

Browse files
feat(alertcenter): update the api
#### alertcenter:v1beta1 The following keys were added: - schemas.PrimaryAdminChangedEvent (Total Keys: 5) - schemas.SSOProfileCreatedEvent (Total Keys: 3) - schemas.SSOProfileDeletedEvent (Total Keys: 3) - schemas.SSOProfileUpdatedEvent (Total Keys: 4) - schemas.SensitiveAdminAction (Total Keys: 10) - schemas.SuperAdminPasswordResetEvent (Total Keys: 3)
1 parent 96c1b90 commit 2bbca8f

File tree

1 file changed

+105
-2
lines changed

1 file changed

+105
-2
lines changed

googleapiclient/discovery_cache/documents/alertcenter.v1beta1.json

Lines changed: 105 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"baseUrl": "https://alertcenter.googleapis.com/",
1313
"batchPath": "batch",
1414
"canonicalName": "AlertCenter",
15-
"description": "Manages alerts on issues affecting your domain.",
15+
"description": "Manages alerts on issues affecting your domain. Note: The current version of this API (v1beta1) is available to all Google Workspace customers. ",
1616
"discoveryVersion": "v1",
1717
"documentationLink": "https://developers.google.com/admin-sdk/alertcenter/",
1818
"fullyEncodeReservedExpansion": true,
@@ -423,7 +423,7 @@
423423
}
424424
}
425425
},
426-
"revision": "20220509",
426+
"revision": "20220516",
427427
"rootUrl": "https://alertcenter.googleapis.com/",
428428
"schemas": {
429429
"AccountSuspensionDetails": {
@@ -1368,6 +1368,25 @@
13681368
},
13691369
"type": "object"
13701370
},
1371+
"PrimaryAdminChangedEvent": {
1372+
"description": "Event occurred when primary admin changed in customer's account. The event are being received from insight forwarder",
1373+
"id": "PrimaryAdminChangedEvent",
1374+
"properties": {
1375+
"domain": {
1376+
"description": "domain in which actioned occurred",
1377+
"type": "string"
1378+
},
1379+
"previousAdminEmail": {
1380+
"description": "Email of person who was the primary admin before the action",
1381+
"type": "string"
1382+
},
1383+
"updatedAdminEmail": {
1384+
"description": "Email of person who is the primary admin after the action",
1385+
"type": "string"
1386+
}
1387+
},
1388+
"type": "object"
1389+
},
13711390
"ReportingRule": {
13721391
"description": "Alerts from Reporting Rules configured by Admin.",
13731392
"id": "ReportingRule",
@@ -1552,6 +1571,79 @@
15521571
},
15531572
"type": "object"
15541573
},
1574+
"SSOProfileCreatedEvent": {
1575+
"description": "Event occurred when SSO Profile created in customer's account. The event are being received from insight forwarder",
1576+
"id": "SSOProfileCreatedEvent",
1577+
"properties": {
1578+
"inboundSsoProfileName": {
1579+
"description": "sso profile name which got created",
1580+
"type": "string"
1581+
}
1582+
},
1583+
"type": "object"
1584+
},
1585+
"SSOProfileDeletedEvent": {
1586+
"description": "Event occurred when SSO Profile deleted in customer's account. The event are being received from insight forwarder",
1587+
"id": "SSOProfileDeletedEvent",
1588+
"properties": {
1589+
"inboundSsoProfileName": {
1590+
"description": "sso profile name which got deleted",
1591+
"type": "string"
1592+
}
1593+
},
1594+
"type": "object"
1595+
},
1596+
"SSOProfileUpdatedEvent": {
1597+
"description": "Event occurred when SSO Profile updated in customer's account. The event are being received from insight forwarder",
1598+
"id": "SSOProfileUpdatedEvent",
1599+
"properties": {
1600+
"inboundSsoProfileChanges": {
1601+
"description": "changes made to sso profile",
1602+
"type": "string"
1603+
},
1604+
"inboundSsoProfileName": {
1605+
"description": "sso profile name which got updated",
1606+
"type": "string"
1607+
}
1608+
},
1609+
"type": "object"
1610+
},
1611+
"SensitiveAdminAction": {
1612+
"description": "Alert that is triggered when Sensitive Admin Action occur in customer account.",
1613+
"id": "SensitiveAdminAction",
1614+
"properties": {
1615+
"actorEmail": {
1616+
"description": "Email of person who performed the action",
1617+
"type": "string"
1618+
},
1619+
"eventTime": {
1620+
"description": "The time at which event occurred",
1621+
"format": "google-datetime",
1622+
"type": "string"
1623+
},
1624+
"primaryAdminChangedEvent": {
1625+
"$ref": "PrimaryAdminChangedEvent",
1626+
"description": "Event occurred when primary admin changed in customer's account"
1627+
},
1628+
"ssoProfileCreatedEvent": {
1629+
"$ref": "SSOProfileCreatedEvent",
1630+
"description": "Event occurred when SSO Profile created in customer's account"
1631+
},
1632+
"ssoProfileDeletedEvent": {
1633+
"$ref": "SSOProfileDeletedEvent",
1634+
"description": "Event occurred when SSO Profile deleted in customer's account"
1635+
},
1636+
"ssoProfileUpdatedEvent": {
1637+
"$ref": "SSOProfileUpdatedEvent",
1638+
"description": "Event occurred when SSO Profile updated in customer's account"
1639+
},
1640+
"superAdminPasswordResetEvent": {
1641+
"$ref": "SuperAdminPasswordResetEvent",
1642+
"description": "Event occurred when password was reset for super admin in customer's account"
1643+
}
1644+
},
1645+
"type": "object"
1646+
},
15551647
"Settings": {
15561648
"description": "Customer-level settings.",
15571649
"id": "Settings",
@@ -1604,6 +1696,17 @@
16041696
},
16051697
"type": "object"
16061698
},
1699+
"SuperAdminPasswordResetEvent": {
1700+
"description": "Event occurred when password was reset for super admin in customer's account. The event are being received from insight forwarder",
1701+
"id": "SuperAdminPasswordResetEvent",
1702+
"properties": {
1703+
"userEmail": {
1704+
"description": "email of person whose password was reset",
1705+
"type": "string"
1706+
}
1707+
},
1708+
"type": "object"
1709+
},
16071710
"SuspiciousActivity": {
16081711
"description": "A mobile suspicious activity alert. Derived from audit logs.",
16091712
"id": "SuspiciousActivity",

0 commit comments

Comments
 (0)