summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-05 11:21:08 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-05 11:21:08 +0000
commit6ac2a0fad335655aca88dee7007ef05bf4f69ce3 (patch)
tree602ac54719c50b1c0a7cd7b5400069ffd10c61ec
parentd1e3cd33757f8813ec76322c4a59a269dd22c9a3 (diff)
automatic import of python-cloudcomponents-cdk-dynamodb-seederopeneuler20.03
-rw-r--r--.gitignore1
-rw-r--r--python-cloudcomponents-cdk-dynamodb-seeder.spec355
-rw-r--r--sources1
3 files changed, 357 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..6afe13e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/cloudcomponents.cdk-dynamodb-seeder-2.1.0.tar.gz
diff --git a/python-cloudcomponents-cdk-dynamodb-seeder.spec b/python-cloudcomponents-cdk-dynamodb-seeder.spec
new file mode 100644
index 0000000..aed031e
--- /dev/null
+++ b/python-cloudcomponents-cdk-dynamodb-seeder.spec
@@ -0,0 +1,355 @@
+%global _empty_manifest_terminate_build 0
+Name: python-cloudcomponents.cdk-dynamodb-seeder
+Version: 2.1.0
+Release: 1
+Summary: A seeder for dynamodb tables
+License: MIT
+URL: https://github.com/cloudcomponents/cdk-constructs
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/15/15/fbff61d2aa62a784a9bd6d021d1556d93a773cb5a1bda19a7c0246d330b7/cloudcomponents.cdk-dynamodb-seeder-2.1.0.tar.gz
+BuildArch: noarch
+
+Requires: python3-aws-cdk-lib
+Requires: python3-constructs
+Requires: python3-jsii
+Requires: python3-publication
+
+%description
+[![cloudcomponents Logo](https://raw.githubusercontent.com/cloudcomponents/cdk-constructs/master/logo.png)](https://github.com/cloudcomponents/cdk-constructs)
+
+# @cloudcomponents/cdk-dynamodb-seeder
+
+[![Build Status](https://github.com/cloudcomponents/cdk-constructs/workflows/Build/badge.svg)](https://github.com/cloudcomponents/cdk-constructs/actions?query=workflow=Build)
+[![cdkdx](https://img.shields.io/badge/buildtool-cdkdx-blue.svg)](https://github.com/hupe1980/cdkdx)
+[![typescript](https://img.shields.io/badge/jsii-typescript-blueviolet.svg)](https://www.npmjs.com/package/@cloudcomponents/cdk-dynamodb-seeder)
+[![python](https://img.shields.io/badge/jsii-python-blueviolet.svg)](https://pypi.org/project/cloudcomponents.cdk-dynamodb-seeder/)
+
+> A seeder for dynamodb tables
+
+## Install
+
+TypeScript/JavaScript:
+
+```bash
+npm i @cloudcomponents/cdk-dynamodb-seeder
+```
+
+Python:
+
+```bash
+pip install cloudcomponents.cdk-dynamodb-seeder
+```
+
+## How to use
+
+```python
+import * as path from 'path';
+import { DynamoDBSeeder, Seeds } from '@cloudcomponents/cdk-dynamodb-seeder';
+import { Stack, StackProps, RemovalPolicy } from 'aws-cdk-lib';
+import { Table, AttributeType } from 'aws-cdk-lib/aws-dynamodb';
+import { Bucket } from 'aws-cdk-lib/aws-s3';
+import { Construct } from 'constructs';
+
+export class DynamoDBSeederStack extends Stack {
+ constructor(scope: Construct, id: string, props: StackProps) {
+ super(scope, id, props);
+
+ const table = new Table(this, 'Table', {
+ partitionKey: {
+ name: 'id',
+ type: AttributeType.NUMBER,
+ },
+ removalPolicy: RemovalPolicy.DESTROY,
+ });
+
+ new DynamoDBSeeder(this, 'JsonFileSeeder', {
+ table,
+ seeds: Seeds.fromJsonFile(path.join(__dirname, '..', 'seeds.json')),
+ });
+
+ new DynamoDBSeeder(this, 'InlineSeeder', {
+ table,
+ seeds: Seeds.fromInline([
+ {
+ id: 3,
+ column: 'foo',
+ },
+ {
+ id: 4,
+ column: 'bar',
+ },
+ ]),
+ });
+
+ const seedsBucket = Bucket.fromBucketName(
+ this,
+ 'SeedsBucket',
+ 'my-seeds-bucket',
+ );
+
+ new DynamoDBSeeder(this, 'BucketSeeder', {
+ table,
+ seeds: Seeds.fromBucket(seedsBucket, 'seeds.json'),
+ });
+ }
+}
+```
+
+## API Reference
+
+See [API.md](https://github.com/cloudcomponents/cdk-constructs/tree/master/packages/cdk-dynamodb-seeder/API.md).
+
+## Example
+
+See more complete [examples](https://github.com/cloudcomponents/cdk-constructs/tree/master/examples).
+
+## License
+
+[MIT](https://github.com/cloudcomponents/cdk-constructs/tree/master/packages/cdk-dynamodb-seeder/LICENSE)
+
+
+
+
+%package -n python3-cloudcomponents.cdk-dynamodb-seeder
+Summary: A seeder for dynamodb tables
+Provides: python-cloudcomponents.cdk-dynamodb-seeder
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-cloudcomponents.cdk-dynamodb-seeder
+[![cloudcomponents Logo](https://raw.githubusercontent.com/cloudcomponents/cdk-constructs/master/logo.png)](https://github.com/cloudcomponents/cdk-constructs)
+
+# @cloudcomponents/cdk-dynamodb-seeder
+
+[![Build Status](https://github.com/cloudcomponents/cdk-constructs/workflows/Build/badge.svg)](https://github.com/cloudcomponents/cdk-constructs/actions?query=workflow=Build)
+[![cdkdx](https://img.shields.io/badge/buildtool-cdkdx-blue.svg)](https://github.com/hupe1980/cdkdx)
+[![typescript](https://img.shields.io/badge/jsii-typescript-blueviolet.svg)](https://www.npmjs.com/package/@cloudcomponents/cdk-dynamodb-seeder)
+[![python](https://img.shields.io/badge/jsii-python-blueviolet.svg)](https://pypi.org/project/cloudcomponents.cdk-dynamodb-seeder/)
+
+> A seeder for dynamodb tables
+
+## Install
+
+TypeScript/JavaScript:
+
+```bash
+npm i @cloudcomponents/cdk-dynamodb-seeder
+```
+
+Python:
+
+```bash
+pip install cloudcomponents.cdk-dynamodb-seeder
+```
+
+## How to use
+
+```python
+import * as path from 'path';
+import { DynamoDBSeeder, Seeds } from '@cloudcomponents/cdk-dynamodb-seeder';
+import { Stack, StackProps, RemovalPolicy } from 'aws-cdk-lib';
+import { Table, AttributeType } from 'aws-cdk-lib/aws-dynamodb';
+import { Bucket } from 'aws-cdk-lib/aws-s3';
+import { Construct } from 'constructs';
+
+export class DynamoDBSeederStack extends Stack {
+ constructor(scope: Construct, id: string, props: StackProps) {
+ super(scope, id, props);
+
+ const table = new Table(this, 'Table', {
+ partitionKey: {
+ name: 'id',
+ type: AttributeType.NUMBER,
+ },
+ removalPolicy: RemovalPolicy.DESTROY,
+ });
+
+ new DynamoDBSeeder(this, 'JsonFileSeeder', {
+ table,
+ seeds: Seeds.fromJsonFile(path.join(__dirname, '..', 'seeds.json')),
+ });
+
+ new DynamoDBSeeder(this, 'InlineSeeder', {
+ table,
+ seeds: Seeds.fromInline([
+ {
+ id: 3,
+ column: 'foo',
+ },
+ {
+ id: 4,
+ column: 'bar',
+ },
+ ]),
+ });
+
+ const seedsBucket = Bucket.fromBucketName(
+ this,
+ 'SeedsBucket',
+ 'my-seeds-bucket',
+ );
+
+ new DynamoDBSeeder(this, 'BucketSeeder', {
+ table,
+ seeds: Seeds.fromBucket(seedsBucket, 'seeds.json'),
+ });
+ }
+}
+```
+
+## API Reference
+
+See [API.md](https://github.com/cloudcomponents/cdk-constructs/tree/master/packages/cdk-dynamodb-seeder/API.md).
+
+## Example
+
+See more complete [examples](https://github.com/cloudcomponents/cdk-constructs/tree/master/examples).
+
+## License
+
+[MIT](https://github.com/cloudcomponents/cdk-constructs/tree/master/packages/cdk-dynamodb-seeder/LICENSE)
+
+
+
+
+%package help
+Summary: Development documents and examples for cloudcomponents.cdk-dynamodb-seeder
+Provides: python3-cloudcomponents.cdk-dynamodb-seeder-doc
+%description help
+[![cloudcomponents Logo](https://raw.githubusercontent.com/cloudcomponents/cdk-constructs/master/logo.png)](https://github.com/cloudcomponents/cdk-constructs)
+
+# @cloudcomponents/cdk-dynamodb-seeder
+
+[![Build Status](https://github.com/cloudcomponents/cdk-constructs/workflows/Build/badge.svg)](https://github.com/cloudcomponents/cdk-constructs/actions?query=workflow=Build)
+[![cdkdx](https://img.shields.io/badge/buildtool-cdkdx-blue.svg)](https://github.com/hupe1980/cdkdx)
+[![typescript](https://img.shields.io/badge/jsii-typescript-blueviolet.svg)](https://www.npmjs.com/package/@cloudcomponents/cdk-dynamodb-seeder)
+[![python](https://img.shields.io/badge/jsii-python-blueviolet.svg)](https://pypi.org/project/cloudcomponents.cdk-dynamodb-seeder/)
+
+> A seeder for dynamodb tables
+
+## Install
+
+TypeScript/JavaScript:
+
+```bash
+npm i @cloudcomponents/cdk-dynamodb-seeder
+```
+
+Python:
+
+```bash
+pip install cloudcomponents.cdk-dynamodb-seeder
+```
+
+## How to use
+
+```python
+import * as path from 'path';
+import { DynamoDBSeeder, Seeds } from '@cloudcomponents/cdk-dynamodb-seeder';
+import { Stack, StackProps, RemovalPolicy } from 'aws-cdk-lib';
+import { Table, AttributeType } from 'aws-cdk-lib/aws-dynamodb';
+import { Bucket } from 'aws-cdk-lib/aws-s3';
+import { Construct } from 'constructs';
+
+export class DynamoDBSeederStack extends Stack {
+ constructor(scope: Construct, id: string, props: StackProps) {
+ super(scope, id, props);
+
+ const table = new Table(this, 'Table', {
+ partitionKey: {
+ name: 'id',
+ type: AttributeType.NUMBER,
+ },
+ removalPolicy: RemovalPolicy.DESTROY,
+ });
+
+ new DynamoDBSeeder(this, 'JsonFileSeeder', {
+ table,
+ seeds: Seeds.fromJsonFile(path.join(__dirname, '..', 'seeds.json')),
+ });
+
+ new DynamoDBSeeder(this, 'InlineSeeder', {
+ table,
+ seeds: Seeds.fromInline([
+ {
+ id: 3,
+ column: 'foo',
+ },
+ {
+ id: 4,
+ column: 'bar',
+ },
+ ]),
+ });
+
+ const seedsBucket = Bucket.fromBucketName(
+ this,
+ 'SeedsBucket',
+ 'my-seeds-bucket',
+ );
+
+ new DynamoDBSeeder(this, 'BucketSeeder', {
+ table,
+ seeds: Seeds.fromBucket(seedsBucket, 'seeds.json'),
+ });
+ }
+}
+```
+
+## API Reference
+
+See [API.md](https://github.com/cloudcomponents/cdk-constructs/tree/master/packages/cdk-dynamodb-seeder/API.md).
+
+## Example
+
+See more complete [examples](https://github.com/cloudcomponents/cdk-constructs/tree/master/examples).
+
+## License
+
+[MIT](https://github.com/cloudcomponents/cdk-constructs/tree/master/packages/cdk-dynamodb-seeder/LICENSE)
+
+
+
+
+%prep
+%autosetup -n cloudcomponents.cdk-dynamodb-seeder-2.1.0
+
+%build
+%py3_build
+
+%install
+%py3_install
+install -d -m755 %{buildroot}/%{_pkgdocdir}
+if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
+if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
+if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
+if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
+pushd %{buildroot}
+if [ -d usr/lib ]; then
+ find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/lib64 ]; then
+ find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/bin ]; then
+ find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/sbin ]; then
+ find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+touch doclist.lst
+if [ -d usr/share/man ]; then
+ find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
+fi
+popd
+mv %{buildroot}/filelist.lst .
+mv %{buildroot}/doclist.lst .
+
+%files -n python3-cloudcomponents.cdk-dynamodb-seeder -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Fri May 05 2023 Python_Bot <Python_Bot@openeuler.org> - 2.1.0-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..1a02780
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+1d93c9ac5a5eb23fb62f305197f4df63 cloudcomponents.cdk-dynamodb-seeder-2.1.0.tar.gz