@orcabus/platform-cdk-constructs 0.0.7-alpha.6 → 0.0.7-beta.10
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 +356 -41
- package/api-gateway/api-gateway.js +1 -1
- package/deployment-stack-pipeline/artifact-bucket.d.ts +34 -0
- package/deployment-stack-pipeline/artifact-bucket.js +86 -0
- package/deployment-stack-pipeline/index.d.ts +1 -0
- package/deployment-stack-pipeline/index.js +2 -1
- package/deployment-stack-pipeline/pipeline.d.ts +31 -2
- package/deployment-stack-pipeline/pipeline.js +35 -6
- package/dynamodb/index.js +2 -2
- package/ecs/index.js +1 -1
- package/lambda/config.d.ts +1 -0
- package/lambda/config.js +7 -2
- package/lambda/index.d.ts +25 -0
- package/lambda/index.js +84 -5
- package/lambda/layers/fastapi_tools/poetry.lock +1339 -0
- package/lambda/layers/fastapi_tools/pyproject.toml +32 -0
- package/lambda/layers/fastapi_tools/src/fastapi_tools/__init__.py +20 -0
- package/lambda/layers/fastapi_tools/src/fastapi_tools/globals.py +3 -0
- package/lambda/layers/fastapi_tools/src/fastapi_tools/pagination_helpers.py +102 -0
- package/lambda/layers/icav2_tools/poetry.lock +85 -0
- package/lambda/layers/icav2_tools/pyproject.toml +26 -0
- package/lambda/layers/icav2_tools/src/icav2_tools/__init__.py +19 -0
- package/lambda/layers/icav2_tools/src/icav2_tools/aws_helpers.py +116 -0
- package/lambda/layers/icav2_tools/src/icav2_tools/globals.py +2 -0
- package/lambda/layers/orcabus_api_tools/src/orcabus_api_tools/icav2_wes/__init__.py +79 -0
- package/lambda/layers/orcabus_api_tools/src/orcabus_api_tools/icav2_wes/create_helpers.py +29 -0
- package/lambda/layers/orcabus_api_tools/src/orcabus_api_tools/icav2_wes/globals.py +6 -0
- package/lambda/layers/orcabus_api_tools/src/orcabus_api_tools/icav2_wes/models.py +50 -0
- package/lambda/layers/orcabus_api_tools/src/orcabus_api_tools/icav2_wes/query_helpers.py +20 -0
- package/lambda/layers/orcabus_api_tools/src/orcabus_api_tools/icav2_wes/update_helpers.py +26 -0
- package/lambda/layers/orcabus_api_tools/src/orcabus_api_tools/utils/aws_helpers.py +1 -1
- package/package.json +1 -1
- package/utils/index.d.ts +2 -1
- package/utils/index.js +8 -38
package/.jsii
CHANGED
|
@@ -4359,12 +4359,121 @@
|
|
|
4359
4359
|
],
|
|
4360
4360
|
"symbolId": "api-gateway/api-gateway:OrcaBusApiGatewayProps"
|
|
4361
4361
|
},
|
|
4362
|
-
"@orcabus/platform-cdk-constructs.deploymentPipeline.
|
|
4362
|
+
"@orcabus/platform-cdk-constructs.deploymentPipeline.CrossDeploymentArtifactBucket": {
|
|
4363
4363
|
"assembly": "@orcabus/platform-cdk-constructs",
|
|
4364
4364
|
"base": "constructs.Construct",
|
|
4365
4365
|
"docs": {
|
|
4366
4366
|
"stability": "experimental"
|
|
4367
4367
|
},
|
|
4368
|
+
"fqn": "@orcabus/platform-cdk-constructs.deploymentPipeline.CrossDeploymentArtifactBucket",
|
|
4369
|
+
"initializer": {
|
|
4370
|
+
"docs": {
|
|
4371
|
+
"stability": "experimental"
|
|
4372
|
+
},
|
|
4373
|
+
"locationInModule": {
|
|
4374
|
+
"filename": "deployment-stack-pipeline/artifact-bucket.ts",
|
|
4375
|
+
"line": 50
|
|
4376
|
+
},
|
|
4377
|
+
"parameters": [
|
|
4378
|
+
{
|
|
4379
|
+
"name": "scope",
|
|
4380
|
+
"type": {
|
|
4381
|
+
"fqn": "constructs.Construct"
|
|
4382
|
+
}
|
|
4383
|
+
},
|
|
4384
|
+
{
|
|
4385
|
+
"name": "id",
|
|
4386
|
+
"type": {
|
|
4387
|
+
"primitive": "string"
|
|
4388
|
+
}
|
|
4389
|
+
}
|
|
4390
|
+
]
|
|
4391
|
+
},
|
|
4392
|
+
"interfaces": [
|
|
4393
|
+
"@orcabus/platform-cdk-constructs.deploymentPipeline.ICrossDeploymentArtifactBucket"
|
|
4394
|
+
],
|
|
4395
|
+
"kind": "class",
|
|
4396
|
+
"locationInModule": {
|
|
4397
|
+
"filename": "deployment-stack-pipeline/artifact-bucket.ts",
|
|
4398
|
+
"line": 37
|
|
4399
|
+
},
|
|
4400
|
+
"methods": [
|
|
4401
|
+
{
|
|
4402
|
+
"docs": {
|
|
4403
|
+
"returns": "ICrossDeploymentArtifactBucket",
|
|
4404
|
+
"stability": "experimental",
|
|
4405
|
+
"summary": "Imports an existing cross-deployment artifact bucket and its KMS key using SSM and resource lookups."
|
|
4406
|
+
},
|
|
4407
|
+
"locationInModule": {
|
|
4408
|
+
"filename": "deployment-stack-pipeline/artifact-bucket.ts",
|
|
4409
|
+
"line": 115
|
|
4410
|
+
},
|
|
4411
|
+
"name": "fromLookup",
|
|
4412
|
+
"parameters": [
|
|
4413
|
+
{
|
|
4414
|
+
"docs": {
|
|
4415
|
+
"summary": "The scope in which to look up the artifact bucket."
|
|
4416
|
+
},
|
|
4417
|
+
"name": "scope",
|
|
4418
|
+
"type": {
|
|
4419
|
+
"fqn": "constructs.Construct"
|
|
4420
|
+
}
|
|
4421
|
+
}
|
|
4422
|
+
],
|
|
4423
|
+
"returns": {
|
|
4424
|
+
"type": {
|
|
4425
|
+
"fqn": "@orcabus/platform-cdk-constructs.deploymentPipeline.ICrossDeploymentArtifactBucket"
|
|
4426
|
+
}
|
|
4427
|
+
},
|
|
4428
|
+
"static": true
|
|
4429
|
+
}
|
|
4430
|
+
],
|
|
4431
|
+
"name": "CrossDeploymentArtifactBucket",
|
|
4432
|
+
"namespace": "deploymentPipeline",
|
|
4433
|
+
"properties": [
|
|
4434
|
+
{
|
|
4435
|
+
"docs": {
|
|
4436
|
+
"stability": "experimental",
|
|
4437
|
+
"summary": "The S3 bucket used to store artifacts for cross-deployment pipelines."
|
|
4438
|
+
},
|
|
4439
|
+
"immutable": true,
|
|
4440
|
+
"locationInModule": {
|
|
4441
|
+
"filename": "deployment-stack-pipeline/artifact-bucket.ts",
|
|
4442
|
+
"line": 44
|
|
4443
|
+
},
|
|
4444
|
+
"name": "artifactBucket",
|
|
4445
|
+
"overrides": "@orcabus/platform-cdk-constructs.deploymentPipeline.ICrossDeploymentArtifactBucket",
|
|
4446
|
+
"type": {
|
|
4447
|
+
"fqn": "aws-cdk-lib.aws_s3.IBucket"
|
|
4448
|
+
}
|
|
4449
|
+
},
|
|
4450
|
+
{
|
|
4451
|
+
"docs": {
|
|
4452
|
+
"stability": "experimental",
|
|
4453
|
+
"summary": "The KMS key used to encrypt artifacts for cross-deployment pipelines."
|
|
4454
|
+
},
|
|
4455
|
+
"immutable": true,
|
|
4456
|
+
"locationInModule": {
|
|
4457
|
+
"filename": "deployment-stack-pipeline/artifact-bucket.ts",
|
|
4458
|
+
"line": 48
|
|
4459
|
+
},
|
|
4460
|
+
"name": "artifactKms",
|
|
4461
|
+
"overrides": "@orcabus/platform-cdk-constructs.deploymentPipeline.ICrossDeploymentArtifactBucket",
|
|
4462
|
+
"type": {
|
|
4463
|
+
"fqn": "aws-cdk-lib.aws_kms.IKey"
|
|
4464
|
+
}
|
|
4465
|
+
}
|
|
4466
|
+
],
|
|
4467
|
+
"symbolId": "deployment-stack-pipeline/artifact-bucket:CrossDeploymentArtifactBucket"
|
|
4468
|
+
},
|
|
4469
|
+
"@orcabus/platform-cdk-constructs.deploymentPipeline.DeploymentStackPipeline": {
|
|
4470
|
+
"assembly": "@orcabus/platform-cdk-constructs",
|
|
4471
|
+
"base": "constructs.Construct",
|
|
4472
|
+
"docs": {
|
|
4473
|
+
"remarks": "Prerequisite: Ensure that the \"CrossDeploymentArtifactBucket\" stack is deployed in the TOOLCHAIN account\nbefore using this construct.",
|
|
4474
|
+
"stability": "experimental",
|
|
4475
|
+
"summary": "A CDK construct that creates a deployment pipeline across environments for the OrcaBus project."
|
|
4476
|
+
},
|
|
4368
4477
|
"fqn": "@orcabus/platform-cdk-constructs.deploymentPipeline.DeploymentStackPipeline",
|
|
4369
4478
|
"initializer": {
|
|
4370
4479
|
"docs": {
|
|
@@ -4372,7 +4481,7 @@
|
|
|
4372
4481
|
},
|
|
4373
4482
|
"locationInModule": {
|
|
4374
4483
|
"filename": "deployment-stack-pipeline/pipeline.ts",
|
|
4375
|
-
"line":
|
|
4484
|
+
"line": 164
|
|
4376
4485
|
},
|
|
4377
4486
|
"parameters": [
|
|
4378
4487
|
{
|
|
@@ -4398,7 +4507,7 @@
|
|
|
4398
4507
|
"kind": "class",
|
|
4399
4508
|
"locationInModule": {
|
|
4400
4509
|
"filename": "deployment-stack-pipeline/pipeline.ts",
|
|
4401
|
-
"line":
|
|
4510
|
+
"line": 158
|
|
4402
4511
|
},
|
|
4403
4512
|
"name": "DeploymentStackPipeline",
|
|
4404
4513
|
"namespace": "deploymentPipeline",
|
|
@@ -4411,7 +4520,7 @@
|
|
|
4411
4520
|
"immutable": true,
|
|
4412
4521
|
"locationInModule": {
|
|
4413
4522
|
"filename": "deployment-stack-pipeline/pipeline.ts",
|
|
4414
|
-
"line":
|
|
4523
|
+
"line": 162
|
|
4415
4524
|
},
|
|
4416
4525
|
"name": "pipeline",
|
|
4417
4526
|
"type": {
|
|
@@ -4431,7 +4540,7 @@
|
|
|
4431
4540
|
"kind": "interface",
|
|
4432
4541
|
"locationInModule": {
|
|
4433
4542
|
"filename": "deployment-stack-pipeline/pipeline.ts",
|
|
4434
|
-
"line":
|
|
4543
|
+
"line": 73
|
|
4435
4544
|
},
|
|
4436
4545
|
"name": "DeploymentStackPipelineProps",
|
|
4437
4546
|
"namespace": "deploymentPipeline",
|
|
@@ -4446,7 +4555,7 @@
|
|
|
4446
4555
|
"immutable": true,
|
|
4447
4556
|
"locationInModule": {
|
|
4448
4557
|
"filename": "deployment-stack-pipeline/pipeline.ts",
|
|
4449
|
-
"line":
|
|
4558
|
+
"line": 112
|
|
4450
4559
|
},
|
|
4451
4560
|
"name": "cdkSynthCmd",
|
|
4452
4561
|
"type": {
|
|
@@ -4461,13 +4570,17 @@
|
|
|
4461
4570
|
{
|
|
4462
4571
|
"abstract": true,
|
|
4463
4572
|
"docs": {
|
|
4573
|
+
"custom": {
|
|
4574
|
+
"": "\".\nThis restriction is due to AWS resource tagging requirements."
|
|
4575
|
+
},
|
|
4576
|
+
"remarks": "Avoid using branch names that contain special characters such as parentheses.\nAllowed special characters are: \"+ - = . _ : /",
|
|
4464
4577
|
"stability": "experimental",
|
|
4465
|
-
"summary": "The
|
|
4578
|
+
"summary": "The GitHub branch name the pipeline will listen to."
|
|
4466
4579
|
},
|
|
4467
4580
|
"immutable": true,
|
|
4468
4581
|
"locationInModule": {
|
|
4469
4582
|
"filename": "deployment-stack-pipeline/pipeline.ts",
|
|
4470
|
-
"line":
|
|
4583
|
+
"line": 80
|
|
4471
4584
|
},
|
|
4472
4585
|
"name": "githubBranch",
|
|
4473
4586
|
"type": {
|
|
@@ -4484,7 +4597,7 @@
|
|
|
4484
4597
|
"immutable": true,
|
|
4485
4598
|
"locationInModule": {
|
|
4486
4599
|
"filename": "deployment-stack-pipeline/pipeline.ts",
|
|
4487
|
-
"line":
|
|
4600
|
+
"line": 84
|
|
4488
4601
|
},
|
|
4489
4602
|
"name": "githubRepo",
|
|
4490
4603
|
"type": {
|
|
@@ -4500,7 +4613,7 @@
|
|
|
4500
4613
|
"immutable": true,
|
|
4501
4614
|
"locationInModule": {
|
|
4502
4615
|
"filename": "deployment-stack-pipeline/pipeline.ts",
|
|
4503
|
-
"line":
|
|
4616
|
+
"line": 101
|
|
4504
4617
|
},
|
|
4505
4618
|
"name": "pipelineName",
|
|
4506
4619
|
"type": {
|
|
@@ -4516,7 +4629,7 @@
|
|
|
4516
4629
|
"immutable": true,
|
|
4517
4630
|
"locationInModule": {
|
|
4518
4631
|
"filename": "deployment-stack-pipeline/pipeline.ts",
|
|
4519
|
-
"line":
|
|
4632
|
+
"line": 88
|
|
4520
4633
|
},
|
|
4521
4634
|
"name": "stack",
|
|
4522
4635
|
"type": {
|
|
@@ -4532,7 +4645,7 @@
|
|
|
4532
4645
|
"immutable": true,
|
|
4533
4646
|
"locationInModule": {
|
|
4534
4647
|
"filename": "deployment-stack-pipeline/pipeline.ts",
|
|
4535
|
-
"line":
|
|
4648
|
+
"line": 97
|
|
4536
4649
|
},
|
|
4537
4650
|
"name": "stackConfig",
|
|
4538
4651
|
"type": {
|
|
@@ -4549,7 +4662,7 @@
|
|
|
4549
4662
|
"immutable": true,
|
|
4550
4663
|
"locationInModule": {
|
|
4551
4664
|
"filename": "deployment-stack-pipeline/pipeline.ts",
|
|
4552
|
-
"line":
|
|
4665
|
+
"line": 93
|
|
4553
4666
|
},
|
|
4554
4667
|
"name": "stackName",
|
|
4555
4668
|
"type": {
|
|
@@ -4566,7 +4679,7 @@
|
|
|
4566
4679
|
"immutable": true,
|
|
4567
4680
|
"locationInModule": {
|
|
4568
4681
|
"filename": "deployment-stack-pipeline/pipeline.ts",
|
|
4569
|
-
"line":
|
|
4682
|
+
"line": 118
|
|
4570
4683
|
},
|
|
4571
4684
|
"name": "cdkOut",
|
|
4572
4685
|
"optional": true,
|
|
@@ -4574,6 +4687,24 @@
|
|
|
4574
4687
|
"primitive": "string"
|
|
4575
4688
|
}
|
|
4576
4689
|
},
|
|
4690
|
+
{
|
|
4691
|
+
"abstract": true,
|
|
4692
|
+
"docs": {
|
|
4693
|
+
"default": "True",
|
|
4694
|
+
"stability": "experimental",
|
|
4695
|
+
"summary": "Enable notification to the 'alerts-build' slack channel."
|
|
4696
|
+
},
|
|
4697
|
+
"immutable": true,
|
|
4698
|
+
"locationInModule": {
|
|
4699
|
+
"filename": "deployment-stack-pipeline/pipeline.ts",
|
|
4700
|
+
"line": 133
|
|
4701
|
+
},
|
|
4702
|
+
"name": "enableSlackNotification",
|
|
4703
|
+
"optional": true,
|
|
4704
|
+
"type": {
|
|
4705
|
+
"primitive": "boolean"
|
|
4706
|
+
}
|
|
4707
|
+
},
|
|
4577
4708
|
{
|
|
4578
4709
|
"abstract": true,
|
|
4579
4710
|
"docs": {
|
|
@@ -4584,7 +4715,7 @@
|
|
|
4584
4715
|
"immutable": true,
|
|
4585
4716
|
"locationInModule": {
|
|
4586
4717
|
"filename": "deployment-stack-pipeline/pipeline.ts",
|
|
4587
|
-
"line":
|
|
4718
|
+
"line": 108
|
|
4588
4719
|
},
|
|
4589
4720
|
"name": "filePaths",
|
|
4590
4721
|
"optional": true,
|
|
@@ -4597,6 +4728,49 @@
|
|
|
4597
4728
|
}
|
|
4598
4729
|
}
|
|
4599
4730
|
},
|
|
4731
|
+
{
|
|
4732
|
+
"abstract": true,
|
|
4733
|
+
"docs": {
|
|
4734
|
+
"default": "[PipelineNotificationEvents.PIPELINE_EXECUTION_FAILED] –\nOnly failed pipeline executions will trigger a notification.",
|
|
4735
|
+
"remarks": "Only applies if `enableSlackNotification` is set to true.",
|
|
4736
|
+
"stability": "experimental",
|
|
4737
|
+
"summary": "The pipeline notification events that will trigger a Slack channel notification."
|
|
4738
|
+
},
|
|
4739
|
+
"immutable": true,
|
|
4740
|
+
"locationInModule": {
|
|
4741
|
+
"filename": "deployment-stack-pipeline/pipeline.ts",
|
|
4742
|
+
"line": 141
|
|
4743
|
+
},
|
|
4744
|
+
"name": "notificationEvents",
|
|
4745
|
+
"optional": true,
|
|
4746
|
+
"type": {
|
|
4747
|
+
"collection": {
|
|
4748
|
+
"elementtype": {
|
|
4749
|
+
"fqn": "aws-cdk-lib.aws_codepipeline.PipelineNotificationEvents"
|
|
4750
|
+
},
|
|
4751
|
+
"kind": "array"
|
|
4752
|
+
}
|
|
4753
|
+
}
|
|
4754
|
+
},
|
|
4755
|
+
{
|
|
4756
|
+
"abstract": true,
|
|
4757
|
+
"docs": {
|
|
4758
|
+
"default": "True",
|
|
4759
|
+
"remarks": "If set to true, it will look up the existing artifact bucket in the TOOLCHAIN account.",
|
|
4760
|
+
"stability": "experimental",
|
|
4761
|
+
"summary": "Whether to reuse the existing artifact bucket for cross-deployment pipelines."
|
|
4762
|
+
},
|
|
4763
|
+
"immutable": true,
|
|
4764
|
+
"locationInModule": {
|
|
4765
|
+
"filename": "deployment-stack-pipeline/pipeline.ts",
|
|
4766
|
+
"line": 149
|
|
4767
|
+
},
|
|
4768
|
+
"name": "reuseExistingArtifactBucket",
|
|
4769
|
+
"optional": true,
|
|
4770
|
+
"type": {
|
|
4771
|
+
"primitive": "boolean"
|
|
4772
|
+
}
|
|
4773
|
+
},
|
|
4600
4774
|
{
|
|
4601
4775
|
"abstract": true,
|
|
4602
4776
|
"docs": {
|
|
@@ -4606,7 +4780,7 @@
|
|
|
4606
4780
|
"immutable": true,
|
|
4607
4781
|
"locationInModule": {
|
|
4608
4782
|
"filename": "deployment-stack-pipeline/pipeline.ts",
|
|
4609
|
-
"line":
|
|
4783
|
+
"line": 128
|
|
4610
4784
|
},
|
|
4611
4785
|
"name": "stageEnv",
|
|
4612
4786
|
"optional": true,
|
|
@@ -4625,7 +4799,7 @@
|
|
|
4625
4799
|
"immutable": true,
|
|
4626
4800
|
"locationInModule": {
|
|
4627
4801
|
"filename": "deployment-stack-pipeline/pipeline.ts",
|
|
4628
|
-
"line":
|
|
4802
|
+
"line": 124
|
|
4629
4803
|
},
|
|
4630
4804
|
"name": "synthBuildSpec",
|
|
4631
4805
|
"optional": true,
|
|
@@ -4641,6 +4815,55 @@
|
|
|
4641
4815
|
],
|
|
4642
4816
|
"symbolId": "deployment-stack-pipeline/pipeline:DeploymentStackPipelineProps"
|
|
4643
4817
|
},
|
|
4818
|
+
"@orcabus/platform-cdk-constructs.deploymentPipeline.ICrossDeploymentArtifactBucket": {
|
|
4819
|
+
"assembly": "@orcabus/platform-cdk-constructs",
|
|
4820
|
+
"docs": {
|
|
4821
|
+
"stability": "experimental"
|
|
4822
|
+
},
|
|
4823
|
+
"fqn": "@orcabus/platform-cdk-constructs.deploymentPipeline.ICrossDeploymentArtifactBucket",
|
|
4824
|
+
"kind": "interface",
|
|
4825
|
+
"locationInModule": {
|
|
4826
|
+
"filename": "deployment-stack-pipeline/artifact-bucket.ts",
|
|
4827
|
+
"line": 26
|
|
4828
|
+
},
|
|
4829
|
+
"name": "ICrossDeploymentArtifactBucket",
|
|
4830
|
+
"namespace": "deploymentPipeline",
|
|
4831
|
+
"properties": [
|
|
4832
|
+
{
|
|
4833
|
+
"abstract": true,
|
|
4834
|
+
"docs": {
|
|
4835
|
+
"stability": "experimental",
|
|
4836
|
+
"summary": "The S3 bucket used to store artifacts for cross-deployment pipelines."
|
|
4837
|
+
},
|
|
4838
|
+
"immutable": true,
|
|
4839
|
+
"locationInModule": {
|
|
4840
|
+
"filename": "deployment-stack-pipeline/artifact-bucket.ts",
|
|
4841
|
+
"line": 30
|
|
4842
|
+
},
|
|
4843
|
+
"name": "artifactBucket",
|
|
4844
|
+
"type": {
|
|
4845
|
+
"fqn": "aws-cdk-lib.aws_s3.IBucket"
|
|
4846
|
+
}
|
|
4847
|
+
},
|
|
4848
|
+
{
|
|
4849
|
+
"abstract": true,
|
|
4850
|
+
"docs": {
|
|
4851
|
+
"stability": "experimental",
|
|
4852
|
+
"summary": "The KMS key used to encrypt artifacts for cross-deployment pipelines."
|
|
4853
|
+
},
|
|
4854
|
+
"immutable": true,
|
|
4855
|
+
"locationInModule": {
|
|
4856
|
+
"filename": "deployment-stack-pipeline/artifact-bucket.ts",
|
|
4857
|
+
"line": 34
|
|
4858
|
+
},
|
|
4859
|
+
"name": "artifactKms",
|
|
4860
|
+
"type": {
|
|
4861
|
+
"fqn": "aws-cdk-lib.aws_kms.IKey"
|
|
4862
|
+
}
|
|
4863
|
+
}
|
|
4864
|
+
],
|
|
4865
|
+
"symbolId": "deployment-stack-pipeline/artifact-bucket:ICrossDeploymentArtifactBucket"
|
|
4866
|
+
},
|
|
4644
4867
|
"@orcabus/platform-cdk-constructs.deploymentPipeline.StackConfigProps": {
|
|
4645
4868
|
"assembly": "@orcabus/platform-cdk-constructs",
|
|
4646
4869
|
"datatype": true,
|
|
@@ -4651,7 +4874,7 @@
|
|
|
4651
4874
|
"kind": "interface",
|
|
4652
4875
|
"locationInModule": {
|
|
4653
4876
|
"filename": "deployment-stack-pipeline/pipeline.ts",
|
|
4654
|
-
"line":
|
|
4877
|
+
"line": 58
|
|
4655
4878
|
},
|
|
4656
4879
|
"name": "StackConfigProps",
|
|
4657
4880
|
"namespace": "deploymentPipeline",
|
|
@@ -4665,7 +4888,7 @@
|
|
|
4665
4888
|
"immutable": true,
|
|
4666
4889
|
"locationInModule": {
|
|
4667
4890
|
"filename": "deployment-stack-pipeline/pipeline.ts",
|
|
4668
|
-
"line":
|
|
4891
|
+
"line": 62
|
|
4669
4892
|
},
|
|
4670
4893
|
"name": "beta",
|
|
4671
4894
|
"type": {
|
|
@@ -4686,7 +4909,7 @@
|
|
|
4686
4909
|
"immutable": true,
|
|
4687
4910
|
"locationInModule": {
|
|
4688
4911
|
"filename": "deployment-stack-pipeline/pipeline.ts",
|
|
4689
|
-
"line":
|
|
4912
|
+
"line": 66
|
|
4690
4913
|
},
|
|
4691
4914
|
"name": "gamma",
|
|
4692
4915
|
"type": {
|
|
@@ -4707,7 +4930,7 @@
|
|
|
4707
4930
|
"immutable": true,
|
|
4708
4931
|
"locationInModule": {
|
|
4709
4932
|
"filename": "deployment-stack-pipeline/pipeline.ts",
|
|
4710
|
-
"line":
|
|
4933
|
+
"line": 70
|
|
4711
4934
|
},
|
|
4712
4935
|
"name": "prod",
|
|
4713
4936
|
"type": {
|
|
@@ -4732,7 +4955,7 @@
|
|
|
4732
4955
|
"kind": "interface",
|
|
4733
4956
|
"locationInModule": {
|
|
4734
4957
|
"filename": "deployment-stack-pipeline/pipeline.ts",
|
|
4735
|
-
"line":
|
|
4958
|
+
"line": 43
|
|
4736
4959
|
},
|
|
4737
4960
|
"name": "StageEnvProps",
|
|
4738
4961
|
"namespace": "deploymentPipeline",
|
|
@@ -4746,7 +4969,7 @@
|
|
|
4746
4969
|
"immutable": true,
|
|
4747
4970
|
"locationInModule": {
|
|
4748
4971
|
"filename": "deployment-stack-pipeline/pipeline.ts",
|
|
4749
|
-
"line":
|
|
4972
|
+
"line": 47
|
|
4750
4973
|
},
|
|
4751
4974
|
"name": "beta",
|
|
4752
4975
|
"type": {
|
|
@@ -4762,7 +4985,7 @@
|
|
|
4762
4985
|
"immutable": true,
|
|
4763
4986
|
"locationInModule": {
|
|
4764
4987
|
"filename": "deployment-stack-pipeline/pipeline.ts",
|
|
4765
|
-
"line":
|
|
4988
|
+
"line": 51
|
|
4766
4989
|
},
|
|
4767
4990
|
"name": "gamma",
|
|
4768
4991
|
"type": {
|
|
@@ -4778,7 +5001,7 @@
|
|
|
4778
5001
|
"immutable": true,
|
|
4779
5002
|
"locationInModule": {
|
|
4780
5003
|
"filename": "deployment-stack-pipeline/pipeline.ts",
|
|
4781
|
-
"line":
|
|
5004
|
+
"line": 55
|
|
4782
5005
|
},
|
|
4783
5006
|
"name": "prod",
|
|
4784
5007
|
"type": {
|
|
@@ -5258,6 +5481,44 @@
|
|
|
5258
5481
|
],
|
|
5259
5482
|
"symbolId": "ecs/index:FargateEcsTaskConstructProps"
|
|
5260
5483
|
},
|
|
5484
|
+
"@orcabus/platform-cdk-constructs.lambda.Icav2ResourcesProps": {
|
|
5485
|
+
"assembly": "@orcabus/platform-cdk-constructs",
|
|
5486
|
+
"datatype": true,
|
|
5487
|
+
"docs": {
|
|
5488
|
+
"stability": "experimental"
|
|
5489
|
+
},
|
|
5490
|
+
"fqn": "@orcabus/platform-cdk-constructs.lambda.Icav2ResourcesProps",
|
|
5491
|
+
"kind": "interface",
|
|
5492
|
+
"locationInModule": {
|
|
5493
|
+
"filename": "lambda/index.ts",
|
|
5494
|
+
"line": 63
|
|
5495
|
+
},
|
|
5496
|
+
"name": "Icav2ResourcesProps",
|
|
5497
|
+
"namespace": "lambda",
|
|
5498
|
+
"properties": [
|
|
5499
|
+
{
|
|
5500
|
+
"abstract": true,
|
|
5501
|
+
"docs": {
|
|
5502
|
+
"custom": {
|
|
5503
|
+
"DEFAULT_ICAV2_ACCESS_TOKEN_SECRET_ID": "true"
|
|
5504
|
+
},
|
|
5505
|
+
"stability": "experimental",
|
|
5506
|
+
"summary": "The id of the secret that contains the icav2 access token otherwise it will default to."
|
|
5507
|
+
},
|
|
5508
|
+
"immutable": true,
|
|
5509
|
+
"locationInModule": {
|
|
5510
|
+
"filename": "lambda/index.ts",
|
|
5511
|
+
"line": 68
|
|
5512
|
+
},
|
|
5513
|
+
"name": "icav2AccessTokenSecretId",
|
|
5514
|
+
"optional": true,
|
|
5515
|
+
"type": {
|
|
5516
|
+
"primitive": "string"
|
|
5517
|
+
}
|
|
5518
|
+
}
|
|
5519
|
+
],
|
|
5520
|
+
"symbolId": "lambda/index:Icav2ResourcesProps"
|
|
5521
|
+
},
|
|
5261
5522
|
"@orcabus/platform-cdk-constructs.lambda.MartEnvironmentVariables": {
|
|
5262
5523
|
"assembly": "@orcabus/platform-cdk-constructs",
|
|
5263
5524
|
"datatype": true,
|
|
@@ -5268,7 +5529,7 @@
|
|
|
5268
5529
|
"kind": "interface",
|
|
5269
5530
|
"locationInModule": {
|
|
5270
5531
|
"filename": "lambda/index.ts",
|
|
5271
|
-
"line":
|
|
5532
|
+
"line": 46
|
|
5272
5533
|
},
|
|
5273
5534
|
"name": "MartEnvironmentVariables",
|
|
5274
5535
|
"namespace": "lambda",
|
|
@@ -5285,7 +5546,7 @@
|
|
|
5285
5546
|
"immutable": true,
|
|
5286
5547
|
"locationInModule": {
|
|
5287
5548
|
"filename": "lambda/index.ts",
|
|
5288
|
-
"line":
|
|
5549
|
+
"line": 60
|
|
5289
5550
|
},
|
|
5290
5551
|
"name": "athenaDatabaseName",
|
|
5291
5552
|
"optional": true,
|
|
@@ -5305,7 +5566,7 @@
|
|
|
5305
5566
|
"immutable": true,
|
|
5306
5567
|
"locationInModule": {
|
|
5307
5568
|
"filename": "lambda/index.ts",
|
|
5308
|
-
"line":
|
|
5569
|
+
"line": 55
|
|
5309
5570
|
},
|
|
5310
5571
|
"name": "athenaDatasourceName",
|
|
5311
5572
|
"optional": true,
|
|
@@ -5325,7 +5586,7 @@
|
|
|
5325
5586
|
"immutable": true,
|
|
5326
5587
|
"locationInModule": {
|
|
5327
5588
|
"filename": "lambda/index.ts",
|
|
5328
|
-
"line":
|
|
5589
|
+
"line": 50
|
|
5329
5590
|
},
|
|
5330
5591
|
"name": "athenaWorkgroupName",
|
|
5331
5592
|
"optional": true,
|
|
@@ -5346,7 +5607,7 @@
|
|
|
5346
5607
|
"kind": "interface",
|
|
5347
5608
|
"locationInModule": {
|
|
5348
5609
|
"filename": "lambda/index.ts",
|
|
5349
|
-
"line":
|
|
5610
|
+
"line": 34
|
|
5350
5611
|
},
|
|
5351
5612
|
"name": "OrcabusResourcesProps",
|
|
5352
5613
|
"namespace": "lambda",
|
|
@@ -5363,7 +5624,7 @@
|
|
|
5363
5624
|
"immutable": true,
|
|
5364
5625
|
"locationInModule": {
|
|
5365
5626
|
"filename": "lambda/index.ts",
|
|
5366
|
-
"line":
|
|
5627
|
+
"line": 43
|
|
5367
5628
|
},
|
|
5368
5629
|
"name": "hostnameSsmParameterName",
|
|
5369
5630
|
"optional": true,
|
|
@@ -5383,7 +5644,7 @@
|
|
|
5383
5644
|
"immutable": true,
|
|
5384
5645
|
"locationInModule": {
|
|
5385
5646
|
"filename": "lambda/index.ts",
|
|
5386
|
-
"line":
|
|
5647
|
+
"line": 38
|
|
5387
5648
|
},
|
|
5388
5649
|
"name": "orcabusTokenSecretId",
|
|
5389
5650
|
"optional": true,
|
|
@@ -5407,7 +5668,7 @@
|
|
|
5407
5668
|
},
|
|
5408
5669
|
"locationInModule": {
|
|
5409
5670
|
"filename": "lambda/index.ts",
|
|
5410
|
-
"line":
|
|
5671
|
+
"line": 126
|
|
5411
5672
|
},
|
|
5412
5673
|
"parameters": [
|
|
5413
5674
|
{
|
|
@@ -5433,7 +5694,7 @@
|
|
|
5433
5694
|
"kind": "class",
|
|
5434
5695
|
"locationInModule": {
|
|
5435
5696
|
"filename": "lambda/index.ts",
|
|
5436
|
-
"line":
|
|
5697
|
+
"line": 117
|
|
5437
5698
|
},
|
|
5438
5699
|
"name": "PythonUvFunction",
|
|
5439
5700
|
"namespace": "lambda",
|
|
@@ -5452,11 +5713,65 @@
|
|
|
5452
5713
|
"kind": "interface",
|
|
5453
5714
|
"locationInModule": {
|
|
5454
5715
|
"filename": "lambda/index.ts",
|
|
5455
|
-
"line":
|
|
5716
|
+
"line": 72
|
|
5456
5717
|
},
|
|
5457
5718
|
"name": "PythonUvFunctionProps",
|
|
5458
5719
|
"namespace": "lambda",
|
|
5459
5720
|
"properties": [
|
|
5721
|
+
{
|
|
5722
|
+
"abstract": true,
|
|
5723
|
+
"docs": {
|
|
5724
|
+
"custom": {
|
|
5725
|
+
"DEFAULT_ICAV2_ACCESS_TOKEN_SECRET_ID": "for the secret"
|
|
5726
|
+
},
|
|
5727
|
+
"stability": "experimental",
|
|
5728
|
+
"summary": "Provide the icav2Resources, optional, otherwise it will default to."
|
|
5729
|
+
},
|
|
5730
|
+
"immutable": true,
|
|
5731
|
+
"locationInModule": {
|
|
5732
|
+
"filename": "lambda/index.ts",
|
|
5733
|
+
"line": 113
|
|
5734
|
+
},
|
|
5735
|
+
"name": "icav2Resources",
|
|
5736
|
+
"optional": true,
|
|
5737
|
+
"type": {
|
|
5738
|
+
"fqn": "@orcabus/platform-cdk-constructs.lambda.Icav2ResourcesProps"
|
|
5739
|
+
}
|
|
5740
|
+
},
|
|
5741
|
+
{
|
|
5742
|
+
"abstract": true,
|
|
5743
|
+
"docs": {
|
|
5744
|
+
"stability": "experimental",
|
|
5745
|
+
"summary": "Whether or not to include the fastapi layer in the lambda function build."
|
|
5746
|
+
},
|
|
5747
|
+
"immutable": true,
|
|
5748
|
+
"locationInModule": {
|
|
5749
|
+
"filename": "lambda/index.ts",
|
|
5750
|
+
"line": 93
|
|
5751
|
+
},
|
|
5752
|
+
"name": "includeFastApiLayer",
|
|
5753
|
+
"optional": true,
|
|
5754
|
+
"type": {
|
|
5755
|
+
"primitive": "boolean"
|
|
5756
|
+
}
|
|
5757
|
+
},
|
|
5758
|
+
{
|
|
5759
|
+
"abstract": true,
|
|
5760
|
+
"docs": {
|
|
5761
|
+
"stability": "experimental",
|
|
5762
|
+
"summary": "Whether or not to include the icav2 layer in the lambda function build."
|
|
5763
|
+
},
|
|
5764
|
+
"immutable": true,
|
|
5765
|
+
"locationInModule": {
|
|
5766
|
+
"filename": "lambda/index.ts",
|
|
5767
|
+
"line": 88
|
|
5768
|
+
},
|
|
5769
|
+
"name": "includeIcav2Layer",
|
|
5770
|
+
"optional": true,
|
|
5771
|
+
"type": {
|
|
5772
|
+
"primitive": "boolean"
|
|
5773
|
+
}
|
|
5774
|
+
},
|
|
5460
5775
|
{
|
|
5461
5776
|
"abstract": true,
|
|
5462
5777
|
"docs": {
|
|
@@ -5466,7 +5781,7 @@
|
|
|
5466
5781
|
"immutable": true,
|
|
5467
5782
|
"locationInModule": {
|
|
5468
5783
|
"filename": "lambda/index.ts",
|
|
5469
|
-
"line":
|
|
5784
|
+
"line": 83
|
|
5470
5785
|
},
|
|
5471
5786
|
"name": "includeMartLayer",
|
|
5472
5787
|
"optional": true,
|
|
@@ -5483,7 +5798,7 @@
|
|
|
5483
5798
|
"immutable": true,
|
|
5484
5799
|
"locationInModule": {
|
|
5485
5800
|
"filename": "lambda/index.ts",
|
|
5486
|
-
"line":
|
|
5801
|
+
"line": 76
|
|
5487
5802
|
},
|
|
5488
5803
|
"name": "includeOrcabusApiToolsLayer",
|
|
5489
5804
|
"optional": true,
|
|
@@ -5503,7 +5818,7 @@
|
|
|
5503
5818
|
"immutable": true,
|
|
5504
5819
|
"locationInModule": {
|
|
5505
5820
|
"filename": "lambda/index.ts",
|
|
5506
|
-
"line":
|
|
5821
|
+
"line": 107
|
|
5507
5822
|
},
|
|
5508
5823
|
"name": "martEnvironmentVariables",
|
|
5509
5824
|
"optional": true,
|
|
@@ -5524,7 +5839,7 @@
|
|
|
5524
5839
|
"immutable": true,
|
|
5525
5840
|
"locationInModule": {
|
|
5526
5841
|
"filename": "lambda/index.ts",
|
|
5527
|
-
"line":
|
|
5842
|
+
"line": 100
|
|
5528
5843
|
},
|
|
5529
5844
|
"name": "orcabusTokenResources",
|
|
5530
5845
|
"optional": true,
|
|
@@ -5536,6 +5851,6 @@
|
|
|
5536
5851
|
"symbolId": "lambda/index:PythonUvFunctionProps"
|
|
5537
5852
|
}
|
|
5538
5853
|
},
|
|
5539
|
-
"version": "0.0.7-
|
|
5540
|
-
"fingerprint": "
|
|
5854
|
+
"version": "0.0.7-beta.10",
|
|
5855
|
+
"fingerprint": "VBUneoq1FMbsHWvMD7HtsC9oM0SlTuz55+xIn/fdNtw="
|
|
5541
5856
|
}
|