boto3-pydantic-codestar-connections 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_connections/__init__.py +0 -0
- boto3_pydantic_codestar_connections/base_validator_model.py +18 -0
- boto3_pydantic_codestar_connections/codestar_connections_classes.py +419 -0
- boto3_pydantic_codestar_connections/codestar_connections_constants.py +17 -0
- boto3_pydantic_codestar_connections-1.0.0.dist-info/METADATA +35 -0
- boto3_pydantic_codestar_connections-1.0.0.dist-info/RECORD +7 -0
- boto3_pydantic_codestar_connections-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,419 @@
|
|
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_connections.codestar_connections_constants import *
|
6
|
+
from ..base_validator_model import BaseValidatorModel, EventStream
|
7
|
+
|
8
|
+
|
9
|
+
|
10
|
+
|
11
|
+
class Connection(BaseValidatorModel):
|
12
|
+
ConnectionName: Optional[str] = None
|
13
|
+
ConnectionArn: Optional[str] = None
|
14
|
+
ProviderType: Optional[ProviderTypeType] = None
|
15
|
+
OwnerAccountId: Optional[str] = None
|
16
|
+
ConnectionStatus: Optional[ConnectionStatusType] = None
|
17
|
+
HostArn: Optional[str] = None
|
18
|
+
|
19
|
+
|
20
|
+
class Tag(BaseValidatorModel):
|
21
|
+
Key: str
|
22
|
+
Value: str
|
23
|
+
|
24
|
+
|
25
|
+
class ResponseMetadata(BaseValidatorModel):
|
26
|
+
RequestId: str
|
27
|
+
HTTPStatusCode: int
|
28
|
+
HTTPHeaders: Dict[str, str]
|
29
|
+
RetryAttempts: int
|
30
|
+
HostId: Optional[str] = None
|
31
|
+
|
32
|
+
|
33
|
+
class RepositoryLinkInfo(BaseValidatorModel):
|
34
|
+
ConnectionArn: str
|
35
|
+
OwnerId: str
|
36
|
+
ProviderType: ProviderTypeType
|
37
|
+
RepositoryLinkArn: str
|
38
|
+
RepositoryLinkId: str
|
39
|
+
RepositoryName: str
|
40
|
+
EncryptionKeyArn: Optional[str] = None
|
41
|
+
|
42
|
+
|
43
|
+
class CreateSyncConfigurationInput(BaseValidatorModel):
|
44
|
+
Branch: str
|
45
|
+
ConfigFile: str
|
46
|
+
RepositoryLinkId: str
|
47
|
+
ResourceName: str
|
48
|
+
RoleArn: str
|
49
|
+
SyncType: Literal['CFN_STACK_SYNC']
|
50
|
+
PublishDeploymentStatus: Optional[PublishDeploymentStatusType] = None
|
51
|
+
TriggerResourceUpdateOn: Optional[TriggerResourceUpdateOnType] = None
|
52
|
+
|
53
|
+
|
54
|
+
class SyncConfiguration(BaseValidatorModel):
|
55
|
+
Branch: str
|
56
|
+
OwnerId: str
|
57
|
+
ProviderType: ProviderTypeType
|
58
|
+
RepositoryLinkId: str
|
59
|
+
RepositoryName: str
|
60
|
+
ResourceName: str
|
61
|
+
RoleArn: str
|
62
|
+
SyncType: Literal['CFN_STACK_SYNC']
|
63
|
+
ConfigFile: Optional[str] = None
|
64
|
+
PublishDeploymentStatus: Optional[PublishDeploymentStatusType] = None
|
65
|
+
TriggerResourceUpdateOn: Optional[TriggerResourceUpdateOnType] = None
|
66
|
+
|
67
|
+
|
68
|
+
class DeleteConnectionInput(BaseValidatorModel):
|
69
|
+
ConnectionArn: str
|
70
|
+
|
71
|
+
|
72
|
+
class DeleteHostInput(BaseValidatorModel):
|
73
|
+
HostArn: str
|
74
|
+
|
75
|
+
|
76
|
+
class DeleteRepositoryLinkInput(BaseValidatorModel):
|
77
|
+
RepositoryLinkId: str
|
78
|
+
|
79
|
+
|
80
|
+
class DeleteSyncConfigurationInput(BaseValidatorModel):
|
81
|
+
SyncType: Literal['CFN_STACK_SYNC']
|
82
|
+
ResourceName: str
|
83
|
+
|
84
|
+
|
85
|
+
class GetConnectionInput(BaseValidatorModel):
|
86
|
+
ConnectionArn: str
|
87
|
+
|
88
|
+
|
89
|
+
class GetHostInput(BaseValidatorModel):
|
90
|
+
HostArn: str
|
91
|
+
|
92
|
+
|
93
|
+
class VpcConfigurationOutput(BaseValidatorModel):
|
94
|
+
VpcId: str
|
95
|
+
SubnetIds: List[str]
|
96
|
+
SecurityGroupIds: List[str]
|
97
|
+
TlsCertificate: Optional[str] = None
|
98
|
+
|
99
|
+
|
100
|
+
class GetRepositoryLinkInput(BaseValidatorModel):
|
101
|
+
RepositoryLinkId: str
|
102
|
+
|
103
|
+
|
104
|
+
class GetRepositorySyncStatusInput(BaseValidatorModel):
|
105
|
+
Branch: str
|
106
|
+
RepositoryLinkId: str
|
107
|
+
SyncType: Literal['CFN_STACK_SYNC']
|
108
|
+
|
109
|
+
|
110
|
+
class GetResourceSyncStatusInput(BaseValidatorModel):
|
111
|
+
ResourceName: str
|
112
|
+
SyncType: Literal['CFN_STACK_SYNC']
|
113
|
+
|
114
|
+
|
115
|
+
class Revision(BaseValidatorModel):
|
116
|
+
Branch: str
|
117
|
+
Directory: str
|
118
|
+
OwnerId: str
|
119
|
+
RepositoryName: str
|
120
|
+
ProviderType: ProviderTypeType
|
121
|
+
Sha: str
|
122
|
+
|
123
|
+
|
124
|
+
class GetSyncBlockerSummaryInput(BaseValidatorModel):
|
125
|
+
SyncType: Literal['CFN_STACK_SYNC']
|
126
|
+
ResourceName: str
|
127
|
+
|
128
|
+
|
129
|
+
class GetSyncConfigurationInput(BaseValidatorModel):
|
130
|
+
SyncType: Literal['CFN_STACK_SYNC']
|
131
|
+
ResourceName: str
|
132
|
+
|
133
|
+
|
134
|
+
class ListConnectionsInput(BaseValidatorModel):
|
135
|
+
ProviderTypeFilter: Optional[ProviderTypeType] = None
|
136
|
+
HostArnFilter: Optional[str] = None
|
137
|
+
MaxResults: Optional[int] = None
|
138
|
+
NextToken: Optional[str] = None
|
139
|
+
|
140
|
+
|
141
|
+
class ListHostsInput(BaseValidatorModel):
|
142
|
+
MaxResults: Optional[int] = None
|
143
|
+
NextToken: Optional[str] = None
|
144
|
+
|
145
|
+
|
146
|
+
class ListRepositoryLinksInput(BaseValidatorModel):
|
147
|
+
MaxResults: Optional[int] = None
|
148
|
+
NextToken: Optional[str] = None
|
149
|
+
|
150
|
+
|
151
|
+
class ListRepositorySyncDefinitionsInput(BaseValidatorModel):
|
152
|
+
RepositoryLinkId: str
|
153
|
+
SyncType: Literal['CFN_STACK_SYNC']
|
154
|
+
|
155
|
+
|
156
|
+
class RepositorySyncDefinition(BaseValidatorModel):
|
157
|
+
Branch: str
|
158
|
+
Directory: str
|
159
|
+
Parent: str
|
160
|
+
Target: str
|
161
|
+
|
162
|
+
|
163
|
+
class ListSyncConfigurationsInput(BaseValidatorModel):
|
164
|
+
RepositoryLinkId: str
|
165
|
+
SyncType: Literal['CFN_STACK_SYNC']
|
166
|
+
MaxResults: Optional[int] = None
|
167
|
+
NextToken: Optional[str] = None
|
168
|
+
|
169
|
+
|
170
|
+
class ListTagsForResourceInput(BaseValidatorModel):
|
171
|
+
ResourceArn: str
|
172
|
+
|
173
|
+
|
174
|
+
class RepositorySyncEvent(BaseValidatorModel):
|
175
|
+
Event: str
|
176
|
+
Time: datetime
|
177
|
+
Type: str
|
178
|
+
ExternalId: Optional[str] = None
|
179
|
+
|
180
|
+
|
181
|
+
class ResourceSyncEvent(BaseValidatorModel):
|
182
|
+
Event: str
|
183
|
+
Time: datetime
|
184
|
+
Type: str
|
185
|
+
ExternalId: Optional[str] = None
|
186
|
+
|
187
|
+
|
188
|
+
class SyncBlockerContext(BaseValidatorModel):
|
189
|
+
Key: str
|
190
|
+
Value: str
|
191
|
+
|
192
|
+
|
193
|
+
class UntagResourceInput(BaseValidatorModel):
|
194
|
+
ResourceArn: str
|
195
|
+
TagKeys: List[str]
|
196
|
+
|
197
|
+
|
198
|
+
class UpdateRepositoryLinkInput(BaseValidatorModel):
|
199
|
+
RepositoryLinkId: str
|
200
|
+
ConnectionArn: Optional[str] = None
|
201
|
+
EncryptionKeyArn: Optional[str] = None
|
202
|
+
|
203
|
+
|
204
|
+
class UpdateSyncBlockerInput(BaseValidatorModel):
|
205
|
+
Id: str
|
206
|
+
SyncType: Literal['CFN_STACK_SYNC']
|
207
|
+
ResourceName: str
|
208
|
+
ResolvedReason: str
|
209
|
+
|
210
|
+
|
211
|
+
class UpdateSyncConfigurationInput(BaseValidatorModel):
|
212
|
+
ResourceName: str
|
213
|
+
SyncType: Literal['CFN_STACK_SYNC']
|
214
|
+
Branch: Optional[str] = None
|
215
|
+
ConfigFile: Optional[str] = None
|
216
|
+
RepositoryLinkId: Optional[str] = None
|
217
|
+
RoleArn: Optional[str] = None
|
218
|
+
PublishDeploymentStatus: Optional[PublishDeploymentStatusType] = None
|
219
|
+
TriggerResourceUpdateOn: Optional[TriggerResourceUpdateOnType] = None
|
220
|
+
|
221
|
+
|
222
|
+
class VpcConfiguration(BaseValidatorModel):
|
223
|
+
VpcId: str
|
224
|
+
SubnetIds: List[str]
|
225
|
+
SecurityGroupIds: List[str]
|
226
|
+
TlsCertificate: Optional[str] = None
|
227
|
+
|
228
|
+
|
229
|
+
class CreateConnectionInput(BaseValidatorModel):
|
230
|
+
ConnectionName: str
|
231
|
+
ProviderType: Optional[ProviderTypeType] = None
|
232
|
+
Tags: Optional[List[Tag]] = None
|
233
|
+
HostArn: Optional[str] = None
|
234
|
+
|
235
|
+
|
236
|
+
class CreateRepositoryLinkInput(BaseValidatorModel):
|
237
|
+
ConnectionArn: str
|
238
|
+
OwnerId: str
|
239
|
+
RepositoryName: str
|
240
|
+
EncryptionKeyArn: Optional[str] = None
|
241
|
+
Tags: Optional[List[Tag]] = None
|
242
|
+
|
243
|
+
|
244
|
+
class TagResourceInput(BaseValidatorModel):
|
245
|
+
ResourceArn: str
|
246
|
+
Tags: List[Tag]
|
247
|
+
|
248
|
+
|
249
|
+
class CreateConnectionOutput(BaseValidatorModel):
|
250
|
+
ConnectionArn: str
|
251
|
+
Tags: List[Tag]
|
252
|
+
ResponseMetadata: ResponseMetadata
|
253
|
+
|
254
|
+
|
255
|
+
class CreateHostOutput(BaseValidatorModel):
|
256
|
+
HostArn: str
|
257
|
+
Tags: List[Tag]
|
258
|
+
ResponseMetadata: ResponseMetadata
|
259
|
+
|
260
|
+
|
261
|
+
class GetConnectionOutput(BaseValidatorModel):
|
262
|
+
Connection: Connection
|
263
|
+
ResponseMetadata: ResponseMetadata
|
264
|
+
|
265
|
+
|
266
|
+
class ListConnectionsOutput(BaseValidatorModel):
|
267
|
+
Connections: List[Connection]
|
268
|
+
ResponseMetadata: ResponseMetadata
|
269
|
+
NextToken: Optional[str] = None
|
270
|
+
|
271
|
+
|
272
|
+
class ListTagsForResourceOutput(BaseValidatorModel):
|
273
|
+
Tags: List[Tag]
|
274
|
+
ResponseMetadata: ResponseMetadata
|
275
|
+
|
276
|
+
|
277
|
+
class CreateRepositoryLinkOutput(BaseValidatorModel):
|
278
|
+
RepositoryLinkInfo: RepositoryLinkInfo
|
279
|
+
ResponseMetadata: ResponseMetadata
|
280
|
+
|
281
|
+
|
282
|
+
class GetRepositoryLinkOutput(BaseValidatorModel):
|
283
|
+
RepositoryLinkInfo: RepositoryLinkInfo
|
284
|
+
ResponseMetadata: ResponseMetadata
|
285
|
+
|
286
|
+
|
287
|
+
class ListRepositoryLinksOutput(BaseValidatorModel):
|
288
|
+
RepositoryLinks: List[RepositoryLinkInfo]
|
289
|
+
ResponseMetadata: ResponseMetadata
|
290
|
+
NextToken: Optional[str] = None
|
291
|
+
|
292
|
+
|
293
|
+
class UpdateRepositoryLinkOutput(BaseValidatorModel):
|
294
|
+
RepositoryLinkInfo: RepositoryLinkInfo
|
295
|
+
ResponseMetadata: ResponseMetadata
|
296
|
+
|
297
|
+
|
298
|
+
class CreateSyncConfigurationOutput(BaseValidatorModel):
|
299
|
+
SyncConfiguration: SyncConfiguration
|
300
|
+
ResponseMetadata: ResponseMetadata
|
301
|
+
|
302
|
+
|
303
|
+
class GetSyncConfigurationOutput(BaseValidatorModel):
|
304
|
+
SyncConfiguration: SyncConfiguration
|
305
|
+
ResponseMetadata: ResponseMetadata
|
306
|
+
|
307
|
+
|
308
|
+
class ListSyncConfigurationsOutput(BaseValidatorModel):
|
309
|
+
SyncConfigurations: List[SyncConfiguration]
|
310
|
+
ResponseMetadata: ResponseMetadata
|
311
|
+
NextToken: Optional[str] = None
|
312
|
+
|
313
|
+
|
314
|
+
class UpdateSyncConfigurationOutput(BaseValidatorModel):
|
315
|
+
SyncConfiguration: SyncConfiguration
|
316
|
+
ResponseMetadata: ResponseMetadata
|
317
|
+
|
318
|
+
|
319
|
+
class GetHostOutput(BaseValidatorModel):
|
320
|
+
Name: str
|
321
|
+
Status: str
|
322
|
+
ProviderType: ProviderTypeType
|
323
|
+
ProviderEndpoint: str
|
324
|
+
VpcConfiguration: VpcConfigurationOutput
|
325
|
+
ResponseMetadata: ResponseMetadata
|
326
|
+
|
327
|
+
|
328
|
+
class Host(BaseValidatorModel):
|
329
|
+
Name: Optional[str] = None
|
330
|
+
HostArn: Optional[str] = None
|
331
|
+
ProviderType: Optional[ProviderTypeType] = None
|
332
|
+
ProviderEndpoint: Optional[str] = None
|
333
|
+
VpcConfiguration: Optional[VpcConfigurationOutput] = None
|
334
|
+
Status: Optional[str] = None
|
335
|
+
StatusMessage: Optional[str] = None
|
336
|
+
|
337
|
+
|
338
|
+
class ListRepositorySyncDefinitionsOutput(BaseValidatorModel):
|
339
|
+
RepositorySyncDefinitions: List[RepositorySyncDefinition]
|
340
|
+
ResponseMetadata: ResponseMetadata
|
341
|
+
NextToken: Optional[str] = None
|
342
|
+
|
343
|
+
|
344
|
+
class RepositorySyncAttempt(BaseValidatorModel):
|
345
|
+
StartedAt: datetime
|
346
|
+
Status: RepositorySyncStatusType
|
347
|
+
Events: List[RepositorySyncEvent]
|
348
|
+
|
349
|
+
|
350
|
+
class ResourceSyncAttempt(BaseValidatorModel):
|
351
|
+
Events: List[ResourceSyncEvent]
|
352
|
+
InitialRevision: Revision
|
353
|
+
StartedAt: datetime
|
354
|
+
Status: ResourceSyncStatusType
|
355
|
+
TargetRevision: Revision
|
356
|
+
Target: str
|
357
|
+
|
358
|
+
|
359
|
+
class SyncBlocker(BaseValidatorModel):
|
360
|
+
Id: str
|
361
|
+
Type: Literal['AUTOMATED']
|
362
|
+
Status: BlockerStatusType
|
363
|
+
CreatedReason: str
|
364
|
+
CreatedAt: datetime
|
365
|
+
Contexts: Optional[List[SyncBlockerContext]] = None
|
366
|
+
ResolvedReason: Optional[str] = None
|
367
|
+
ResolvedAt: Optional[datetime] = None
|
368
|
+
|
369
|
+
VpcConfigurationUnion = Union[VpcConfiguration, VpcConfigurationOutput]
|
370
|
+
|
371
|
+
|
372
|
+
class ListHostsOutput(BaseValidatorModel):
|
373
|
+
Hosts: List[Host]
|
374
|
+
ResponseMetadata: ResponseMetadata
|
375
|
+
NextToken: Optional[str] = None
|
376
|
+
|
377
|
+
|
378
|
+
class GetRepositorySyncStatusOutput(BaseValidatorModel):
|
379
|
+
LatestSync: RepositorySyncAttempt
|
380
|
+
ResponseMetadata: ResponseMetadata
|
381
|
+
|
382
|
+
|
383
|
+
class GetResourceSyncStatusOutput(BaseValidatorModel):
|
384
|
+
DesiredState: Revision
|
385
|
+
LatestSuccessfulSync: ResourceSyncAttempt
|
386
|
+
LatestSync: ResourceSyncAttempt
|
387
|
+
ResponseMetadata: ResponseMetadata
|
388
|
+
|
389
|
+
|
390
|
+
class SyncBlockerSummary(BaseValidatorModel):
|
391
|
+
ResourceName: str
|
392
|
+
ParentResourceName: Optional[str] = None
|
393
|
+
LatestBlockers: Optional[List[SyncBlocker]] = None
|
394
|
+
|
395
|
+
|
396
|
+
class UpdateSyncBlockerOutput(BaseValidatorModel):
|
397
|
+
ResourceName: str
|
398
|
+
ParentResourceName: str
|
399
|
+
SyncBlocker: SyncBlocker
|
400
|
+
ResponseMetadata: ResponseMetadata
|
401
|
+
|
402
|
+
|
403
|
+
class CreateHostInput(BaseValidatorModel):
|
404
|
+
Name: str
|
405
|
+
ProviderType: ProviderTypeType
|
406
|
+
ProviderEndpoint: str
|
407
|
+
VpcConfiguration: Optional[VpcConfigurationUnion] = None
|
408
|
+
Tags: Optional[List[Tag]] = None
|
409
|
+
|
410
|
+
|
411
|
+
class UpdateHostInput(BaseValidatorModel):
|
412
|
+
HostArn: str
|
413
|
+
ProviderEndpoint: Optional[str] = None
|
414
|
+
VpcConfiguration: Optional[VpcConfigurationUnion] = None
|
415
|
+
|
416
|
+
|
417
|
+
class GetSyncBlockerSummaryOutput(BaseValidatorModel):
|
418
|
+
SyncBlockerSummary: SyncBlockerSummary
|
419
|
+
ResponseMetadata: ResponseMetadata
|
@@ -0,0 +1,17 @@
|
|
1
|
+
from typing import Literal
|
2
|
+
from datetime import datetime
|
3
|
+
|
4
|
+
|
5
|
+
BlockerStatusType = Literal['ACTIVE', 'RESOLVED']
|
6
|
+
BlockerTypeType = Literal['AUTOMATED']
|
7
|
+
CodeStarconnectionsServiceName = Literal['codestar-connections']
|
8
|
+
ConnectionStatusType = Literal['AVAILABLE', 'ERROR', 'PENDING']
|
9
|
+
ProviderTypeType = Literal['Bitbucket', 'GitHub', 'GitHubEnterpriseServer', 'GitLab', 'GitLabSelfManaged']
|
10
|
+
PublishDeploymentStatusType = Literal['DISABLED', 'ENABLED']
|
11
|
+
RegionName = Literal['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-south-1', 'eu-west-1', 'eu-west-2', 'eu-west-3', 'sa-east-1', 'us-east-1', 'us-east-2', 'us-west-1', 'us-west-2']
|
12
|
+
RepositorySyncStatusType = Literal['FAILED', 'INITIATED', 'IN_PROGRESS', 'QUEUED', 'SUCCEEDED']
|
13
|
+
ResourceServiceName = Literal['cloudformation', 'cloudwatch', 'dynamodb', 'ec2', 'glacier', 'iam', 'opsworks', 's3', 'sns', 'sqs']
|
14
|
+
ResourceSyncStatusType = Literal['FAILED', 'INITIATED', 'IN_PROGRESS', 'SUCCEEDED']
|
15
|
+
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']
|
16
|
+
SyncConfigurationTypeType = Literal['CFN_STACK_SYNC']
|
17
|
+
TriggerResourceUpdateOnType = Literal['ANY_CHANGE', 'FILE_CHANGE']
|
@@ -0,0 +1,35 @@
|
|
1
|
+
Metadata-Version: 2.3
|
2
|
+
Name: boto3-pydantic-codestar_connections
|
3
|
+
Version: 1.0.0
|
4
|
+
Summary: Pydantic models for AWS Codestar_connections
|
5
|
+
Keywords: aws,boto3,pydantic,models,codestar_connections
|
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_connections
|
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_connections.
|
35
|
+
|
@@ -0,0 +1,7 @@
|
|
1
|
+
boto3_pydantic_codestar_connections/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
+
boto3_pydantic_codestar_connections/base_validator_model.py,sha256=C3teURdLR9HMNOC5LMFGGgdsm6Ks6OF0p5RnKw54er4,463
|
3
|
+
boto3_pydantic_codestar_connections/codestar_connections_classes.py,sha256=yI71-DbYPPzxDr9Qym2YbIYlhnoEe6_eyGBp_871nr0,10757
|
4
|
+
boto3_pydantic_codestar_connections/codestar_connections_constants.py,sha256=7Ue1AIDUZSRSc3dfBX7kPy2xXEdV2dhWBRJ1HyT4SFE,7490
|
5
|
+
boto3_pydantic_codestar_connections-1.0.0.dist-info/METADATA,sha256=dVwurd_6DfGnQ-3aQTk5WhMaKdmosvvuud-RRddIxZg,1465
|
6
|
+
boto3_pydantic_codestar_connections-1.0.0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
7
|
+
boto3_pydantic_codestar_connections-1.0.0.dist-info/RECORD,,
|