@aws-mdaa/dataops-job-l3-construct 1.4.0 → 1.6.0
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.
- package/.jsii +117 -121
- package/README.md +5 -0
- package/lib/dataops-job-l3-construct.d.ts +37 -240
- package/lib/dataops-job-l3-construct.js +61 -34
- package/node_modules/@aws-mdaa/config/.npmignore +34 -0
- package/node_modules/@aws-mdaa/config/README.md +3 -0
- package/node_modules/@aws-mdaa/config/jest.config.js +5 -0
- package/node_modules/@aws-mdaa/config/lib/blueprint-value-transformer.d.ts +20 -0
- package/node_modules/@aws-mdaa/config/lib/blueprint-value-transformer.js +70 -0
- package/node_modules/@aws-mdaa/config/lib/blueprint-value-transformer.ts +88 -0
- package/node_modules/@aws-mdaa/config/lib/config.d.ts +87 -0
- package/node_modules/@aws-mdaa/config/lib/config.js +7 -0
- package/node_modules/@aws-mdaa/config/lib/config.ts +92 -0
- package/node_modules/@aws-mdaa/config/lib/index.d.ts +11 -0
- package/node_modules/@aws-mdaa/config/lib/index.js +28 -0
- package/node_modules/@aws-mdaa/config/lib/index.ts +12 -0
- package/node_modules/@aws-mdaa/config/lib/param-transformer.d.ts +49 -0
- package/node_modules/@aws-mdaa/config/lib/param-transformer.js +160 -0
- package/node_modules/@aws-mdaa/config/lib/param-transformer.ts +159 -0
- package/node_modules/@aws-mdaa/config/lib/path-value-transformer.d.ts +10 -0
- package/node_modules/@aws-mdaa/config/lib/path-value-transformer.js +30 -0
- package/node_modules/@aws-mdaa/config/lib/path-value-transformer.ts +27 -0
- package/node_modules/@aws-mdaa/config/lib/ref-value-transformer.d.ts +44 -0
- package/node_modules/@aws-mdaa/config/lib/ref-value-transformer.js +243 -0
- package/node_modules/@aws-mdaa/config/lib/ref-value-transformer.ts +302 -0
- package/node_modules/@aws-mdaa/config/lib/ssm-ref-transformer.d.ts +8 -0
- package/node_modules/@aws-mdaa/config/lib/ssm-ref-transformer.js +22 -0
- package/node_modules/@aws-mdaa/config/lib/ssm-ref-transformer.ts +21 -0
- package/node_modules/@aws-mdaa/config/lib/transformer.d.ts +35 -0
- package/node_modules/@aws-mdaa/config/lib/transformer.js +66 -0
- package/node_modules/@aws-mdaa/config/lib/transformer.ts +74 -0
- package/node_modules/@aws-mdaa/{s3-bucketpolicy-helper → config}/package.json +17 -17
- package/node_modules/@aws-mdaa/config/test/blueprint-value-transformer.test.d.ts +5 -0
- package/node_modules/@aws-mdaa/config/test/blueprint-value-transformer.test.js +224 -0
- package/node_modules/@aws-mdaa/config/test/blueprint-value-transformer.test.ts +259 -0
- package/node_modules/@aws-mdaa/config/test/config-nt.test.d.ts +5 -0
- package/node_modules/@aws-mdaa/config/test/config-nt.test.js +129 -0
- package/node_modules/@aws-mdaa/config/test/config-nt.test.ts +163 -0
- package/node_modules/@aws-mdaa/config/test/config.test.d.ts +5 -0
- package/node_modules/@aws-mdaa/config/test/config.test.js +409 -0
- package/node_modules/@aws-mdaa/config/test/config.test.ts +517 -0
- package/node_modules/@aws-mdaa/config/test/param-transformer.test.d.ts +5 -0
- package/node_modules/@aws-mdaa/config/test/param-transformer.test.js +216 -0
- package/node_modules/@aws-mdaa/config/test/param-transformer.test.ts +234 -0
- package/node_modules/@aws-mdaa/config/test/path-value-transformer.test.d.ts +5 -0
- package/node_modules/@aws-mdaa/config/test/path-value-transformer.test.js +59 -0
- package/node_modules/@aws-mdaa/config/test/path-value-transformer.test.ts +68 -0
- package/node_modules/@aws-mdaa/config/test/ref-value-transformer.test.d.ts +5 -0
- package/node_modules/@aws-mdaa/config/test/ref-value-transformer.test.js +254 -0
- package/node_modules/@aws-mdaa/config/test/ref-value-transformer.test.ts +304 -0
- package/node_modules/@aws-mdaa/config/test/ssm-ref-transformer.test.d.ts +5 -0
- package/node_modules/@aws-mdaa/config/test/ssm-ref-transformer.test.js +66 -0
- package/node_modules/@aws-mdaa/config/test/ssm-ref-transformer.test.ts +79 -0
- package/node_modules/@aws-mdaa/config/tsconfig.json +40 -0
- package/node_modules/@aws-mdaa/config/tsconfig.tsbuildinfo +1 -0
- package/node_modules/@aws-mdaa/config/typedoc.json +7 -0
- package/node_modules/lodash/README.md +2 -2
- package/node_modules/lodash/_baseOrderBy.js +1 -1
- package/node_modules/lodash/_baseUnset.js +7 -20
- package/node_modules/lodash/_setCacheHas.js +1 -1
- package/node_modules/lodash/compact.js +1 -1
- package/node_modules/lodash/core.js +3 -3
- package/node_modules/lodash/core.min.js +26 -25
- package/node_modules/lodash/fromPairs.js +3 -1
- package/node_modules/lodash/lodash.js +38 -27
- package/node_modules/lodash/lodash.min.js +125 -129
- package/node_modules/lodash/package.json +4 -2
- package/node_modules/lodash/random.js +9 -0
- package/node_modules/lodash/template.js +16 -4
- package/node_modules/lodash/templateSettings.js +4 -0
- package/package.json +27 -30
- package/node_modules/@aws-mdaa/s3-bucketpolicy-helper/README.md +0 -185
- package/node_modules/@aws-mdaa/s3-bucketpolicy-helper/lib/index.d.ts +0 -57
- package/node_modules/@aws-mdaa/s3-bucketpolicy-helper/lib/index.js +0 -198
- package/node_modules/@aws-mdaa/s3-inventory-helper/README.md +0 -3
- package/node_modules/@aws-mdaa/s3-inventory-helper/lib/index.d.ts +0 -66
- package/node_modules/@aws-mdaa/s3-inventory-helper/lib/index.js +0 -222
- package/node_modules/@aws-mdaa/s3-inventory-helper/package.json +0 -42
package/.jsii
CHANGED
|
@@ -7,22 +7,20 @@
|
|
|
7
7
|
"url": "https://aws.amazon.com/solutions"
|
|
8
8
|
},
|
|
9
9
|
"bundled": {
|
|
10
|
-
"@aws-mdaa/
|
|
11
|
-
"
|
|
12
|
-
"lodash": "4.17.23"
|
|
10
|
+
"@aws-mdaa/config": "1.6.0",
|
|
11
|
+
"lodash": "4.18.1"
|
|
13
12
|
},
|
|
14
13
|
"dependencies": {
|
|
15
|
-
"@aws-mdaa/cloudwatch-constructs": "1.
|
|
16
|
-
"@aws-mdaa/construct": "1.
|
|
17
|
-
"@aws-mdaa/dataops-project-l3-construct": "1.
|
|
18
|
-
"@aws-mdaa/eventbridge-helper": "1.
|
|
19
|
-
"@aws-mdaa/glue-constructs": "1.
|
|
20
|
-
"@aws-mdaa/iam-constructs": "1.
|
|
21
|
-
"@aws-mdaa/iam-role-helper": "1.
|
|
22
|
-
"@aws-mdaa/l3-construct": "1.
|
|
23
|
-
"@aws-mdaa/
|
|
24
|
-
"@aws-mdaa/
|
|
25
|
-
"@aws-mdaa/sns-constructs": "1.4.0",
|
|
14
|
+
"@aws-mdaa/cloudwatch-constructs": "1.6.0",
|
|
15
|
+
"@aws-mdaa/construct": "1.6.0",
|
|
16
|
+
"@aws-mdaa/dataops-project-l3-construct": "1.6.0",
|
|
17
|
+
"@aws-mdaa/eventbridge-helper": "1.6.0",
|
|
18
|
+
"@aws-mdaa/glue-constructs": "1.6.0",
|
|
19
|
+
"@aws-mdaa/iam-constructs": "1.6.0",
|
|
20
|
+
"@aws-mdaa/iam-role-helper": "1.6.0",
|
|
21
|
+
"@aws-mdaa/l3-construct": "1.6.0",
|
|
22
|
+
"@aws-mdaa/s3-constructs": "1.6.0",
|
|
23
|
+
"@aws-mdaa/sns-constructs": "1.6.0",
|
|
26
24
|
"aws-cdk-lib": "2.220.0",
|
|
27
25
|
"cdk-nag": "2.37.55",
|
|
28
26
|
"constructs": "10.0.96"
|
|
@@ -190,13 +188,6 @@
|
|
|
190
188
|
}
|
|
191
189
|
}
|
|
192
190
|
},
|
|
193
|
-
"@aws-mdaa/datazone-l3-construct": {
|
|
194
|
-
"targets": {
|
|
195
|
-
"js": {
|
|
196
|
-
"npm": "@aws-mdaa/datazone-l3-construct"
|
|
197
|
-
}
|
|
198
|
-
}
|
|
199
|
-
},
|
|
200
191
|
"@aws-mdaa/ec2-constructs": {
|
|
201
192
|
"targets": {
|
|
202
193
|
"js": {
|
|
@@ -309,6 +300,13 @@
|
|
|
309
300
|
}
|
|
310
301
|
}
|
|
311
302
|
},
|
|
303
|
+
"@aws-mdaa/sagemaker-project-l3-construct": {
|
|
304
|
+
"targets": {
|
|
305
|
+
"js": {
|
|
306
|
+
"npm": "@aws-mdaa/sagemaker-project-l3-construct"
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
},
|
|
312
310
|
"@aws-mdaa/sns-constructs": {
|
|
313
311
|
"targets": {
|
|
314
312
|
"js": {
|
|
@@ -4394,7 +4392,7 @@
|
|
|
4394
4392
|
},
|
|
4395
4393
|
"name": "@aws-mdaa/dataops-job-l3-construct",
|
|
4396
4394
|
"readme": {
|
|
4397
|
-
"markdown": "# Construct Overview\n\nThe Data Ops Job CDK L3 construct is used to deploy the resources required to support and perform data operations on top of a Data Lake using Glue Jobs.\n\n***\n\n## Deployed Resources\n\n\n\n* **Glue Jobs** - Glue Jobs will be created for each job specification in the configs\n"
|
|
4395
|
+
"markdown": "# Construct Overview\n\nThe Data Ops Job CDK L3 construct is used to deploy the resources required to support and perform data operations on top of a Data Lake using Glue Jobs.\n\n***\n\n## Deployed Resources\n\n\n\n* **Glue Jobs** - Glue Jobs will be created for each job specification in the configs\n\n## Optional Features\n\n### Asset Script Resolution\nSet `assetBasePath` on the construct props to enable `asset:` prefixed paths in `scriptLocation` and `additionalScripts`. When a path starts with `asset:`, it is resolved relative to the configured base path (e.g., `asset:dq-main.py` resolves to `<assetBasePath>/dq-main.py`).\n"
|
|
4398
4396
|
},
|
|
4399
4397
|
"repository": {
|
|
4400
4398
|
"type": "git",
|
|
@@ -4420,7 +4418,7 @@
|
|
|
4420
4418
|
},
|
|
4421
4419
|
"locationInModule": {
|
|
4422
4420
|
"filename": "lib/dataops-job-l3-construct.ts",
|
|
4423
|
-
"line":
|
|
4421
|
+
"line": 160
|
|
4424
4422
|
},
|
|
4425
4423
|
"parameters": [
|
|
4426
4424
|
{
|
|
@@ -4446,7 +4444,7 @@
|
|
|
4446
4444
|
"kind": "class",
|
|
4447
4445
|
"locationInModule": {
|
|
4448
4446
|
"filename": "lib/dataops-job-l3-construct.ts",
|
|
4449
|
-
"line":
|
|
4447
|
+
"line": 156
|
|
4450
4448
|
},
|
|
4451
4449
|
"name": "GlueJobL3Construct",
|
|
4452
4450
|
"properties": [
|
|
@@ -4457,7 +4455,7 @@
|
|
|
4457
4455
|
"immutable": true,
|
|
4458
4456
|
"locationInModule": {
|
|
4459
4457
|
"filename": "lib/dataops-job-l3-construct.ts",
|
|
4460
|
-
"line":
|
|
4458
|
+
"line": 157
|
|
4461
4459
|
},
|
|
4462
4460
|
"name": "props",
|
|
4463
4461
|
"protected": true,
|
|
@@ -4481,7 +4479,7 @@
|
|
|
4481
4479
|
"kind": "interface",
|
|
4482
4480
|
"locationInModule": {
|
|
4483
4481
|
"filename": "lib/dataops-job-l3-construct.ts",
|
|
4484
|
-
"line":
|
|
4482
|
+
"line": 116
|
|
4485
4483
|
},
|
|
4486
4484
|
"name": "GlueJobL3ConstructProps",
|
|
4487
4485
|
"properties": [
|
|
@@ -4494,7 +4492,7 @@
|
|
|
4494
4492
|
"immutable": true,
|
|
4495
4493
|
"locationInModule": {
|
|
4496
4494
|
"filename": "lib/dataops-job-l3-construct.ts",
|
|
4497
|
-
"line":
|
|
4495
|
+
"line": 128
|
|
4498
4496
|
},
|
|
4499
4497
|
"name": "jobConfigs",
|
|
4500
4498
|
"type": {
|
|
@@ -4509,15 +4507,34 @@
|
|
|
4509
4507
|
{
|
|
4510
4508
|
"abstract": true,
|
|
4511
4509
|
"docs": {
|
|
4510
|
+
"remarks": "When a job's scriptLocation starts with `asset:`, it is resolved\nrelative to this directory.",
|
|
4512
4511
|
"stability": "experimental",
|
|
4513
|
-
"summary": "
|
|
4512
|
+
"summary": "Base path for resolving `asset:` prefixed script locations."
|
|
4514
4513
|
},
|
|
4515
4514
|
"immutable": true,
|
|
4516
4515
|
"locationInModule": {
|
|
4517
4516
|
"filename": "lib/dataops-job-l3-construct.ts",
|
|
4518
|
-
"line":
|
|
4517
|
+
"line": 153
|
|
4519
4518
|
},
|
|
4520
|
-
"name": "
|
|
4519
|
+
"name": "assetBasePath",
|
|
4520
|
+
"optional": true,
|
|
4521
|
+
"type": {
|
|
4522
|
+
"primitive": "string"
|
|
4523
|
+
}
|
|
4524
|
+
},
|
|
4525
|
+
{
|
|
4526
|
+
"abstract": true,
|
|
4527
|
+
"docs": {
|
|
4528
|
+
"stability": "experimental",
|
|
4529
|
+
"summary": "The name of the Data Ops project bucket where job resources will be deployed and which will be used as a temporary job location."
|
|
4530
|
+
},
|
|
4531
|
+
"immutable": true,
|
|
4532
|
+
"locationInModule": {
|
|
4533
|
+
"filename": "lib/dataops-job-l3-construct.ts",
|
|
4534
|
+
"line": 124
|
|
4535
|
+
},
|
|
4536
|
+
"name": "bucketName",
|
|
4537
|
+
"optional": true,
|
|
4521
4538
|
"type": {
|
|
4522
4539
|
"primitive": "string"
|
|
4523
4540
|
}
|
|
@@ -4532,7 +4549,7 @@
|
|
|
4532
4549
|
"immutable": true,
|
|
4533
4550
|
"locationInModule": {
|
|
4534
4551
|
"filename": "lib/dataops-job-l3-construct.ts",
|
|
4535
|
-
"line":
|
|
4552
|
+
"line": 120
|
|
4536
4553
|
},
|
|
4537
4554
|
"name": "deploymentRoleArn",
|
|
4538
4555
|
"optional": true,
|
|
@@ -4544,14 +4561,14 @@
|
|
|
4544
4561
|
"abstract": true,
|
|
4545
4562
|
"docs": {
|
|
4546
4563
|
"stability": "experimental",
|
|
4547
|
-
"summary": "
|
|
4564
|
+
"summary": "Dataops project KMS key ARN."
|
|
4548
4565
|
},
|
|
4549
4566
|
"immutable": true,
|
|
4550
4567
|
"locationInModule": {
|
|
4551
4568
|
"filename": "lib/dataops-job-l3-construct.ts",
|
|
4552
|
-
"line":
|
|
4569
|
+
"line": 146
|
|
4553
4570
|
},
|
|
4554
|
-
"name": "
|
|
4571
|
+
"name": "kmsArn",
|
|
4555
4572
|
"optional": true,
|
|
4556
4573
|
"type": {
|
|
4557
4574
|
"primitive": "string"
|
|
@@ -4561,14 +4578,14 @@
|
|
|
4561
4578
|
"abstract": true,
|
|
4562
4579
|
"docs": {
|
|
4563
4580
|
"stability": "experimental",
|
|
4564
|
-
"summary": "
|
|
4581
|
+
"summary": "Notification topic Arn."
|
|
4565
4582
|
},
|
|
4566
4583
|
"immutable": true,
|
|
4567
4584
|
"locationInModule": {
|
|
4568
4585
|
"filename": "lib/dataops-job-l3-construct.ts",
|
|
4569
|
-
"line":
|
|
4586
|
+
"line": 141
|
|
4570
4587
|
},
|
|
4571
|
-
"name": "
|
|
4588
|
+
"name": "notificationTopicArn",
|
|
4572
4589
|
"optional": true,
|
|
4573
4590
|
"type": {
|
|
4574
4591
|
"primitive": "string"
|
|
@@ -4578,14 +4595,14 @@
|
|
|
4578
4595
|
"abstract": true,
|
|
4579
4596
|
"docs": {
|
|
4580
4597
|
"stability": "experimental",
|
|
4581
|
-
"summary": "
|
|
4598
|
+
"summary": "Name of the dataops project to which the job will be associated."
|
|
4582
4599
|
},
|
|
4583
4600
|
"immutable": true,
|
|
4584
4601
|
"locationInModule": {
|
|
4585
4602
|
"filename": "lib/dataops-job-l3-construct.ts",
|
|
4586
|
-
"line":
|
|
4603
|
+
"line": 136
|
|
4587
4604
|
},
|
|
4588
|
-
"name": "
|
|
4605
|
+
"name": "projectName",
|
|
4589
4606
|
"optional": true,
|
|
4590
4607
|
"type": {
|
|
4591
4608
|
"primitive": "string"
|
|
@@ -4601,7 +4618,7 @@
|
|
|
4601
4618
|
"immutable": true,
|
|
4602
4619
|
"locationInModule": {
|
|
4603
4620
|
"filename": "lib/dataops-job-l3-construct.ts",
|
|
4604
|
-
"line":
|
|
4621
|
+
"line": 132
|
|
4605
4622
|
},
|
|
4606
4623
|
"name": "securityConfigurationName",
|
|
4607
4624
|
"optional": true,
|
|
@@ -4616,29 +4633,28 @@
|
|
|
4616
4633
|
"assembly": "@aws-mdaa/dataops-job-l3-construct",
|
|
4617
4634
|
"datatype": true,
|
|
4618
4635
|
"docs": {
|
|
4619
|
-
"remarks": "
|
|
4636
|
+
"remarks": "Use cases: Job command configuration; Script execution; Runtime environment; ETL job setup\n\nAWS: Glue job command configuration for script execution and runtime environment\n\nValidation: name and scriptLocation are required; pythonVersion is optional with specific constraints",
|
|
4620
4637
|
"stability": "experimental",
|
|
4621
|
-
"summary": "
|
|
4638
|
+
"summary": "Configuration for a Glue job command specifying script execution and runtime environment."
|
|
4622
4639
|
},
|
|
4623
4640
|
"fqn": "@aws-mdaa/dataops-job-l3-construct.JobCommand",
|
|
4624
4641
|
"kind": "interface",
|
|
4625
4642
|
"locationInModule": {
|
|
4626
4643
|
"filename": "lib/dataops-job-l3-construct.ts",
|
|
4627
|
-
"line":
|
|
4644
|
+
"line": 55
|
|
4628
4645
|
},
|
|
4629
4646
|
"name": "JobCommand",
|
|
4630
4647
|
"properties": [
|
|
4631
4648
|
{
|
|
4632
4649
|
"abstract": true,
|
|
4633
4650
|
"docs": {
|
|
4634
|
-
"remarks": "Defines whether to use glueetl for ETL jobs with Spark runtime or pythonshell for Python script execution with different resource allocation and capabilities.\n\nUse cases: Job type selection; Runtime environment; Execution model; Resource allocation\n\nAWS: Glue job command name for execution type and runtime environment selection\n\nValidation: Must be glueetl or pythonshell; required for job command type and execution environment\n *",
|
|
4635
4651
|
"stability": "experimental",
|
|
4636
|
-
"summary": "
|
|
4652
|
+
"summary": "Job type: 'glueetl' for Spark ETL or 'pythonshell' for Python scripts."
|
|
4637
4653
|
},
|
|
4638
4654
|
"immutable": true,
|
|
4639
4655
|
"locationInModule": {
|
|
4640
4656
|
"filename": "lib/dataops-job-l3-construct.ts",
|
|
4641
|
-
"line":
|
|
4657
|
+
"line": 57
|
|
4642
4658
|
},
|
|
4643
4659
|
"name": "name",
|
|
4644
4660
|
"type": {
|
|
@@ -4648,14 +4664,14 @@
|
|
|
4648
4664
|
{
|
|
4649
4665
|
"abstract": true,
|
|
4650
4666
|
"docs": {
|
|
4651
|
-
"remarks": "
|
|
4667
|
+
"remarks": "Available assets: dq-main.py (DQ evaluation, with utils/ as additionalScripts).",
|
|
4652
4668
|
"stability": "experimental",
|
|
4653
|
-
"summary": "
|
|
4669
|
+
"summary": "Relative path to the Glue script for job execution, or `asset:<filename>` to use a pre-built script from the app's assets directory."
|
|
4654
4670
|
},
|
|
4655
4671
|
"immutable": true,
|
|
4656
4672
|
"locationInModule": {
|
|
4657
4673
|
"filename": "lib/dataops-job-l3-construct.ts",
|
|
4658
|
-
"line":
|
|
4674
|
+
"line": 61
|
|
4659
4675
|
},
|
|
4660
4676
|
"name": "scriptLocation",
|
|
4661
4677
|
"type": {
|
|
@@ -4665,14 +4681,13 @@
|
|
|
4665
4681
|
{
|
|
4666
4682
|
"abstract": true,
|
|
4667
4683
|
"docs": {
|
|
4668
|
-
"remarks": "When specified, controls the Python runtime version for job execution ensuring script compatibility and feature availability.\n\nUse cases: Python version control; Runtime compatibility; Script execution; Version management\n\nAWS: Glue job Python version for runtime environment and script compatibility\n\nValidation: Must be 2 or 3 if provided; controls Python runtime version for job execution\n *",
|
|
4669
4684
|
"stability": "experimental",
|
|
4670
|
-
"summary": "
|
|
4685
|
+
"summary": "Python version for job runtime ('2' or '3')."
|
|
4671
4686
|
},
|
|
4672
4687
|
"immutable": true,
|
|
4673
4688
|
"locationInModule": {
|
|
4674
4689
|
"filename": "lib/dataops-job-l3-construct.ts",
|
|
4675
|
-
"line":
|
|
4690
|
+
"line": 59
|
|
4676
4691
|
},
|
|
4677
4692
|
"name": "pythonVersion",
|
|
4678
4693
|
"optional": true,
|
|
@@ -4687,29 +4702,28 @@
|
|
|
4687
4702
|
"assembly": "@aws-mdaa/dataops-job-l3-construct",
|
|
4688
4703
|
"datatype": true,
|
|
4689
4704
|
"docs": {
|
|
4690
|
-
"remarks": "
|
|
4705
|
+
"remarks": "Use cases: ETL job configuration; Data transformation; Job resource management; DataOps processing\n\nAWS: Glue job configuration for ETL processing and data transformation workflows\n\nValidation: executionRoleArn, command, and description are required; other properties are optional with specific constraints",
|
|
4691
4706
|
"stability": "experimental",
|
|
4692
|
-
"summary": "
|
|
4707
|
+
"summary": "Configuration for a Glue job including execution roles, commands, capacity, and monitoring."
|
|
4693
4708
|
},
|
|
4694
4709
|
"fqn": "@aws-mdaa/dataops-job-l3-construct.JobConfig",
|
|
4695
4710
|
"kind": "interface",
|
|
4696
4711
|
"locationInModule": {
|
|
4697
4712
|
"filename": "lib/dataops-job-l3-construct.ts",
|
|
4698
|
-
"line":
|
|
4713
|
+
"line": 75
|
|
4699
4714
|
},
|
|
4700
4715
|
"name": "JobConfig",
|
|
4701
4716
|
"properties": [
|
|
4702
4717
|
{
|
|
4703
4718
|
"abstract": true,
|
|
4704
4719
|
"docs": {
|
|
4705
|
-
"remarks": "Provides the command specification including job type, Python version, and script location for ETL job execution and data transformation.\n\nUse cases: Script execution; Runtime configuration; Job command setup; ETL processing\n\nAWS: Glue job command for script execution and runtime environment configuration\n\nValidation: Must be valid JobCommand; required for job command configuration and script execution\n *",
|
|
4706
4720
|
"stability": "experimental",
|
|
4707
|
-
"summary": "
|
|
4721
|
+
"summary": "Job command configuration defining script and runtime environment."
|
|
4708
4722
|
},
|
|
4709
4723
|
"immutable": true,
|
|
4710
4724
|
"locationInModule": {
|
|
4711
4725
|
"filename": "lib/dataops-job-l3-construct.ts",
|
|
4712
|
-
"line":
|
|
4726
|
+
"line": 79
|
|
4713
4727
|
},
|
|
4714
4728
|
"name": "command",
|
|
4715
4729
|
"type": {
|
|
@@ -4719,14 +4733,13 @@
|
|
|
4719
4733
|
{
|
|
4720
4734
|
"abstract": true,
|
|
4721
4735
|
"docs": {
|
|
4722
|
-
"remarks": "Provides descriptive information about the job's purpose, functionality, and operational characteristics for management and documentation.\n\nUse cases: Job documentation; Operational management; Purpose identification; Management information\n\nAWS: Glue job description for documentation and operational management\n\nValidation: Must be descriptive text; required for job documentation and operational management",
|
|
4723
4736
|
"stability": "experimental",
|
|
4724
|
-
"summary": "
|
|
4737
|
+
"summary": "Job description for documentation and management."
|
|
4725
4738
|
},
|
|
4726
4739
|
"immutable": true,
|
|
4727
4740
|
"locationInModule": {
|
|
4728
4741
|
"filename": "lib/dataops-job-l3-construct.ts",
|
|
4729
|
-
"line":
|
|
4742
|
+
"line": 89
|
|
4730
4743
|
},
|
|
4731
4744
|
"name": "description",
|
|
4732
4745
|
"type": {
|
|
@@ -4736,14 +4749,13 @@
|
|
|
4736
4749
|
{
|
|
4737
4750
|
"abstract": true,
|
|
4738
4751
|
"docs": {
|
|
4739
|
-
"remarks": "Provides the IAM role that the Glue job will assume for executing ETL operations and accessing AWS services during data processing workflows.\n\nUse cases: Job permissions; Service access; Secure execution; IAM role management\n\nAWS: IAM role ARN for Glue job execution permissions and service access\n\nValidation: Must be valid IAM role ARN; required for job execution permissions and service access",
|
|
4740
4752
|
"stability": "experimental",
|
|
4741
|
-
"summary": "
|
|
4753
|
+
"summary": "IAM role ARN for Glue job execution permissions."
|
|
4742
4754
|
},
|
|
4743
4755
|
"immutable": true,
|
|
4744
4756
|
"locationInModule": {
|
|
4745
4757
|
"filename": "lib/dataops-job-l3-construct.ts",
|
|
4746
|
-
"line":
|
|
4758
|
+
"line": 77
|
|
4747
4759
|
},
|
|
4748
4760
|
"name": "executionRoleArn",
|
|
4749
4761
|
"type": {
|
|
@@ -4753,14 +4765,13 @@
|
|
|
4753
4765
|
{
|
|
4754
4766
|
"abstract": true,
|
|
4755
4767
|
"docs": {
|
|
4756
|
-
"remarks": "Provides relative paths to additional files referenced by the ETL script for external resource access and file dependencies.\n\nUse cases: File dependencies; External resources; Resource management; File access\n\nAWS: Additional files for Glue job resource dependencies and external file access\n\nValidation: Must be array of valid file paths if provided; enables external file access and resource dependencies",
|
|
4757
4768
|
"stability": "experimental",
|
|
4758
|
-
"summary": "
|
|
4769
|
+
"summary": "Relative paths to additional files for the job."
|
|
4759
4770
|
},
|
|
4760
4771
|
"immutable": true,
|
|
4761
4772
|
"locationInModule": {
|
|
4762
4773
|
"filename": "lib/dataops-job-l3-construct.ts",
|
|
4763
|
-
"line":
|
|
4774
|
+
"line": 111
|
|
4764
4775
|
},
|
|
4765
4776
|
"name": "additionalFiles",
|
|
4766
4777
|
"optional": true,
|
|
@@ -4776,14 +4787,13 @@
|
|
|
4776
4787
|
{
|
|
4777
4788
|
"abstract": true,
|
|
4778
4789
|
"docs": {
|
|
4779
|
-
"remarks": "Provides relative paths to JAR files referenced by the ETL script for Java library integration and extended processing capabilities.\n\nUse cases: Java library integration; Extended functionality; Library dependencies; JAR file management\n\nAWS: Additional JAR files for Glue job library dependencies and Java integration\n\nValidation: Must be array of valid JAR file paths if provided; enables Java library integration and extended functionality",
|
|
4780
4790
|
"stability": "experimental",
|
|
4781
|
-
"summary": "
|
|
4791
|
+
"summary": "Relative paths to additional JAR files for the job."
|
|
4782
4792
|
},
|
|
4783
4793
|
"immutable": true,
|
|
4784
4794
|
"locationInModule": {
|
|
4785
4795
|
"filename": "lib/dataops-job-l3-construct.ts",
|
|
4786
|
-
"line":
|
|
4796
|
+
"line": 109
|
|
4787
4797
|
},
|
|
4788
4798
|
"name": "additionalJars",
|
|
4789
4799
|
"optional": true,
|
|
@@ -4799,14 +4809,13 @@
|
|
|
4799
4809
|
{
|
|
4800
4810
|
"abstract": true,
|
|
4801
4811
|
"docs": {
|
|
4802
|
-
"remarks": "Provides relative paths to additional Glue scripts referenced by the main ETL script for modular development and code organization.\n\nUse cases: Script dependencies; Modular development; Code reuse; Dependency management\n\nAWS: Additional Glue scripts for job dependencies and modular ETL development\n\nValidation: Must be array of valid script paths if provided; enables script dependencies and modular development",
|
|
4803
4812
|
"stability": "experimental",
|
|
4804
|
-
"summary": "
|
|
4813
|
+
"summary": "Relative paths to additional Python scripts for the job."
|
|
4805
4814
|
},
|
|
4806
4815
|
"immutable": true,
|
|
4807
4816
|
"locationInModule": {
|
|
4808
4817
|
"filename": "lib/dataops-job-l3-construct.ts",
|
|
4809
|
-
"line":
|
|
4818
|
+
"line": 107
|
|
4810
4819
|
},
|
|
4811
4820
|
"name": "additionalScripts",
|
|
4812
4821
|
"optional": true,
|
|
@@ -4822,14 +4831,13 @@
|
|
|
4822
4831
|
{
|
|
4823
4832
|
"abstract": true,
|
|
4824
4833
|
"docs": {
|
|
4825
|
-
"remarks": "Defines the number of capacity units allocated to the job for processing performance and resource utilization optimization.\n\nUse cases: Resource allocation; Performance tuning; Cost management; Capacity planning\n\nAWS: Glue job allocated capacity for resource allocation and performance optimization\n\nValidation: Must be positive integer if provided; controls job resource allocation and performance",
|
|
4826
4834
|
"stability": "experimental",
|
|
4827
|
-
"summary": "
|
|
4835
|
+
"summary": "Number of capacity units allocated to the job."
|
|
4828
4836
|
},
|
|
4829
4837
|
"immutable": true,
|
|
4830
4838
|
"locationInModule": {
|
|
4831
4839
|
"filename": "lib/dataops-job-l3-construct.ts",
|
|
4832
|
-
"line":
|
|
4840
|
+
"line": 83
|
|
4833
4841
|
},
|
|
4834
4842
|
"name": "allocatedCapacity",
|
|
4835
4843
|
"optional": true,
|
|
@@ -4840,14 +4848,13 @@
|
|
|
4840
4848
|
{
|
|
4841
4849
|
"abstract": true,
|
|
4842
4850
|
"docs": {
|
|
4843
|
-
"remarks": "Provides network connections for accessing databases, VPC resources, and external systems during ETL processing and data integration.\n\nUse cases: Database connectivity; VPC access; External system integration; Network configuration\n\nAWS: Glue job connections for database and external system connectivity\n\nValidation: Must be array of valid connection names if provided; enables database and external system access",
|
|
4844
4851
|
"stability": "experimental",
|
|
4845
|
-
"summary": "
|
|
4852
|
+
"summary": "Connection names for database and external system access."
|
|
4846
4853
|
},
|
|
4847
4854
|
"immutable": true,
|
|
4848
4855
|
"locationInModule": {
|
|
4849
4856
|
"filename": "lib/dataops-job-l3-construct.ts",
|
|
4850
|
-
"line":
|
|
4857
|
+
"line": 85
|
|
4851
4858
|
},
|
|
4852
4859
|
"name": "connections",
|
|
4853
4860
|
"optional": true,
|
|
@@ -4863,14 +4870,13 @@
|
|
|
4863
4870
|
{
|
|
4864
4871
|
"abstract": true,
|
|
4865
4872
|
"docs": {
|
|
4866
|
-
"remarks": "When enabled, streams job logs to CloudWatch Logs in real-time for live monitoring and troubleshooting during job execution.\n\nUse cases: Real-time monitoring; Live log streaming; Troubleshooting support; Operational visibility\n\nAWS: Glue job continuous logging for real-time monitoring and troubleshooting\n\nValidation: Must be valid LoggingConfig if provided; enables real-time log streaming and monitoring",
|
|
4867
4873
|
"stability": "experimental",
|
|
4868
|
-
"summary": "
|
|
4874
|
+
"summary": "Continuous logging configuration for real-time monitoring."
|
|
4869
4875
|
},
|
|
4870
4876
|
"immutable": true,
|
|
4871
4877
|
"locationInModule": {
|
|
4872
4878
|
"filename": "lib/dataops-job-l3-construct.ts",
|
|
4873
|
-
"line":
|
|
4879
|
+
"line": 113
|
|
4874
4880
|
},
|
|
4875
4881
|
"name": "continuousLogging",
|
|
4876
4882
|
"optional": true,
|
|
@@ -4881,14 +4887,13 @@
|
|
|
4881
4887
|
{
|
|
4882
4888
|
"abstract": true,
|
|
4883
4889
|
"docs": {
|
|
4884
|
-
"remarks": "Provides default parameters and arguments that will be passed to the job for runtime configuration and behavior customization.\n\nUse cases: Job parameters; Runtime configuration; Behavior customization; Parameter management\n\nAWS: Glue job default arguments for runtime configuration and parameter management\n\nValidation: Must be valid ConfigurationElement if provided; enables job parameter configuration and customization",
|
|
4885
4890
|
"stability": "experimental",
|
|
4886
|
-
"summary": "
|
|
4891
|
+
"summary": "Default arguments passed to the job at runtime."
|
|
4887
4892
|
},
|
|
4888
4893
|
"immutable": true,
|
|
4889
4894
|
"locationInModule": {
|
|
4890
4895
|
"filename": "lib/dataops-job-l3-construct.ts",
|
|
4891
|
-
"line":
|
|
4896
|
+
"line": 87
|
|
4892
4897
|
},
|
|
4893
4898
|
"name": "defaultArguments",
|
|
4894
4899
|
"optional": true,
|
|
@@ -4904,14 +4909,13 @@
|
|
|
4904
4909
|
{
|
|
4905
4910
|
"abstract": true,
|
|
4906
4911
|
"docs": {
|
|
4907
|
-
"remarks": "Defines execution properties including maximum concurrent executions for job scheduling and resource management.\n\nUse cases: Concurrency control; Parallel execution; Resource management; Job scheduling\n\nAWS: Glue job execution properties for concurrency control and parallel execution management\n\nValidation: Must be valid ExecutionPropertyProperty if provided; controls job concurrency and parallel execution\n *",
|
|
4908
4912
|
"stability": "experimental",
|
|
4909
|
-
"summary": "
|
|
4913
|
+
"summary": "Execution properties including maximum concurrent runs."
|
|
4910
4914
|
},
|
|
4911
4915
|
"immutable": true,
|
|
4912
4916
|
"locationInModule": {
|
|
4913
4917
|
"filename": "lib/dataops-job-l3-construct.ts",
|
|
4914
|
-
"line":
|
|
4918
|
+
"line": 91
|
|
4915
4919
|
},
|
|
4916
4920
|
"name": "executionProperty",
|
|
4917
4921
|
"optional": true,
|
|
@@ -4922,14 +4926,13 @@
|
|
|
4922
4926
|
{
|
|
4923
4927
|
"abstract": true,
|
|
4924
4928
|
"docs": {
|
|
4925
|
-
"remarks": "Defines the Glue runtime version for job execution ensuring feature availability and compatibility with job requirements.\n\nUse cases: Runtime version control; Feature availability; Compatibility management; Version specification\n\nAWS: Glue version for runtime environment and feature availability\n\nValidation: Must be valid Glue version if provided; controls runtime environment and feature availability",
|
|
4926
4929
|
"stability": "experimental",
|
|
4927
|
-
"summary": "
|
|
4930
|
+
"summary": "Glue runtime version for the job."
|
|
4928
4931
|
},
|
|
4929
4932
|
"immutable": true,
|
|
4930
4933
|
"locationInModule": {
|
|
4931
4934
|
"filename": "lib/dataops-job-l3-construct.ts",
|
|
4932
|
-
"line":
|
|
4935
|
+
"line": 93
|
|
4933
4936
|
},
|
|
4934
4937
|
"name": "glueVersion",
|
|
4935
4938
|
"optional": true,
|
|
@@ -4940,14 +4943,13 @@
|
|
|
4940
4943
|
{
|
|
4941
4944
|
"abstract": true,
|
|
4942
4945
|
"docs": {
|
|
4943
|
-
"remarks": "Defines the maximum number of DPUs (Data Processing Units) that can be allocated to the job for resource control and cost optimization.\n\nUse cases: Resource limits; Cost control; Maximum allocation; Resource management\n\nAWS: Glue job maximum capacity for resource limits and cost control\n\nValidation: Must be positive number if provided; controls maximum DPU allocation and resource limits",
|
|
4944
4946
|
"stability": "experimental",
|
|
4945
|
-
"summary": "
|
|
4947
|
+
"summary": "Maximum DPU capacity for the job."
|
|
4946
4948
|
},
|
|
4947
4949
|
"immutable": true,
|
|
4948
4950
|
"locationInModule": {
|
|
4949
4951
|
"filename": "lib/dataops-job-l3-construct.ts",
|
|
4950
|
-
"line":
|
|
4952
|
+
"line": 95
|
|
4951
4953
|
},
|
|
4952
4954
|
"name": "maxCapacity",
|
|
4953
4955
|
"optional": true,
|
|
@@ -4958,14 +4960,13 @@
|
|
|
4958
4960
|
{
|
|
4959
4961
|
"abstract": true,
|
|
4960
4962
|
"docs": {
|
|
4961
|
-
"remarks": "Defines the maximum number of retries before job failure occurs for automatic error recovery and job reliability.\n\nUse cases: Error recovery; Automatic retry; Job reliability; Failure handling\n\nAWS: Glue job maximum retries for automatic error recovery and job reliability\n\nValidation: Must be non-negative integer if provided; controls automatic retry behavior and error recovery",
|
|
4962
4963
|
"stability": "experimental",
|
|
4963
|
-
"summary": "
|
|
4964
|
+
"summary": "Maximum retry count before job failure."
|
|
4964
4965
|
},
|
|
4965
4966
|
"immutable": true,
|
|
4966
4967
|
"locationInModule": {
|
|
4967
4968
|
"filename": "lib/dataops-job-l3-construct.ts",
|
|
4968
|
-
"line":
|
|
4969
|
+
"line": 97
|
|
4969
4970
|
},
|
|
4970
4971
|
"name": "maxRetries",
|
|
4971
4972
|
"optional": true,
|
|
@@ -4976,14 +4977,13 @@
|
|
|
4976
4977
|
{
|
|
4977
4978
|
"abstract": true,
|
|
4978
4979
|
"docs": {
|
|
4979
|
-
"remarks": "Defines notification settings including notification delay for job monitoring and operational alerting.\n\nUse cases: Job monitoring; Status notifications; Operational alerting; Monitoring configuration\n\nAWS: Glue job notification properties for monitoring and alerting configuration\n\nValidation: Must be valid NotificationPropertyProperty if provided; enables job monitoring and alerting\n *",
|
|
4980
4980
|
"stability": "experimental",
|
|
4981
|
-
"summary": "
|
|
4981
|
+
"summary": "Notification settings for job monitoring and alerting."
|
|
4982
4982
|
},
|
|
4983
4983
|
"immutable": true,
|
|
4984
4984
|
"locationInModule": {
|
|
4985
4985
|
"filename": "lib/dataops-job-l3-construct.ts",
|
|
4986
|
-
"line":
|
|
4986
|
+
"line": 99
|
|
4987
4987
|
},
|
|
4988
4988
|
"name": "notificationProperty",
|
|
4989
4989
|
"optional": true,
|
|
@@ -4994,14 +4994,13 @@
|
|
|
4994
4994
|
{
|
|
4995
4995
|
"abstract": true,
|
|
4996
4996
|
"docs": {
|
|
4997
|
-
"remarks": "Defines the number of workers assigned to the job for parallel processing and distributed data transformation.\n\nUse cases: Parallel processing; Distributed processing; Performance optimization; Worker allocation\n\nAWS: Glue job number of workers for parallel processing and performance optimization\n\nValidation: Must be positive integer if provided; controls parallel processing and worker allocation",
|
|
4998
4997
|
"stability": "experimental",
|
|
4999
|
-
"summary": "
|
|
4998
|
+
"summary": "Number of workers for parallel processing."
|
|
5000
4999
|
},
|
|
5001
5000
|
"immutable": true,
|
|
5002
5001
|
"locationInModule": {
|
|
5003
5002
|
"filename": "lib/dataops-job-l3-construct.ts",
|
|
5004
|
-
"line":
|
|
5003
|
+
"line": 101
|
|
5005
5004
|
},
|
|
5006
5005
|
"name": "numberOfWorkers",
|
|
5007
5006
|
"optional": true,
|
|
@@ -5012,14 +5011,13 @@
|
|
|
5012
5011
|
{
|
|
5013
5012
|
"abstract": true,
|
|
5014
5013
|
"docs": {
|
|
5015
|
-
"remarks": "When specified, inherits configuration from a template defined elsewhere in the configuration for consistent job setup and management.\n\nUse cases: Configuration inheritance; Template reuse; Standardized setup; Configuration management\n\nAWS: Job template reference for configuration inheritance and standardized job setup\n\nValidation: Must be valid template name if provided; enables configuration inheritance from defined templates",
|
|
5016
5014
|
"stability": "experimental",
|
|
5017
|
-
"summary": "
|
|
5015
|
+
"summary": "Template name for configuration inheritance."
|
|
5018
5016
|
},
|
|
5019
5017
|
"immutable": true,
|
|
5020
5018
|
"locationInModule": {
|
|
5021
5019
|
"filename": "lib/dataops-job-l3-construct.ts",
|
|
5022
|
-
"line":
|
|
5020
|
+
"line": 81
|
|
5023
5021
|
},
|
|
5024
5022
|
"name": "template",
|
|
5025
5023
|
"optional": true,
|
|
@@ -5030,14 +5028,13 @@
|
|
|
5030
5028
|
{
|
|
5031
5029
|
"abstract": true,
|
|
5032
5030
|
"docs": {
|
|
5033
|
-
"remarks": "Defines the maximum execution time for the job in minutes for runtime control and resource optimization.\n\nUse cases: Runtime control; Execution limits; Resource management; Timeout configuration\n\nAWS: Glue job timeout for execution time limits and resource management\n\nValidation: Must be positive integer in minutes if provided; controls job execution time limits",
|
|
5034
5031
|
"stability": "experimental",
|
|
5035
|
-
"summary": "
|
|
5032
|
+
"summary": "Job timeout in minutes."
|
|
5036
5033
|
},
|
|
5037
5034
|
"immutable": true,
|
|
5038
5035
|
"locationInModule": {
|
|
5039
5036
|
"filename": "lib/dataops-job-l3-construct.ts",
|
|
5040
|
-
"line":
|
|
5037
|
+
"line": 103
|
|
5041
5038
|
},
|
|
5042
5039
|
"name": "timeout",
|
|
5043
5040
|
"optional": true,
|
|
@@ -5048,14 +5045,13 @@
|
|
|
5048
5045
|
{
|
|
5049
5046
|
"abstract": true,
|
|
5050
5047
|
"docs": {
|
|
5051
|
-
"remarks": "Defines the type of workers (Standard, G.1X, G.2X) for compute resource allocation and performance characteristics.\n\nUse cases: Compute resource selection; Performance optimization; Cost management; Worker type configuration\n\nAWS: Glue job worker type for compute resource allocation and performance optimization\n\nValidation: Must be Standard, G.1X, or G.2X if provided; controls compute resource type and performance\n *",
|
|
5052
5048
|
"stability": "experimental",
|
|
5053
|
-
"summary": "
|
|
5049
|
+
"summary": "Worker type: 'Standard', 'G.1X', or 'G.2X'."
|
|
5054
5050
|
},
|
|
5055
5051
|
"immutable": true,
|
|
5056
5052
|
"locationInModule": {
|
|
5057
5053
|
"filename": "lib/dataops-job-l3-construct.ts",
|
|
5058
|
-
"line":
|
|
5054
|
+
"line": 105
|
|
5059
5055
|
},
|
|
5060
5056
|
"name": "workerType",
|
|
5061
5057
|
"optional": true,
|
|
@@ -5070,29 +5066,29 @@
|
|
|
5070
5066
|
"assembly": "@aws-mdaa/dataops-job-l3-construct",
|
|
5071
5067
|
"datatype": true,
|
|
5072
5068
|
"docs": {
|
|
5073
|
-
"remarks": "
|
|
5069
|
+
"remarks": "Use cases: Log retention management; Compliance requirements; Cost optimization; Audit trail management\n\nAWS: CloudWatch log group retention for Glue job execution logs and monitoring\n\nValidation: logGroupRetentionDays is required with specific allowed values for retention period",
|
|
5074
5070
|
"stability": "experimental",
|
|
5075
|
-
"summary": "
|
|
5071
|
+
"summary": "Configuration for Glue job logging with CloudWatch log retention management."
|
|
5076
5072
|
},
|
|
5077
5073
|
"fqn": "@aws-mdaa/dataops-job-l3-construct.LoggingConfig",
|
|
5078
5074
|
"kind": "interface",
|
|
5079
5075
|
"locationInModule": {
|
|
5080
5076
|
"filename": "lib/dataops-job-l3-construct.ts",
|
|
5081
|
-
"line":
|
|
5077
|
+
"line": 41
|
|
5082
5078
|
},
|
|
5083
5079
|
"name": "LoggingConfig",
|
|
5084
5080
|
"properties": [
|
|
5085
5081
|
{
|
|
5086
5082
|
"abstract": true,
|
|
5087
5083
|
"docs": {
|
|
5088
|
-
"remarks": "
|
|
5084
|
+
"remarks": "Allowed: 1,3,5,7,14,30,60,90,120,150,180,365,400,545,731,1827,3653, or 0.",
|
|
5089
5085
|
"stability": "experimental",
|
|
5090
|
-
"summary": "
|
|
5086
|
+
"summary": "CloudWatch log group retention in days."
|
|
5091
5087
|
},
|
|
5092
5088
|
"immutable": true,
|
|
5093
5089
|
"locationInModule": {
|
|
5094
5090
|
"filename": "lib/dataops-job-l3-construct.ts",
|
|
5095
|
-
"line":
|
|
5091
|
+
"line": 43
|
|
5096
5092
|
},
|
|
5097
5093
|
"name": "logGroupRetentionDays",
|
|
5098
5094
|
"type": {
|
|
@@ -5103,6 +5099,6 @@
|
|
|
5103
5099
|
"symbolId": "lib/dataops-job-l3-construct:LoggingConfig"
|
|
5104
5100
|
}
|
|
5105
5101
|
},
|
|
5106
|
-
"version": "1.
|
|
5107
|
-
"fingerprint": "
|
|
5102
|
+
"version": "1.6.0",
|
|
5103
|
+
"fingerprint": "CDrJjMPj2ioWctWkDbvZNiwiA9fw68dPsZxK4CiNoqQ="
|
|
5108
5104
|
}
|