@pulumi/aws 7.42.0 → 7.43.0-alpha.1786700563
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/amp/scraper.d.ts +2 -2
- package/amp/scraper.js +2 -2
- package/apigateway/deployment.d.ts +1 -1
- package/apigateway/deployment.js +1 -1
- package/apigateway/stage.d.ts +1 -1
- package/apigateway/stage.js +1 -1
- package/dynamodb/tag.d.ts +1 -1
- package/dynamodb/tag.js +1 -1
- package/glue/dataCatalogEncryptionSettings.d.ts +1 -1
- package/glue/dataCatalogEncryptionSettings.js +1 -1
- package/kendra/querySuggestionsBlockList.d.ts +1 -1
- package/kendra/querySuggestionsBlockList.js +1 -1
- package/networkmanager/coreNetwork.d.ts +3 -3
- package/package.json +2 -2
- package/rds/parameterGroup.d.ts +12 -1
- package/rds/parameterGroup.d.ts.map +1 -1
- package/rds/parameterGroup.js +12 -1
- package/rds/parameterGroup.js.map +1 -1
- package/resiliencehub/index.d.ts +3 -0
- package/resiliencehub/index.d.ts.map +1 -1
- package/resiliencehub/index.js +6 -1
- package/resiliencehub/index.js.map +1 -1
- package/resiliencehub/v2inputSource.d.ts +168 -0
- package/resiliencehub/v2inputSource.d.ts.map +1 -0
- package/resiliencehub/v2inputSource.js +163 -0
- package/resiliencehub/v2inputSource.js.map +1 -0
- package/storagegateway/gateway.d.ts +3 -3
- package/storagegateway/gateway.js +3 -3
- package/transfer/access.d.ts +3 -3
- package/types/input.d.ts +52 -0
- package/types/input.d.ts.map +1 -1
- package/types/input.js.map +1 -1
- package/types/output.d.ts +52 -0
- package/types/output.d.ts.map +1 -1
- package/types/output.js.map +1 -1
package/amp/scraper.d.ts
CHANGED
|
@@ -196,7 +196,7 @@ import * as outputs from "../types/output";
|
|
|
196
196
|
*
|
|
197
197
|
* ### Use default EKS scraper configuration
|
|
198
198
|
*
|
|
199
|
-
* You can use the data source `
|
|
199
|
+
* You can use the data source `aws.amp.getDefaultScraperConfiguration` to use a
|
|
200
200
|
* service managed scrape configuration.
|
|
201
201
|
*
|
|
202
202
|
* ```typescript
|
|
@@ -210,7 +210,7 @@ import * as outputs from "../types/output";
|
|
|
210
210
|
* workspaceArn: exampleAwsPrometheusWorkspace.arn,
|
|
211
211
|
* },
|
|
212
212
|
* },
|
|
213
|
-
* scrapeConfiguration:
|
|
213
|
+
* scrapeConfiguration: example.then(example => example.configuration),
|
|
214
214
|
* source: {
|
|
215
215
|
* eks: {
|
|
216
216
|
* clusterArn: exampleAwsEksCluster.arn,
|
package/amp/scraper.js
CHANGED
|
@@ -223,7 +223,7 @@ const utilities = __importStar(require("../utilities"));
|
|
|
223
223
|
*
|
|
224
224
|
* ### Use default EKS scraper configuration
|
|
225
225
|
*
|
|
226
|
-
* You can use the data source `
|
|
226
|
+
* You can use the data source `aws.amp.getDefaultScraperConfiguration` to use a
|
|
227
227
|
* service managed scrape configuration.
|
|
228
228
|
*
|
|
229
229
|
* ```typescript
|
|
@@ -237,7 +237,7 @@ const utilities = __importStar(require("../utilities"));
|
|
|
237
237
|
* workspaceArn: exampleAwsPrometheusWorkspace.arn,
|
|
238
238
|
* },
|
|
239
239
|
* },
|
|
240
|
-
* scrapeConfiguration:
|
|
240
|
+
* scrapeConfiguration: example.then(example => example.configuration),
|
|
241
241
|
* source: {
|
|
242
242
|
* eks: {
|
|
243
243
|
* clusterArn: exampleAwsEksCluster.arn,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import { RestApi } from "./index";
|
|
3
3
|
/**
|
|
4
|
-
* Manages an API Gateway REST Deployment. A deployment is a snapshot of the REST API configuration. The deployment can then be published to callable endpoints via the `aws.apigateway.Stage` resource and optionally managed further with the `aws.apigateway.BasePathMapping` resource, `aws.apigateway.DomainName` resource, and `
|
|
4
|
+
* Manages an API Gateway REST Deployment. A deployment is a snapshot of the REST API configuration. The deployment can then be published to callable endpoints via the `aws.apigateway.Stage` resource and optionally managed further with the `aws.apigateway.BasePathMapping` resource, `aws.apigateway.DomainName` resource, and `aws.apigateway.MethodSettings` resource. For more information, see the [API Gateway Developer Guide](https://docs.aws.amazon.com/apigateway/latest/developerguide/how-to-deploy-api.html).
|
|
5
5
|
*
|
|
6
6
|
* To properly capture all REST API configuration in a deployment, this resource must have dependencies on all prior resources that manage resources/paths, methods, integrations, etc.
|
|
7
7
|
*
|
package/apigateway/deployment.js
CHANGED
|
@@ -29,7 +29,7 @@ exports.Deployment = void 0;
|
|
|
29
29
|
const pulumi = __importStar(require("@pulumi/pulumi"));
|
|
30
30
|
const utilities = __importStar(require("../utilities"));
|
|
31
31
|
/**
|
|
32
|
-
* Manages an API Gateway REST Deployment. A deployment is a snapshot of the REST API configuration. The deployment can then be published to callable endpoints via the `aws.apigateway.Stage` resource and optionally managed further with the `aws.apigateway.BasePathMapping` resource, `aws.apigateway.DomainName` resource, and `
|
|
32
|
+
* Manages an API Gateway REST Deployment. A deployment is a snapshot of the REST API configuration. The deployment can then be published to callable endpoints via the `aws.apigateway.Stage` resource and optionally managed further with the `aws.apigateway.BasePathMapping` resource, `aws.apigateway.DomainName` resource, and `aws.apigateway.MethodSettings` resource. For more information, see the [API Gateway Developer Guide](https://docs.aws.amazon.com/apigateway/latest/developerguide/how-to-deploy-api.html).
|
|
33
33
|
*
|
|
34
34
|
* To properly capture all REST API configuration in a deployment, this resource must have dependencies on all prior resources that manage resources/paths, methods, integrations, etc.
|
|
35
35
|
*
|
package/apigateway/stage.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import * as inputs from "../types/input";
|
|
|
3
3
|
import * as outputs from "../types/output";
|
|
4
4
|
import { Deployment, RestApi } from "./index";
|
|
5
5
|
/**
|
|
6
|
-
* Manages an API Gateway Stage. A stage is a named reference to a deployment, which can be done via the `aws.apigateway.Deployment` resource. Stages can be optionally managed further with the `aws.apigateway.BasePathMapping` resource, `aws.apigateway.DomainName` resource, and `
|
|
6
|
+
* Manages an API Gateway Stage. A stage is a named reference to a deployment, which can be done via the `aws.apigateway.Deployment` resource. Stages can be optionally managed further with the `aws.apigateway.BasePathMapping` resource, `aws.apigateway.DomainName` resource, and `aws.apigateway.MethodSettings` resource. For more information, see the [API Gateway Developer Guide](https://docs.aws.amazon.com/apigateway/latest/developerguide/set-up-stages.html).
|
|
7
7
|
*
|
|
8
8
|
* ### Managing the API Logging CloudWatch Log Group
|
|
9
9
|
*
|
package/apigateway/stage.js
CHANGED
|
@@ -29,7 +29,7 @@ exports.Stage = void 0;
|
|
|
29
29
|
const pulumi = __importStar(require("@pulumi/pulumi"));
|
|
30
30
|
const utilities = __importStar(require("../utilities"));
|
|
31
31
|
/**
|
|
32
|
-
* Manages an API Gateway Stage. A stage is a named reference to a deployment, which can be done via the `aws.apigateway.Deployment` resource. Stages can be optionally managed further with the `aws.apigateway.BasePathMapping` resource, `aws.apigateway.DomainName` resource, and `
|
|
32
|
+
* Manages an API Gateway Stage. A stage is a named reference to a deployment, which can be done via the `aws.apigateway.Deployment` resource. Stages can be optionally managed further with the `aws.apigateway.BasePathMapping` resource, `aws.apigateway.DomainName` resource, and `aws.apigateway.MethodSettings` resource. For more information, see the [API Gateway Developer Guide](https://docs.aws.amazon.com/apigateway/latest/developerguide/set-up-stages.html).
|
|
33
33
|
*
|
|
34
34
|
* ### Managing the API Logging CloudWatch Log Group
|
|
35
35
|
*
|
package/dynamodb/tag.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
/**
|
|
3
3
|
* Manages an individual DynamoDB resource tag. This resource should only be used in cases where DynamoDB resources are created outside the provider (e.g., Table replicas in other regions).
|
|
4
4
|
*
|
|
5
|
-
* > **NOTE:** This tagging resource should not be combined with the
|
|
5
|
+
* > **NOTE:** This tagging resource should not be combined with the resource for managing the parent resource. For example, using `aws.dynamodb.Table` and `aws.dynamodb.Tag` to manage tags of the same DynamoDB Table in the same region will cause a perpetual difference where the `aws.dynamodb.Table` resource will try to remove the tag being added by the `aws.dynamodb.Tag` resource.
|
|
6
6
|
*
|
|
7
7
|
* > **NOTE:** This tagging resource does not use the provider `ignoreTags` configuration.
|
|
8
8
|
*
|
package/dynamodb/tag.js
CHANGED
|
@@ -31,7 +31,7 @@ const utilities = __importStar(require("../utilities"));
|
|
|
31
31
|
/**
|
|
32
32
|
* Manages an individual DynamoDB resource tag. This resource should only be used in cases where DynamoDB resources are created outside the provider (e.g., Table replicas in other regions).
|
|
33
33
|
*
|
|
34
|
-
* > **NOTE:** This tagging resource should not be combined with the
|
|
34
|
+
* > **NOTE:** This tagging resource should not be combined with the resource for managing the parent resource. For example, using `aws.dynamodb.Table` and `aws.dynamodb.Tag` to manage tags of the same DynamoDB Table in the same region will cause a perpetual difference where the `aws.dynamodb.Table` resource will try to remove the tag being added by the `aws.dynamodb.Tag` resource.
|
|
35
35
|
*
|
|
36
36
|
* > **NOTE:** This tagging resource does not use the provider `ignoreTags` configuration.
|
|
37
37
|
*
|
|
@@ -17,7 +17,7 @@ import * as outputs from "../types/output";
|
|
|
17
17
|
* },
|
|
18
18
|
* encryptionAtRest: {
|
|
19
19
|
* catalogEncryptionMode: "SSE-KMS",
|
|
20
|
-
* catalogEncryptionServiceRole:
|
|
20
|
+
* catalogEncryptionServiceRole: testAwsIamRole.arn,
|
|
21
21
|
* sseAwsKmsKeyId: test.arn,
|
|
22
22
|
* },
|
|
23
23
|
* }});
|
|
@@ -44,7 +44,7 @@ const utilities = __importStar(require("../utilities"));
|
|
|
44
44
|
* },
|
|
45
45
|
* encryptionAtRest: {
|
|
46
46
|
* catalogEncryptionMode: "SSE-KMS",
|
|
47
|
-
* catalogEncryptionServiceRole:
|
|
47
|
+
* catalogEncryptionServiceRole: testAwsIamRole.arn,
|
|
48
48
|
* sseAwsKmsKeyId: test.arn,
|
|
49
49
|
* },
|
|
50
50
|
* }});
|
|
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
import * as inputs from "../types/input";
|
|
3
3
|
import * as outputs from "../types/output";
|
|
4
4
|
/**
|
|
5
|
-
* Use the `
|
|
5
|
+
* Use the `aws.kendra.QuerySuggestionsBlockList` resource to manage an AWS Kendra block list used for query suggestions for an index.
|
|
6
6
|
*
|
|
7
7
|
* ## Example Usage
|
|
8
8
|
*
|
|
@@ -29,7 +29,7 @@ exports.QuerySuggestionsBlockList = void 0;
|
|
|
29
29
|
const pulumi = __importStar(require("@pulumi/pulumi"));
|
|
30
30
|
const utilities = __importStar(require("../utilities"));
|
|
31
31
|
/**
|
|
32
|
-
* Use the `
|
|
32
|
+
* Use the `aws.kendra.QuerySuggestionsBlockList` resource to manage an AWS Kendra block list used for query suggestions for an index.
|
|
33
33
|
*
|
|
34
34
|
* ## Example Usage
|
|
35
35
|
*
|
|
@@ -341,7 +341,7 @@ export declare class CoreNetwork extends pulumi.CustomResource {
|
|
|
341
341
|
*/
|
|
342
342
|
readonly basePolicyRegions: pulumi.Output<string[] | undefined>;
|
|
343
343
|
/**
|
|
344
|
-
* Whether to create a base policy when a core network is created or updated. A base policy is created and set to `LIVE` to allow attachments to the core network (e.g. VPC Attachments) before applying a policy document provided using the `aws.networkmanager.CoreNetworkPolicyAttachment` resource. This base policy is needed if your core network does not have any `LIVE` policies and your policy document has static routes pointing to VPC attachments and you want to attach your VPCs to the core network before applying the desired policy document. Valid values are `true` or `false`. An example of this
|
|
344
|
+
* Whether to create a base policy when a core network is created or updated. A base policy is created and set to `LIVE` to allow attachments to the core network (e.g. VPC Attachments) before applying a policy document provided using the `aws.networkmanager.CoreNetworkPolicyAttachment` resource. This base policy is needed if your core network does not have any `LIVE` policies and your policy document has static routes pointing to VPC attachments and you want to attach your VPCs to the core network before applying the desired policy document. Valid values are `true` or `false`. An example of this Pulumi snippet can be found above for VPC Attachment in a single region and for VPC Attachment multi-region. An example base policy is shown in the Base Policy Example section. This base policy is overridden with the policy that you specify in the `aws.networkmanager.CoreNetworkPolicyAttachment` resource.
|
|
345
345
|
*/
|
|
346
346
|
readonly createBasePolicy: pulumi.Output<boolean | undefined>;
|
|
347
347
|
/**
|
|
@@ -408,7 +408,7 @@ export interface CoreNetworkState {
|
|
|
408
408
|
*/
|
|
409
409
|
basePolicyRegions?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
410
410
|
/**
|
|
411
|
-
* Whether to create a base policy when a core network is created or updated. A base policy is created and set to `LIVE` to allow attachments to the core network (e.g. VPC Attachments) before applying a policy document provided using the `aws.networkmanager.CoreNetworkPolicyAttachment` resource. This base policy is needed if your core network does not have any `LIVE` policies and your policy document has static routes pointing to VPC attachments and you want to attach your VPCs to the core network before applying the desired policy document. Valid values are `true` or `false`. An example of this
|
|
411
|
+
* Whether to create a base policy when a core network is created or updated. A base policy is created and set to `LIVE` to allow attachments to the core network (e.g. VPC Attachments) before applying a policy document provided using the `aws.networkmanager.CoreNetworkPolicyAttachment` resource. This base policy is needed if your core network does not have any `LIVE` policies and your policy document has static routes pointing to VPC attachments and you want to attach your VPCs to the core network before applying the desired policy document. Valid values are `true` or `false`. An example of this Pulumi snippet can be found above for VPC Attachment in a single region and for VPC Attachment multi-region. An example base policy is shown in the Base Policy Example section. This base policy is overridden with the policy that you specify in the `aws.networkmanager.CoreNetworkPolicyAttachment` resource.
|
|
412
412
|
*/
|
|
413
413
|
createBasePolicy?: pulumi.Input<boolean | undefined>;
|
|
414
414
|
/**
|
|
@@ -463,7 +463,7 @@ export interface CoreNetworkArgs {
|
|
|
463
463
|
*/
|
|
464
464
|
basePolicyRegions?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
465
465
|
/**
|
|
466
|
-
* Whether to create a base policy when a core network is created or updated. A base policy is created and set to `LIVE` to allow attachments to the core network (e.g. VPC Attachments) before applying a policy document provided using the `aws.networkmanager.CoreNetworkPolicyAttachment` resource. This base policy is needed if your core network does not have any `LIVE` policies and your policy document has static routes pointing to VPC attachments and you want to attach your VPCs to the core network before applying the desired policy document. Valid values are `true` or `false`. An example of this
|
|
466
|
+
* Whether to create a base policy when a core network is created or updated. A base policy is created and set to `LIVE` to allow attachments to the core network (e.g. VPC Attachments) before applying a policy document provided using the `aws.networkmanager.CoreNetworkPolicyAttachment` resource. This base policy is needed if your core network does not have any `LIVE` policies and your policy document has static routes pointing to VPC attachments and you want to attach your VPCs to the core network before applying the desired policy document. Valid values are `true` or `false`. An example of this Pulumi snippet can be found above for VPC Attachment in a single region and for VPC Attachment multi-region. An example base policy is shown in the Base Policy Example section. This base policy is overridden with the policy that you specify in the `aws.networkmanager.CoreNetworkPolicyAttachment` resource.
|
|
467
467
|
*/
|
|
468
468
|
createBasePolicy?: pulumi.Input<boolean | undefined>;
|
|
469
469
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/aws",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.43.0-alpha.1786700563",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -24,6 +24,6 @@
|
|
|
24
24
|
"pulumi": {
|
|
25
25
|
"resource": true,
|
|
26
26
|
"name": "aws",
|
|
27
|
-
"version": "7.
|
|
27
|
+
"version": "7.43.0-alpha.1786700563"
|
|
28
28
|
}
|
|
29
29
|
}
|
package/rds/parameterGroup.d.ts
CHANGED
|
@@ -114,10 +114,21 @@ import * as outputs from "../types/output";
|
|
|
114
114
|
*
|
|
115
115
|
* ## Import
|
|
116
116
|
*
|
|
117
|
+
* ### Identity Schema
|
|
118
|
+
*
|
|
119
|
+
* #### Required
|
|
120
|
+
*
|
|
121
|
+
* - `name` (String) Name of the DB parameter group.
|
|
122
|
+
*
|
|
123
|
+
* #### Optional
|
|
124
|
+
*
|
|
125
|
+
* - `accountId` (String) AWS Account where this resource is managed.
|
|
126
|
+
* - `region` (String) Region where this resource is managed.
|
|
127
|
+
*
|
|
117
128
|
* Using `pulumi import`, import DB Parameter groups using the `name`. For example:
|
|
118
129
|
*
|
|
119
130
|
* ```sh
|
|
120
|
-
* $ pulumi import aws:rds/parameterGroup:ParameterGroup
|
|
131
|
+
* $ pulumi import aws:rds/parameterGroup:ParameterGroup example rds-pg
|
|
121
132
|
* ```
|
|
122
133
|
*/
|
|
123
134
|
export declare class ParameterGroup extends pulumi.CustomResource {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"parameterGroup.d.ts","sourceRoot":"","sources":["../../rds/parameterGroup.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AACzC,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AACzC,OAAO,KAAK,OAAO,MAAM,iBAAiB,CAAC;AAI3C
|
|
1
|
+
{"version":3,"file":"parameterGroup.d.ts","sourceRoot":"","sources":["../../rds/parameterGroup.ts"],"names":[],"mappings":"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"}
|
package/rds/parameterGroup.js
CHANGED
|
@@ -141,10 +141,21 @@ const utilities = __importStar(require("../utilities"));
|
|
|
141
141
|
*
|
|
142
142
|
* ## Import
|
|
143
143
|
*
|
|
144
|
+
* ### Identity Schema
|
|
145
|
+
*
|
|
146
|
+
* #### Required
|
|
147
|
+
*
|
|
148
|
+
* - `name` (String) Name of the DB parameter group.
|
|
149
|
+
*
|
|
150
|
+
* #### Optional
|
|
151
|
+
*
|
|
152
|
+
* - `accountId` (String) AWS Account where this resource is managed.
|
|
153
|
+
* - `region` (String) Region where this resource is managed.
|
|
154
|
+
*
|
|
144
155
|
* Using `pulumi import`, import DB Parameter groups using the `name`. For example:
|
|
145
156
|
*
|
|
146
157
|
* ```sh
|
|
147
|
-
* $ pulumi import aws:rds/parameterGroup:ParameterGroup
|
|
158
|
+
* $ pulumi import aws:rds/parameterGroup:ParameterGroup example rds-pg
|
|
148
159
|
* ```
|
|
149
160
|
*/
|
|
150
161
|
class ParameterGroup extends pulumi.CustomResource {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"parameterGroup.js","sourceRoot":"","sources":["../../rds/parameterGroup.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AAIzC,wDAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"parameterGroup.js","sourceRoot":"","sources":["../../rds/parameterGroup.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AAIzC,wDAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiIG;AACH,MAAa,cAAe,SAAQ,MAAM,CAAC,cAAc;IACrD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA2B,EAAE,IAAmC;QACzH,OAAO,IAAI,cAAc,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACrE,CAAC;IAED,gBAAgB;IACT,MAAM,CAAU,YAAY,GAAG,uCAAuC,CAAC;IAE9E;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,cAAc,CAAC,YAAY,CAAC;IAC/D,CAAC;IAmDD,YAAY,IAAY,EAAE,WAAsD,EAAE,IAAmC;QACjH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA8C,CAAC;YAC7D,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,EAAE,GAAG,CAAC;YACnC,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;SAC9C;aAAM;YACH,MAAM,IAAI,GAAG,WAA6C,CAAC;YAC3D,IAAI,IAAI,EAAE,MAAM,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACzC,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;aACzD;YACD,cAAc,CAAC,aAAa,CAAC,GAAG,CAAC,IAAI,EAAE,WAAW,CAAC,IAAI,mBAAmB,CAAC;YAC3E,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;YACxC,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;YAChD,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;YAChD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;YACxC,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,KAAK,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC1C,cAAc,CAAC,SAAS,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACjD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,cAAc,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACnE,CAAC;;AA9GL,wCA+GC"}
|
package/resiliencehub/index.d.ts
CHANGED
|
@@ -10,6 +10,9 @@ export declare const getV2SystemOutput: typeof import("./getV2System").getV2Syst
|
|
|
10
10
|
export { ResiliencyPolicyArgs, ResiliencyPolicyState } from "./resiliencyPolicy";
|
|
11
11
|
export type ResiliencyPolicy = import("./resiliencyPolicy").ResiliencyPolicy;
|
|
12
12
|
export declare const ResiliencyPolicy: typeof import("./resiliencyPolicy").ResiliencyPolicy;
|
|
13
|
+
export { V2InputSourceArgs, V2InputSourceState } from "./v2inputSource";
|
|
14
|
+
export type V2InputSource = import("./v2inputSource").V2InputSource;
|
|
15
|
+
export declare const V2InputSource: typeof import("./v2inputSource").V2InputSource;
|
|
13
16
|
export { V2PolicyArgs, V2PolicyState } from "./v2policy";
|
|
14
17
|
export type V2Policy = import("./v2policy").V2Policy;
|
|
15
18
|
export declare const V2Policy: typeof import("./v2policy").V2Policy;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../resiliencehub/index.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,eAAe,EAAE,iBAAiB,EAAE,qBAAqB,EAAE,MAAM,eAAe,CAAC;AAC1F,eAAO,MAAM,WAAW,EAAE,cAAc,eAAe,EAAE,WAAyB,CAAC;AACnF,eAAO,MAAM,iBAAiB,EAAE,cAAc,eAAe,EAAE,iBAA+B,CAAC;AAG/F,OAAO,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,sBAAsB,EAAE,MAAM,gBAAgB,CAAC;AAC9F,eAAO,MAAM,YAAY,EAAE,cAAc,gBAAgB,EAAE,YAA0B,CAAC;AACtF,eAAO,MAAM,kBAAkB,EAAE,cAAc,gBAAgB,EAAE,kBAAgC,CAAC;AAGlG,OAAO,EAAE,eAAe,EAAE,iBAAiB,EAAE,qBAAqB,EAAE,MAAM,eAAe,CAAC;AAC1F,eAAO,MAAM,WAAW,EAAE,cAAc,eAAe,EAAE,WAAyB,CAAC;AACnF,eAAO,MAAM,iBAAiB,EAAE,cAAc,eAAe,EAAE,iBAA+B,CAAC;AAG/F,OAAO,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,MAAM,oBAAoB,CAAC;AACjF,MAAM,MAAM,gBAAgB,GAAG,OAAO,oBAAoB,EAAE,gBAAgB,CAAC;AAC7E,eAAO,MAAM,gBAAgB,EAAE,cAAc,oBAAoB,EAAE,gBAA8B,CAAC;AAGlG,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AACzD,MAAM,MAAM,QAAQ,GAAG,OAAO,YAAY,EAAE,QAAQ,CAAC;AACrD,eAAO,MAAM,QAAQ,EAAE,cAAc,YAAY,EAAE,QAAsB,CAAC;AAG1E,OAAO,EAAE,aAAa,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAC5D,MAAM,MAAM,SAAS,GAAG,OAAO,aAAa,EAAE,SAAS,CAAC;AACxD,eAAO,MAAM,SAAS,EAAE,cAAc,aAAa,EAAE,SAAuB,CAAC;AAG7E,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AACzD,MAAM,MAAM,QAAQ,GAAG,OAAO,YAAY,EAAE,QAAQ,CAAC;AACrD,eAAO,MAAM,QAAQ,EAAE,cAAc,YAAY,EAAE,QAAsB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../resiliencehub/index.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,eAAe,EAAE,iBAAiB,EAAE,qBAAqB,EAAE,MAAM,eAAe,CAAC;AAC1F,eAAO,MAAM,WAAW,EAAE,cAAc,eAAe,EAAE,WAAyB,CAAC;AACnF,eAAO,MAAM,iBAAiB,EAAE,cAAc,eAAe,EAAE,iBAA+B,CAAC;AAG/F,OAAO,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,sBAAsB,EAAE,MAAM,gBAAgB,CAAC;AAC9F,eAAO,MAAM,YAAY,EAAE,cAAc,gBAAgB,EAAE,YAA0B,CAAC;AACtF,eAAO,MAAM,kBAAkB,EAAE,cAAc,gBAAgB,EAAE,kBAAgC,CAAC;AAGlG,OAAO,EAAE,eAAe,EAAE,iBAAiB,EAAE,qBAAqB,EAAE,MAAM,eAAe,CAAC;AAC1F,eAAO,MAAM,WAAW,EAAE,cAAc,eAAe,EAAE,WAAyB,CAAC;AACnF,eAAO,MAAM,iBAAiB,EAAE,cAAc,eAAe,EAAE,iBAA+B,CAAC;AAG/F,OAAO,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,MAAM,oBAAoB,CAAC;AACjF,MAAM,MAAM,gBAAgB,GAAG,OAAO,oBAAoB,EAAE,gBAAgB,CAAC;AAC7E,eAAO,MAAM,gBAAgB,EAAE,cAAc,oBAAoB,EAAE,gBAA8B,CAAC;AAGlG,OAAO,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,MAAM,iBAAiB,CAAC;AACxE,MAAM,MAAM,aAAa,GAAG,OAAO,iBAAiB,EAAE,aAAa,CAAC;AACpE,eAAO,MAAM,aAAa,EAAE,cAAc,iBAAiB,EAAE,aAA2B,CAAC;AAGzF,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AACzD,MAAM,MAAM,QAAQ,GAAG,OAAO,YAAY,EAAE,QAAQ,CAAC;AACrD,eAAO,MAAM,QAAQ,EAAE,cAAc,YAAY,EAAE,QAAsB,CAAC;AAG1E,OAAO,EAAE,aAAa,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAC5D,MAAM,MAAM,SAAS,GAAG,OAAO,aAAa,EAAE,SAAS,CAAC;AACxD,eAAO,MAAM,SAAS,EAAE,cAAc,aAAa,EAAE,SAAuB,CAAC;AAG7E,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AACzD,MAAM,MAAM,QAAQ,GAAG,OAAO,YAAY,EAAE,QAAQ,CAAC;AACrD,eAAO,MAAM,QAAQ,EAAE,cAAc,YAAY,EAAE,QAAsB,CAAC"}
|
package/resiliencehub/index.js
CHANGED
|
@@ -25,7 +25,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
25
25
|
return result;
|
|
26
26
|
};
|
|
27
27
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28
|
-
exports.V2System = exports.V2Service = exports.V2Policy = exports.ResiliencyPolicy = exports.getV2SystemOutput = exports.getV2System = exports.getV2ServiceOutput = exports.getV2Service = exports.getV2PolicyOutput = exports.getV2Policy = void 0;
|
|
28
|
+
exports.V2System = exports.V2Service = exports.V2Policy = exports.V2InputSource = exports.ResiliencyPolicy = exports.getV2SystemOutput = exports.getV2System = exports.getV2ServiceOutput = exports.getV2Service = exports.getV2PolicyOutput = exports.getV2Policy = void 0;
|
|
29
29
|
const pulumi = __importStar(require("@pulumi/pulumi"));
|
|
30
30
|
const utilities = __importStar(require("../utilities"));
|
|
31
31
|
exports.getV2Policy = null;
|
|
@@ -39,6 +39,8 @@ exports.getV2SystemOutput = null;
|
|
|
39
39
|
utilities.lazyLoad(exports, ["getV2System", "getV2SystemOutput"], () => require("./getV2System"));
|
|
40
40
|
exports.ResiliencyPolicy = null;
|
|
41
41
|
utilities.lazyLoad(exports, ["ResiliencyPolicy"], () => require("./resiliencyPolicy"));
|
|
42
|
+
exports.V2InputSource = null;
|
|
43
|
+
utilities.lazyLoad(exports, ["V2InputSource"], () => require("./v2inputSource"));
|
|
42
44
|
exports.V2Policy = null;
|
|
43
45
|
utilities.lazyLoad(exports, ["V2Policy"], () => require("./v2policy"));
|
|
44
46
|
exports.V2Service = null;
|
|
@@ -51,6 +53,8 @@ const _module = {
|
|
|
51
53
|
switch (type) {
|
|
52
54
|
case "aws:resiliencehub/resiliencyPolicy:ResiliencyPolicy":
|
|
53
55
|
return new exports.ResiliencyPolicy(name, undefined, { urn });
|
|
56
|
+
case "aws:resiliencehub/v2InputSource:V2InputSource":
|
|
57
|
+
return new exports.V2InputSource(name, undefined, { urn });
|
|
54
58
|
case "aws:resiliencehub/v2Policy:V2Policy":
|
|
55
59
|
return new exports.V2Policy(name, undefined, { urn });
|
|
56
60
|
case "aws:resiliencehub/v2Service:V2Service":
|
|
@@ -63,6 +67,7 @@ const _module = {
|
|
|
63
67
|
},
|
|
64
68
|
};
|
|
65
69
|
pulumi.runtime.registerResourceModule("aws", "resiliencehub/resiliencyPolicy", _module);
|
|
70
|
+
pulumi.runtime.registerResourceModule("aws", "resiliencehub/v2InputSource", _module);
|
|
66
71
|
pulumi.runtime.registerResourceModule("aws", "resiliencehub/v2Policy", _module);
|
|
67
72
|
pulumi.runtime.registerResourceModule("aws", "resiliencehub/v2Service", _module);
|
|
68
73
|
pulumi.runtime.registerResourceModule("aws", "resiliencehub/v2System", _module);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../resiliencehub/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../resiliencehub/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "../types/input";
|
|
3
|
+
import * as outputs from "../types/output";
|
|
4
|
+
/**
|
|
5
|
+
* Resource for managing an AWS Resilience Hub V2 Input Source.
|
|
6
|
+
*
|
|
7
|
+
* An input source defines where Resilience Hub discovers AWS resources for a service. Supported source types include CloudFormation stacks, Terraform state files (stored in S3), and EKS clusters.
|
|
8
|
+
*
|
|
9
|
+
* > **Note:** This resource does not support in-place updates. Any change to the resource configuration will destroy and recreate the input source.
|
|
10
|
+
*
|
|
11
|
+
* > **Note:** The referenced resources (CloudFormation stacks, S3 state files, EKS clusters) must exist before creating the input source. Use `dependsOn` to ensure proper ordering.
|
|
12
|
+
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*
|
|
15
|
+
* ### CloudFormation Stack
|
|
16
|
+
*
|
|
17
|
+
* ```typescript
|
|
18
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
19
|
+
* import * as aws from "@pulumi/aws";
|
|
20
|
+
*
|
|
21
|
+
* const example = new aws.resiliencehub.V2InputSource("example", {
|
|
22
|
+
* serviceArn: exampleAwsResiliencehubv2Service.arn,
|
|
23
|
+
* resourceConfiguration: {
|
|
24
|
+
* cfnStackArn: "arn:aws:cloudformation:us-west-2:123456789012:stack/my-stack/abc123",
|
|
25
|
+
* },
|
|
26
|
+
* });
|
|
27
|
+
* ```
|
|
28
|
+
*
|
|
29
|
+
* ### Terraform State File
|
|
30
|
+
*
|
|
31
|
+
* ```typescript
|
|
32
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
33
|
+
* import * as aws from "@pulumi/aws";
|
|
34
|
+
*
|
|
35
|
+
* const example = new aws.resiliencehub.V2InputSource("example", {
|
|
36
|
+
* serviceArn: exampleAwsResiliencehubv2Service.arn,
|
|
37
|
+
* resourceConfiguration: {
|
|
38
|
+
* tfStateFileUrl: "s3://my-bucket/terraform.tfstate",
|
|
39
|
+
* },
|
|
40
|
+
* });
|
|
41
|
+
* ```
|
|
42
|
+
*
|
|
43
|
+
* ### EKS Cluster
|
|
44
|
+
*
|
|
45
|
+
* ```typescript
|
|
46
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
47
|
+
* import * as aws from "@pulumi/aws";
|
|
48
|
+
*
|
|
49
|
+
* const example = new aws.resiliencehub.V2InputSource("example", {
|
|
50
|
+
* serviceArn: exampleAwsResiliencehubv2Service.arn,
|
|
51
|
+
* resourceConfiguration: {
|
|
52
|
+
* eks: {
|
|
53
|
+
* clusterArn: "arn:aws:eks:us-west-2:123456789012:cluster/my-cluster",
|
|
54
|
+
* namespaces: [
|
|
55
|
+
* "default",
|
|
56
|
+
* "production",
|
|
57
|
+
* ],
|
|
58
|
+
* },
|
|
59
|
+
* },
|
|
60
|
+
* });
|
|
61
|
+
* ```
|
|
62
|
+
*
|
|
63
|
+
* ## Import
|
|
64
|
+
*
|
|
65
|
+
* ### Identity Schema
|
|
66
|
+
*
|
|
67
|
+
* #### Required
|
|
68
|
+
*
|
|
69
|
+
* * `serviceArn` (String) ARN of the service this input source belongs to.
|
|
70
|
+
* * `inputSourceId` (String) Unique identifier of the input source.
|
|
71
|
+
*
|
|
72
|
+
* #### Optional
|
|
73
|
+
*
|
|
74
|
+
* * `accountId` (String) AWS Account where this resource is managed.
|
|
75
|
+
* * `region` (String) Region where this resource is managed.
|
|
76
|
+
*
|
|
77
|
+
* Using `pulumi import`, import Resilience Hub V2 Input Source using the `serviceArn` and `inputSourceId` separated by a comma (`,`). For example:
|
|
78
|
+
*
|
|
79
|
+
* ```sh
|
|
80
|
+
* $ pulumi import aws:resiliencehub/v2InputSource:V2InputSource example arn:aws:resiliencehub:us-west-2:123456789012:service/example-service:abc123,12345678-1234-1234-1234-123456789012
|
|
81
|
+
* ```
|
|
82
|
+
*/
|
|
83
|
+
export declare class V2InputSource extends pulumi.CustomResource {
|
|
84
|
+
/**
|
|
85
|
+
* Get an existing V2InputSource resource's state with the given name, ID, and optional extra
|
|
86
|
+
* properties used to qualify the lookup.
|
|
87
|
+
*
|
|
88
|
+
* @param name The _unique_ name of the resulting resource.
|
|
89
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
90
|
+
* @param state Any extra arguments used during the lookup.
|
|
91
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
92
|
+
*/
|
|
93
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: V2InputSourceState, opts?: pulumi.CustomResourceOptions): V2InputSource;
|
|
94
|
+
/**
|
|
95
|
+
* Returns true if the given object is an instance of V2InputSource. This is designed to work even
|
|
96
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
97
|
+
*/
|
|
98
|
+
static isInstance(obj: any): obj is V2InputSource;
|
|
99
|
+
/**
|
|
100
|
+
* Unique identifier of the input source.
|
|
101
|
+
*/
|
|
102
|
+
readonly inputSourceId: pulumi.Output<string>;
|
|
103
|
+
/**
|
|
104
|
+
* Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
105
|
+
*/
|
|
106
|
+
readonly region: pulumi.Output<string>;
|
|
107
|
+
/**
|
|
108
|
+
* Resource configuration for an input source. See `resourceConfiguration` Block below.
|
|
109
|
+
*/
|
|
110
|
+
readonly resourceConfiguration: pulumi.Output<outputs.resiliencehub.V2InputSourceResourceConfiguration>;
|
|
111
|
+
/**
|
|
112
|
+
* ARN of the service this input source belongs to.
|
|
113
|
+
*
|
|
114
|
+
* The following arguments are optional:
|
|
115
|
+
*/
|
|
116
|
+
readonly serviceArn: pulumi.Output<string>;
|
|
117
|
+
/**
|
|
118
|
+
* Create a V2InputSource resource with the given unique name, arguments, and options.
|
|
119
|
+
*
|
|
120
|
+
* @param name The _unique_ name of the resource.
|
|
121
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
122
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
123
|
+
*/
|
|
124
|
+
constructor(name: string, args: V2InputSourceArgs, opts?: pulumi.CustomResourceOptions);
|
|
125
|
+
}
|
|
126
|
+
/**
|
|
127
|
+
* Input properties used for looking up and filtering V2InputSource resources.
|
|
128
|
+
*/
|
|
129
|
+
export interface V2InputSourceState {
|
|
130
|
+
/**
|
|
131
|
+
* Unique identifier of the input source.
|
|
132
|
+
*/
|
|
133
|
+
inputSourceId?: pulumi.Input<string | undefined>;
|
|
134
|
+
/**
|
|
135
|
+
* Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
136
|
+
*/
|
|
137
|
+
region?: pulumi.Input<string | undefined>;
|
|
138
|
+
/**
|
|
139
|
+
* Resource configuration for an input source. See `resourceConfiguration` Block below.
|
|
140
|
+
*/
|
|
141
|
+
resourceConfiguration?: pulumi.Input<inputs.resiliencehub.V2InputSourceResourceConfiguration | undefined>;
|
|
142
|
+
/**
|
|
143
|
+
* ARN of the service this input source belongs to.
|
|
144
|
+
*
|
|
145
|
+
* The following arguments are optional:
|
|
146
|
+
*/
|
|
147
|
+
serviceArn?: pulumi.Input<string | undefined>;
|
|
148
|
+
}
|
|
149
|
+
/**
|
|
150
|
+
* The set of arguments for constructing a V2InputSource resource.
|
|
151
|
+
*/
|
|
152
|
+
export interface V2InputSourceArgs {
|
|
153
|
+
/**
|
|
154
|
+
* Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
155
|
+
*/
|
|
156
|
+
region?: pulumi.Input<string | undefined>;
|
|
157
|
+
/**
|
|
158
|
+
* Resource configuration for an input source. See `resourceConfiguration` Block below.
|
|
159
|
+
*/
|
|
160
|
+
resourceConfiguration: pulumi.Input<inputs.resiliencehub.V2InputSourceResourceConfiguration>;
|
|
161
|
+
/**
|
|
162
|
+
* ARN of the service this input source belongs to.
|
|
163
|
+
*
|
|
164
|
+
* The following arguments are optional:
|
|
165
|
+
*/
|
|
166
|
+
serviceArn: pulumi.Input<string>;
|
|
167
|
+
}
|
|
168
|
+
//# sourceMappingURL=v2inputSource.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"v2inputSource.d.ts","sourceRoot":"","sources":["../../resiliencehub/v2inputSource.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AACzC,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AACzC,OAAO,KAAK,OAAO,MAAM,iBAAiB,CAAC;AAI3C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8EG;AACH,qBAAa,aAAc,SAAQ,MAAM,CAAC,cAAc;IACpD;;;;;;;;OAQG;WACW,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,EAAE,CAAC,EAAE,KAAK,CAAC,EAAE,kBAAkB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB,GAAG,aAAa;IAO5I;;;OAGG;WACW,UAAU,CAAC,GAAG,EAAE,GAAG,GAAG,GAAG,IAAI,aAAa;IAOxD;;OAEG;IACH,SAAgC,aAAa,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACrE;;OAEG;IACH,SAAwB,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACtD;;OAEG;IACH,SAAwB,qBAAqB,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,aAAa,CAAC,kCAAkC,CAAC,CAAC;IACvH;;;;OAIG;IACH,SAAwB,UAAU,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAE1D;;;;;;OAMG;gBACS,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,iBAAiB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB;CA0BzF;AAED;;GAEG;AACH,MAAM,WAAW,kBAAkB;IAC/B;;OAEG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACjD;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC1C;;OAEG;IACH,qBAAqB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,aAAa,CAAC,kCAAkC,GAAG,SAAS,CAAC,CAAC;IAC1G;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;CACjD;AAED;;GAEG;AACH,MAAM,WAAW,iBAAiB;IAC9B;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC1C;;OAEG;IACH,qBAAqB,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,aAAa,CAAC,kCAAkC,CAAC,CAAC;IAC7F;;;;OAIG;IACH,UAAU,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;CACpC"}
|