boto3-pydantic-codestar-connections 1.0.0__py3-none-any.whl → 1.0.2__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/codestar_connections_classes.py +40 -0
- {boto3_pydantic_codestar_connections-1.0.0.dist-info → boto3_pydantic_codestar_connections-1.0.2.dist-info}/METADATA +2 -2
- {boto3_pydantic_codestar_connections-1.0.0.dist-info → boto3_pydantic_codestar_connections-1.0.2.dist-info}/RECORD +4 -4
- {boto3_pydantic_codestar_connections-1.0.0.dist-info → boto3_pydantic_codestar_connections-1.0.2.dist-info}/WHEEL +0 -0
@@ -40,6 +40,7 @@ class RepositoryLinkInfo(BaseValidatorModel):
|
|
40
40
|
EncryptionKeyArn: Optional[str] = None
|
41
41
|
|
42
42
|
|
43
|
+
# This class is the input for the 'create_sync_configuration' function.
|
43
44
|
class CreateSyncConfigurationInput(BaseValidatorModel):
|
44
45
|
Branch: str
|
45
46
|
ConfigFile: str
|
@@ -82,10 +83,12 @@ class DeleteSyncConfigurationInput(BaseValidatorModel):
|
|
82
83
|
ResourceName: str
|
83
84
|
|
84
85
|
|
86
|
+
# This class is the input for the 'get_connection' function.
|
85
87
|
class GetConnectionInput(BaseValidatorModel):
|
86
88
|
ConnectionArn: str
|
87
89
|
|
88
90
|
|
91
|
+
# This class is the input for the 'get_host' function.
|
89
92
|
class GetHostInput(BaseValidatorModel):
|
90
93
|
HostArn: str
|
91
94
|
|
@@ -97,16 +100,19 @@ class VpcConfigurationOutput(BaseValidatorModel):
|
|
97
100
|
TlsCertificate: Optional[str] = None
|
98
101
|
|
99
102
|
|
103
|
+
# This class is the input for the 'get_repository_link' function.
|
100
104
|
class GetRepositoryLinkInput(BaseValidatorModel):
|
101
105
|
RepositoryLinkId: str
|
102
106
|
|
103
107
|
|
108
|
+
# This class is the input for the 'get_repository_sync_status' function.
|
104
109
|
class GetRepositorySyncStatusInput(BaseValidatorModel):
|
105
110
|
Branch: str
|
106
111
|
RepositoryLinkId: str
|
107
112
|
SyncType: Literal['CFN_STACK_SYNC']
|
108
113
|
|
109
114
|
|
115
|
+
# This class is the input for the 'get_resource_sync_status' function.
|
110
116
|
class GetResourceSyncStatusInput(BaseValidatorModel):
|
111
117
|
ResourceName: str
|
112
118
|
SyncType: Literal['CFN_STACK_SYNC']
|
@@ -121,16 +127,19 @@ class Revision(BaseValidatorModel):
|
|
121
127
|
Sha: str
|
122
128
|
|
123
129
|
|
130
|
+
# This class is the input for the 'get_sync_blocker_summary' function.
|
124
131
|
class GetSyncBlockerSummaryInput(BaseValidatorModel):
|
125
132
|
SyncType: Literal['CFN_STACK_SYNC']
|
126
133
|
ResourceName: str
|
127
134
|
|
128
135
|
|
136
|
+
# This class is the input for the 'get_sync_configuration' function.
|
129
137
|
class GetSyncConfigurationInput(BaseValidatorModel):
|
130
138
|
SyncType: Literal['CFN_STACK_SYNC']
|
131
139
|
ResourceName: str
|
132
140
|
|
133
141
|
|
142
|
+
# This class is the input for the 'list_connections' function.
|
134
143
|
class ListConnectionsInput(BaseValidatorModel):
|
135
144
|
ProviderTypeFilter: Optional[ProviderTypeType] = None
|
136
145
|
HostArnFilter: Optional[str] = None
|
@@ -138,16 +147,19 @@ class ListConnectionsInput(BaseValidatorModel):
|
|
138
147
|
NextToken: Optional[str] = None
|
139
148
|
|
140
149
|
|
150
|
+
# This class is the input for the 'list_hosts' function.
|
141
151
|
class ListHostsInput(BaseValidatorModel):
|
142
152
|
MaxResults: Optional[int] = None
|
143
153
|
NextToken: Optional[str] = None
|
144
154
|
|
145
155
|
|
156
|
+
# This class is the input for the 'list_repository_links' function.
|
146
157
|
class ListRepositoryLinksInput(BaseValidatorModel):
|
147
158
|
MaxResults: Optional[int] = None
|
148
159
|
NextToken: Optional[str] = None
|
149
160
|
|
150
161
|
|
162
|
+
# This class is the input for the 'list_repository_sync_definitions' function.
|
151
163
|
class ListRepositorySyncDefinitionsInput(BaseValidatorModel):
|
152
164
|
RepositoryLinkId: str
|
153
165
|
SyncType: Literal['CFN_STACK_SYNC']
|
@@ -160,6 +172,7 @@ class RepositorySyncDefinition(BaseValidatorModel):
|
|
160
172
|
Target: str
|
161
173
|
|
162
174
|
|
175
|
+
# This class is the input for the 'list_sync_configurations' function.
|
163
176
|
class ListSyncConfigurationsInput(BaseValidatorModel):
|
164
177
|
RepositoryLinkId: str
|
165
178
|
SyncType: Literal['CFN_STACK_SYNC']
|
@@ -167,6 +180,7 @@ class ListSyncConfigurationsInput(BaseValidatorModel):
|
|
167
180
|
NextToken: Optional[str] = None
|
168
181
|
|
169
182
|
|
183
|
+
# This class is the input for the 'list_tags_for_resource' function.
|
170
184
|
class ListTagsForResourceInput(BaseValidatorModel):
|
171
185
|
ResourceArn: str
|
172
186
|
|
@@ -195,12 +209,14 @@ class UntagResourceInput(BaseValidatorModel):
|
|
195
209
|
TagKeys: List[str]
|
196
210
|
|
197
211
|
|
212
|
+
# This class is the input for the 'update_repository_link' function.
|
198
213
|
class UpdateRepositoryLinkInput(BaseValidatorModel):
|
199
214
|
RepositoryLinkId: str
|
200
215
|
ConnectionArn: Optional[str] = None
|
201
216
|
EncryptionKeyArn: Optional[str] = None
|
202
217
|
|
203
218
|
|
219
|
+
# This class is the input for the 'update_sync_blocker' function.
|
204
220
|
class UpdateSyncBlockerInput(BaseValidatorModel):
|
205
221
|
Id: str
|
206
222
|
SyncType: Literal['CFN_STACK_SYNC']
|
@@ -208,6 +224,7 @@ class UpdateSyncBlockerInput(BaseValidatorModel):
|
|
208
224
|
ResolvedReason: str
|
209
225
|
|
210
226
|
|
227
|
+
# This class is the input for the 'update_sync_configuration' function.
|
211
228
|
class UpdateSyncConfigurationInput(BaseValidatorModel):
|
212
229
|
ResourceName: str
|
213
230
|
SyncType: Literal['CFN_STACK_SYNC']
|
@@ -226,6 +243,7 @@ class VpcConfiguration(BaseValidatorModel):
|
|
226
243
|
TlsCertificate: Optional[str] = None
|
227
244
|
|
228
245
|
|
246
|
+
# This class is the input for the 'create_connection' function.
|
229
247
|
class CreateConnectionInput(BaseValidatorModel):
|
230
248
|
ConnectionName: str
|
231
249
|
ProviderType: Optional[ProviderTypeType] = None
|
@@ -233,6 +251,7 @@ class CreateConnectionInput(BaseValidatorModel):
|
|
233
251
|
HostArn: Optional[str] = None
|
234
252
|
|
235
253
|
|
254
|
+
# This class is the input for the 'create_repository_link' function.
|
236
255
|
class CreateRepositoryLinkInput(BaseValidatorModel):
|
237
256
|
ConnectionArn: str
|
238
257
|
OwnerId: str
|
@@ -246,76 +265,90 @@ class TagResourceInput(BaseValidatorModel):
|
|
246
265
|
Tags: List[Tag]
|
247
266
|
|
248
267
|
|
268
|
+
# This class is the output for the 'create_connection' function.
|
249
269
|
class CreateConnectionOutput(BaseValidatorModel):
|
250
270
|
ConnectionArn: str
|
251
271
|
Tags: List[Tag]
|
252
272
|
ResponseMetadata: ResponseMetadata
|
253
273
|
|
254
274
|
|
275
|
+
# This class is the output for the 'create_host' function.
|
255
276
|
class CreateHostOutput(BaseValidatorModel):
|
256
277
|
HostArn: str
|
257
278
|
Tags: List[Tag]
|
258
279
|
ResponseMetadata: ResponseMetadata
|
259
280
|
|
260
281
|
|
282
|
+
# This class is the output for the 'get_connection' function.
|
261
283
|
class GetConnectionOutput(BaseValidatorModel):
|
262
284
|
Connection: Connection
|
263
285
|
ResponseMetadata: ResponseMetadata
|
264
286
|
|
265
287
|
|
288
|
+
# This class is the output for the 'list_connections' function.
|
266
289
|
class ListConnectionsOutput(BaseValidatorModel):
|
267
290
|
Connections: List[Connection]
|
268
291
|
ResponseMetadata: ResponseMetadata
|
269
292
|
NextToken: Optional[str] = None
|
270
293
|
|
271
294
|
|
295
|
+
# This class is the output for the 'list_tags_for_resource' function.
|
272
296
|
class ListTagsForResourceOutput(BaseValidatorModel):
|
273
297
|
Tags: List[Tag]
|
274
298
|
ResponseMetadata: ResponseMetadata
|
275
299
|
|
276
300
|
|
301
|
+
# This class is the output for the 'create_repository_link' function.
|
277
302
|
class CreateRepositoryLinkOutput(BaseValidatorModel):
|
278
303
|
RepositoryLinkInfo: RepositoryLinkInfo
|
279
304
|
ResponseMetadata: ResponseMetadata
|
280
305
|
|
281
306
|
|
307
|
+
# This class is the output for the 'get_repository_link' function.
|
282
308
|
class GetRepositoryLinkOutput(BaseValidatorModel):
|
283
309
|
RepositoryLinkInfo: RepositoryLinkInfo
|
284
310
|
ResponseMetadata: ResponseMetadata
|
285
311
|
|
286
312
|
|
313
|
+
# This class is the output for the 'list_repository_links' function.
|
287
314
|
class ListRepositoryLinksOutput(BaseValidatorModel):
|
288
315
|
RepositoryLinks: List[RepositoryLinkInfo]
|
289
316
|
ResponseMetadata: ResponseMetadata
|
290
317
|
NextToken: Optional[str] = None
|
291
318
|
|
292
319
|
|
320
|
+
# This class is the output for the 'update_repository_link' function.
|
293
321
|
class UpdateRepositoryLinkOutput(BaseValidatorModel):
|
294
322
|
RepositoryLinkInfo: RepositoryLinkInfo
|
295
323
|
ResponseMetadata: ResponseMetadata
|
296
324
|
|
297
325
|
|
326
|
+
# This class is the output for the 'create_sync_configuration' function.
|
298
327
|
class CreateSyncConfigurationOutput(BaseValidatorModel):
|
299
328
|
SyncConfiguration: SyncConfiguration
|
300
329
|
ResponseMetadata: ResponseMetadata
|
301
330
|
|
302
331
|
|
332
|
+
# This class is the output for the 'get_sync_configuration' function.
|
303
333
|
class GetSyncConfigurationOutput(BaseValidatorModel):
|
304
334
|
SyncConfiguration: SyncConfiguration
|
305
335
|
ResponseMetadata: ResponseMetadata
|
306
336
|
|
307
337
|
|
338
|
+
# This class is the output for the 'list_sync_configurations' function.
|
308
339
|
class ListSyncConfigurationsOutput(BaseValidatorModel):
|
309
340
|
SyncConfigurations: List[SyncConfiguration]
|
310
341
|
ResponseMetadata: ResponseMetadata
|
311
342
|
NextToken: Optional[str] = None
|
312
343
|
|
313
344
|
|
345
|
+
# This class is the output for the 'update_sync_configuration' function.
|
314
346
|
class UpdateSyncConfigurationOutput(BaseValidatorModel):
|
315
347
|
SyncConfiguration: SyncConfiguration
|
316
348
|
ResponseMetadata: ResponseMetadata
|
317
349
|
|
318
350
|
|
351
|
+
# This class is the output for the 'get_host' function.
|
319
352
|
class GetHostOutput(BaseValidatorModel):
|
320
353
|
Name: str
|
321
354
|
Status: str
|
@@ -335,6 +368,7 @@ class Host(BaseValidatorModel):
|
|
335
368
|
StatusMessage: Optional[str] = None
|
336
369
|
|
337
370
|
|
371
|
+
# This class is the output for the 'list_repository_sync_definitions' function.
|
338
372
|
class ListRepositorySyncDefinitionsOutput(BaseValidatorModel):
|
339
373
|
RepositorySyncDefinitions: List[RepositorySyncDefinition]
|
340
374
|
ResponseMetadata: ResponseMetadata
|
@@ -369,17 +403,20 @@ class SyncBlocker(BaseValidatorModel):
|
|
369
403
|
VpcConfigurationUnion = Union[VpcConfiguration, VpcConfigurationOutput]
|
370
404
|
|
371
405
|
|
406
|
+
# This class is the output for the 'list_hosts' function.
|
372
407
|
class ListHostsOutput(BaseValidatorModel):
|
373
408
|
Hosts: List[Host]
|
374
409
|
ResponseMetadata: ResponseMetadata
|
375
410
|
NextToken: Optional[str] = None
|
376
411
|
|
377
412
|
|
413
|
+
# This class is the output for the 'get_repository_sync_status' function.
|
378
414
|
class GetRepositorySyncStatusOutput(BaseValidatorModel):
|
379
415
|
LatestSync: RepositorySyncAttempt
|
380
416
|
ResponseMetadata: ResponseMetadata
|
381
417
|
|
382
418
|
|
419
|
+
# This class is the output for the 'get_resource_sync_status' function.
|
383
420
|
class GetResourceSyncStatusOutput(BaseValidatorModel):
|
384
421
|
DesiredState: Revision
|
385
422
|
LatestSuccessfulSync: ResourceSyncAttempt
|
@@ -393,6 +430,7 @@ class SyncBlockerSummary(BaseValidatorModel):
|
|
393
430
|
LatestBlockers: Optional[List[SyncBlocker]] = None
|
394
431
|
|
395
432
|
|
433
|
+
# This class is the output for the 'update_sync_blocker' function.
|
396
434
|
class UpdateSyncBlockerOutput(BaseValidatorModel):
|
397
435
|
ResourceName: str
|
398
436
|
ParentResourceName: str
|
@@ -400,6 +438,7 @@ class UpdateSyncBlockerOutput(BaseValidatorModel):
|
|
400
438
|
ResponseMetadata: ResponseMetadata
|
401
439
|
|
402
440
|
|
441
|
+
# This class is the input for the 'create_host' function.
|
403
442
|
class CreateHostInput(BaseValidatorModel):
|
404
443
|
Name: str
|
405
444
|
ProviderType: ProviderTypeType
|
@@ -414,6 +453,7 @@ class UpdateHostInput(BaseValidatorModel):
|
|
414
453
|
VpcConfiguration: Optional[VpcConfigurationUnion] = None
|
415
454
|
|
416
455
|
|
456
|
+
# This class is the output for the 'get_sync_blocker_summary' function.
|
417
457
|
class GetSyncBlockerSummaryOutput(BaseValidatorModel):
|
418
458
|
SyncBlockerSummary: SyncBlockerSummary
|
419
459
|
ResponseMetadata: ResponseMetadata
|
@@ -1,12 +1,12 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: boto3-pydantic-codestar_connections
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.2
|
4
4
|
Summary: Pydantic models for AWS Codestar_connections
|
5
5
|
Keywords: aws,boto3,pydantic,models,codestar_connections
|
6
6
|
Author: Alexy Grabov
|
7
7
|
Author-email: alexy.grabov@gmail.com
|
8
8
|
Requires-Python: >=3.9,<4.0
|
9
|
-
Classifier: Development Status ::
|
9
|
+
Classifier: Development Status :: 6 - Mature
|
10
10
|
Classifier: Intended Audience :: Developers
|
11
11
|
Classifier: License :: OSI Approved :: Apache Software License
|
12
12
|
Classifier: Programming Language :: Python :: 3
|
@@ -1,7 +1,7 @@
|
|
1
1
|
boto3_pydantic_codestar_connections/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
2
|
boto3_pydantic_codestar_connections/base_validator_model.py,sha256=C3teURdLR9HMNOC5LMFGGgdsm6Ks6OF0p5RnKw54er4,463
|
3
|
-
boto3_pydantic_codestar_connections/codestar_connections_classes.py,sha256=
|
3
|
+
boto3_pydantic_codestar_connections/codestar_connections_classes.py,sha256=n_2Wmc_NmCXTVXy7CY7KD3FYyPuTHsSWFiG3qNWBxOs,13463
|
4
4
|
boto3_pydantic_codestar_connections/codestar_connections_constants.py,sha256=7Ue1AIDUZSRSc3dfBX7kPy2xXEdV2dhWBRJ1HyT4SFE,7490
|
5
|
-
boto3_pydantic_codestar_connections-1.0.
|
6
|
-
boto3_pydantic_codestar_connections-1.0.
|
7
|
-
boto3_pydantic_codestar_connections-1.0.
|
5
|
+
boto3_pydantic_codestar_connections-1.0.2.dist-info/METADATA,sha256=9QSemytKrcTKZbJAQQmrJ8XrDpe1OQDI1DZxoQuwm6Q,1467
|
6
|
+
boto3_pydantic_codestar_connections-1.0.2.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
7
|
+
boto3_pydantic_codestar_connections-1.0.2.dist-info/RECORD,,
|
File without changes
|