cdk-docker-image-deployment 0.0.77__py3-none-any.whl → 0.0.105__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.
@@ -19,7 +19,7 @@ new imagedeploy.DockerImageDeployment(this, 'ExampleImageDeploymentWithTag', {
19
19
  source: imagedeploy.Source.directory('path/to/directory'),
20
20
  destination: imagedeploy.Destination.ecr(repo, {
21
21
  tag: 'myspecialtag',
22
- });
22
+ }),
23
23
  });
24
24
  ```
25
25
 
@@ -71,9 +71,9 @@ from typeguard import check_type
71
71
 
72
72
  from ._jsii import *
73
73
 
74
- import aws_cdk.aws_ecr
75
- import aws_cdk.aws_iam
76
- import constructs
74
+ import aws_cdk.aws_ecr as _aws_cdk_aws_ecr_ceddda9d
75
+ import aws_cdk.aws_iam as _aws_cdk_aws_iam_ceddda9d
76
+ import constructs as _constructs_77d1e7e8
77
77
 
78
78
 
79
79
  class Destination(
@@ -97,7 +97,7 @@ class Destination(
97
97
  @builtins.classmethod
98
98
  def ecr(
99
99
  cls,
100
- repository: aws_cdk.aws_ecr.IRepository,
100
+ repository: _aws_cdk_aws_ecr_ceddda9d.IRepository,
101
101
  *,
102
102
  tag: typing.Optional[builtins.str] = None,
103
103
  ) -> "Destination":
@@ -107,13 +107,7 @@ class Destination(
107
107
  :param tag: Tag of deployed image. Default: - tag of source
108
108
  '''
109
109
  if __debug__:
110
- def stub(
111
- repository: aws_cdk.aws_ecr.IRepository,
112
- *,
113
- tag: typing.Optional[builtins.str] = None,
114
- ) -> None:
115
- ...
116
- type_hints = typing.get_type_hints(stub)
110
+ type_hints = typing.get_type_hints(_typecheckingstub__0c54a04beda47ee3571d27fb1776b4ffa8d1baa651e949586e806ae0d1e71d50)
117
111
  check_type(argname="argument repository", value=repository, expected_type=type_hints["repository"])
118
112
  options = EcrSourceOptions(tag=tag)
119
113
 
@@ -121,7 +115,7 @@ class Destination(
121
115
 
122
116
  @jsii.member(jsii_name="bind")
123
117
  @abc.abstractmethod
124
- def bind(self, role: aws_cdk.aws_iam.IGrantable) -> "DestinationConfig":
118
+ def bind(self, role: _aws_cdk_aws_iam_ceddda9d.IGrantable) -> "DestinationConfig":
125
119
  '''Bind grants the CodeBuild role permissions to pull and push to a repository if necessary.
126
120
 
127
121
  Bind should be invoked by the caller to get the DestinationConfig.
@@ -133,7 +127,7 @@ class Destination(
133
127
 
134
128
  class _DestinationProxy(Destination):
135
129
  @jsii.member(jsii_name="bind")
136
- def bind(self, role: aws_cdk.aws_iam.IGrantable) -> "DestinationConfig":
130
+ def bind(self, role: _aws_cdk_aws_iam_ceddda9d.IGrantable) -> "DestinationConfig":
137
131
  '''Bind grants the CodeBuild role permissions to pull and push to a repository if necessary.
138
132
 
139
133
  Bind should be invoked by the caller to get the DestinationConfig.
@@ -141,9 +135,7 @@ class _DestinationProxy(Destination):
141
135
  :param role: -
142
136
  '''
143
137
  if __debug__:
144
- def stub(role: aws_cdk.aws_iam.IGrantable) -> None:
145
- ...
146
- type_hints = typing.get_type_hints(stub)
138
+ type_hints = typing.get_type_hints(_typecheckingstub__a72c8919b92b60128c0141d7dc0f052b2794fbe84d15e7bc089a1deebded9c1a)
147
139
  check_type(argname="argument role", value=role, expected_type=type_hints["role"])
148
140
  return typing.cast("DestinationConfig", jsii.invoke(self, "bind", [role]))
149
141
 
@@ -165,7 +157,7 @@ class DestinationConfig:
165
157
  self,
166
158
  *,
167
159
  destination_uri: builtins.str,
168
- login_config: typing.Union["LoginConfig", typing.Dict[str, typing.Any]],
160
+ login_config: typing.Union["LoginConfig", typing.Dict[builtins.str, typing.Any]],
169
161
  destination_tag: typing.Optional[builtins.str] = None,
170
162
  ) -> None:
171
163
  '''Destination information.
@@ -177,18 +169,11 @@ class DestinationConfig:
177
169
  if isinstance(login_config, dict):
178
170
  login_config = LoginConfig(**login_config)
179
171
  if __debug__:
180
- def stub(
181
- *,
182
- destination_uri: builtins.str,
183
- login_config: typing.Union[LoginConfig, typing.Dict[str, typing.Any]],
184
- destination_tag: typing.Optional[builtins.str] = None,
185
- ) -> None:
186
- ...
187
- type_hints = typing.get_type_hints(stub)
172
+ type_hints = typing.get_type_hints(_typecheckingstub__6c4d6944397e455f8103ad368412e09a6c10b74703506a5c7f59780b39d51acf)
188
173
  check_type(argname="argument destination_uri", value=destination_uri, expected_type=type_hints["destination_uri"])
189
174
  check_type(argname="argument login_config", value=login_config, expected_type=type_hints["login_config"])
190
175
  check_type(argname="argument destination_tag", value=destination_tag, expected_type=type_hints["destination_tag"])
191
- self._values: typing.Dict[str, typing.Any] = {
176
+ self._values: typing.Dict[builtins.str, typing.Any] = {
192
177
  "destination_uri": destination_uri,
193
178
  "login_config": login_config,
194
179
  }
@@ -231,7 +216,7 @@ class DestinationConfig:
231
216
 
232
217
 
233
218
  class DockerImageDeployment(
234
- constructs.Construct,
219
+ _constructs_77d1e7e8.Construct,
235
220
  metaclass=jsii.JSIIMeta,
236
221
  jsii_type="cdk-docker-image-deployment.DockerImageDeployment",
237
222
  ):
@@ -239,7 +224,7 @@ class DockerImageDeployment(
239
224
 
240
225
  def __init__(
241
226
  self,
242
- scope: constructs.Construct,
227
+ scope: _constructs_77d1e7e8.Construct,
243
228
  id: builtins.str,
244
229
  *,
245
230
  destination: Destination,
@@ -252,15 +237,7 @@ class DockerImageDeployment(
252
237
  :param source: Source of the image to deploy.
253
238
  '''
254
239
  if __debug__:
255
- def stub(
256
- scope: constructs.Construct,
257
- id: builtins.str,
258
- *,
259
- destination: Destination,
260
- source: Source,
261
- ) -> None:
262
- ...
263
- type_hints = typing.get_type_hints(stub)
240
+ type_hints = typing.get_type_hints(_typecheckingstub__a2105050e0037a99087a0a9f4c72648eac026dc77ac1653449544314b8074152)
264
241
  check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
265
242
  check_type(argname="argument id", value=id, expected_type=type_hints["id"])
266
243
  props = DockerImageDeploymentProps(destination=destination, source=source)
@@ -280,12 +257,10 @@ class DockerImageDeploymentProps:
280
257
  :param source: Source of the image to deploy.
281
258
  '''
282
259
  if __debug__:
283
- def stub(*, destination: Destination, source: Source) -> None:
284
- ...
285
- type_hints = typing.get_type_hints(stub)
260
+ type_hints = typing.get_type_hints(_typecheckingstub__08edffa43996dc151a99914067a04c7d973855ab66ba9e857b3b0a3f8c9e7e80)
286
261
  check_type(argname="argument destination", value=destination, expected_type=type_hints["destination"])
287
262
  check_type(argname="argument source", value=source, expected_type=type_hints["source"])
288
- self._values: typing.Dict[str, typing.Any] = {
263
+ self._values: typing.Dict[builtins.str, typing.Any] = {
289
264
  "destination": destination,
290
265
  "source": source,
291
266
  }
@@ -328,11 +303,9 @@ class EcrSourceOptions:
328
303
  :param tag: Tag of deployed image. Default: - tag of source
329
304
  '''
330
305
  if __debug__:
331
- def stub(*, tag: typing.Optional[builtins.str] = None) -> None:
332
- ...
333
- type_hints = typing.get_type_hints(stub)
306
+ type_hints = typing.get_type_hints(_typecheckingstub__8bd258127f97145e592aa9e2f8f153fcadf95f957f225e6b5c5c6a17d1f54fba)
334
307
  check_type(argname="argument tag", value=tag, expected_type=type_hints["tag"])
335
- self._values: typing.Dict[str, typing.Any] = {}
308
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
336
309
  if tag is not None:
337
310
  self._values["tag"] = tag
338
311
 
@@ -375,16 +348,10 @@ class LoginConfig:
375
348
  :param region: Region of ECR repository. Default: - undefined if not an ECR repository
376
349
  '''
377
350
  if __debug__:
378
- def stub(
379
- *,
380
- login_command: builtins.str,
381
- region: typing.Optional[builtins.str] = None,
382
- ) -> None:
383
- ...
384
- type_hints = typing.get_type_hints(stub)
351
+ type_hints = typing.get_type_hints(_typecheckingstub__9f2f12359ef734edbf3a5098ef6a82f3b30647b3752f1c56209bf3838f81f12b)
385
352
  check_type(argname="argument login_command", value=login_command, expected_type=type_hints["login_command"])
386
353
  check_type(argname="argument region", value=region, expected_type=type_hints["region"])
387
- self._values: typing.Dict[str, typing.Any] = {
354
+ self._values: typing.Dict[builtins.str, typing.Any] = {
388
355
  "login_command": login_command,
389
356
  }
390
357
  if region is not None:
@@ -445,9 +412,7 @@ class Source(
445
412
  :param path: - path to the directory containing your Dockerfile (not a path to a file).
446
413
  '''
447
414
  if __debug__:
448
- def stub(path: builtins.str) -> None:
449
- ...
450
- type_hints = typing.get_type_hints(stub)
415
+ type_hints = typing.get_type_hints(_typecheckingstub__db65ec22904789f5c5885c02be8a370e36cc22d0ec17e7c61516250420ad62be)
451
416
  check_type(argname="argument path", value=path, expected_type=type_hints["path"])
452
417
  return typing.cast("Source", jsii.sinvoke(cls, "directory", [path]))
453
418
 
@@ -455,9 +420,9 @@ class Source(
455
420
  @abc.abstractmethod
456
421
  def bind(
457
422
  self,
458
- scope: constructs.Construct,
423
+ scope: _constructs_77d1e7e8.Construct,
459
424
  *,
460
- handler_role: aws_cdk.aws_iam.IRole,
425
+ handler_role: _aws_cdk_aws_iam_ceddda9d.IRole,
461
426
  ) -> "SourceConfig":
462
427
  '''Bind grants the CodeBuild role permissions to pull from a repository if necessary.
463
428
 
@@ -473,9 +438,9 @@ class _SourceProxy(Source):
473
438
  @jsii.member(jsii_name="bind")
474
439
  def bind(
475
440
  self,
476
- scope: constructs.Construct,
441
+ scope: _constructs_77d1e7e8.Construct,
477
442
  *,
478
- handler_role: aws_cdk.aws_iam.IRole,
443
+ handler_role: _aws_cdk_aws_iam_ceddda9d.IRole,
479
444
  ) -> "SourceConfig":
480
445
  '''Bind grants the CodeBuild role permissions to pull from a repository if necessary.
481
446
 
@@ -485,13 +450,7 @@ class _SourceProxy(Source):
485
450
  :param handler_role: The role for the handler.
486
451
  '''
487
452
  if __debug__:
488
- def stub(
489
- scope: constructs.Construct,
490
- *,
491
- handler_role: aws_cdk.aws_iam.IRole,
492
- ) -> None:
493
- ...
494
- type_hints = typing.get_type_hints(stub)
453
+ type_hints = typing.get_type_hints(_typecheckingstub__8cca505ce83d3a1ab271e3a2cbb637b501f2fc5ab1cfa0f1499639a44bc900ff)
495
454
  check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
496
455
  context = SourceContext(handler_role=handler_role)
497
456
 
@@ -516,7 +475,7 @@ class SourceConfig:
516
475
  *,
517
476
  image_tag: builtins.str,
518
477
  image_uri: builtins.str,
519
- login_config: typing.Union[LoginConfig, typing.Dict[str, typing.Any]],
478
+ login_config: typing.Union[LoginConfig, typing.Dict[builtins.str, typing.Any]],
520
479
  ) -> None:
521
480
  '''Source information.
522
481
 
@@ -527,18 +486,11 @@ class SourceConfig:
527
486
  if isinstance(login_config, dict):
528
487
  login_config = LoginConfig(**login_config)
529
488
  if __debug__:
530
- def stub(
531
- *,
532
- image_tag: builtins.str,
533
- image_uri: builtins.str,
534
- login_config: typing.Union[LoginConfig, typing.Dict[str, typing.Any]],
535
- ) -> None:
536
- ...
537
- type_hints = typing.get_type_hints(stub)
489
+ type_hints = typing.get_type_hints(_typecheckingstub__d1029c54211a3b9c9b891ec2bf98ac64a4d2016a2c33156e7dc580035a35e7c3)
538
490
  check_type(argname="argument image_tag", value=image_tag, expected_type=type_hints["image_tag"])
539
491
  check_type(argname="argument image_uri", value=image_uri, expected_type=type_hints["image_uri"])
540
492
  check_type(argname="argument login_config", value=login_config, expected_type=type_hints["login_config"])
541
- self._values: typing.Dict[str, typing.Any] = {
493
+ self._values: typing.Dict[builtins.str, typing.Any] = {
542
494
  "image_tag": image_tag,
543
495
  "image_uri": image_uri,
544
496
  "login_config": login_config,
@@ -583,26 +535,24 @@ class SourceConfig:
583
535
  name_mapping={"handler_role": "handlerRole"},
584
536
  )
585
537
  class SourceContext:
586
- def __init__(self, *, handler_role: aws_cdk.aws_iam.IRole) -> None:
538
+ def __init__(self, *, handler_role: _aws_cdk_aws_iam_ceddda9d.IRole) -> None:
587
539
  '''Bind context for Source.
588
540
 
589
541
  :param handler_role: The role for the handler.
590
542
  '''
591
543
  if __debug__:
592
- def stub(*, handler_role: aws_cdk.aws_iam.IRole) -> None:
593
- ...
594
- type_hints = typing.get_type_hints(stub)
544
+ type_hints = typing.get_type_hints(_typecheckingstub__dbb60b58353b017d9771a1222eb1ebcdb71ddd51b24aa13fa203b9c9447c21e5)
595
545
  check_type(argname="argument handler_role", value=handler_role, expected_type=type_hints["handler_role"])
596
- self._values: typing.Dict[str, typing.Any] = {
546
+ self._values: typing.Dict[builtins.str, typing.Any] = {
597
547
  "handler_role": handler_role,
598
548
  }
599
549
 
600
550
  @builtins.property
601
- def handler_role(self) -> aws_cdk.aws_iam.IRole:
551
+ def handler_role(self) -> _aws_cdk_aws_iam_ceddda9d.IRole:
602
552
  '''The role for the handler.'''
603
553
  result = self._values.get("handler_role")
604
554
  assert result is not None, "Required property 'handler_role' is missing"
605
- return typing.cast(aws_cdk.aws_iam.IRole, result)
555
+ return typing.cast(_aws_cdk_aws_iam_ceddda9d.IRole, result)
606
556
 
607
557
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
608
558
  return isinstance(rhs, self.__class__) and rhs._values == self._values
@@ -629,3 +579,89 @@ __all__ = [
629
579
  ]
630
580
 
631
581
  publication.publish()
582
+
583
+ def _typecheckingstub__0c54a04beda47ee3571d27fb1776b4ffa8d1baa651e949586e806ae0d1e71d50(
584
+ repository: _aws_cdk_aws_ecr_ceddda9d.IRepository,
585
+ *,
586
+ tag: typing.Optional[builtins.str] = None,
587
+ ) -> None:
588
+ """Type checking stubs"""
589
+ pass
590
+
591
+ def _typecheckingstub__a72c8919b92b60128c0141d7dc0f052b2794fbe84d15e7bc089a1deebded9c1a(
592
+ role: _aws_cdk_aws_iam_ceddda9d.IGrantable,
593
+ ) -> None:
594
+ """Type checking stubs"""
595
+ pass
596
+
597
+ def _typecheckingstub__6c4d6944397e455f8103ad368412e09a6c10b74703506a5c7f59780b39d51acf(
598
+ *,
599
+ destination_uri: builtins.str,
600
+ login_config: typing.Union[LoginConfig, typing.Dict[builtins.str, typing.Any]],
601
+ destination_tag: typing.Optional[builtins.str] = None,
602
+ ) -> None:
603
+ """Type checking stubs"""
604
+ pass
605
+
606
+ def _typecheckingstub__a2105050e0037a99087a0a9f4c72648eac026dc77ac1653449544314b8074152(
607
+ scope: _constructs_77d1e7e8.Construct,
608
+ id: builtins.str,
609
+ *,
610
+ destination: Destination,
611
+ source: Source,
612
+ ) -> None:
613
+ """Type checking stubs"""
614
+ pass
615
+
616
+ def _typecheckingstub__08edffa43996dc151a99914067a04c7d973855ab66ba9e857b3b0a3f8c9e7e80(
617
+ *,
618
+ destination: Destination,
619
+ source: Source,
620
+ ) -> None:
621
+ """Type checking stubs"""
622
+ pass
623
+
624
+ def _typecheckingstub__8bd258127f97145e592aa9e2f8f153fcadf95f957f225e6b5c5c6a17d1f54fba(
625
+ *,
626
+ tag: typing.Optional[builtins.str] = None,
627
+ ) -> None:
628
+ """Type checking stubs"""
629
+ pass
630
+
631
+ def _typecheckingstub__9f2f12359ef734edbf3a5098ef6a82f3b30647b3752f1c56209bf3838f81f12b(
632
+ *,
633
+ login_command: builtins.str,
634
+ region: typing.Optional[builtins.str] = None,
635
+ ) -> None:
636
+ """Type checking stubs"""
637
+ pass
638
+
639
+ def _typecheckingstub__db65ec22904789f5c5885c02be8a370e36cc22d0ec17e7c61516250420ad62be(
640
+ path: builtins.str,
641
+ ) -> None:
642
+ """Type checking stubs"""
643
+ pass
644
+
645
+ def _typecheckingstub__8cca505ce83d3a1ab271e3a2cbb637b501f2fc5ab1cfa0f1499639a44bc900ff(
646
+ scope: _constructs_77d1e7e8.Construct,
647
+ *,
648
+ handler_role: _aws_cdk_aws_iam_ceddda9d.IRole,
649
+ ) -> None:
650
+ """Type checking stubs"""
651
+ pass
652
+
653
+ def _typecheckingstub__d1029c54211a3b9c9b891ec2bf98ac64a4d2016a2c33156e7dc580035a35e7c3(
654
+ *,
655
+ image_tag: builtins.str,
656
+ image_uri: builtins.str,
657
+ login_config: typing.Union[LoginConfig, typing.Dict[builtins.str, typing.Any]],
658
+ ) -> None:
659
+ """Type checking stubs"""
660
+ pass
661
+
662
+ def _typecheckingstub__dbb60b58353b017d9771a1222eb1ebcdb71ddd51b24aa13fa203b9c9447c21e5(
663
+ *,
664
+ handler_role: _aws_cdk_aws_iam_ceddda9d.IRole,
665
+ ) -> None:
666
+ """Type checking stubs"""
667
+ pass
@@ -15,9 +15,9 @@ import constructs._jsii
15
15
 
16
16
  __jsii_assembly__ = jsii.JSIIAssembly.load(
17
17
  "cdk-docker-image-deployment",
18
- "0.0.77",
18
+ "0.0.105",
19
19
  __name__[0:-6],
20
- "cdk-docker-image-deployment@0.0.77.jsii.tgz",
20
+ "cdk-docker-image-deployment@0.0.105.jsii.tgz",
21
21
  )
22
22
 
23
23
  __all__ = [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cdk-docker-image-deployment
3
- Version: 0.0.77
3
+ Version: 0.0.105
4
4
  Summary: This module allows you to copy docker image assets to a repository you control. This can be necessary if you want to build a Docker image in one CDK app and consume it in a different app or outside the CDK.
5
5
  Home-page: https://github.com/cdklabs/cdk-docker-image-deployment#readme
6
6
  Author: Parker Scanlon
@@ -24,7 +24,7 @@ License-File: LICENSE
24
24
  License-File: NOTICE
25
25
  Requires-Dist: aws-cdk-lib (<3.0.0,>=2.24.0)
26
26
  Requires-Dist: constructs (<11.0.0,>=10.0.5)
27
- Requires-Dist: jsii (<2.0.0,>=1.71.0)
27
+ Requires-Dist: jsii (<2.0.0,>=1.72.0)
28
28
  Requires-Dist: publication (>=0.0.3)
29
29
  Requires-Dist: typeguard (~=2.13.3)
30
30
 
@@ -48,7 +48,7 @@ new imagedeploy.DockerImageDeployment(this, 'ExampleImageDeploymentWithTag', {
48
48
  source: imagedeploy.Source.directory('path/to/directory'),
49
49
  destination: imagedeploy.Destination.ecr(repo, {
50
50
  tag: 'myspecialtag',
51
- });
51
+ }),
52
52
  });
53
53
  ```
