|
256 | 256 | from stripe.events._v2_core_health_webhook_latency_resolved_event import ( |
257 | 257 | V2CoreHealthWebhookLatencyResolvedEventNotification, |
258 | 258 | ) |
| 259 | + from stripe.events._v2_iam_api_key_created_event import ( |
| 260 | + V2IamApiKeyCreatedEventNotification, |
| 261 | + ) |
| 262 | + from stripe.events._v2_iam_api_key_default_secret_revealed_event import ( |
| 263 | + V2IamApiKeyDefaultSecretRevealedEventNotification, |
| 264 | + ) |
| 265 | + from stripe.events._v2_iam_api_key_expired_event import ( |
| 266 | + V2IamApiKeyExpiredEventNotification, |
| 267 | + ) |
| 268 | + from stripe.events._v2_iam_api_key_permissions_updated_event import ( |
| 269 | + V2IamApiKeyPermissionsUpdatedEventNotification, |
| 270 | + ) |
| 271 | + from stripe.events._v2_iam_api_key_rotated_event import ( |
| 272 | + V2IamApiKeyRotatedEventNotification, |
| 273 | + ) |
| 274 | + from stripe.events._v2_iam_api_key_updated_event import ( |
| 275 | + V2IamApiKeyUpdatedEventNotification, |
| 276 | + ) |
259 | 277 | from stripe.events._v2_money_management_adjustment_created_event import ( |
260 | 278 | V2MoneyManagementAdjustmentCreatedEventNotification, |
261 | 279 | ) |
|
741 | 759 | "stripe.events._v2_core_health_webhook_latency_resolved_event", |
742 | 760 | "V2CoreHealthWebhookLatencyResolvedEvent", |
743 | 761 | ), |
| 762 | + "v2.iam.api_key.created": ( |
| 763 | + "stripe.events._v2_iam_api_key_created_event", |
| 764 | + "V2IamApiKeyCreatedEvent", |
| 765 | + ), |
| 766 | + "v2.iam.api_key.default_secret_revealed": ( |
| 767 | + "stripe.events._v2_iam_api_key_default_secret_revealed_event", |
| 768 | + "V2IamApiKeyDefaultSecretRevealedEvent", |
| 769 | + ), |
| 770 | + "v2.iam.api_key.expired": ( |
| 771 | + "stripe.events._v2_iam_api_key_expired_event", |
| 772 | + "V2IamApiKeyExpiredEvent", |
| 773 | + ), |
| 774 | + "v2.iam.api_key.permissions_updated": ( |
| 775 | + "stripe.events._v2_iam_api_key_permissions_updated_event", |
| 776 | + "V2IamApiKeyPermissionsUpdatedEvent", |
| 777 | + ), |
| 778 | + "v2.iam.api_key.rotated": ( |
| 779 | + "stripe.events._v2_iam_api_key_rotated_event", |
| 780 | + "V2IamApiKeyRotatedEvent", |
| 781 | + ), |
| 782 | + "v2.iam.api_key.updated": ( |
| 783 | + "stripe.events._v2_iam_api_key_updated_event", |
| 784 | + "V2IamApiKeyUpdatedEvent", |
| 785 | + ), |
744 | 786 | "v2.money_management.adjustment.created": ( |
745 | 787 | "stripe.events._v2_money_management_adjustment_created_event", |
746 | 788 | "V2MoneyManagementAdjustmentCreatedEvent", |
@@ -1288,6 +1330,30 @@ def get_v2_event_class(type_: str): |
1288 | 1330 | "stripe.events._v2_core_health_webhook_latency_resolved_event", |
1289 | 1331 | "V2CoreHealthWebhookLatencyResolvedEventNotification", |
1290 | 1332 | ), |
| 1333 | + "v2.iam.api_key.created": ( |
| 1334 | + "stripe.events._v2_iam_api_key_created_event", |
| 1335 | + "V2IamApiKeyCreatedEventNotification", |
| 1336 | + ), |
| 1337 | + "v2.iam.api_key.default_secret_revealed": ( |
| 1338 | + "stripe.events._v2_iam_api_key_default_secret_revealed_event", |
| 1339 | + "V2IamApiKeyDefaultSecretRevealedEventNotification", |
| 1340 | + ), |
| 1341 | + "v2.iam.api_key.expired": ( |
| 1342 | + "stripe.events._v2_iam_api_key_expired_event", |
| 1343 | + "V2IamApiKeyExpiredEventNotification", |
| 1344 | + ), |
| 1345 | + "v2.iam.api_key.permissions_updated": ( |
| 1346 | + "stripe.events._v2_iam_api_key_permissions_updated_event", |
| 1347 | + "V2IamApiKeyPermissionsUpdatedEventNotification", |
| 1348 | + ), |
| 1349 | + "v2.iam.api_key.rotated": ( |
| 1350 | + "stripe.events._v2_iam_api_key_rotated_event", |
| 1351 | + "V2IamApiKeyRotatedEventNotification", |
| 1352 | + ), |
| 1353 | + "v2.iam.api_key.updated": ( |
| 1354 | + "stripe.events._v2_iam_api_key_updated_event", |
| 1355 | + "V2IamApiKeyUpdatedEventNotification", |
| 1356 | + ), |
1291 | 1357 | "v2.money_management.adjustment.created": ( |
1292 | 1358 | "stripe.events._v2_money_management_adjustment_created_event", |
1293 | 1359 | "V2MoneyManagementAdjustmentCreatedEventNotification", |
@@ -1586,6 +1652,12 @@ def get_v2_event_notification_class(type_: str): |
1586 | 1652 | "V2CoreHealthTrafficVolumeDropResolvedEventNotification", |
1587 | 1653 | "V2CoreHealthWebhookLatencyFiringEventNotification", |
1588 | 1654 | "V2CoreHealthWebhookLatencyResolvedEventNotification", |
| 1655 | + "V2IamApiKeyCreatedEventNotification", |
| 1656 | + "V2IamApiKeyDefaultSecretRevealedEventNotification", |
| 1657 | + "V2IamApiKeyExpiredEventNotification", |
| 1658 | + "V2IamApiKeyPermissionsUpdatedEventNotification", |
| 1659 | + "V2IamApiKeyRotatedEventNotification", |
| 1660 | + "V2IamApiKeyUpdatedEventNotification", |
1589 | 1661 | "V2MoneyManagementAdjustmentCreatedEventNotification", |
1590 | 1662 | "V2MoneyManagementFinancialAccountCreatedEventNotification", |
1591 | 1663 | "V2MoneyManagementFinancialAccountUpdatedEventNotification", |
|
0 commit comments