aws-cdk-lib 2.129.0__py3-none-any.whl → 2.131.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.

Potentially problematic release.


This version of aws-cdk-lib might be problematic. Click here for more details.

Files changed (75) hide show
  1. aws_cdk/__init__.py +41 -21
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.129.0.jsii.tgz → aws-cdk-lib@2.131.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_apigatewayv2/__init__.py +52 -11
  5. aws_cdk/aws_apigatewayv2_integrations/__init__.py +286 -0
  6. aws_cdk/aws_appconfig/__init__.py +13062 -2713
  7. aws_cdk/aws_applicationautoscaling/__init__.py +80 -123
  8. aws_cdk/aws_applicationinsights/__init__.py +48 -0
  9. aws_cdk/aws_apprunner/__init__.py +8 -1
  10. aws_cdk/aws_appstream/__init__.py +8 -1
  11. aws_cdk/aws_appsync/__init__.py +324 -103
  12. aws_cdk/aws_athena/__init__.py +8 -1
  13. aws_cdk/aws_b2bi/__init__.py +30 -4
  14. aws_cdk/aws_backup/__init__.py +80 -56
  15. aws_cdk/aws_bedrock/__init__.py +13 -1
  16. aws_cdk/aws_cleanrooms/__init__.py +37 -5
  17. aws_cdk/aws_cloudtrail/__init__.py +23 -1
  18. aws_cdk/aws_codebuild/__init__.py +8 -1
  19. aws_cdk/aws_codestarconnections/__init__.py +8 -1
  20. aws_cdk/aws_cognito/__init__.py +21 -21
  21. aws_cdk/aws_comprehend/__init__.py +8 -1
  22. aws_cdk/aws_connect/__init__.py +57 -8
  23. aws_cdk/aws_controltower/__init__.py +27 -7
  24. aws_cdk/aws_customerprofiles/__init__.py +136 -123
  25. aws_cdk/aws_datapipeline/__init__.py +19 -11
  26. aws_cdk/aws_datasync/__init__.py +8 -1
  27. aws_cdk/aws_datazone/__init__.py +9 -1
  28. aws_cdk/aws_dms/__init__.py +29 -4
  29. aws_cdk/aws_docdb/__init__.py +131 -5
  30. aws_cdk/aws_ec2/__init__.py +178 -65
  31. aws_cdk/aws_ecs/__init__.py +43 -51
  32. aws_cdk/aws_ecs_patterns/__init__.py +214 -0
  33. aws_cdk/aws_eks/__init__.py +44 -3
  34. aws_cdk/aws_elasticache/__init__.py +8 -1
  35. aws_cdk/aws_elasticloadbalancingv2/__init__.py +8 -1
  36. aws_cdk/aws_emr/__init__.py +8 -1
  37. aws_cdk/aws_entityresolution/__init__.py +23 -3
  38. aws_cdk/aws_events/__init__.py +12 -1
  39. aws_cdk/aws_fms/__init__.py +8 -1
  40. aws_cdk/aws_glue/__init__.py +18 -4
  41. aws_cdk/aws_healthimaging/__init__.py +9 -1
  42. aws_cdk/aws_inspectorv2/__init__.py +9 -1
  43. aws_cdk/aws_iot/__init__.py +29 -4
  44. aws_cdk/aws_ivs/__init__.py +8 -1
  45. aws_cdk/aws_kms/__init__.py +1 -1
  46. aws_cdk/aws_lambda/__init__.py +3 -5
  47. aws_cdk/aws_location/__init__.py +44 -6
  48. aws_cdk/aws_logs/__init__.py +22 -3
  49. aws_cdk/aws_macie/__init__.py +15 -2
  50. aws_cdk/aws_medialive/__init__.py +8 -1
  51. aws_cdk/aws_mediapackagev2/__init__.py +23 -3
  52. aws_cdk/aws_mediatailor/__init__.py +29 -4
  53. aws_cdk/aws_msk/__init__.py +8 -1
  54. aws_cdk/aws_neptunegraph/__init__.py +9 -1
  55. aws_cdk/aws_networkfirewall/__init__.py +8 -1
  56. aws_cdk/aws_opensearchservice/__init__.py +6 -3
  57. aws_cdk/aws_pcaconnectorad/__init__.py +23 -3
  58. aws_cdk/aws_pinpointemail/__init__.py +23 -3
  59. aws_cdk/aws_quicksight/__init__.py +37 -0
  60. aws_cdk/aws_rds/__init__.py +52 -9
  61. aws_cdk/aws_route53resolver/__init__.py +8 -1
  62. aws_cdk/aws_s3/__init__.py +29 -4
  63. aws_cdk/aws_sagemaker/__init__.py +19 -8
  64. aws_cdk/aws_securityhub/__init__.py +8 -1
  65. aws_cdk/aws_shield/__init__.py +16 -2
  66. aws_cdk/aws_workspacesthinclient/__init__.py +9 -1
  67. aws_cdk/aws_workspacesweb/__init__.py +51 -7
  68. aws_cdk/aws_xray/__init__.py +16 -2
  69. aws_cdk/pipelines/__init__.py +3 -2
  70. {aws_cdk_lib-2.129.0.dist-info → aws_cdk_lib-2.131.0.dist-info}/METADATA +1 -1
  71. {aws_cdk_lib-2.129.0.dist-info → aws_cdk_lib-2.131.0.dist-info}/NOTICE +30 -0
  72. {aws_cdk_lib-2.129.0.dist-info → aws_cdk_lib-2.131.0.dist-info}/RECORD +75 -75
  73. {aws_cdk_lib-2.129.0.dist-info → aws_cdk_lib-2.131.0.dist-info}/LICENSE +0 -0
  74. {aws_cdk_lib-2.129.0.dist-info → aws_cdk_lib-2.131.0.dist-info}/WHEEL +0 -0
  75. {aws_cdk_lib-2.129.0.dist-info → aws_cdk_lib-2.131.0.dist-info}/top_level.txt +0 -0
