@humanlayer/pulumi-stripe 0.1.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.
Files changed (86) hide show
  1. package/README.md +4 -0
  2. package/bin/billingMeter.d.ts +130 -0
  3. package/bin/billingMeter.js +72 -0
  4. package/bin/billingMeter.js.map +1 -0
  5. package/bin/config/index.d.ts +1 -0
  6. package/bin/config/index.js +21 -0
  7. package/bin/config/index.js.map +1 -0
  8. package/bin/config/vars.d.ts +4 -0
  9. package/bin/config/vars.js +13 -0
  10. package/bin/config/vars.js.map +1 -0
  11. package/bin/coupon.d.ts +203 -0
  12. package/bin/coupon.js +77 -0
  13. package/bin/coupon.js.map +1 -0
  14. package/bin/customer.d.ts +248 -0
  15. package/bin/customer.js +93 -0
  16. package/bin/customer.js.map +1 -0
  17. package/bin/entitlementsFeature.d.ts +86 -0
  18. package/bin/entitlementsFeature.js +58 -0
  19. package/bin/entitlementsFeature.js.map +1 -0
  20. package/bin/getBillingMeter.d.ts +26 -0
  21. package/bin/getBillingMeter.js +25 -0
  22. package/bin/getBillingMeter.js.map +1 -0
  23. package/bin/index.d.ts +64 -0
  24. package/bin/index.js +145 -0
  25. package/bin/index.js.map +1 -0
  26. package/bin/price.d.ts +232 -0
  27. package/bin/price.js +82 -0
  28. package/bin/price.js.map +1 -0
  29. package/bin/product.d.ts +212 -0
  30. package/bin/product.js +75 -0
  31. package/bin/product.js.map +1 -0
  32. package/bin/promotionCode.d.ts +160 -0
  33. package/bin/promotionCode.js +70 -0
  34. package/bin/promotionCode.js.map +1 -0
  35. package/bin/provider.d.ts +49 -0
  36. package/bin/provider.js +55 -0
  37. package/bin/provider.js.map +1 -0
  38. package/bin/shippingRate.d.ts +136 -0
  39. package/bin/shippingRate.js +66 -0
  40. package/bin/shippingRate.js.map +1 -0
  41. package/bin/taxRate.d.ts +186 -0
  42. package/bin/taxRate.js +82 -0
  43. package/bin/taxRate.js.map +1 -0
  44. package/bin/types/index.d.ts +3 -0
  45. package/bin/types/index.js +11 -0
  46. package/bin/types/index.js.map +1 -0
  47. package/bin/types/input.d.ts +713 -0
  48. package/bin/types/input.js +5 -0
  49. package/bin/types/input.js.map +1 -0
  50. package/bin/types/output.d.ts +712 -0
  51. package/bin/types/output.js +5 -0
  52. package/bin/types/output.js.map +1 -0
  53. package/bin/utilities.d.ts +4 -0
  54. package/bin/utilities.js +90 -0
  55. package/bin/utilities.js.map +1 -0
  56. package/bin/v2billingLicenseFee.d.ts +200 -0
  57. package/bin/v2billingLicenseFee.js +93 -0
  58. package/bin/v2billingLicenseFee.js.map +1 -0
  59. package/bin/v2billingLicensedItem.d.ts +90 -0
  60. package/bin/v2billingLicensedItem.js +58 -0
  61. package/bin/v2billingLicensedItem.js.map +1 -0
  62. package/bin/v2billingMeteredItem.d.ts +128 -0
  63. package/bin/v2billingMeteredItem.js +67 -0
  64. package/bin/v2billingMeteredItem.js.map +1 -0
  65. package/bin/v2billingPricingPlan.d.ts +138 -0
  66. package/bin/v2billingPricingPlan.js +74 -0
  67. package/bin/v2billingPricingPlan.js.map +1 -0
  68. package/bin/v2billingPricingPlanComponent.d.ts +144 -0
  69. package/bin/v2billingPricingPlanComponent.js +71 -0
  70. package/bin/v2billingPricingPlanComponent.js.map +1 -0
  71. package/bin/v2billingRateCard.d.ts +150 -0
  72. package/bin/v2billingRateCard.js +82 -0
  73. package/bin/v2billingRateCard.js.map +1 -0
  74. package/bin/v2billingRateCardRate.d.ts +132 -0
  75. package/bin/v2billingRateCardRate.js +69 -0
  76. package/bin/v2billingRateCardRate.js.map +1 -0
  77. package/bin/v2billingServiceAction.d.ts +98 -0
  78. package/bin/v2billingServiceAction.js +66 -0
  79. package/bin/v2billingServiceAction.js.map +1 -0
  80. package/bin/v2coreEventDestination.d.ts +172 -0
  81. package/bin/v2coreEventDestination.js +78 -0
  82. package/bin/v2coreEventDestination.js.map +1 -0
  83. package/bin/webhookEndpoint.d.ts +120 -0
  84. package/bin/webhookEndpoint.js +73 -0
  85. package/bin/webhookEndpoint.js.map +1 -0
  86. package/package.json +42 -0
