eoapi-cdk 5.2.0 → 5.4.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 +546 -29
- package/CHANGELOG.md +14 -0
- package/README.md +3 -0
- package/lib/bastion-host/index.js +1 -1
- package/lib/bootstrapper/index.js +1 -1
- package/lib/database/index.js +1 -1
- package/lib/index.d.ts +1 -0
- package/lib/index.js +2 -1
- package/lib/ingestor-api/index.d.ts +41 -0
- package/lib/ingestor-api/index.js +14 -4
- package/lib/stac-api/index.js +1 -1
- package/lib/stac-browser/index.d.ts +45 -0
- package/lib/stac-browser/index.js +86 -0
- package/lib/tipg-api/index.d.ts +2 -2
- package/lib/tipg-api/index.js +2 -2
- package/lib/titiler-pgstac-api/index.d.ts +46 -3
- package/lib/titiler-pgstac-api/index.js +31 -26
- package/lib/titiler-pgstac-api/runtime/dev_requirements.txt +2 -1
- package/lib/titiler-pgstac-api/runtime/requirements.txt +1 -1
- package/lib/titiler-pgstac-api/runtime/src/handler.py +1 -1
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +19 -4
- package/lib/titiler-pgstac-api/runtime/Dockerfile +0 -20
package/.jsii
CHANGED
|
@@ -3572,7 +3572,7 @@
|
|
|
3572
3572
|
},
|
|
3573
3573
|
"name": "eoapi-cdk",
|
|
3574
3574
|
"readme": {
|
|
3575
|
-
"markdown": "# eoAPI CDK Constructs\n\neoapi-cdk is a package of [AWS CDK constructs](https://docs.aws.amazon.com/prescriptive-guidance/latest/best-practices-cdk-typescript-iac/constructs-best-practices.html) designed to encapsulate eoAPI services and best practices as simple reusable components.\n\n\nFor more background on the included services see [The Earth Observation API](https://eoapi.dev/)\n\n## Included constructs\nDetailed API docs for the constructs can be found [here](https://developmentseed.org/eoapi-cdk/).\n\n### [pgSTAC Database](https://developmentseed.org/eoapi-cdk/#pgstacdatabase-)\nAn [RDS](https://aws.amazon.com/rds/) instance with [pgSTAC](https://github.com/stac-utils/pgstac) installed and the Postgres parameters optimized for the selected instance type.\n\n### [STAC API](https://developmentseed.org/eoapi-cdk/#pgstacapilambda-)\nA STAC API implementation using [stac-fastapi](https://github.com/stac-utils/stac-fastapi) with a [pgSTAC backend](https://github.com/stac-utils/stac-fastapi-pgstac). Packaged as a complete runtime for deployment with API Gateway and Lambda.\n\n### [pgSTAC Titiler API](https://developmentseed.org/eoapi-cdk/#titilerpgstacapilambda-)\nA complete dynamic tiling API using [titiler-pgstac](https://github.com/stac-utils/titiler-pgstac) to create dynamic mosaics of assets based on [STAC Search queries](https://github.com/radiantearth/stac-api-spec/tree/master/item-search). Packaged as a complete runtime for deployment with API Gateway and Lambda and fully integrated with the pgSTAC Database construct.\n\n### [OGC Features/Tiles API](https://developmentseed.org/eoapi-cdk/#titilerpgstacapilambda-)\nA complete OGC Features/Tiles API using [tipg](https://github.com/developmentseed/tipg). Packaged as a complete runtime for deployment with API Gateway and Lambda. By default the API will be connected to the Database's `public` schema.\n\n### [STAC Ingestor](https://developmentseed.org/eoapi-cdk/#stacingestor-)\nAn API for large scale STAC data ingestion and validation into a pgSTAC instance.\n\n\n\nAuthentication for the STAC Ingestor API can be configured with JWTs authenticated by JWKS. To learn more about securing FastAPI applications with this approach see [Securing FastAPI with JWKS (AWS Cognito, Auth0)](https://alukach.com/posts/fastapi-rs256-jwt/).\n\nA sample Cognito-based authentication system is available at [aws-asdi-auth](https://github.com/developmentseed/aws-asdi-auth).\n\n### [Bastion Host](https://developmentseed.org/eoapi-cdk/#bastionhost-)\nA bastion host is a secure gateway that provides access to resources in a private subnet. In this case it provides the ability to make administrative connections to eoAPI's pgSTAC instance.\n\n\n\nFor more background on bastion hosts in AWS see [this article](https://dev.to/aws-builders/bastion-host-in-aws-vpc-2i63).\n\nAnd for configuration instructions for this construct see [the docs](https://developmentseed.org/eoapi-cdk/#bastionhost-).\n\n\n## Published Packages\n\n- https://pypi.org/project/eoapi-cdk/\n- https://www.npmjs.com/package/eoapi-cdk/\n\n## Release\n\nVersioning is automatically handled via [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) and [Semantic Release](https://semantic-release.gitbook.io/semantic-release/).\n\n_Warning_: If you rebase `main`, you must ensure that the commits referenced by tags point to commits that are within the `main` branch. If a commit references a commit that is no longer on the `main` branch, Semantic Release will fail to detect the correct version of the project. [More information](https://github.com/semantic-release/semantic-release/issues/1121#issuecomment-517945233).\n\n\n"
|
|
3575
|
+
"markdown": "# eoAPI CDK Constructs\n\neoapi-cdk is a package of [AWS CDK constructs](https://docs.aws.amazon.com/prescriptive-guidance/latest/best-practices-cdk-typescript-iac/constructs-best-practices.html) designed to encapsulate eoAPI services and best practices as simple reusable components.\n\n\nFor more background on the included services see [The Earth Observation API](https://eoapi.dev/)\n\n## Included constructs\nDetailed API docs for the constructs can be found [here](https://developmentseed.org/eoapi-cdk/).\n\n### [pgSTAC Database](https://developmentseed.org/eoapi-cdk/#pgstacdatabase-)\nAn [RDS](https://aws.amazon.com/rds/) instance with [pgSTAC](https://github.com/stac-utils/pgstac) installed and the Postgres parameters optimized for the selected instance type.\n\n### [STAC API](https://developmentseed.org/eoapi-cdk/#pgstacapilambda-)\nA STAC API implementation using [stac-fastapi](https://github.com/stac-utils/stac-fastapi) with a [pgSTAC backend](https://github.com/stac-utils/stac-fastapi-pgstac). Packaged as a complete runtime for deployment with API Gateway and Lambda.\n\n### [pgSTAC Titiler API](https://developmentseed.org/eoapi-cdk/#titilerpgstacapilambda-)\nA complete dynamic tiling API using [titiler-pgstac](https://github.com/stac-utils/titiler-pgstac) to create dynamic mosaics of assets based on [STAC Search queries](https://github.com/radiantearth/stac-api-spec/tree/master/item-search). Packaged as a complete runtime for deployment with API Gateway and Lambda and fully integrated with the pgSTAC Database construct.\n\n### [STAC browser](https://developmentseed.org/eoapi-cdk/#stacbrowser-)\nA CDK construct to host a static [Radiant Earth STAC browser](https://github.com/radiantearth/stac-browser) on S3.\n\n### [OGC Features/Tiles API](https://developmentseed.org/eoapi-cdk/#titilerpgstacapilambda-)\nA complete OGC Features/Tiles API using [tipg](https://github.com/developmentseed/tipg). Packaged as a complete runtime for deployment with API Gateway and Lambda. By default the API will be connected to the Database's `public` schema.\n\n### [STAC Ingestor](https://developmentseed.org/eoapi-cdk/#stacingestor-)\nAn API for large scale STAC data ingestion and validation into a pgSTAC instance.\n\n\n\nAuthentication for the STAC Ingestor API can be configured with JWTs authenticated by JWKS. To learn more about securing FastAPI applications with this approach see [Securing FastAPI with JWKS (AWS Cognito, Auth0)](https://alukach.com/posts/fastapi-rs256-jwt/).\n\nA sample Cognito-based authentication system is available at [aws-asdi-auth](https://github.com/developmentseed/aws-asdi-auth).\n\n### [Bastion Host](https://developmentseed.org/eoapi-cdk/#bastionhost-)\nA bastion host is a secure gateway that provides access to resources in a private subnet. In this case it provides the ability to make administrative connections to eoAPI's pgSTAC instance.\n\n\n\nFor more background on bastion hosts in AWS see [this article](https://dev.to/aws-builders/bastion-host-in-aws-vpc-2i63).\n\nAnd for configuration instructions for this construct see [the docs](https://developmentseed.org/eoapi-cdk/#bastionhost-).\n\n\n## Published Packages\n\n- https://pypi.org/project/eoapi-cdk/\n- https://www.npmjs.com/package/eoapi-cdk/\n\n## Release\n\nVersioning is automatically handled via [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) and [Semantic Release](https://semantic-release.gitbook.io/semantic-release/).\n\n_Warning_: If you rebase `main`, you must ensure that the commits referenced by tags point to commits that are within the `main` branch. If a commit references a commit that is no longer on the `main` branch, Semantic Release will fail to detect the correct version of the project. [More information](https://github.com/semantic-release/semantic-release/issues/1121#issuecomment-517945233).\n\n\n"
|
|
3576
3576
|
},
|
|
3577
3577
|
"repository": {
|
|
3578
3578
|
"type": "git",
|
|
@@ -3589,6 +3589,73 @@
|
|
|
3589
3589
|
}
|
|
3590
3590
|
},
|
|
3591
3591
|
"types": {
|
|
3592
|
+
"eoapi-cdk.ApiCode": {
|
|
3593
|
+
"assembly": "eoapi-cdk",
|
|
3594
|
+
"datatype": true,
|
|
3595
|
+
"docs": {
|
|
3596
|
+
"stability": "experimental"
|
|
3597
|
+
},
|
|
3598
|
+
"fqn": "eoapi-cdk.ApiCode",
|
|
3599
|
+
"kind": "interface",
|
|
3600
|
+
"locationInModule": {
|
|
3601
|
+
"filename": "lib/ingestor-api/index.ts",
|
|
3602
|
+
"line": 326
|
|
3603
|
+
},
|
|
3604
|
+
"name": "ApiCode",
|
|
3605
|
+
"properties": [
|
|
3606
|
+
{
|
|
3607
|
+
"abstract": true,
|
|
3608
|
+
"docs": {
|
|
3609
|
+
"stability": "experimental",
|
|
3610
|
+
"summary": "Path to the source of the function or the location for dependencies, for the api lambda."
|
|
3611
|
+
},
|
|
3612
|
+
"immutable": true,
|
|
3613
|
+
"locationInModule": {
|
|
3614
|
+
"filename": "lib/ingestor-api/index.ts",
|
|
3615
|
+
"line": 331
|
|
3616
|
+
},
|
|
3617
|
+
"name": "entry",
|
|
3618
|
+
"type": {
|
|
3619
|
+
"primitive": "string"
|
|
3620
|
+
}
|
|
3621
|
+
},
|
|
3622
|
+
{
|
|
3623
|
+
"abstract": true,
|
|
3624
|
+
"docs": {
|
|
3625
|
+
"stability": "experimental",
|
|
3626
|
+
"summary": "The name of the exported handler in the `api_lambda_index` file."
|
|
3627
|
+
},
|
|
3628
|
+
"immutable": true,
|
|
3629
|
+
"locationInModule": {
|
|
3630
|
+
"filename": "lib/ingestor-api/index.ts",
|
|
3631
|
+
"line": 341
|
|
3632
|
+
},
|
|
3633
|
+
"name": "handler",
|
|
3634
|
+
"optional": true,
|
|
3635
|
+
"type": {
|
|
3636
|
+
"primitive": "string"
|
|
3637
|
+
}
|
|
3638
|
+
},
|
|
3639
|
+
{
|
|
3640
|
+
"abstract": true,
|
|
3641
|
+
"docs": {
|
|
3642
|
+
"stability": "experimental",
|
|
3643
|
+
"summary": "Path to the index file containing the exported handler, relative to `api_lambda_entry`."
|
|
3644
|
+
},
|
|
3645
|
+
"immutable": true,
|
|
3646
|
+
"locationInModule": {
|
|
3647
|
+
"filename": "lib/ingestor-api/index.ts",
|
|
3648
|
+
"line": 336
|
|
3649
|
+
},
|
|
3650
|
+
"name": "index",
|
|
3651
|
+
"optional": true,
|
|
3652
|
+
"type": {
|
|
3653
|
+
"primitive": "string"
|
|
3654
|
+
}
|
|
3655
|
+
}
|
|
3656
|
+
],
|
|
3657
|
+
"symbolId": "lib/ingestor-api/index:ApiCode"
|
|
3658
|
+
},
|
|
3592
3659
|
"eoapi-cdk.ApiEntrypoint": {
|
|
3593
3660
|
"assembly": "eoapi-cdk",
|
|
3594
3661
|
"datatype": true,
|
|
@@ -4208,6 +4275,73 @@
|
|
|
4208
4275
|
],
|
|
4209
4276
|
"symbolId": "lib/database/index:DatabaseParameters"
|
|
4210
4277
|
},
|
|
4278
|
+
"eoapi-cdk.IngestorCode": {
|
|
4279
|
+
"assembly": "eoapi-cdk",
|
|
4280
|
+
"datatype": true,
|
|
4281
|
+
"docs": {
|
|
4282
|
+
"stability": "experimental"
|
|
4283
|
+
},
|
|
4284
|
+
"fqn": "eoapi-cdk.IngestorCode",
|
|
4285
|
+
"kind": "interface",
|
|
4286
|
+
"locationInModule": {
|
|
4287
|
+
"filename": "lib/ingestor-api/index.ts",
|
|
4288
|
+
"line": 345
|
|
4289
|
+
},
|
|
4290
|
+
"name": "IngestorCode",
|
|
4291
|
+
"properties": [
|
|
4292
|
+
{
|
|
4293
|
+
"abstract": true,
|
|
4294
|
+
"docs": {
|
|
4295
|
+
"stability": "experimental",
|
|
4296
|
+
"summary": "Path to the source of the function or the location for dependencies, for the ingestor lambda."
|
|
4297
|
+
},
|
|
4298
|
+
"immutable": true,
|
|
4299
|
+
"locationInModule": {
|
|
4300
|
+
"filename": "lib/ingestor-api/index.ts",
|
|
4301
|
+
"line": 350
|
|
4302
|
+
},
|
|
4303
|
+
"name": "entry",
|
|
4304
|
+
"type": {
|
|
4305
|
+
"primitive": "string"
|
|
4306
|
+
}
|
|
4307
|
+
},
|
|
4308
|
+
{
|
|
4309
|
+
"abstract": true,
|
|
4310
|
+
"docs": {
|
|
4311
|
+
"stability": "experimental",
|
|
4312
|
+
"summary": "The name of the exported handler in the `ingestor_lambda_index` file."
|
|
4313
|
+
},
|
|
4314
|
+
"immutable": true,
|
|
4315
|
+
"locationInModule": {
|
|
4316
|
+
"filename": "lib/ingestor-api/index.ts",
|
|
4317
|
+
"line": 360
|
|
4318
|
+
},
|
|
4319
|
+
"name": "handler",
|
|
4320
|
+
"optional": true,
|
|
4321
|
+
"type": {
|
|
4322
|
+
"primitive": "string"
|
|
4323
|
+
}
|
|
4324
|
+
},
|
|
4325
|
+
{
|
|
4326
|
+
"abstract": true,
|
|
4327
|
+
"docs": {
|
|
4328
|
+
"stability": "experimental",
|
|
4329
|
+
"summary": "Path to the index file containing the exported handler, relative to `ingestor_lambda_entry`."
|
|
4330
|
+
},
|
|
4331
|
+
"immutable": true,
|
|
4332
|
+
"locationInModule": {
|
|
4333
|
+
"filename": "lib/ingestor-api/index.ts",
|
|
4334
|
+
"line": 355
|
|
4335
|
+
},
|
|
4336
|
+
"name": "index",
|
|
4337
|
+
"optional": true,
|
|
4338
|
+
"type": {
|
|
4339
|
+
"primitive": "string"
|
|
4340
|
+
}
|
|
4341
|
+
}
|
|
4342
|
+
],
|
|
4343
|
+
"symbolId": "lib/ingestor-api/index:IngestorCode"
|
|
4344
|
+
},
|
|
4211
4345
|
"eoapi-cdk.PgStacApiLambda": {
|
|
4212
4346
|
"assembly": "eoapi-cdk",
|
|
4213
4347
|
"base": "constructs.Construct",
|
|
@@ -4614,6 +4748,201 @@
|
|
|
4614
4748
|
],
|
|
4615
4749
|
"symbolId": "lib/database/index:PgStacDatabaseProps"
|
|
4616
4750
|
},
|
|
4751
|
+
"eoapi-cdk.StacBrowser": {
|
|
4752
|
+
"assembly": "eoapi-cdk",
|
|
4753
|
+
"base": "constructs.Construct",
|
|
4754
|
+
"docs": {
|
|
4755
|
+
"stability": "experimental"
|
|
4756
|
+
},
|
|
4757
|
+
"fqn": "eoapi-cdk.StacBrowser",
|
|
4758
|
+
"initializer": {
|
|
4759
|
+
"docs": {
|
|
4760
|
+
"stability": "experimental"
|
|
4761
|
+
},
|
|
4762
|
+
"locationInModule": {
|
|
4763
|
+
"filename": "lib/stac-browser/index.ts",
|
|
4764
|
+
"line": 16
|
|
4765
|
+
},
|
|
4766
|
+
"parameters": [
|
|
4767
|
+
{
|
|
4768
|
+
"name": "scope",
|
|
4769
|
+
"type": {
|
|
4770
|
+
"fqn": "constructs.Construct"
|
|
4771
|
+
}
|
|
4772
|
+
},
|
|
4773
|
+
{
|
|
4774
|
+
"name": "id",
|
|
4775
|
+
"type": {
|
|
4776
|
+
"primitive": "string"
|
|
4777
|
+
}
|
|
4778
|
+
},
|
|
4779
|
+
{
|
|
4780
|
+
"name": "props",
|
|
4781
|
+
"type": {
|
|
4782
|
+
"fqn": "eoapi-cdk.StacBrowserProps"
|
|
4783
|
+
}
|
|
4784
|
+
}
|
|
4785
|
+
]
|
|
4786
|
+
},
|
|
4787
|
+
"kind": "class",
|
|
4788
|
+
"locationInModule": {
|
|
4789
|
+
"filename": "lib/stac-browser/index.ts",
|
|
4790
|
+
"line": 11
|
|
4791
|
+
},
|
|
4792
|
+
"name": "StacBrowser",
|
|
4793
|
+
"properties": [
|
|
4794
|
+
{
|
|
4795
|
+
"docs": {
|
|
4796
|
+
"stability": "experimental"
|
|
4797
|
+
},
|
|
4798
|
+
"locationInModule": {
|
|
4799
|
+
"filename": "lib/stac-browser/index.ts",
|
|
4800
|
+
"line": 13
|
|
4801
|
+
},
|
|
4802
|
+
"name": "bucket",
|
|
4803
|
+
"type": {
|
|
4804
|
+
"fqn": "aws-cdk-lib.aws_s3.IBucket"
|
|
4805
|
+
}
|
|
4806
|
+
},
|
|
4807
|
+
{
|
|
4808
|
+
"docs": {
|
|
4809
|
+
"stability": "experimental"
|
|
4810
|
+
},
|
|
4811
|
+
"locationInModule": {
|
|
4812
|
+
"filename": "lib/stac-browser/index.ts",
|
|
4813
|
+
"line": 14
|
|
4814
|
+
},
|
|
4815
|
+
"name": "bucketDeployment",
|
|
4816
|
+
"type": {
|
|
4817
|
+
"fqn": "aws-cdk-lib.aws_s3_deployment.BucketDeployment"
|
|
4818
|
+
}
|
|
4819
|
+
}
|
|
4820
|
+
],
|
|
4821
|
+
"symbolId": "lib/stac-browser/index:StacBrowser"
|
|
4822
|
+
},
|
|
4823
|
+
"eoapi-cdk.StacBrowserProps": {
|
|
4824
|
+
"assembly": "eoapi-cdk",
|
|
4825
|
+
"datatype": true,
|
|
4826
|
+
"docs": {
|
|
4827
|
+
"stability": "experimental"
|
|
4828
|
+
},
|
|
4829
|
+
"fqn": "eoapi-cdk.StacBrowserProps",
|
|
4830
|
+
"kind": "interface",
|
|
4831
|
+
"locationInModule": {
|
|
4832
|
+
"filename": "lib/stac-browser/index.ts",
|
|
4833
|
+
"line": 106
|
|
4834
|
+
},
|
|
4835
|
+
"name": "StacBrowserProps",
|
|
4836
|
+
"properties": [
|
|
4837
|
+
{
|
|
4838
|
+
"abstract": true,
|
|
4839
|
+
"docs": {
|
|
4840
|
+
"stability": "experimental",
|
|
4841
|
+
"summary": "Tag of the radiant earth stac-browser repo to use to build the app."
|
|
4842
|
+
},
|
|
4843
|
+
"immutable": true,
|
|
4844
|
+
"locationInModule": {
|
|
4845
|
+
"filename": "lib/stac-browser/index.ts",
|
|
4846
|
+
"line": 125
|
|
4847
|
+
},
|
|
4848
|
+
"name": "githubRepoTag",
|
|
4849
|
+
"type": {
|
|
4850
|
+
"primitive": "string"
|
|
4851
|
+
}
|
|
4852
|
+
},
|
|
4853
|
+
{
|
|
4854
|
+
"abstract": true,
|
|
4855
|
+
"docs": {
|
|
4856
|
+
"stability": "experimental",
|
|
4857
|
+
"summary": "STAC catalog URL."
|
|
4858
|
+
},
|
|
4859
|
+
"immutable": true,
|
|
4860
|
+
"locationInModule": {
|
|
4861
|
+
"filename": "lib/stac-browser/index.ts",
|
|
4862
|
+
"line": 120
|
|
4863
|
+
},
|
|
4864
|
+
"name": "stacCatalogUrl",
|
|
4865
|
+
"type": {
|
|
4866
|
+
"primitive": "string"
|
|
4867
|
+
}
|
|
4868
|
+
},
|
|
4869
|
+
{
|
|
4870
|
+
"abstract": true,
|
|
4871
|
+
"docs": {
|
|
4872
|
+
"default": "- No bucket ARN. A new bucket will be created.",
|
|
4873
|
+
"remarks": "If specified, the identity used to deploy the stack must have the appropriate permissions to create a deployment for this bucket. \nIn addition, if specified, `cloudFrontDistributionArn` is ignored since the policy of an imported resource can't be modified.",
|
|
4874
|
+
"stability": "experimental",
|
|
4875
|
+
"summary": "Bucket ARN."
|
|
4876
|
+
},
|
|
4877
|
+
"immutable": true,
|
|
4878
|
+
"locationInModule": {
|
|
4879
|
+
"filename": "lib/stac-browser/index.ts",
|
|
4880
|
+
"line": 115
|
|
4881
|
+
},
|
|
4882
|
+
"name": "bucketArn",
|
|
4883
|
+
"optional": true,
|
|
4884
|
+
"type": {
|
|
4885
|
+
"primitive": "string"
|
|
4886
|
+
}
|
|
4887
|
+
},
|
|
4888
|
+
{
|
|
4889
|
+
"abstract": true,
|
|
4890
|
+
"docs": {
|
|
4891
|
+
"default": "- DEFAULT_CLONE_DIRECTORY",
|
|
4892
|
+
"stability": "experimental",
|
|
4893
|
+
"summary": "Location in the filesystem where to compile the browser code."
|
|
4894
|
+
},
|
|
4895
|
+
"immutable": true,
|
|
4896
|
+
"locationInModule": {
|
|
4897
|
+
"filename": "lib/stac-browser/index.ts",
|
|
4898
|
+
"line": 149
|
|
4899
|
+
},
|
|
4900
|
+
"name": "cloneDirectory",
|
|
4901
|
+
"optional": true,
|
|
4902
|
+
"type": {
|
|
4903
|
+
"primitive": "string"
|
|
4904
|
+
}
|
|
4905
|
+
},
|
|
4906
|
+
{
|
|
4907
|
+
"abstract": true,
|
|
4908
|
+
"docs": {
|
|
4909
|
+
"default": "- No cloudfront distribution ARN. The bucket policy will not be modified.",
|
|
4910
|
+
"remarks": "If `bucketArn` is specified, this parameter is ignored since the policy of an imported bucket can't be modified.",
|
|
4911
|
+
"stability": "experimental",
|
|
4912
|
+
"summary": "The ARN of the cloudfront distribution that will be added to the bucket policy with read access."
|
|
4913
|
+
},
|
|
4914
|
+
"immutable": true,
|
|
4915
|
+
"locationInModule": {
|
|
4916
|
+
"filename": "lib/stac-browser/index.ts",
|
|
4917
|
+
"line": 134
|
|
4918
|
+
},
|
|
4919
|
+
"name": "cloudFrontDistributionArn",
|
|
4920
|
+
"optional": true,
|
|
4921
|
+
"type": {
|
|
4922
|
+
"primitive": "string"
|
|
4923
|
+
}
|
|
4924
|
+
},
|
|
4925
|
+
{
|
|
4926
|
+
"abstract": true,
|
|
4927
|
+
"docs": {
|
|
4928
|
+
"default": "- No index document.",
|
|
4929
|
+
"stability": "experimental",
|
|
4930
|
+
"summary": "The name of the index document (e.g. \"index.html\") for the website. Enables static website hosting for this bucket."
|
|
4931
|
+
},
|
|
4932
|
+
"immutable": true,
|
|
4933
|
+
"locationInModule": {
|
|
4934
|
+
"filename": "lib/stac-browser/index.ts",
|
|
4935
|
+
"line": 142
|
|
4936
|
+
},
|
|
4937
|
+
"name": "websiteIndexDocument",
|
|
4938
|
+
"optional": true,
|
|
4939
|
+
"type": {
|
|
4940
|
+
"primitive": "string"
|
|
4941
|
+
}
|
|
4942
|
+
}
|
|
4943
|
+
],
|
|
4944
|
+
"symbolId": "lib/stac-browser/index:StacBrowserProps"
|
|
4945
|
+
},
|
|
4617
4946
|
"eoapi-cdk.StacIngestor": {
|
|
4618
4947
|
"assembly": "eoapi-cdk",
|
|
4619
4948
|
"base": "constructs.Construct",
|
|
@@ -4696,7 +5025,7 @@
|
|
|
4696
5025
|
"kind": "interface",
|
|
4697
5026
|
"locationInModule": {
|
|
4698
5027
|
"filename": "lib/ingestor-api/index.ts",
|
|
4699
|
-
"line":
|
|
5028
|
+
"line": 255
|
|
4700
5029
|
},
|
|
4701
5030
|
"name": "StacIngestorProps",
|
|
4702
5031
|
"properties": [
|
|
@@ -4709,7 +5038,7 @@
|
|
|
4709
5038
|
"immutable": true,
|
|
4710
5039
|
"locationInModule": {
|
|
4711
5040
|
"filename": "lib/ingestor-api/index.ts",
|
|
4712
|
-
"line":
|
|
5041
|
+
"line": 259
|
|
4713
5042
|
},
|
|
4714
5043
|
"name": "dataAccessRole",
|
|
4715
5044
|
"type": {
|
|
@@ -4725,7 +5054,7 @@
|
|
|
4725
5054
|
"immutable": true,
|
|
4726
5055
|
"locationInModule": {
|
|
4727
5056
|
"filename": "lib/ingestor-api/index.ts",
|
|
4728
|
-
"line":
|
|
5057
|
+
"line": 274
|
|
4729
5058
|
},
|
|
4730
5059
|
"name": "stacDbSecret",
|
|
4731
5060
|
"type": {
|
|
@@ -4741,7 +5070,7 @@
|
|
|
4741
5070
|
"immutable": true,
|
|
4742
5071
|
"locationInModule": {
|
|
4743
5072
|
"filename": "lib/ingestor-api/index.ts",
|
|
4744
|
-
"line":
|
|
5073
|
+
"line": 284
|
|
4745
5074
|
},
|
|
4746
5075
|
"name": "stacDbSecurityGroup",
|
|
4747
5076
|
"type": {
|
|
@@ -4757,7 +5086,7 @@
|
|
|
4757
5086
|
"immutable": true,
|
|
4758
5087
|
"locationInModule": {
|
|
4759
5088
|
"filename": "lib/ingestor-api/index.ts",
|
|
4760
|
-
"line":
|
|
5089
|
+
"line": 264
|
|
4761
5090
|
},
|
|
4762
5091
|
"name": "stacUrl",
|
|
4763
5092
|
"type": {
|
|
@@ -4773,7 +5102,7 @@
|
|
|
4773
5102
|
"immutable": true,
|
|
4774
5103
|
"locationInModule": {
|
|
4775
5104
|
"filename": "lib/ingestor-api/index.ts",
|
|
4776
|
-
"line":
|
|
5105
|
+
"line": 269
|
|
4777
5106
|
},
|
|
4778
5107
|
"name": "stage",
|
|
4779
5108
|
"type": {
|
|
@@ -4789,7 +5118,7 @@
|
|
|
4789
5118
|
"immutable": true,
|
|
4790
5119
|
"locationInModule": {
|
|
4791
5120
|
"filename": "lib/ingestor-api/index.ts",
|
|
4792
|
-
"line":
|
|
5121
|
+
"line": 289
|
|
4793
5122
|
},
|
|
4794
5123
|
"name": "subnetSelection",
|
|
4795
5124
|
"type": {
|
|
@@ -4805,13 +5134,31 @@
|
|
|
4805
5134
|
"immutable": true,
|
|
4806
5135
|
"locationInModule": {
|
|
4807
5136
|
"filename": "lib/ingestor-api/index.ts",
|
|
4808
|
-
"line":
|
|
5137
|
+
"line": 279
|
|
4809
5138
|
},
|
|
4810
5139
|
"name": "vpc",
|
|
4811
5140
|
"type": {
|
|
4812
5141
|
"fqn": "aws-cdk-lib.aws_ec2.IVpc"
|
|
4813
5142
|
}
|
|
4814
5143
|
},
|
|
5144
|
+
{
|
|
5145
|
+
"abstract": true,
|
|
5146
|
+
"docs": {
|
|
5147
|
+
"default": "- default in the runtime folder.",
|
|
5148
|
+
"stability": "experimental",
|
|
5149
|
+
"summary": "Custom code for the ingestor api."
|
|
5150
|
+
},
|
|
5151
|
+
"immutable": true,
|
|
5152
|
+
"locationInModule": {
|
|
5153
|
+
"filename": "lib/ingestor-api/index.ts",
|
|
5154
|
+
"line": 316
|
|
5155
|
+
},
|
|
5156
|
+
"name": "apiCode",
|
|
5157
|
+
"optional": true,
|
|
5158
|
+
"type": {
|
|
5159
|
+
"fqn": "eoapi-cdk.ApiCode"
|
|
5160
|
+
}
|
|
5161
|
+
},
|
|
4815
5162
|
{
|
|
4816
5163
|
"abstract": true,
|
|
4817
5164
|
"docs": {
|
|
@@ -4821,7 +5168,7 @@
|
|
|
4821
5168
|
"immutable": true,
|
|
4822
5169
|
"locationInModule": {
|
|
4823
5170
|
"filename": "lib/ingestor-api/index.ts",
|
|
4824
|
-
"line":
|
|
5171
|
+
"line": 299
|
|
4825
5172
|
},
|
|
4826
5173
|
"name": "apiEndpointConfiguration",
|
|
4827
5174
|
"optional": true,
|
|
@@ -4838,7 +5185,7 @@
|
|
|
4838
5185
|
"immutable": true,
|
|
4839
5186
|
"locationInModule": {
|
|
4840
5187
|
"filename": "lib/ingestor-api/index.ts",
|
|
4841
|
-
"line":
|
|
5188
|
+
"line": 294
|
|
4842
5189
|
},
|
|
4843
5190
|
"name": "apiEnv",
|
|
4844
5191
|
"optional": true,
|
|
@@ -4860,7 +5207,7 @@
|
|
|
4860
5207
|
"immutable": true,
|
|
4861
5208
|
"locationInModule": {
|
|
4862
5209
|
"filename": "lib/ingestor-api/index.ts",
|
|
4863
|
-
"line":
|
|
5210
|
+
"line": 304
|
|
4864
5211
|
},
|
|
4865
5212
|
"name": "apiPolicy",
|
|
4866
5213
|
"optional": true,
|
|
@@ -4868,6 +5215,24 @@
|
|
|
4868
5215
|
"fqn": "aws-cdk-lib.aws_iam.PolicyDocument"
|
|
4869
5216
|
}
|
|
4870
5217
|
},
|
|
5218
|
+
{
|
|
5219
|
+
"abstract": true,
|
|
5220
|
+
"docs": {
|
|
5221
|
+
"default": "- default in the runtime folder.",
|
|
5222
|
+
"stability": "experimental",
|
|
5223
|
+
"summary": "Custom code for the ingestor."
|
|
5224
|
+
},
|
|
5225
|
+
"immutable": true,
|
|
5226
|
+
"locationInModule": {
|
|
5227
|
+
"filename": "lib/ingestor-api/index.ts",
|
|
5228
|
+
"line": 323
|
|
5229
|
+
},
|
|
5230
|
+
"name": "ingestorCode",
|
|
5231
|
+
"optional": true,
|
|
5232
|
+
"type": {
|
|
5233
|
+
"fqn": "eoapi-cdk.IngestorCode"
|
|
5234
|
+
}
|
|
5235
|
+
},
|
|
4871
5236
|
{
|
|
4872
5237
|
"abstract": true,
|
|
4873
5238
|
"docs": {
|
|
@@ -4877,7 +5242,7 @@
|
|
|
4877
5242
|
"immutable": true,
|
|
4878
5243
|
"locationInModule": {
|
|
4879
5244
|
"filename": "lib/ingestor-api/index.ts",
|
|
4880
|
-
"line":
|
|
5245
|
+
"line": 309
|
|
4881
5246
|
},
|
|
4882
5247
|
"name": "ingestorDomainNameOptions",
|
|
4883
5248
|
"optional": true,
|
|
@@ -5109,9 +5474,9 @@
|
|
|
5109
5474
|
{
|
|
5110
5475
|
"abstract": true,
|
|
5111
5476
|
"docs": {
|
|
5112
|
-
"default": "- simplified version of
|
|
5477
|
+
"default": "- simplified version of tipg.",
|
|
5113
5478
|
"stability": "experimental",
|
|
5114
|
-
"summary": "Custom code to run for
|
|
5479
|
+
"summary": "Custom code to run for the application."
|
|
5115
5480
|
},
|
|
5116
5481
|
"immutable": true,
|
|
5117
5482
|
"locationInModule": {
|
|
@@ -5178,7 +5543,7 @@
|
|
|
5178
5543
|
"kind": "interface",
|
|
5179
5544
|
"locationInModule": {
|
|
5180
5545
|
"filename": "lib/titiler-pgstac-api/index.ts",
|
|
5181
|
-
"line":
|
|
5546
|
+
"line": 95
|
|
5182
5547
|
},
|
|
5183
5548
|
"name": "TitilerPgStacApiLambdaProps",
|
|
5184
5549
|
"properties": [
|
|
@@ -5191,7 +5556,7 @@
|
|
|
5191
5556
|
"immutable": true,
|
|
5192
5557
|
"locationInModule": {
|
|
5193
5558
|
"filename": "lib/titiler-pgstac-api/index.ts",
|
|
5194
|
-
"line":
|
|
5559
|
+
"line": 105
|
|
5195
5560
|
},
|
|
5196
5561
|
"name": "db",
|
|
5197
5562
|
"type": {
|
|
@@ -5207,7 +5572,7 @@
|
|
|
5207
5572
|
"immutable": true,
|
|
5208
5573
|
"locationInModule": {
|
|
5209
5574
|
"filename": "lib/titiler-pgstac-api/index.ts",
|
|
5210
|
-
"line":
|
|
5575
|
+
"line": 115
|
|
5211
5576
|
},
|
|
5212
5577
|
"name": "dbSecret",
|
|
5213
5578
|
"type": {
|
|
@@ -5223,7 +5588,7 @@
|
|
|
5223
5588
|
"immutable": true,
|
|
5224
5589
|
"locationInModule": {
|
|
5225
5590
|
"filename": "lib/titiler-pgstac-api/index.ts",
|
|
5226
|
-
"line":
|
|
5591
|
+
"line": 110
|
|
5227
5592
|
},
|
|
5228
5593
|
"name": "subnetSelection",
|
|
5229
5594
|
"type": {
|
|
@@ -5239,7 +5604,7 @@
|
|
|
5239
5604
|
"immutable": true,
|
|
5240
5605
|
"locationInModule": {
|
|
5241
5606
|
"filename": "lib/titiler-pgstac-api/index.ts",
|
|
5242
|
-
"line":
|
|
5607
|
+
"line": 100
|
|
5243
5608
|
},
|
|
5244
5609
|
"name": "vpc",
|
|
5245
5610
|
"type": {
|
|
@@ -5249,13 +5614,14 @@
|
|
|
5249
5614
|
{
|
|
5250
5615
|
"abstract": true,
|
|
5251
5616
|
"docs": {
|
|
5617
|
+
"remarks": "These will be merged with `defaultTitilerPgstacEnv`.\nThe database secret arn is automatically added to the environment variables at deployment. \n/",
|
|
5252
5618
|
"stability": "experimental",
|
|
5253
5619
|
"summary": "Customized environment variables to send to titiler-pgstac runtime."
|
|
5254
5620
|
},
|
|
5255
5621
|
"immutable": true,
|
|
5256
5622
|
"locationInModule": {
|
|
5257
5623
|
"filename": "lib/titiler-pgstac-api/index.ts",
|
|
5258
|
-
"line":
|
|
5624
|
+
"line": 121
|
|
5259
5625
|
},
|
|
5260
5626
|
"name": "apiEnv",
|
|
5261
5627
|
"optional": true,
|
|
@@ -5277,7 +5643,7 @@
|
|
|
5277
5643
|
"immutable": true,
|
|
5278
5644
|
"locationInModule": {
|
|
5279
5645
|
"filename": "lib/titiler-pgstac-api/index.ts",
|
|
5280
|
-
"line":
|
|
5646
|
+
"line": 126
|
|
5281
5647
|
},
|
|
5282
5648
|
"name": "buckets",
|
|
5283
5649
|
"optional": true,
|
|
@@ -5293,13 +5659,32 @@
|
|
|
5293
5659
|
{
|
|
5294
5660
|
"abstract": true,
|
|
5295
5661
|
"docs": {
|
|
5662
|
+
"default": "- defined in the construct.",
|
|
5663
|
+
"stability": "experimental",
|
|
5664
|
+
"summary": "Optional settings for the titiler-pgstac python lambda function."
|
|
5665
|
+
},
|
|
5666
|
+
"immutable": true,
|
|
5667
|
+
"locationInModule": {
|
|
5668
|
+
"filename": "lib/titiler-pgstac-api/index.ts",
|
|
5669
|
+
"line": 140
|
|
5670
|
+
},
|
|
5671
|
+
"name": "pythonLambdaOptions",
|
|
5672
|
+
"optional": true,
|
|
5673
|
+
"type": {
|
|
5674
|
+
"fqn": "eoapi-cdk.TitilerPgstacPythonLambdaOptions"
|
|
5675
|
+
}
|
|
5676
|
+
},
|
|
5677
|
+
{
|
|
5678
|
+
"abstract": true,
|
|
5679
|
+
"docs": {
|
|
5680
|
+
"default": "- undefined.",
|
|
5296
5681
|
"stability": "experimental",
|
|
5297
5682
|
"summary": "Custom Domain Name Options for Titiler Pgstac API,."
|
|
5298
5683
|
},
|
|
5299
5684
|
"immutable": true,
|
|
5300
5685
|
"locationInModule": {
|
|
5301
5686
|
"filename": "lib/titiler-pgstac-api/index.ts",
|
|
5302
|
-
"line":
|
|
5687
|
+
"line": 133
|
|
5303
5688
|
},
|
|
5304
5689
|
"name": "titilerPgstacApiDomainName",
|
|
5305
5690
|
"optional": true,
|
|
@@ -5323,7 +5708,7 @@
|
|
|
5323
5708
|
},
|
|
5324
5709
|
"locationInModule": {
|
|
5325
5710
|
"filename": "lib/titiler-pgstac-api/index.ts",
|
|
5326
|
-
"line":
|
|
5711
|
+
"line": 40
|
|
5327
5712
|
},
|
|
5328
5713
|
"parameters": [
|
|
5329
5714
|
{
|
|
@@ -5349,7 +5734,7 @@
|
|
|
5349
5734
|
"kind": "class",
|
|
5350
5735
|
"locationInModule": {
|
|
5351
5736
|
"filename": "lib/titiler-pgstac-api/index.ts",
|
|
5352
|
-
"line":
|
|
5737
|
+
"line": 36
|
|
5353
5738
|
},
|
|
5354
5739
|
"name": "TitilerPgstacApiLambda",
|
|
5355
5740
|
"properties": [
|
|
@@ -5360,7 +5745,7 @@
|
|
|
5360
5745
|
"immutable": true,
|
|
5361
5746
|
"locationInModule": {
|
|
5362
5747
|
"filename": "lib/titiler-pgstac-api/index.ts",
|
|
5363
|
-
"line":
|
|
5748
|
+
"line": 37
|
|
5364
5749
|
},
|
|
5365
5750
|
"name": "url",
|
|
5366
5751
|
"type": {
|
|
@@ -5373,7 +5758,7 @@
|
|
|
5373
5758
|
},
|
|
5374
5759
|
"locationInModule": {
|
|
5375
5760
|
"filename": "lib/titiler-pgstac-api/index.ts",
|
|
5376
|
-
"line":
|
|
5761
|
+
"line": 38
|
|
5377
5762
|
},
|
|
5378
5763
|
"name": "titilerPgstacLambdaFunction",
|
|
5379
5764
|
"type": {
|
|
@@ -5382,8 +5767,140 @@
|
|
|
5382
5767
|
}
|
|
5383
5768
|
],
|
|
5384
5769
|
"symbolId": "lib/titiler-pgstac-api/index:TitilerPgstacApiLambda"
|
|
5770
|
+
},
|
|
5771
|
+
"eoapi-cdk.TitilerPgstacPythonLambdaOptions": {
|
|
5772
|
+
"assembly": "eoapi-cdk",
|
|
5773
|
+
"datatype": true,
|
|
5774
|
+
"docs": {
|
|
5775
|
+
"stability": "experimental"
|
|
5776
|
+
},
|
|
5777
|
+
"fqn": "eoapi-cdk.TitilerPgstacPythonLambdaOptions",
|
|
5778
|
+
"kind": "interface",
|
|
5779
|
+
"locationInModule": {
|
|
5780
|
+
"filename": "lib/titiler-pgstac-api/index.ts",
|
|
5781
|
+
"line": 145
|
|
5782
|
+
},
|
|
5783
|
+
"name": "TitilerPgstacPythonLambdaOptions",
|
|
5784
|
+
"properties": [
|
|
5785
|
+
{
|
|
5786
|
+
"abstract": true,
|
|
5787
|
+
"docs": {
|
|
5788
|
+
"stability": "experimental",
|
|
5789
|
+
"summary": "The system architectures compatible with this lambda function."
|
|
5790
|
+
},
|
|
5791
|
+
"immutable": true,
|
|
5792
|
+
"locationInModule": {
|
|
5793
|
+
"filename": "lib/titiler-pgstac-api/index.ts",
|
|
5794
|
+
"line": 181
|
|
5795
|
+
},
|
|
5796
|
+
"name": "architecture",
|
|
5797
|
+
"type": {
|
|
5798
|
+
"fqn": "aws-cdk-lib.aws_lambda.Architecture"
|
|
5799
|
+
}
|
|
5800
|
+
},
|
|
5801
|
+
{
|
|
5802
|
+
"abstract": true,
|
|
5803
|
+
"docs": {
|
|
5804
|
+
"stability": "experimental",
|
|
5805
|
+
"summary": "Path to the source of the function or the location for dependencies."
|
|
5806
|
+
},
|
|
5807
|
+
"immutable": true,
|
|
5808
|
+
"locationInModule": {
|
|
5809
|
+
"filename": "lib/titiler-pgstac-api/index.ts",
|
|
5810
|
+
"line": 150
|
|
5811
|
+
},
|
|
5812
|
+
"name": "entry",
|
|
5813
|
+
"type": {
|
|
5814
|
+
"primitive": "string"
|
|
5815
|
+
}
|
|
5816
|
+
},
|
|
5817
|
+
{
|
|
5818
|
+
"abstract": true,
|
|
5819
|
+
"docs": {
|
|
5820
|
+
"stability": "experimental",
|
|
5821
|
+
"summary": "The name of the exported handler in the index file."
|
|
5822
|
+
},
|
|
5823
|
+
"immutable": true,
|
|
5824
|
+
"locationInModule": {
|
|
5825
|
+
"filename": "lib/titiler-pgstac-api/index.ts",
|
|
5826
|
+
"line": 165
|
|
5827
|
+
},
|
|
5828
|
+
"name": "handler",
|
|
5829
|
+
"type": {
|
|
5830
|
+
"primitive": "string"
|
|
5831
|
+
}
|
|
5832
|
+
},
|
|
5833
|
+
{
|
|
5834
|
+
"abstract": true,
|
|
5835
|
+
"docs": {
|
|
5836
|
+
"stability": "experimental",
|
|
5837
|
+
"summary": "The path (relative to entry) to the index file containing the exported handler."
|
|
5838
|
+
},
|
|
5839
|
+
"immutable": true,
|
|
5840
|
+
"locationInModule": {
|
|
5841
|
+
"filename": "lib/titiler-pgstac-api/index.ts",
|
|
5842
|
+
"line": 161
|
|
5843
|
+
},
|
|
5844
|
+
"name": "index",
|
|
5845
|
+
"type": {
|
|
5846
|
+
"primitive": "string"
|
|
5847
|
+
}
|
|
5848
|
+
},
|
|
5849
|
+
{
|
|
5850
|
+
"abstract": true,
|
|
5851
|
+
"docs": {
|
|
5852
|
+
"stability": "experimental",
|
|
5853
|
+
"summary": "The amount of memory, in MB, that is allocated to your Lambda function."
|
|
5854
|
+
},
|
|
5855
|
+
"immutable": true,
|
|
5856
|
+
"locationInModule": {
|
|
5857
|
+
"filename": "lib/titiler-pgstac-api/index.ts",
|
|
5858
|
+
"line": 176
|
|
5859
|
+
},
|
|
5860
|
+
"name": "memorySize",
|
|
5861
|
+
"type": {
|
|
5862
|
+
"primitive": "number"
|
|
5863
|
+
}
|
|
5864
|
+
},
|
|
5865
|
+
{
|
|
5866
|
+
"abstract": true,
|
|
5867
|
+
"docs": {
|
|
5868
|
+
"remarks": "Only runtimes of the Python family are\nsupported.",
|
|
5869
|
+
"stability": "experimental",
|
|
5870
|
+
"summary": "The runtime environment."
|
|
5871
|
+
},
|
|
5872
|
+
"immutable": true,
|
|
5873
|
+
"locationInModule": {
|
|
5874
|
+
"filename": "lib/titiler-pgstac-api/index.ts",
|
|
5875
|
+
"line": 155
|
|
5876
|
+
},
|
|
5877
|
+
"name": "runtime",
|
|
5878
|
+
"type": {
|
|
5879
|
+
"fqn": "aws-cdk-lib.aws_lambda.Runtime"
|
|
5880
|
+
}
|
|
5881
|
+
},
|
|
5882
|
+
{
|
|
5883
|
+
"abstract": true,
|
|
5884
|
+
"docs": {
|
|
5885
|
+
"remarks": "Use this to specify custom bundling options like\nthe bundling Docker image, asset hash type, custom hash, architecture, etc.",
|
|
5886
|
+
"stability": "experimental",
|
|
5887
|
+
"summary": "Bundling options to use for this function."
|
|
5888
|
+
},
|
|
5889
|
+
"immutable": true,
|
|
5890
|
+
"locationInModule": {
|
|
5891
|
+
"filename": "lib/titiler-pgstac-api/index.ts",
|
|
5892
|
+
"line": 171
|
|
5893
|
+
},
|
|
5894
|
+
"name": "bundling",
|
|
5895
|
+
"optional": true,
|
|
5896
|
+
"type": {
|
|
5897
|
+
"fqn": "aws-cdk-lib.BundlingOptions"
|
|
5898
|
+
}
|
|
5899
|
+
}
|
|
5900
|
+
],
|
|
5901
|
+
"symbolId": "lib/titiler-pgstac-api/index:TitilerPgstacPythonLambdaOptions"
|
|
5385
5902
|
}
|
|
5386
5903
|
},
|
|
5387
|
-
"version": "5.
|
|
5388
|
-
"fingerprint": "
|
|
5904
|
+
"version": "5.4.0",
|
|
5905
|
+
"fingerprint": "GRDDvKc58fv7CdF/bcMJAzC9U6to2+Gn2sVG26wwEtg="
|
|
5389
5906
|
}
|