boto3-pydantic-codestar-notifications 1.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- boto3_pydantic_codestar_notifications/__init__.py +0 -0
- boto3_pydantic_codestar_notifications/base_validator_model.py +18 -0
- boto3_pydantic_codestar_notifications/codestar_notifications_classes.py +214 -0
- boto3_pydantic_codestar_notifications/codestar_notifications_constants.py +18 -0
- boto3_pydantic_codestar_notifications-1.0.0.dist-info/METADATA +35 -0
- boto3_pydantic_codestar_notifications-1.0.0.dist-info/RECORD +7 -0
- boto3_pydantic_codestar_notifications-1.0.0.dist-info/WHEEL +4 -0
File without changes
|
@@ -0,0 +1,18 @@
|
|
1
|
+
from pydantic import BaseModel
|
2
|
+
from botocore.eventstream import EventStream as BaseEventStream
|
3
|
+
from typing import Generic, TypeVar
|
4
|
+
|
5
|
+
|
6
|
+
class BaseValidatorModel(BaseModel):
|
7
|
+
class Config:
|
8
|
+
arbitrary_types_allowed = True
|
9
|
+
exclude_none = True
|
10
|
+
|
11
|
+
|
12
|
+
T = TypeVar("T")
|
13
|
+
class EventStream(BaseEventStream, Generic[T]):
|
14
|
+
"""
|
15
|
+
Generic wrapper around the original EventStream
|
16
|
+
so that Pydantic sees it as subscriptable (EventStream[T]).
|
17
|
+
"""
|
18
|
+
pass
|
@@ -0,0 +1,214 @@
|
|
1
|
+
from typing import Any, Dict, IO, List, Literal, Mapping, Optional, Sequence, Union
|
2
|
+
from datetime import datetime
|
3
|
+
from pydantic import BaseModel, Field
|
4
|
+
from botocore.response import StreamingBody
|
5
|
+
from aws_resource_validator.pydantic_models.codestar_notifications.codestar_notifications_constants import *
|
6
|
+
from ..base_validator_model import BaseValidatorModel, EventStream
|
7
|
+
|
8
|
+
|
9
|
+
|
10
|
+
|
11
|
+
class Target(BaseValidatorModel):
|
12
|
+
TargetType: Optional[str] = None
|
13
|
+
TargetAddress: Optional[str] = None
|
14
|
+
|
15
|
+
|
16
|
+
class ResponseMetadata(BaseValidatorModel):
|
17
|
+
RequestId: str
|
18
|
+
HTTPStatusCode: int
|
19
|
+
HTTPHeaders: Dict[str, str]
|
20
|
+
RetryAttempts: int
|
21
|
+
HostId: Optional[str] = None
|
22
|
+
|
23
|
+
|
24
|
+
class DeleteNotificationRuleRequest(BaseValidatorModel):
|
25
|
+
Arn: str
|
26
|
+
|
27
|
+
|
28
|
+
class DeleteTargetRequest(BaseValidatorModel):
|
29
|
+
TargetAddress: str
|
30
|
+
ForceUnsubscribeAll: Optional[bool] = None
|
31
|
+
|
32
|
+
|
33
|
+
class DescribeNotificationRuleRequest(BaseValidatorModel):
|
34
|
+
Arn: str
|
35
|
+
|
36
|
+
|
37
|
+
class EventTypeSummary(BaseValidatorModel):
|
38
|
+
EventTypeId: Optional[str] = None
|
39
|
+
ServiceName: Optional[str] = None
|
40
|
+
EventTypeName: Optional[str] = None
|
41
|
+
ResourceType: Optional[str] = None
|
42
|
+
|
43
|
+
|
44
|
+
class TargetSummary(BaseValidatorModel):
|
45
|
+
TargetAddress: Optional[str] = None
|
46
|
+
TargetType: Optional[str] = None
|
47
|
+
TargetStatus: Optional[TargetStatusType] = None
|
48
|
+
|
49
|
+
|
50
|
+
class ListEventTypesFilter(BaseValidatorModel):
|
51
|
+
Name: ListEventTypesFilterNameType
|
52
|
+
Value: str
|
53
|
+
|
54
|
+
|
55
|
+
class PaginatorConfig(BaseValidatorModel):
|
56
|
+
MaxItems: Optional[int] = None
|
57
|
+
PageSize: Optional[int] = None
|
58
|
+
StartingToken: Optional[str] = None
|
59
|
+
|
60
|
+
|
61
|
+
class ListNotificationRulesFilter(BaseValidatorModel):
|
62
|
+
Name: ListNotificationRulesFilterNameType
|
63
|
+
Value: str
|
64
|
+
|
65
|
+
|
66
|
+
class NotificationRuleSummary(BaseValidatorModel):
|
67
|
+
Id: Optional[str] = None
|
68
|
+
Arn: Optional[str] = None
|
69
|
+
|
70
|
+
|
71
|
+
class ListTagsForResourceRequest(BaseValidatorModel):
|
72
|
+
Arn: str
|
73
|
+
|
74
|
+
|
75
|
+
class ListTargetsFilter(BaseValidatorModel):
|
76
|
+
Name: ListTargetsFilterNameType
|
77
|
+
Value: str
|
78
|
+
|
79
|
+
|
80
|
+
class TagResourceRequest(BaseValidatorModel):
|
81
|
+
Arn: str
|
82
|
+
Tags: Dict[str, str]
|
83
|
+
|
84
|
+
|
85
|
+
class UnsubscribeRequest(BaseValidatorModel):
|
86
|
+
Arn: str
|
87
|
+
TargetAddress: str
|
88
|
+
|
89
|
+
|
90
|
+
class UntagResourceRequest(BaseValidatorModel):
|
91
|
+
Arn: str
|
92
|
+
TagKeys: List[str]
|
93
|
+
|
94
|
+
|
95
|
+
class CreateNotificationRuleRequest(BaseValidatorModel):
|
96
|
+
Name: str
|
97
|
+
EventTypeIds: List[str]
|
98
|
+
Resource: str
|
99
|
+
Targets: List[Target]
|
100
|
+
DetailType: DetailTypeType
|
101
|
+
ClientRequestToken: Optional[str] = None
|
102
|
+
Tags: Optional[Dict[str, str]] = None
|
103
|
+
Status: Optional[NotificationRuleStatusType] = None
|
104
|
+
|
105
|
+
|
106
|
+
class SubscribeRequest(BaseValidatorModel):
|
107
|
+
Arn: str
|
108
|
+
Target: Target
|
109
|
+
ClientRequestToken: Optional[str] = None
|
110
|
+
|
111
|
+
|
112
|
+
class UpdateNotificationRuleRequest(BaseValidatorModel):
|
113
|
+
Arn: str
|
114
|
+
Name: Optional[str] = None
|
115
|
+
Status: Optional[NotificationRuleStatusType] = None
|
116
|
+
EventTypeIds: Optional[List[str]] = None
|
117
|
+
Targets: Optional[List[Target]] = None
|
118
|
+
DetailType: Optional[DetailTypeType] = None
|
119
|
+
|
120
|
+
|
121
|
+
class CreateNotificationRuleResult(BaseValidatorModel):
|
122
|
+
Arn: str
|
123
|
+
ResponseMetadata: ResponseMetadata
|
124
|
+
|
125
|
+
|
126
|
+
class DeleteNotificationRuleResult(BaseValidatorModel):
|
127
|
+
Arn: str
|
128
|
+
ResponseMetadata: ResponseMetadata
|
129
|
+
|
130
|
+
|
131
|
+
class ListTagsForResourceResult(BaseValidatorModel):
|
132
|
+
Tags: Dict[str, str]
|
133
|
+
ResponseMetadata: ResponseMetadata
|
134
|
+
|
135
|
+
|
136
|
+
class SubscribeResult(BaseValidatorModel):
|
137
|
+
Arn: str
|
138
|
+
ResponseMetadata: ResponseMetadata
|
139
|
+
|
140
|
+
|
141
|
+
class TagResourceResult(BaseValidatorModel):
|
142
|
+
Tags: Dict[str, str]
|
143
|
+
ResponseMetadata: ResponseMetadata
|
144
|
+
|
145
|
+
|
146
|
+
class UnsubscribeResult(BaseValidatorModel):
|
147
|
+
Arn: str
|
148
|
+
ResponseMetadata: ResponseMetadata
|
149
|
+
|
150
|
+
|
151
|
+
class ListEventTypesResult(BaseValidatorModel):
|
152
|
+
EventTypes: List[EventTypeSummary]
|
153
|
+
ResponseMetadata: ResponseMetadata
|
154
|
+
NextToken: Optional[str] = None
|
155
|
+
|
156
|
+
|
157
|
+
class DescribeNotificationRuleResult(BaseValidatorModel):
|
158
|
+
Arn: str
|
159
|
+
Name: str
|
160
|
+
EventTypes: List[EventTypeSummary]
|
161
|
+
Resource: str
|
162
|
+
Targets: List[TargetSummary]
|
163
|
+
DetailType: DetailTypeType
|
164
|
+
CreatedBy: str
|
165
|
+
Status: NotificationRuleStatusType
|
166
|
+
CreatedTimestamp: datetime
|
167
|
+
LastModifiedTimestamp: datetime
|
168
|
+
Tags: Dict[str, str]
|
169
|
+
ResponseMetadata: ResponseMetadata
|
170
|
+
|
171
|
+
|
172
|
+
class ListTargetsResult(BaseValidatorModel):
|
173
|
+
Targets: List[TargetSummary]
|
174
|
+
ResponseMetadata: ResponseMetadata
|
175
|
+
NextToken: Optional[str] = None
|
176
|
+
|
177
|
+
|
178
|
+
class ListEventTypesRequest(BaseValidatorModel):
|
179
|
+
Filters: Optional[List[ListEventTypesFilter]] = None
|
180
|
+
NextToken: Optional[str] = None
|
181
|
+
MaxResults: Optional[int] = None
|
182
|
+
|
183
|
+
|
184
|
+
class ListEventTypesRequestPaginate(BaseValidatorModel):
|
185
|
+
Filters: Optional[List[ListEventTypesFilter]] = None
|
186
|
+
PaginationConfig: Optional[PaginatorConfig] = None
|
187
|
+
|
188
|
+
|
189
|
+
class ListNotificationRulesRequestPaginate(BaseValidatorModel):
|
190
|
+
Filters: Optional[List[ListNotificationRulesFilter]] = None
|
191
|
+
PaginationConfig: Optional[PaginatorConfig] = None
|
192
|
+
|
193
|
+
|
194
|
+
class ListNotificationRulesRequest(BaseValidatorModel):
|
195
|
+
Filters: Optional[List[ListNotificationRulesFilter]] = None
|
196
|
+
NextToken: Optional[str] = None
|
197
|
+
MaxResults: Optional[int] = None
|
198
|
+
|
199
|
+
|
200
|
+
class ListNotificationRulesResult(BaseValidatorModel):
|
201
|
+
NotificationRules: List[NotificationRuleSummary]
|
202
|
+
ResponseMetadata: ResponseMetadata
|
203
|
+
NextToken: Optional[str] = None
|
204
|
+
|
205
|
+
|
206
|
+
class ListTargetsRequestPaginate(BaseValidatorModel):
|
207
|
+
Filters: Optional[List[ListTargetsFilter]] = None
|
208
|
+
PaginationConfig: Optional[PaginatorConfig] = None
|
209
|
+
|
210
|
+
|
211
|
+
class ListTargetsRequest(BaseValidatorModel):
|
212
|
+
Filters: Optional[List[ListTargetsFilter]] = None
|
213
|
+
NextToken: Optional[str] = None
|
214
|
+
MaxResults: Optional[int] = None
|
@@ -0,0 +1,18 @@
|
|
1
|
+
from typing import Literal
|
2
|
+
from datetime import datetime
|
3
|
+
|
4
|
+
|
5
|
+
CodeStarNotificationsServiceName = Literal['codestar-notifications']
|
6
|
+
DetailTypeType = Literal['BASIC', 'FULL']
|
7
|
+
ListEventTypesFilterNameType = Literal['RESOURCE_TYPE', 'SERVICE_NAME']
|
8
|
+
ListEventTypesPaginatorName = Literal['list_event_types']
|
9
|
+
ListNotificationRulesFilterNameType = Literal['CREATED_BY', 'EVENT_TYPE_ID', 'RESOURCE', 'TARGET_ADDRESS']
|
10
|
+
ListNotificationRulesPaginatorName = Literal['list_notification_rules']
|
11
|
+
ListTargetsFilterNameType = Literal['TARGET_ADDRESS', 'TARGET_STATUS', 'TARGET_TYPE']
|
12
|
+
ListTargetsPaginatorName = Literal['list_targets']
|
13
|
+
NotificationRuleStatusType = Literal['DISABLED', 'ENABLED']
|
14
|
+
PaginatorName = Literal['list_event_types', 'list_notification_rules', 'list_targets']
|
15
|
+
RegionName = Literal['ap-east-1', 'ap-northeast-1', 'ap-northeast-2', 'ap-south-1', 'ap-southeast-1', 'ap-southeast-2', 'ca-central-1', 'eu-central-1', 'eu-north-1', 'eu-west-1', 'eu-west-2', 'eu-west-3', 'me-south-1', 'sa-east-1', 'us-east-1', 'us-east-2', 'us-west-1', 'us-west-2']
|
16
|
+
ResourceServiceName = Literal['cloudformation', 'cloudwatch', 'dynamodb', 'ec2', 'glacier', 'iam', 'opsworks', 's3', 'sns', 'sqs']
|
17
|
+
ServiceName = Literal['accessanalyzer', 'account', 'acm', 'acm-pca', 'amp', 'amplify', 'amplifybackend', 'amplifyuibuilder', 'apigateway', 'apigatewaymanagementapi', 'apigatewayv2', 'appconfig', 'appconfigdata', 'appfabric', 'appflow', 'appintegrations', 'application-autoscaling', 'application-insights', 'application-signals', 'applicationcostprofiler', 'appmesh', 'apprunner', 'appstream', 'appsync', 'apptest', 'arc-zonal-shift', 'artifact', 'athena', 'auditmanager', 'autoscaling', 'autoscaling-plans', 'b2bi', 'backup', 'backup-gateway', 'backupsearch', 'batch', 'bcm-data-exports', 'bcm-pricing-calculator', 'bedrock', 'bedrock-agent', 'bedrock-agent-runtime', 'bedrock-data-automation', 'bedrock-data-automation-runtime', 'bedrock-runtime', 'billing', 'billingconductor', 'braket', 'budgets', 'ce', 'chatbot', 'chime', 'chime-sdk-identity', 'chime-sdk-media-pipelines', 'chime-sdk-meetings', 'chime-sdk-messaging', 'chime-sdk-voice', 'cleanrooms', 'cleanroomsml', 'cloud9', 'cloudcontrol', 'clouddirectory', 'cloudformation', 'cloudfront', 'cloudfront-keyvaluestore', 'cloudhsm', 'cloudhsmv2', 'cloudsearch', 'cloudsearchdomain', 'cloudtrail', 'cloudtrail-data', 'cloudwatch', 'codeartifact', 'codebuild', 'codecatalyst', 'codecommit', 'codeconnections', 'codedeploy', 'codeguru-reviewer', 'codeguru-security', 'codeguruprofiler', 'codepipeline', 'codestar-connections', 'codestar-notifications', 'cognito-identity', 'cognito-idp', 'cognito-sync', 'comprehend', 'comprehendmedical', 'compute-optimizer', 'config', 'connect', 'connect-contact-lens', 'connectcampaigns', 'connectcampaignsv2', 'connectcases', 'connectparticipant', 'controlcatalog', 'controltower', 'cost-optimization-hub', 'cur', 'customer-profiles', 'databrew', 'dataexchange', 'datapipeline', 'datasync', 'datazone', 'dax', 'deadline', 'detective', 'devicefarm', 'devops-guru', 'directconnect', 'discovery', 'dlm', 'dms', 'docdb', 'docdb-elastic', 'drs', 'ds', 'ds-data', 'dsql', 'dynamodb', 'dynamodbstreams', 'ebs', 'ec2', 'ec2-instance-connect', 'ecr', 'ecr-public', 'ecs', 'efs', 'eks', 'eks-auth', 'elasticache', 'elasticbeanstalk', 'elastictranscoder', 'elb', 'elbv2', 'emr', 'emr-containers', 'emr-serverless', 'entityresolution', 'es', 'events', 'evidently', 'finspace', 'finspace-data', 'firehose', 'fis', 'fms', 'forecast', 'forecastquery', 'frauddetector', 'freetier', 'fsx', 'gamelift', 'geo-maps', 'geo-places', 'geo-routes', 'glacier', 'globalaccelerator', 'glue', 'grafana', 'greengrass', 'greengrassv2', 'groundstation', 'guardduty', 'health', 'healthlake', 'iam', 'identitystore', 'imagebuilder', 'importexport', 'inspector', 'inspector-scan', 'inspector2', 'internetmonitor', 'invoicing', 'iot', 'iot-data', 'iot-jobs-data', 'iotanalytics', 'iotdeviceadvisor', 'iotevents', 'iotevents-data', 'iotfleethub', 'iotfleetwise', 'iotsecuretunneling', 'iotsitewise', 'iotthingsgraph', 'iottwinmaker', 'iotwireless', 'ivs', 'ivs-realtime', 'ivschat', 'kafka', 'kafkaconnect', 'kendra', 'kendra-ranking', 'keyspaces', 'kinesis', 'kinesis-video-archived-media', 'kinesis-video-media', 'kinesis-video-signaling', 'kinesis-video-webrtc-storage', 'kinesisanalytics', 'kinesisanalyticsv2', 'kinesisvideo', 'kms', 'lakeformation', 'lambda', 'launch-wizard', 'lex-models', 'lex-runtime', 'lexv2-models', 'lexv2-runtime', 'license-manager', 'license-manager-linux-subscriptions', 'license-manager-user-subscriptions', 'lightsail', 'location', 'logs', 'lookoutequipment', 'lookoutmetrics', 'lookoutvision', 'm2', 'machinelearning', 'macie2', 'mailmanager', 'managedblockchain', 'managedblockchain-query', 'marketplace-agreement', 'marketplace-catalog', 'marketplace-deployment', 'marketplace-entitlement', 'marketplace-reporting', 'marketplacecommerceanalytics', 'mediaconnect', 'mediaconvert', 'medialive', 'mediapackage', 'mediapackage-vod', 'mediapackagev2', 'mediastore', 'mediastore-data', 'mediatailor', 'medical-imaging', 'memorydb', 'meteringmarketplace', 'mgh', 'mgn', 'migration-hub-refactor-spaces', 'migrationhub-config', 'migrationhuborchestrator', 'migrationhubstrategy', 'mq', 'mturk', 'mwaa', 'neptune', 'neptune-graph', 'neptunedata', 'network-firewall', 'networkflowmonitor', 'networkmanager', 'networkmonitor', 'notifications', 'notificationscontacts', 'oam', 'observabilityadmin', 'omics', 'opensearch', 'opensearchserverless', 'opsworks', 'opsworkscm', 'organizations', 'osis', 'outposts', 'panorama', 'partnercentral-selling', 'payment-cryptography', 'payment-cryptography-data', 'pca-connector-ad', 'pca-connector-scep', 'pcs', 'personalize', 'personalize-events', 'personalize-runtime', 'pi', 'pinpoint', 'pinpoint-email', 'pinpoint-sms-voice', 'pinpoint-sms-voice-v2', 'pipes', 'polly', 'pricing', 'privatenetworks', 'proton', 'qapps', 'qbusiness', 'qconnect', 'qldb', 'qldb-session', 'quicksight', 'ram', 'rbin', 'rds', 'rds-data', 'redshift', 'redshift-data', 'redshift-serverless', 'rekognition', 'repostspace', 'resiliencehub', 'resource-explorer-2', 'resource-groups', 'resourcegroupstaggingapi', 'robomaker', 'rolesanywhere', 'route53', 'route53-recovery-cluster', 'route53-recovery-control-config', 'route53-recovery-readiness', 'route53domains', 'route53profiles', 'route53resolver', 'rum', 's3', 's3control', 's3outposts', 's3tables', 'sagemaker', 'sagemaker-a2i-runtime', 'sagemaker-edge', 'sagemaker-featurestore-runtime', 'sagemaker-geospatial', 'sagemaker-metrics', 'sagemaker-runtime', 'savingsplans', 'scheduler', 'schemas', 'sdb', 'secretsmanager', 'security-ir', 'securityhub', 'securitylake', 'serverlessrepo', 'service-quotas', 'servicecatalog', 'servicecatalog-appregistry', 'servicediscovery', 'ses', 'sesv2', 'shield', 'signer', 'simspaceweaver', 'sms', 'sms-voice', 'snow-device-management', 'snowball', 'sns', 'socialmessaging', 'sqs', 'ssm', 'ssm-contacts', 'ssm-incidents', 'ssm-quicksetup', 'ssm-sap', 'sso', 'sso-admin', 'sso-oidc', 'stepfunctions', 'storagegateway', 'sts', 'supplychain', 'support', 'support-app', 'swf', 'synthetics', 'taxsettings', 'textract', 'timestream-influxdb', 'timestream-query', 'timestream-write', 'tnb', 'transcribe', 'transfer', 'translate', 'trustedadvisor', 'verifiedpermissions', 'voice-id', 'vpc-lattice', 'waf', 'waf-regional', 'wafv2', 'wellarchitected', 'wisdom', 'workdocs', 'workmail', 'workmailmessageflow', 'workspaces', 'workspaces-thin-client', 'workspaces-web', 'xray']
|
18
|
+
TargetStatusType = Literal['ACTIVE', 'DEACTIVATED', 'INACTIVE', 'PENDING', 'UNREACHABLE']
|
@@ -0,0 +1,35 @@
|
|
1
|
+
Metadata-Version: 2.3
|
2
|
+
Name: boto3-pydantic-codestar_notifications
|
3
|
+
Version: 1.0.0
|
4
|
+
Summary: Pydantic models for AWS Codestar_notifications
|
5
|
+
Keywords: aws,boto3,pydantic,models,codestar_notifications
|
6
|
+
Author: Alexy Grabov
|
7
|
+
Author-email: alexy.grabov@gmail.com
|
8
|
+
Requires-Python: >=3.9,<4.0
|
9
|
+
Classifier: Development Status :: 4 - Beta
|
10
|
+
Classifier: Intended Audience :: Developers
|
11
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
13
|
+
Classifier: Programming Language :: Python :: 3.9
|
14
|
+
Classifier: Programming Language :: Python :: 3.10
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
17
|
+
Classifier: Programming Language :: Python :: 3.13
|
18
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
19
|
+
Requires-Dist: botocore
|
20
|
+
Requires-Dist: pydantic (>=2.8.2,<3.0.0)
|
21
|
+
Project-URL: Homepage, https://coreoxide.github.io/aws_resource_validator/
|
22
|
+
Project-URL: Repository, https://github.com/CoreOxide/aws_resource_validator
|
23
|
+
Description-Content-Type: text/markdown
|
24
|
+
|
25
|
+
# boto3-pydantic-codestar_notifications
|
26
|
+
|
27
|
+
This package was automatically generated by aws-resource-validator repository.
|
28
|
+
|
29
|
+
For more information, visit:
|
30
|
+
- Package homepage: https://coreoxide.github.io/aws_resource_validator/
|
31
|
+
- GitHub repository: https://github.com/CoreOxide/aws_resource_validator
|
32
|
+
- PyPI project: https://pypi.org/project/aws-resource-validator/
|
33
|
+
|
34
|
+
Pydantic models for AWS Codestar_notifications.
|
35
|
+
|
@@ -0,0 +1,7 @@
|
|
1
|
+
boto3_pydantic_codestar_notifications/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
+
boto3_pydantic_codestar_notifications/base_validator_model.py,sha256=C3teURdLR9HMNOC5LMFGGgdsm6Ks6OF0p5RnKw54er4,463
|
3
|
+
boto3_pydantic_codestar_notifications/codestar_notifications_classes.py,sha256=JLCxR8m-RfYzABpJCy0wCt5QDfwvpHydKvhz4lv1WSQ,5569
|
4
|
+
boto3_pydantic_codestar_notifications/codestar_notifications_constants.py,sha256=tyBMS6SI4sn5mO4BKdWFd-gXk3eAFxu00ZAaUjJZgus,7610
|
5
|
+
boto3_pydantic_codestar_notifications-1.0.0.dist-info/METADATA,sha256=F43ubCuA2WFzfKTBVL8z6DyWO4cM6EdDcnkSdZnIWhU,1475
|
6
|
+
boto3_pydantic_codestar_notifications-1.0.0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
7
|
+
boto3_pydantic_codestar_notifications-1.0.0.dist-info/RECORD,,
|