pulumi-stripe 0.0.10__tar.gz → 0.0.23__tar.gz
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.
- pulumi_stripe-0.0.23/PKG-INFO +80 -0
- pulumi_stripe-0.0.23/README.md +66 -0
- {pulumi_stripe-0.0.10 → pulumi_stripe-0.0.23}/pulumi_stripe/__init__.py +18 -0
- {pulumi_stripe-0.0.10 → pulumi_stripe-0.0.23}/pulumi_stripe/_inputs.py +449 -16
- {pulumi_stripe-0.0.10 → pulumi_stripe-0.0.23}/pulumi_stripe/_utilities.py +44 -3
- {pulumi_stripe-0.0.10 → pulumi_stripe-0.0.23}/pulumi_stripe/card.py +4 -0
- {pulumi_stripe-0.0.10 → pulumi_stripe-0.0.23}/pulumi_stripe/coupon.py +52 -0
- {pulumi_stripe-0.0.10 → pulumi_stripe-0.0.23}/pulumi_stripe/customer.py +4 -0
- pulumi_stripe-0.0.23/pulumi_stripe/file.py +572 -0
- {pulumi_stripe-0.0.10 → pulumi_stripe-0.0.23}/pulumi_stripe/outputs.py +425 -16
- {pulumi_stripe-0.0.10 → pulumi_stripe-0.0.23}/pulumi_stripe/portal_configuration.py +32 -0
- {pulumi_stripe-0.0.10 → pulumi_stripe-0.0.23}/pulumi_stripe/price.py +13 -7
- {pulumi_stripe-0.0.10 → pulumi_stripe-0.0.23}/pulumi_stripe/product.py +51 -10
- {pulumi_stripe-0.0.10 → pulumi_stripe-0.0.23}/pulumi_stripe/promotion_code.py +4 -0
- pulumi_stripe-0.0.23/pulumi_stripe/pulumi-plugin.json +5 -0
- pulumi_stripe-0.0.23/pulumi_stripe/shipping_rate.py +654 -0
- {pulumi_stripe-0.0.10 → pulumi_stripe-0.0.23}/pulumi_stripe/tax_rate.py +4 -0
- {pulumi_stripe-0.0.10 → pulumi_stripe-0.0.23}/pulumi_stripe/webhook_endpoint.py +4 -0
- pulumi_stripe-0.0.23/pulumi_stripe.egg-info/PKG-INFO +80 -0
- {pulumi_stripe-0.0.10 → pulumi_stripe-0.0.23}/pulumi_stripe.egg-info/SOURCES.txt +2 -0
- {pulumi_stripe-0.0.10 → pulumi_stripe-0.0.23}/setup.py +3 -26
- pulumi_stripe-0.0.10/PKG-INFO +0 -472
- pulumi_stripe-0.0.10/README.md +0 -459
- pulumi_stripe-0.0.10/pulumi_stripe/pulumi-plugin.json +0 -4
- pulumi_stripe-0.0.10/pulumi_stripe.egg-info/PKG-INFO +0 -472
- {pulumi_stripe-0.0.10 → pulumi_stripe-0.0.23}/pulumi_stripe/config/__init__.py +0 -0
- {pulumi_stripe-0.0.10 → pulumi_stripe-0.0.23}/pulumi_stripe/config/vars.py +0 -0
- {pulumi_stripe-0.0.10 → pulumi_stripe-0.0.23}/pulumi_stripe/provider.py +0 -0
- {pulumi_stripe-0.0.10 → pulumi_stripe-0.0.23}/pulumi_stripe/py.typed +0 -0
- {pulumi_stripe-0.0.10 → pulumi_stripe-0.0.23}/pulumi_stripe.egg-info/dependency_links.txt +0 -0
- {pulumi_stripe-0.0.10 → pulumi_stripe-0.0.23}/pulumi_stripe.egg-info/not-zip-safe +0 -0
- {pulumi_stripe-0.0.10 → pulumi_stripe-0.0.23}/pulumi_stripe.egg-info/requires.txt +0 -0
- {pulumi_stripe-0.0.10 → pulumi_stripe-0.0.23}/pulumi_stripe.egg-info/top_level.txt +0 -0
- {pulumi_stripe-0.0.10 → pulumi_stripe-0.0.23}/setup.cfg +0 -0
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: pulumi_stripe
|
|
3
|
+
Version: 0.0.23
|
|
4
|
+
Summary: A Pulumi package for creating and managing Stripe resources.
|
|
5
|
+
Home-page: https://www.pulumi.com
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Project-URL: Repository, https://github.com/georgegebbett/pulumi-stripe
|
|
8
|
+
Keywords: pulumi stripe category/cloud
|
|
9
|
+
Platform: UNKNOWN
|
|
10
|
+
Requires-Python: >=3.8
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
|
|
13
|
+
# Stripe Resource Provider
|
|
14
|
+
|
|
15
|
+
The Stripe Resource Provider lets you manage [Stripe](https://stripe.com) resources.
|
|
16
|
+
|
|
17
|
+
This is a bridged provider from https://github.com/lukasaron/terraform-provider-stripe
|
|
18
|
+
|
|
19
|
+
## Installing
|
|
20
|
+
|
|
21
|
+
This package is available for several languages/platforms:
|
|
22
|
+
|
|
23
|
+
### Node.js (JavaScript/TypeScript)
|
|
24
|
+
|
|
25
|
+
To use from JavaScript or TypeScript in Node.js, install using either `npm`:
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
npm install pulumi-stripe
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
or `yarn`:
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
yarn add pulumi-stripe
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
or indeed `pnpm`:
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
pnpm add pulumi-stripe
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
### Python
|
|
44
|
+
|
|
45
|
+
To use from Python, install using `pip`:
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
pip install pulumi-stripe
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
### Go
|
|
52
|
+
|
|
53
|
+
To use from Go, use `go get` to grab the latest version of the library:
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
go get github.com/georgegebbett/pulumi-stripe/sdk/go
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
### .NET
|
|
60
|
+
|
|
61
|
+
To use from .NET, install using `dotnet add package`:
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
dotnet add package Pulumi.Stripe
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
## A note on Go and .NET
|
|
68
|
+
|
|
69
|
+
I have never done any real development in Go or .NET - indeed this was my first foray into Go at all. I cannot warrant
|
|
70
|
+
that I have published the packages correctly, or provided good instructions for installing them.
|
|
71
|
+
|
|
72
|
+
Please feel free to open a PR with any suggestions!
|
|
73
|
+
|
|
74
|
+
## Configuration
|
|
75
|
+
|
|
76
|
+
The following configuration points are available for the `stripe` provider:
|
|
77
|
+
|
|
78
|
+
- `stripe:apiKey` (environment: `STRIPE_API_KEY`) - the API key for `stripe`
|
|
79
|
+
|
|
80
|
+
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
# Stripe Resource Provider
|
|
2
|
+
|
|
3
|
+
The Stripe Resource Provider lets you manage [Stripe](https://stripe.com) resources.
|
|
4
|
+
|
|
5
|
+
This is a bridged provider from https://github.com/lukasaron/terraform-provider-stripe
|
|
6
|
+
|
|
7
|
+
## Installing
|
|
8
|
+
|
|
9
|
+
This package is available for several languages/platforms:
|
|
10
|
+
|
|
11
|
+
### Node.js (JavaScript/TypeScript)
|
|
12
|
+
|
|
13
|
+
To use from JavaScript or TypeScript in Node.js, install using either `npm`:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npm install pulumi-stripe
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
or `yarn`:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
yarn add pulumi-stripe
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
or indeed `pnpm`:
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
pnpm add pulumi-stripe
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
### Python
|
|
32
|
+
|
|
33
|
+
To use from Python, install using `pip`:
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
pip install pulumi-stripe
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
### Go
|
|
40
|
+
|
|
41
|
+
To use from Go, use `go get` to grab the latest version of the library:
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
go get github.com/georgegebbett/pulumi-stripe/sdk/go
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
### .NET
|
|
48
|
+
|
|
49
|
+
To use from .NET, install using `dotnet add package`:
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
dotnet add package Pulumi.Stripe
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
## A note on Go and .NET
|
|
56
|
+
|
|
57
|
+
I have never done any real development in Go or .NET - indeed this was my first foray into Go at all. I cannot warrant
|
|
58
|
+
that I have published the packages correctly, or provided good instructions for installing them.
|
|
59
|
+
|
|
60
|
+
Please feel free to open a PR with any suggestions!
|
|
61
|
+
|
|
62
|
+
## Configuration
|
|
63
|
+
|
|
64
|
+
The following configuration points are available for the `stripe` provider:
|
|
65
|
+
|
|
66
|
+
- `stripe:apiKey` (environment: `STRIPE_API_KEY`) - the API key for `stripe`
|
|
@@ -8,11 +8,13 @@ import typing
|
|
|
8
8
|
from .card import *
|
|
9
9
|
from .coupon import *
|
|
10
10
|
from .customer import *
|
|
11
|
+
from .file import *
|
|
11
12
|
from .portal_configuration import *
|
|
12
13
|
from .price import *
|
|
13
14
|
from .product import *
|
|
14
15
|
from .promotion_code import *
|
|
15
16
|
from .provider import *
|
|
17
|
+
from .shipping_rate import *
|
|
16
18
|
from .tax_rate import *
|
|
17
19
|
from .webhook_endpoint import *
|
|
18
20
|
from ._inputs import *
|
|
@@ -52,6 +54,14 @@ _utilities.register(
|
|
|
52
54
|
"stripe:index/customer:Customer": "Customer"
|
|
53
55
|
}
|
|
54
56
|
},
|
|
57
|
+
{
|
|
58
|
+
"pkg": "stripe",
|
|
59
|
+
"mod": "index/file",
|
|
60
|
+
"fqn": "pulumi_stripe",
|
|
61
|
+
"classes": {
|
|
62
|
+
"stripe:index/file:File": "File"
|
|
63
|
+
}
|
|
64
|
+
},
|
|
55
65
|
{
|
|
56
66
|
"pkg": "stripe",
|
|
57
67
|
"mod": "index/portalConfiguration",
|
|
@@ -84,6 +94,14 @@ _utilities.register(
|
|
|
84
94
|
"stripe:index/promotionCode:PromotionCode": "PromotionCode"
|
|
85
95
|
}
|
|
86
96
|
},
|
|
97
|
+
{
|
|
98
|
+
"pkg": "stripe",
|
|
99
|
+
"mod": "index/shippingRate",
|
|
100
|
+
"fqn": "pulumi_stripe",
|
|
101
|
+
"classes": {
|
|
102
|
+
"stripe:index/shippingRate:ShippingRate": "ShippingRate"
|
|
103
|
+
}
|
|
104
|
+
},
|
|
87
105
|
{
|
|
88
106
|
"pkg": "stripe",
|
|
89
107
|
"mod": "index/taxRate",
|