@@ -55,6 +55,8 @@ from .. import (
55
55
  CfnTag as _CfnTag_f6864754,
56
56
  IInspectable as _IInspectable_c2943556,
57
57
  IResolvable as _IResolvable_da3f097b,
58
+ ITaggableV2 as _ITaggableV2_4e6798f8,
59
+ TagManager as _TagManager_0a598cb3,
58
60
  TreeInspector as _TreeInspector_488e0dd5,
59
61
  )
60
62
 
@@ -621,7 +623,7 @@ class CfnProactiveEngagementProps:
621
623
  )
622
624
 
623
625
 
624
- @jsii.implements(_IInspectable_c2943556)
626
+ @jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
625
627
  class CfnProtection(
626
628
  _CfnResource_9df397a6,
627
629
  metaclass=jsii.JSIIMeta,
@@ -764,6 +766,12 @@ class CfnProtection(
764
766
  '''
765
767
  return typing.cast(builtins.str, jsii.get(self, "attrProtectionId"))
766
768
 
769
+ @builtins.property
770
+ @jsii.member(jsii_name="cdkTagManager")
771
+ def cdk_tag_manager(self) -> _TagManager_0a598cb3:
772
+ '''Tag Manager which manages the tags for this resource.'''
773
+ return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
774
+
767
775
  @builtins.property
768
776
  @jsii.member(jsii_name="cfnProperties")
769
777
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -1018,7 +1026,7 @@ class CfnProtection(
1018
1026
  )
1019
1027
 
1020
1028
 
1021
- @jsii.implements(_IInspectable_c2943556)
1029
+ @jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
1022
1030
  class CfnProtectionGroup(
1023
1031
  _CfnResource_9df397a6,
1024
1032
  metaclass=jsii.JSIIMeta,
@@ -1131,6 +1139,12 @@ class CfnProtectionGroup(
1131
1139
  '''
1132
1140
  return typing.cast(builtins.str, jsii.get(self, "attrProtectionGroupArn"))
1133
1141
 
1142
+ @builtins.property
1143
+ @jsii.member(jsii_name="cdkTagManager")
1144
+ def cdk_tag_manager(self) -> _TagManager_0a598cb3:
1145
+ '''Tag Manager which manages the tags for this resource.'''
1146
+ return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
1147
+
1134
1148
  @builtins.property
1135
1149
  @jsii.member(jsii_name="cfnProperties")
1136
1150
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -55,11 +55,13 @@ from .. import (
55
55
  CfnTag as _CfnTag_f6864754,
56
56
  IInspectable as _IInspectable_c2943556,
57
57
  IResolvable as _IResolvable_da3f097b,
58
+ ITaggableV2 as _ITaggableV2_4e6798f8,
59
+ TagManager as _TagManager_0a598cb3,
58
60
  TreeInspector as _TreeInspector_488e0dd5,
59
61
  )
60
62
 
61
63
 
62
- @jsii.implements(_IInspectable_c2943556)
64
+ @jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
63
65
  class CfnEnvironment(
64
66
  _CfnResource_9df397a6,
65
67
  metaclass=jsii.JSIIMeta,
@@ -271,6 +273,12 @@ class CfnEnvironment(
271
273
  '''
272
274
  return typing.cast(builtins.str, jsii.get(self, "attrUpdatedAt"))
273
275
 
276
+ @builtins.property
277
+ @jsii.member(jsii_name="cdkTagManager")
278
+ def cdk_tag_manager(self) -> _TagManager_0a598cb3:
279
+ '''Tag Manager which manages the tags for this resource.'''
280
+ return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
281
+
274
282
  @builtins.property
275
283
  @jsii.member(jsii_name="cfnProperties")
276
284
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -55,11 +55,13 @@ from .. import (
55
55
  CfnTag as _CfnTag_f6864754,
56
56
  IInspectable as _IInspectable_c2943556,
57
57
  IResolvable as _IResolvable_da3f097b,
58
+ ITaggableV2 as _ITaggableV2_4e6798f8,
59
+ TagManager as _TagManager_0a598cb3,
58
60
  TreeInspector as _TreeInspector_488e0dd5,
59
61
  )
60
62
 
61
63
 
62
- @jsii.implements(_IInspectable_c2943556)
64
+ @jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
63
65
  class CfnBrowserSettings(
64
66
  _CfnResource_9df397a6,
65
67
  metaclass=jsii.JSIIMeta,
@@ -170,6 +172,12 @@ class CfnBrowserSettings(
170
172
  '''
171
173
  return typing.cast(builtins.str, jsii.get(self, "attrBrowserSettingsArn"))
172
174
 
175
+ @builtins.property
176
+ @jsii.member(jsii_name="cdkTagManager")
177
+ def cdk_tag_manager(self) -> _TagManager_0a598cb3:
178
+ '''Tag Manager which manages the tags for this resource.'''
179
+ return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
180
+
173
181
  @builtins.property
174
182
  @jsii.member(jsii_name="cfnProperties")
175
183
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -663,7 +671,7 @@ class CfnIdentityProviderProps:
663
671
  )
664
672
 
665
673
 
666
- @jsii.implements(_IInspectable_c2943556)
674
+ @jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
667
675
  class CfnIpAccessSettings(
668
676
  _CfnResource_9df397a6,
669
677
  metaclass=jsii.JSIIMeta,
@@ -798,6 +806,12 @@ class CfnIpAccessSettings(
798
806
  '''
799
807
  return typing.cast(builtins.str, jsii.get(self, "attrIpAccessSettingsArn"))
800
808
 
809
+ @builtins.property
810
+ @jsii.member(jsii_name="cdkTagManager")
811
+ def cdk_tag_manager(self) -> _TagManager_0a598cb3:
812
+ '''Tag Manager which manages the tags for this resource.'''
813
+ return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
814
+
801
815
  @builtins.property
802
816
  @jsii.member(jsii_name="cfnProperties")
803
817
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -1126,7 +1140,7 @@ class CfnIpAccessSettingsProps:
1126
1140
  )
1127
1141
 
1128
1142
 
1129
- @jsii.implements(_IInspectable_c2943556)
1143
+ @jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
1130
1144
  class CfnNetworkSettings(
1131
1145
  _CfnResource_9df397a6,
1132
1146
  metaclass=jsii.JSIIMeta,
@@ -1241,6 +1255,12 @@ class CfnNetworkSettings(
1241
1255
  '''
1242
1256
  return typing.cast(builtins.str, jsii.get(self, "attrNetworkSettingsArn"))
1243
1257
 
1258
+ @builtins.property
1259
+ @jsii.member(jsii_name="cdkTagManager")
1260
+ def cdk_tag_manager(self) -> _TagManager_0a598cb3:
1261
+ '''Tag Manager which manages the tags for this resource.'''
1262
+ return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
1263
+
1244
1264
  @builtins.property
1245
1265
  @jsii.member(jsii_name="cfnProperties")
1246
1266
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -1421,7 +1441,7 @@ class CfnNetworkSettingsProps:
1421
1441
  )
1422
1442
 
1423
1443
 
1424
- @jsii.implements(_IInspectable_c2943556)
1444
+ @jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
1425
1445
  class CfnPortal(
1426
1446
  _CfnResource_9df397a6,
1427
1447
  metaclass=jsii.JSIIMeta,
@@ -1617,6 +1637,12 @@ class CfnPortal(
1617
1637
  '''
1618
1638
  return typing.cast(builtins.str, jsii.get(self, "attrStatusReason"))
1619
1639
 
1640
+ @builtins.property
1641
+ @jsii.member(jsii_name="cdkTagManager")
1642
+ def cdk_tag_manager(self) -> _TagManager_0a598cb3:
1643
+ '''Tag Manager which manages the tags for this resource.'''
1644
+ return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
1645
+
1620
1646
  @builtins.property
1621
1647
  @jsii.member(jsii_name="cfnProperties")
1622
1648
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -2015,7 +2041,7 @@ class CfnPortalProps:
2015
2041
  )
2016
2042
 
2017
2043
 
2018
- @jsii.implements(_IInspectable_c2943556)
2044
+ @jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
2019
2045
  class CfnTrustStore(
2020
2046
  _CfnResource_9df397a6,
2021
2047
  metaclass=jsii.JSIIMeta,
@@ -2115,6 +2141,12 @@ class CfnTrustStore(
2115
2141
  '''
2116
2142
  return typing.cast(builtins.str, jsii.get(self, "attrTrustStoreArn"))
2117
2143
 
2144
+ @builtins.property
2145
+ @jsii.member(jsii_name="cdkTagManager")
2146
+ def cdk_tag_manager(self) -> _TagManager_0a598cb3:
2147
+ '''Tag Manager which manages the tags for this resource.'''
2148
+ return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
2149
+
2118
2150
  @builtins.property
2119
2151
  @jsii.member(jsii_name="cfnProperties")
2120
2152
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -2226,7 +2258,7 @@ class CfnTrustStoreProps:
2226
2258
  )
2227
2259
 
2228
2260
 
2229
- @jsii.implements(_IInspectable_c2943556)
2261
+ @jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
2230
2262
  class CfnUserAccessLoggingSettings(
2231
2263
  _CfnResource_9df397a6,
2232
2264
  metaclass=jsii.JSIIMeta,
@@ -2332,6 +2364,12 @@ class CfnUserAccessLoggingSettings(
2332
2364
  '''
2333
2365
  return typing.cast(builtins.str, jsii.get(self, "attrUserAccessLoggingSettingsArn"))
2334
2366
 
2367
+ @builtins.property
2368
+ @jsii.member(jsii_name="cdkTagManager")
2369
+ def cdk_tag_manager(self) -> _TagManager_0a598cb3:
2370
+ '''Tag Manager which manages the tags for this resource.'''
2371
+ return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
2372
+
2335
2373
  @builtins.property
2336
2374
  @jsii.member(jsii_name="cfnProperties")
2337
2375
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -2443,7 +2481,7 @@ class CfnUserAccessLoggingSettingsProps:
2443
2481
  )
2444
2482
 
2445
2483
 
2446
- @jsii.implements(_IInspectable_c2943556)
2484
+ @jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
2447
2485
  class CfnUserSettings(
2448
2486
  _CfnResource_9df397a6,
2449
2487
  metaclass=jsii.JSIIMeta,
@@ -2601,6 +2639,12 @@ class CfnUserSettings(
2601
2639
  '''
2602
2640
  return typing.cast(builtins.str, jsii.get(self, "attrUserSettingsArn"))
2603
2641
 
2642
+ @builtins.property
2643
+ @jsii.member(jsii_name="cdkTagManager")
2644
+ def cdk_tag_manager(self) -> _TagManager_0a598cb3:
2645
+ '''Tag Manager which manages the tags for this resource.'''
2646
+ return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
2647
+
2604
2648
  @builtins.property
2605
2649
  @jsii.member(jsii_name="cfnProperties")
2606
2650
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -44,11 +44,13 @@ from .. import (
44
44
  CfnResource as _CfnResource_9df397a6,
45
45
  IInspectable as _IInspectable_c2943556,
46
46
  IResolvable as _IResolvable_da3f097b,
47
+ ITaggableV2 as _ITaggableV2_4e6798f8,
48
+ TagManager as _TagManager_0a598cb3,
47
49
  TreeInspector as _TreeInspector_488e0dd5,
48
50
  )
49
51
 
50
52
 
51
- @jsii.implements(_IInspectable_c2943556)
53
+ @jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
52
54
  class CfnGroup(
53
55
  _CfnResource_9df397a6,
54
56
  metaclass=jsii.JSIIMeta,
@@ -153,6 +155,12 @@ class CfnGroup(
153
155
  '''
154
156
  return typing.cast(builtins.str, jsii.get(self, "attrGroupArn"))
155
157
 
158
+ @builtins.property
159
+ @jsii.member(jsii_name="cdkTagManager")
160
+ def cdk_tag_manager(self) -> _TagManager_0a598cb3:
161
+ '''Tag Manager which manages the tags for this resource.'''
162
+ return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
163
+
156
164
  @builtins.property
157
165
  @jsii.member(jsii_name="cfnProperties")
158
166
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -648,7 +656,7 @@ class CfnResourcePolicyProps:
648
656
  )
649
657
 
650
658
 
651
- @jsii.implements(_IInspectable_c2943556)
659
+ @jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
652
660
  class CfnSamplingRule(
653
661
  _CfnResource_9df397a6,
654
662
  metaclass=jsii.JSIIMeta,
@@ -812,6 +820,12 @@ class CfnSamplingRule(
812
820
  '''
813
821
  return typing.cast(builtins.str, jsii.get(self, "attrRuleArn"))
814
822
 
823
+ @builtins.property
824
+ @jsii.member(jsii_name="cdkTagManager")
825
+ def cdk_tag_manager(self) -> _TagManager_0a598cb3:
826
+ '''Tag Manager which manages the tags for this resource.'''
827
+ return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
828
+
815
829
  @builtins.property
816
830
  @jsii.member(jsii_name="cfnProperties")
817
831
  def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
@@ -12,8 +12,9 @@ cluster directly: use CDK file assets with CloudFormation Init for instances, or
12
12
  CDK container assets for ECS clusters instead.
13
13
 
14
14
  Give the CDK Pipelines way of doing things a shot first: you might find it does
15
- everything you need. If you want or need more control, we recommend you drop
16
- down to using the `aws-codepipeline` construct library directly.
15
+ everything you need. If you need more control, or if you need `v2` support from
16
+ `aws-codepipeline`, we recommend you drop down to using the `aws-codepipeline`
17
+ construct library directly.
17
18
 
18
19
  > This module contains two sets of APIs: an **original** and a **modern** version of
19
20
  > CDK Pipelines. The *modern* API has been updated to be easier to work with and
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aws-cdk-lib
3
- Version: 2.129.0
3
+ Version: 2.131.0
4
4
  Summary: Version 2 of the AWS Cloud Development Kit library
5
5
  Home-page: https://github.com/aws/aws-cdk
6
6
  Author: Amazon Web Services
@@ -22,6 +22,36 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22
22
 
23
23
  ----------------
24
24
 
25
+ The AWS CDK includes the following third-party software/licensing:
26
+
27
+ ** mime-db - https://www.npmjs.com/package/mime-db
28
+ ** mime-types - https://www.npmjs.com/package/mime-types
29
+ (The MIT License)
30
+
31
+ Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
32
+ Copyright (c) 2015-2022 Douglas Christopher Wilson <doug@somethingdoug.com>
33
+
34
+ Permission is hereby granted, free of charge, to any person obtaining
35
+ a copy of this software and associated documentation files (the
36
+ 'Software'), to deal in the Software without restriction, including
37
+ without limitation the rights to use, copy, modify, merge, publish,
38
+ distribute, sublicense, and/or sell copies of the Software, and to
39
+ permit persons to whom the Software is furnished to do so, subject to
40
+ the following conditions:
41
+
42
+ The above copyright notice and this permission notice shall be
43
+ included in all copies or substantial portions of the Software.
44
+
45
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
46
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
47
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
48
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
49
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
50
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
51
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
52
+
53
+ ----------------
54
+
25
55
  ** fs-extra - https://www.npmjs.com/package/fs-extra
26
56
  Copyright (c) 2011-2017 JP Richardson
27
57