Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(all): auto-regenerate discovery clients #1550

Merged
merged 1 commit into from May 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
107 changes: 105 additions & 2 deletions alertcenter/v1beta1/alertcenter-api.json
Expand Up @@ -12,7 +12,7 @@
"baseUrl": "https://alertcenter.googleapis.com/",
"batchPath": "batch",
"canonicalName": "AlertCenter",
"description": "Manages alerts on issues affecting your domain.",
"description": "Manages alerts on issues affecting your domain. Note: The current version of this API (v1beta1) is available to all Google Workspace customers. ",
"discoveryVersion": "v1",
"documentationLink": "https://developers.google.com/admin-sdk/alertcenter/",
"fullyEncodeReservedExpansion": true,
Expand Down Expand Up @@ -423,7 +423,7 @@
}
}
},
"revision": "20220321",
"revision": "20220516",
"rootUrl": "https://alertcenter.googleapis.com/",
"schemas": {
"AccountSuspensionDetails": {
Expand Down Expand Up @@ -1368,6 +1368,25 @@
},
"type": "object"
},
"PrimaryAdminChangedEvent": {
"description": "Event occurred when primary admin changed in customer's account. The event are being received from insight forwarder",
"id": "PrimaryAdminChangedEvent",
"properties": {
"domain": {
"description": "domain in which actioned occurred",
"type": "string"
},
"previousAdminEmail": {
"description": "Email of person who was the primary admin before the action",
"type": "string"
},
"updatedAdminEmail": {
"description": "Email of person who is the primary admin after the action",
"type": "string"
}
},
"type": "object"
},
"ReportingRule": {
"description": "Alerts from Reporting Rules configured by Admin.",
"id": "ReportingRule",
Expand Down Expand Up @@ -1552,6 +1571,79 @@
},
"type": "object"
},
"SSOProfileCreatedEvent": {
"description": "Event occurred when SSO Profile created in customer's account. The event are being received from insight forwarder",
"id": "SSOProfileCreatedEvent",
"properties": {
"inboundSsoProfileName": {
"description": "sso profile name which got created",
"type": "string"
}
},
"type": "object"
},
"SSOProfileDeletedEvent": {
"description": "Event occurred when SSO Profile deleted in customer's account. The event are being received from insight forwarder",
"id": "SSOProfileDeletedEvent",
"properties": {
"inboundSsoProfileName": {
"description": "sso profile name which got deleted",
"type": "string"
}
},
"type": "object"
},
"SSOProfileUpdatedEvent": {
"description": "Event occurred when SSO Profile updated in customer's account. The event are being received from insight forwarder",
"id": "SSOProfileUpdatedEvent",
"properties": {
"inboundSsoProfileChanges": {
"description": "changes made to sso profile",
"type": "string"
},
"inboundSsoProfileName": {
"description": "sso profile name which got updated",
"type": "string"
}
},
"type": "object"
},
"SensitiveAdminAction": {
"description": "Alert that is triggered when Sensitive Admin Action occur in customer account.",
"id": "SensitiveAdminAction",
"properties": {
"actorEmail": {
"description": "Email of person who performed the action",
"type": "string"
},
"eventTime": {
"description": "The time at which event occurred",
"format": "google-datetime",
"type": "string"
},
"primaryAdminChangedEvent": {
"$ref": "PrimaryAdminChangedEvent",
"description": "Event occurred when primary admin changed in customer's account"
},
"ssoProfileCreatedEvent": {
"$ref": "SSOProfileCreatedEvent",
"description": "Event occurred when SSO Profile created in customer's account"
},
"ssoProfileDeletedEvent": {
"$ref": "SSOProfileDeletedEvent",
"description": "Event occurred when SSO Profile deleted in customer's account"
},
"ssoProfileUpdatedEvent": {
"$ref": "SSOProfileUpdatedEvent",
"description": "Event occurred when SSO Profile updated in customer's account"
},
"superAdminPasswordResetEvent": {
"$ref": "SuperAdminPasswordResetEvent",
"description": "Event occurred when password was reset for super admin in customer's account"
}
},
"type": "object"
},
"Settings": {
"description": "Customer-level settings.",
"id": "Settings",
Expand Down Expand Up @@ -1604,6 +1696,17 @@
},
"type": "object"
},
"SuperAdminPasswordResetEvent": {
"description": "Event occurred when password was reset for super admin in customer's account. The event are being received from insight forwarder",
"id": "SuperAdminPasswordResetEvent",
"properties": {
"userEmail": {
"description": "email of person whose password was reset",
"type": "string"
}
},
"type": "object"
},
"SuspiciousActivity": {
"description": "A mobile suspicious activity alert. Derived from audit logs.",
"id": "SuspiciousActivity",
Expand Down
219 changes: 219 additions & 0 deletions alertcenter/v1beta1/alertcenter-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.