54
54
 
@@ -0,0 +1,10 @@
1
+ cdk_docker_image_deployment/__init__.py,sha256=k5GTv13dKs1im5otSk7oSMwSZCZqmUls90UM2fPlgXw,24643
2
+ cdk_docker_image_deployment/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
3
+ cdk_docker_image_deployment/_jsii/__init__.py,sha256=LX0twnjE2oXXfgEBCq4-lamFglKADnVj1W1a2e3I_oQ,438
4
+ cdk_docker_image_deployment/_jsii/cdk-docker-image-deployment@0.0.105.jsii.tgz,sha256=ziFalqNkev4DzZi9sHpedG3yt7Fc5lHS1uWp8G5jv_Q,10370335
5
+ cdk_docker_image_deployment-0.0.105.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
6
+ cdk_docker_image_deployment-0.0.105.dist-info/METADATA,sha256=5Pm30b8CdSAdyi34VUEJgtjUckdHYRw9_lyT2hOvthE,3932
7
+ cdk_docker_image_deployment-0.0.105.dist-info/NOTICE,sha256=1CkO1kwu3Q_OHYTj-d-yiBJA_lNN73a4zSntavaD4oc,67
8
+ cdk_docker_image_deployment-0.0.105.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
9
+ cdk_docker_image_deployment-0.0.105.dist-info/top_level.txt,sha256=WdzWJDV-WRpz7LHNc3kSSBBcEbKJGcyyW5BcqU_l1Ew,28
10
+ cdk_docker_image_deployment-0.0.105.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.37.1)
2
+ Generator: bdist_wheel (0.38.4)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,10 +0,0 @@
1
- cdk_docker_image_deployment/__init__.py,sha256=bNb9pa3HJobYhnJC_sDfvg96ZoXrQUO58_IB9ixTBSM,22750
2
- cdk_docker_image_deployment/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
3
- cdk_docker_image_deployment/_jsii/__init__.py,sha256=phCWNWPB0S3DonNWgiAHQQPnsQp5VsJFtIRpdxFATjU,436
4
- cdk_docker_image_deployment/_jsii/cdk-docker-image-deployment@0.0.77.jsii.tgz,sha256=R3wjnLAl-_15rF-VXkieRAHwmkCc2dwrT7rH6CJVPpc,10019866
5
- cdk_docker_image_deployment-0.0.77.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
6
- cdk_docker_image_deployment-0.0.77.dist-info/METADATA,sha256=DK3YLPoqAWqw03GCKVJQMjON31uvAcRFdNda0UberNc,3931
7
- cdk_docker_image_deployment-0.0.77.dist-info/NOTICE,sha256=1CkO1kwu3Q_OHYTj-d-yiBJA_lNN73a4zSntavaD4oc,67
8
- cdk_docker_image_deployment-0.0.77.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
9
- cdk_docker_image_deployment-0.0.77.dist-info/top_level.txt,sha256=WdzWJDV-WRpz7LHNc3kSSBBcEbKJGcyyW5BcqU_l1Ew,28
10
- cdk_docker_image_deployment-0.0.77.dist-info/RECORD,,