@@ -0,0 +1,150 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ export declare class V2BillingRateCard extends pulumi.CustomResource {
3
+ /**
4
+ * Get an existing V2BillingRateCard resource's state with the given name, ID, and optional extra
5
+ * properties used to qualify the lookup.
6
+ *
7
+ * @param name The _unique_ name of the resulting resource.
8
+ * @param id The _unique_ provider ID of the resource to lookup.
9
+ * @param state Any extra arguments used during the lookup.
10
+ * @param opts Optional settings to control the behavior of the CustomResource.
11
+ */
12
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: V2BillingRateCardState, opts?: pulumi.CustomResourceOptions): V2BillingRateCard;
13
+ /**
14
+ * Returns true if the given object is an instance of V2BillingRateCard. This is designed to work even
15
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
16
+ */
17
+ static isInstance(obj: any): obj is V2BillingRateCard;
18
+ /**
19
+ * Whether this RateCard is active. Inactive RateCards cannot be used in new activations or have new rates added.
20
+ */
21
+ readonly active: pulumi.Output<boolean>;
22
+ /**
23
+ * The currency of this RateCard.
24
+ */
25
+ readonly currency: pulumi.Output<string>;
26
+ /**
27
+ * A customer-facing name for the RateCard. This name is used in Stripe-hosted products like the Customer Portal and Checkout. It does not show up on Invoices. Maximum length of 250 characters.
28
+ */
29
+ readonly displayName: pulumi.Output<string>;
30
+ /**
31
+ * The ID of this rate card's most recently created version.
32
+ */
33
+ readonly latestVersion: pulumi.Output<string>;
34
+ /**
35
+ * The ID of the Rate Card Version that will be used by all subscriptions when no specific version is specified.
36
+ */
37
+ readonly liveVersion: pulumi.Output<string>;
38
+ /**
39
+ * An internal key you can use to search for a particular RateCard. Maximum length of 200 characters.
40
+ */
41
+ readonly lookupKey: pulumi.Output<string>;
42
+ /**
43
+ * Set of [key-value pairs](https://www.terraform.io/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
44
+ */
45
+ readonly metadata: pulumi.Output<{
46
+ [key: string]: string;
47
+ }>;
48
+ /**
49
+ * The interval for assessing service. For example, a monthly RateCard with a rate of $1 for the first 10 \"workloads\" and $2 thereafter means \"$1 per workload up to 10 workloads during a month of service.\" This is similar to but distinct from billing interval; the service interval deals with the rate at which the customer accumulates fees, while the billing interval in Cadence deals with the rate the customer is billed.
50
+ */
51
+ readonly serviceInterval: pulumi.Output<string>;
52
+ /**
53
+ * The length of the interval for assessing service. For example, set this to 3 and `serviceInterval` to `\"month\"` in order to specify quarterly service.
54
+ */
55
+ readonly serviceIntervalCount: pulumi.Output<number>;
56
+ /**
57
+ * The Stripe Tax tax behavior - whether the rates are inclusive or exclusive of tax.
58
+ */
59
+ readonly taxBehavior: pulumi.Output<string>;
60
+ /**
61
+ * Create a V2BillingRateCard resource with the given unique name, arguments, and options.
62
+ *
63
+ * @param name The _unique_ name of the resource.
64
+ * @param args The arguments to use to populate this resource's properties.
65
+ * @param opts A bag of options that control this resource's behavior.
66
+ */
67
+ constructor(name: string, args: V2BillingRateCardArgs, opts?: pulumi.CustomResourceOptions);
68
+ }
69
+ /**
70
+ * Input properties used for looking up and filtering V2BillingRateCard resources.
71
+ */
72
+ export interface V2BillingRateCardState {
73
+ /**
74
+ * Whether this RateCard is active. Inactive RateCards cannot be used in new activations or have new rates added.
75
+ */
76
+ active?: pulumi.Input<boolean>;
77
+ /**
78
+ * The currency of this RateCard.
79
+ */
80
+ currency?: pulumi.Input<string>;
81
+ /**
82
+ * A customer-facing name for the RateCard. This name is used in Stripe-hosted products like the Customer Portal and Checkout. It does not show up on Invoices. Maximum length of 250 characters.
83
+ */
84
+ displayName?: pulumi.Input<string>;
85
+ /**
86
+ * The ID of this rate card's most recently created version.
87
+ */
88
+ latestVersion?: pulumi.Input<string>;
89
+ /**
90
+ * The ID of the Rate Card Version that will be used by all subscriptions when no specific version is specified.
91
+ */
92
+ liveVersion?: pulumi.Input<string>;
93
+ /**
94
+ * An internal key you can use to search for a particular RateCard. Maximum length of 200 characters.
95
+ */
96
+ lookupKey?: pulumi.Input<string>;
97
+ /**
98
+ * Set of [key-value pairs](https://www.terraform.io/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
99
+ */
100
+ metadata?: pulumi.Input<{
101
+ [key: string]: pulumi.Input<string>;
102
+ }>;
103
+ /**
104
+ * The interval for assessing service. For example, a monthly RateCard with a rate of $1 for the first 10 \"workloads\" and $2 thereafter means \"$1 per workload up to 10 workloads during a month of service.\" This is similar to but distinct from billing interval; the service interval deals with the rate at which the customer accumulates fees, while the billing interval in Cadence deals with the rate the customer is billed.
105
+ */
106
+ serviceInterval?: pulumi.Input<string>;
107
+ /**
108
+ * The length of the interval for assessing service. For example, set this to 3 and `serviceInterval` to `\"month\"` in order to specify quarterly service.
109
+ */
110
+ serviceIntervalCount?: pulumi.Input<number>;
111
+ /**
112
+ * The Stripe Tax tax behavior - whether the rates are inclusive or exclusive of tax.
113
+ */
114
+ taxBehavior?: pulumi.Input<string>;
115
+ }
116
+ /**
117
+ * The set of arguments for constructing a V2BillingRateCard resource.
118
+ */
119
+ export interface V2BillingRateCardArgs {
120
+ /**
121
+ * The currency of this RateCard.
122
+ */
123
+ currency: pulumi.Input<string>;
124
+ /**
125
+ * A customer-facing name for the RateCard. This name is used in Stripe-hosted products like the Customer Portal and Checkout. It does not show up on Invoices. Maximum length of 250 characters.
126
+ */
127
+ displayName: pulumi.Input<string>;
128
+ /**
129
+ * An internal key you can use to search for a particular RateCard. Maximum length of 200 characters.
130
+ */
131
+ lookupKey?: pulumi.Input<string>;
132
+ /**
133
+ * Set of [key-value pairs](https://www.terraform.io/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
134
+ */
135
+ metadata?: pulumi.Input<{
136
+ [key: string]: pulumi.Input<string>;
137
+ }>;
138
+ /**
139
+ * The interval for assessing service. For example, a monthly RateCard with a rate of $1 for the first 10 \"workloads\" and $2 thereafter means \"$1 per workload up to 10 workloads during a month of service.\" This is similar to but distinct from billing interval; the service interval deals with the rate at which the customer accumulates fees, while the billing interval in Cadence deals with the rate the customer is billed.
140
+ */
141
+ serviceInterval: pulumi.Input<string>;
142
+ /**
143
+ * The length of the interval for assessing service. For example, set this to 3 and `serviceInterval` to `\"month\"` in order to specify quarterly service.
144
+ */
145
+ serviceIntervalCount: pulumi.Input<number>;
146
+ /**
147
+ * The Stripe Tax tax behavior - whether the rates are inclusive or exclusive of tax.
148
+ */
149
+ taxBehavior: pulumi.Input<string>;
150
+ }
@@ -0,0 +1,82 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by pulumi-language-nodejs. ***
3
+ // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.V2BillingRateCard = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ class V2BillingRateCard extends pulumi.CustomResource {
9
+ /**
10
+ * Get an existing V2BillingRateCard resource's state with the given name, ID, and optional extra
11
+ * properties used to qualify the lookup.
12
+ *
13
+ * @param name The _unique_ name of the resulting resource.
14
+ * @param id The _unique_ provider ID of the resource to lookup.
15
+ * @param state Any extra arguments used during the lookup.
16
+ * @param opts Optional settings to control the behavior of the CustomResource.
17
+ */
18
+ static get(name, id, state, opts) {
19
+ return new V2BillingRateCard(name, state, { ...opts, id: id });
20
+ }
21
+ /**
22
+ * Returns true if the given object is an instance of V2BillingRateCard. This is designed to work even
23
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
24
+ */
25
+ static isInstance(obj) {
26
+ if (obj === undefined || obj === null) {
27
+ return false;
28
+ }
29
+ return obj['__pulumiType'] === V2BillingRateCard.__pulumiType;
30
+ }
31
+ constructor(name, argsOrState, opts) {
32
+ let resourceInputs = {};
33
+ opts = opts || {};
34
+ if (opts.id) {
35
+ const state = argsOrState;
36
+ resourceInputs["active"] = state?.active;
37
+ resourceInputs["currency"] = state?.currency;
38
+ resourceInputs["displayName"] = state?.displayName;
39
+ resourceInputs["latestVersion"] = state?.latestVersion;
40
+ resourceInputs["liveVersion"] = state?.liveVersion;
41
+ resourceInputs["lookupKey"] = state?.lookupKey;
42
+ resourceInputs["metadata"] = state?.metadata;
43
+ resourceInputs["serviceInterval"] = state?.serviceInterval;
44
+ resourceInputs["serviceIntervalCount"] = state?.serviceIntervalCount;
45
+ resourceInputs["taxBehavior"] = state?.taxBehavior;
46
+ }
47
+ else {
48
+ const args = argsOrState;
49
+ if (args?.currency === undefined && !opts.urn) {
50
+ throw new Error("Missing required property 'currency'");
51
+ }
52
+ if (args?.displayName === undefined && !opts.urn) {
53
+ throw new Error("Missing required property 'displayName'");
54
+ }
55
+ if (args?.serviceInterval === undefined && !opts.urn) {
56
+ throw new Error("Missing required property 'serviceInterval'");
57
+ }
58
+ if (args?.serviceIntervalCount === undefined && !opts.urn) {
59
+ throw new Error("Missing required property 'serviceIntervalCount'");
60
+ }
61
+ if (args?.taxBehavior === undefined && !opts.urn) {
62
+ throw new Error("Missing required property 'taxBehavior'");
63
+ }
64
+ resourceInputs["currency"] = args?.currency;
65
+ resourceInputs["displayName"] = args?.displayName;
66
+ resourceInputs["lookupKey"] = args?.lookupKey;
67
+ resourceInputs["metadata"] = args?.metadata;
68
+ resourceInputs["serviceInterval"] = args?.serviceInterval;
69
+ resourceInputs["serviceIntervalCount"] = args?.serviceIntervalCount;
70
+ resourceInputs["taxBehavior"] = args?.taxBehavior;
71
+ resourceInputs["active"] = undefined /*out*/;
72
+ resourceInputs["latestVersion"] = undefined /*out*/;
73
+ resourceInputs["liveVersion"] = undefined /*out*/;
74
+ }
75
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
76
+ super(V2BillingRateCard.__pulumiType, name, resourceInputs, opts);
77
+ }
78
+ }
79
+ exports.V2BillingRateCard = V2BillingRateCard;
80
+ /** @internal */
81
+ V2BillingRateCard.__pulumiType = 'stripe:index/v2BillingRateCard:V2BillingRateCard';
82
+ //# sourceMappingURL=v2billingRateCard.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"v2billingRateCard.js","sourceRoot":"","sources":["../v2billingRateCard.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,132 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "./types/input";
3
+ import * as outputs from "./types/output";
4
+ export declare class V2BillingRateCardRate extends pulumi.CustomResource {
5
+ /**
6
+ * Get an existing V2BillingRateCardRate resource's state with the given name, ID, and optional extra
7
+ * properties used to qualify the lookup.
8
+ *
9
+ * @param name The _unique_ name of the resulting resource.
10
+ * @param id The _unique_ provider ID of the resource to lookup.
11
+ * @param state Any extra arguments used during the lookup.
12
+ * @param opts Optional settings to control the behavior of the CustomResource.
13
+ */
14
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: V2BillingRateCardRateState, opts?: pulumi.CustomResourceOptions): V2BillingRateCardRate;
15
+ /**
16
+ * Returns true if the given object is an instance of V2BillingRateCardRate. This is designed to work even
17
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
18
+ */
19
+ static isInstance(obj: any): obj is V2BillingRateCardRate;
20
+ /**
21
+ * Set of [key-value pairs](https://www.terraform.io/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
22
+ */
23
+ readonly metadata: pulumi.Output<{
24
+ [key: string]: string;
25
+ }>;
26
+ /**
27
+ * The Metered Item that this rate binds to.
28
+ */
29
+ readonly meteredItem: pulumi.Output<string>;
30
+ /**
31
+ * The ID of the Rate Card it belongs to.
32
+ */
33
+ readonly rateCard: pulumi.Output<string>;
34
+ /**
35
+ * Path parameter: rate_card_id
36
+ */
37
+ readonly rateCardId: pulumi.Output<string>;
38
+ /**
39
+ * The ID of the Rate Card Version it was created on.
40
+ */
41
+ readonly rateCardVersion: pulumi.Output<string>;
42
+ /**
43
+ * Defines whether the tiered price should be graduated or volume-based. In volume-based tiering, the maximum quantity within a period determines the per-unit price. In graduated tiering, the pricing changes as the quantity grows into new tiers. One of `unitAmount`, `tiers`, or `customPricingUnitAmount` is required.
44
+ */
45
+ readonly tieringMode: pulumi.Output<string>;
46
+ /**
47
+ * Each element represents a pricing tier. One of `unitAmount`, `tiers`, or `customPricingUnitAmount` is required.
48
+ */
49
+ readonly tiers: pulumi.Output<outputs.V2BillingRateCardRateTier[] | undefined>;
50
+ /**
51
+ * The per-unit amount to be charged, represented as a decimal string in minor currency units with at most 12 decimal places. One of `unitAmount`, `tiers`, or `customPricingUnitAmount` is required.
52
+ */
53
+ readonly unitAmount: pulumi.Output<string>;
54
+ /**
55
+ * Create a V2BillingRateCardRate resource with the given unique name, arguments, and options.
56
+ *
57
+ * @param name The _unique_ name of the resource.
58
+ * @param args The arguments to use to populate this resource's properties.
59
+ * @param opts A bag of options that control this resource's behavior.
60
+ */
61
+ constructor(name: string, args: V2BillingRateCardRateArgs, opts?: pulumi.CustomResourceOptions);
62
+ }
63
+ /**
64
+ * Input properties used for looking up and filtering V2BillingRateCardRate resources.
65
+ */
66
+ export interface V2BillingRateCardRateState {
67
+ /**
68
+ * Set of [key-value pairs](https://www.terraform.io/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
69
+ */
70
+ metadata?: pulumi.Input<{
71
+ [key: string]: pulumi.Input<string>;
72
+ }>;
73
+ /**
74
+ * The Metered Item that this rate binds to.
75
+ */
76
+ meteredItem?: pulumi.Input<string>;
77
+ /**
78
+ * The ID of the Rate Card it belongs to.
79
+ */
80
+ rateCard?: pulumi.Input<string>;
81
+ /**
82
+ * Path parameter: rate_card_id
83
+ */
84
+ rateCardId?: pulumi.Input<string>;
85
+ /**
86
+ * The ID of the Rate Card Version it was created on.
87
+ */
88
+ rateCardVersion?: pulumi.Input<string>;
89
+ /**
90
+ * Defines whether the tiered price should be graduated or volume-based. In volume-based tiering, the maximum quantity within a period determines the per-unit price. In graduated tiering, the pricing changes as the quantity grows into new tiers. One of `unitAmount`, `tiers`, or `customPricingUnitAmount` is required.
91
+ */
92
+ tieringMode?: pulumi.Input<string>;
93
+ /**
94
+ * Each element represents a pricing tier. One of `unitAmount`, `tiers`, or `customPricingUnitAmount` is required.
95
+ */
96
+ tiers?: pulumi.Input<pulumi.Input<inputs.V2BillingRateCardRateTier>[]>;
97
+ /**
98
+ * The per-unit amount to be charged, represented as a decimal string in minor currency units with at most 12 decimal places. One of `unitAmount`, `tiers`, or `customPricingUnitAmount` is required.
99
+ */
100
+ unitAmount?: pulumi.Input<string>;
101
+ }
102
+ /**
103
+ * The set of arguments for constructing a V2BillingRateCardRate resource.
104
+ */
105
+ export interface V2BillingRateCardRateArgs {
106
+ /**
107
+ * Set of [key-value pairs](https://www.terraform.io/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
108
+ */
109
+ metadata?: pulumi.Input<{
110
+ [key: string]: pulumi.Input<string>;
111
+ }>;
112
+ /**
113
+ * The Metered Item that this rate binds to.
114
+ */
115
+ meteredItem: pulumi.Input<string>;
116
+ /**
117
+ * Path parameter: rate_card_id
118
+ */
119
+ rateCardId: pulumi.Input<string>;
120
+ /**
121
+ * Defines whether the tiered price should be graduated or volume-based. In volume-based tiering, the maximum quantity within a period determines the per-unit price. In graduated tiering, the pricing changes as the quantity grows into new tiers. One of `unitAmount`, `tiers`, or `customPricingUnitAmount` is required.
122
+ */
123
+ tieringMode?: pulumi.Input<string>;
124
+ /**
125
+ * Each element represents a pricing tier. One of `unitAmount`, `tiers`, or `customPricingUnitAmount` is required.
126
+ */
127
+ tiers?: pulumi.Input<pulumi.Input<inputs.V2BillingRateCardRateTier>[]>;
128
+ /**
129
+ * The per-unit amount to be charged, represented as a decimal string in minor currency units with at most 12 decimal places. One of `unitAmount`, `tiers`, or `customPricingUnitAmount` is required.
130
+ */
131
+ unitAmount?: pulumi.Input<string>;
132
+ }
@@ -0,0 +1,69 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by pulumi-language-nodejs. ***
3
+ // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.V2BillingRateCardRate = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ class V2BillingRateCardRate extends pulumi.CustomResource {
9
+ /**
10
+ * Get an existing V2BillingRateCardRate resource's state with the given name, ID, and optional extra
11
+ * properties used to qualify the lookup.
12
+ *
13
+ * @param name The _unique_ name of the resulting resource.
14
+ * @param id The _unique_ provider ID of the resource to lookup.
15
+ * @param state Any extra arguments used during the lookup.
16
+ * @param opts Optional settings to control the behavior of the CustomResource.
17
+ */
18
+ static get(name, id, state, opts) {
19
+ return new V2BillingRateCardRate(name, state, { ...opts, id: id });
20
+ }
21
+ /**
22
+ * Returns true if the given object is an instance of V2BillingRateCardRate. This is designed to work even
23
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
24
+ */
25
+ static isInstance(obj) {
26
+ if (obj === undefined || obj === null) {
27
+ return false;
28
+ }
29
+ return obj['__pulumiType'] === V2BillingRateCardRate.__pulumiType;
30
+ }
31
+ constructor(name, argsOrState, opts) {
32
+ let resourceInputs = {};
33
+ opts = opts || {};
34
+ if (opts.id) {
35
+ const state = argsOrState;
36
+ resourceInputs["metadata"] = state?.metadata;
37
+ resourceInputs["meteredItem"] = state?.meteredItem;
38
+ resourceInputs["rateCard"] = state?.rateCard;
39
+ resourceInputs["rateCardId"] = state?.rateCardId;
40
+ resourceInputs["rateCardVersion"] = state?.rateCardVersion;
41
+ resourceInputs["tieringMode"] = state?.tieringMode;
42
+ resourceInputs["tiers"] = state?.tiers;
43
+ resourceInputs["unitAmount"] = state?.unitAmount;
44
+ }
45
+ else {
46
+ const args = argsOrState;
47
+ if (args?.meteredItem === undefined && !opts.urn) {
48
+ throw new Error("Missing required property 'meteredItem'");
49
+ }
50
+ if (args?.rateCardId === undefined && !opts.urn) {
51
+ throw new Error("Missing required property 'rateCardId'");
52
+ }
53
+ resourceInputs["metadata"] = args?.metadata;
54
+ resourceInputs["meteredItem"] = args?.meteredItem;
55
+ resourceInputs["rateCardId"] = args?.rateCardId;
56
+ resourceInputs["tieringMode"] = args?.tieringMode;
57
+ resourceInputs["tiers"] = args?.tiers;
58
+ resourceInputs["unitAmount"] = args?.unitAmount;
59
+ resourceInputs["rateCard"] = undefined /*out*/;
60
+ resourceInputs["rateCardVersion"] = undefined /*out*/;
61
+ }
62
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
63
+ super(V2BillingRateCardRate.__pulumiType, name, resourceInputs, opts);
64
+ }
65
+ }
66
+ exports.V2BillingRateCardRate = V2BillingRateCardRate;
67
+ /** @internal */
68
+ V2BillingRateCardRate.__pulumiType = 'stripe:index/v2BillingRateCardRate:V2BillingRateCardRate';
69
+ //# sourceMappingURL=v2billingRateCardRate.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"v2billingRateCardRate.js","sourceRoot":"","sources":["../v2billingRateCardRate.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,98 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "./types/input";
3
+ import * as outputs from "./types/output";
4
+ export declare class V2BillingServiceAction extends pulumi.CustomResource {
5
+ /**
6
+ * Get an existing V2BillingServiceAction resource's state with the given name, ID, and optional extra
7
+ * properties used to qualify the lookup.
8
+ *
9
+ * @param name The _unique_ name of the resulting resource.
10
+ * @param id The _unique_ provider ID of the resource to lookup.
11
+ * @param state Any extra arguments used during the lookup.
12
+ * @param opts Optional settings to control the behavior of the CustomResource.
13
+ */
14
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: V2BillingServiceActionState, opts?: pulumi.CustomResourceOptions): V2BillingServiceAction;
15
+ /**
16
+ * Returns true if the given object is an instance of V2BillingServiceAction. This is designed to work even
17
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
18
+ */
19
+ static isInstance(obj: any): obj is V2BillingServiceAction;
20
+ /**
21
+ * Details for the credit grant. Required if `type` is `creditGrant`.
22
+ */
23
+ readonly creditGrant: pulumi.Output<outputs.V2BillingServiceActionCreditGrant | undefined>;
24
+ /**
25
+ * An internal key you can use to search for this service action. Maximum length of 200 characters.
26
+ */
27
+ readonly lookupKey: pulumi.Output<string>;
28
+ /**
29
+ * The interval for assessing service.
30
+ */
31
+ readonly serviceInterval: pulumi.Output<string>;
32
+ /**
33
+ * The length of the interval for assessing service.
34
+ */
35
+ readonly serviceIntervalCount: pulumi.Output<number>;
36
+ /**
37
+ * The type of the service action.
38
+ */
39
+ readonly type: pulumi.Output<string>;
40
+ /**
41
+ * Create a V2BillingServiceAction resource with the given unique name, arguments, and options.
42
+ *
43
+ * @param name The _unique_ name of the resource.
44
+ * @param args The arguments to use to populate this resource's properties.
45
+ * @param opts A bag of options that control this resource's behavior.
46
+ */
47
+ constructor(name: string, args: V2BillingServiceActionArgs, opts?: pulumi.CustomResourceOptions);
48
+ }
49
+ /**
50
+ * Input properties used for looking up and filtering V2BillingServiceAction resources.
51
+ */
52
+ export interface V2BillingServiceActionState {
53
+ /**
54
+ * Details for the credit grant. Required if `type` is `creditGrant`.
55
+ */
56
+ creditGrant?: pulumi.Input<inputs.V2BillingServiceActionCreditGrant>;
57
+ /**
58
+ * An internal key you can use to search for this service action. Maximum length of 200 characters.
59
+ */
60
+ lookupKey?: pulumi.Input<string>;
61
+ /**
62
+ * The interval for assessing service.
63
+ */
64
+ serviceInterval?: pulumi.Input<string>;
65
+ /**
66
+ * The length of the interval for assessing service.
67
+ */
68
+ serviceIntervalCount?: pulumi.Input<number>;
69
+ /**
70
+ * The type of the service action.
71
+ */
72
+ type?: pulumi.Input<string>;
73
+ }
74
+ /**
75
+ * The set of arguments for constructing a V2BillingServiceAction resource.
76
+ */
77
+ export interface V2BillingServiceActionArgs {
78
+ /**
79
+ * Details for the credit grant. Required if `type` is `creditGrant`.
80
+ */
81
+ creditGrant?: pulumi.Input<inputs.V2BillingServiceActionCreditGrant>;
82
+ /**
83
+ * An internal key you can use to search for this service action. Maximum length of 200 characters.
84
+ */
85
+ lookupKey?: pulumi.Input<string>;
86
+ /**
87
+ * The interval for assessing service.
88
+ */
89
+ serviceInterval: pulumi.Input<string>;
90
+ /**
91
+ * The length of the interval for assessing service.
92
+ */
93
+ serviceIntervalCount: pulumi.Input<number>;
94
+ /**
95
+ * The type of the service action.
96
+ */
97
+ type: pulumi.Input<string>;
98
+ }
@@ -0,0 +1,66 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by pulumi-language-nodejs. ***
3
+ // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.V2BillingServiceAction = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ class V2BillingServiceAction extends pulumi.CustomResource {
9
+ /**
10
+ * Get an existing V2BillingServiceAction resource's state with the given name, ID, and optional extra
11
+ * properties used to qualify the lookup.
12
+ *
13
+ * @param name The _unique_ name of the resulting resource.
14
+ * @param id The _unique_ provider ID of the resource to lookup.
15
+ * @param state Any extra arguments used during the lookup.
16
+ * @param opts Optional settings to control the behavior of the CustomResource.
17
+ */
18
+ static get(name, id, state, opts) {
19
+ return new V2BillingServiceAction(name, state, { ...opts, id: id });
20
+ }
21
+ /**
22
+ * Returns true if the given object is an instance of V2BillingServiceAction. This is designed to work even
23
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
24
+ */
25
+ static isInstance(obj) {
26
+ if (obj === undefined || obj === null) {
27
+ return false;
28
+ }
29
+ return obj['__pulumiType'] === V2BillingServiceAction.__pulumiType;
30
+ }
31
+ constructor(name, argsOrState, opts) {
32
+ let resourceInputs = {};
33
+ opts = opts || {};
34
+ if (opts.id) {
35
+ const state = argsOrState;
36
+ resourceInputs["creditGrant"] = state?.creditGrant;
37
+ resourceInputs["lookupKey"] = state?.lookupKey;
38
+ resourceInputs["serviceInterval"] = state?.serviceInterval;
39
+ resourceInputs["serviceIntervalCount"] = state?.serviceIntervalCount;
40
+ resourceInputs["type"] = state?.type;
41
+ }
42
+ else {
43
+ const args = argsOrState;
44
+ if (args?.serviceInterval === undefined && !opts.urn) {
45
+ throw new Error("Missing required property 'serviceInterval'");
46
+ }
47
+ if (args?.serviceIntervalCount === undefined && !opts.urn) {
48
+ throw new Error("Missing required property 'serviceIntervalCount'");
49
+ }
50
+ if (args?.type === undefined && !opts.urn) {
51
+ throw new Error("Missing required property 'type'");
52
+ }
53
+ resourceInputs["creditGrant"] = args?.creditGrant;
54
+ resourceInputs["lookupKey"] = args?.lookupKey;
55
+ resourceInputs["serviceInterval"] = args?.serviceInterval;
56
+ resourceInputs["serviceIntervalCount"] = args?.serviceIntervalCount;
57
+ resourceInputs["type"] = args?.type;
58
+ }
59
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
60
+ super(V2BillingServiceAction.__pulumiType, name, resourceInputs, opts);
61
+ }
62
+ }
63
+ exports.V2BillingServiceAction = V2BillingServiceAction;
64
+ /** @internal */
65
+ V2BillingServiceAction.__pulumiType = 'stripe:index/v2BillingServiceAction:V2BillingServiceAction';
66
+ //# sourceMappingURL=v2billingServiceAction.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"v2billingServiceAction.js","sourceRoot":"","sources":["../v2billingServiceAction.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,MAAa,sBAAuB,SAAQ,MAAM,CAAC,cAAc;IAC7D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAmC,EAAE,IAAmC;QACjI,OAAO,IAAI,sBAAsB,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC7E,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE,CAAC;YACpC,OAAO,KAAK,CAAC;QACjB,CAAC;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,sBAAsB,CAAC,YAAY,CAAC;IACvE,CAAC;IA+BD,YAAY,IAAY,EAAE,WAAsE,EAAE,IAAmC;QACjI,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE,CAAC;YACV,MAAM,KAAK,GAAG,WAAsD,CAAC;YACrE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,EAAE,eAAe,CAAC;YAC3D,cAAc,CAAC,sBAAsB,CAAC,GAAG,KAAK,EAAE,oBAAoB,CAAC;YACrE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;QACzC,CAAC;aAAM,CAAC;YACJ,MAAM,IAAI,GAAG,WAAqD,CAAC;YACnE,IAAI,IAAI,EAAE,eAAe,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC;gBACnD,MAAM,IAAI,KAAK,CAAC,6CAA6C,CAAC,CAAC;YACnE,CAAC;YACD,IAAI,IAAI,EAAE,oBAAoB,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC;gBACxD,MAAM,IAAI,KAAK,CAAC,kDAAkD,CAAC,CAAC;YACxE,CAAC;YACD,IAAI,IAAI,EAAE,IAAI,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC;gBACxC,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;YACxD,CAAC;YACD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,EAAE,eAAe,CAAC;YAC1D,cAAc,CAAC,sBAAsB,CAAC,GAAG,IAAI,EAAE,oBAAoB,CAAC;YACpE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;QACxC,CAAC;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,sBAAsB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC3E,CAAC;;AAtFL,wDAuFC;AAzEG,gBAAgB;AACO,mCAAY,GAAG,4DAA4D,CAAC"}