@cdk8s/awscdk-resolver 0.0.202 → 0.0.203

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 (31) hide show
  1. package/.jsii +3 -3
  2. package/lib/resolve.js +1 -1
  3. package/node_modules/@aws-sdk/client-cloudformation/README.md +8 -0
  4. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/index.js +151 -0
  5. package/node_modules/@aws-sdk/client-cloudformation/dist-es/CloudFormation.js +2 -0
  6. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListHookResultsCommand.js +22 -0
  7. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/index.js +1 -0
  8. package/node_modules/@aws-sdk/client-cloudformation/dist-es/models/models_0.js +19 -0
  9. package/node_modules/@aws-sdk/client-cloudformation/dist-es/protocols/Aws_query.js +110 -1
  10. package/node_modules/@aws-sdk/client-cloudformation/dist-types/CloudFormation.d.ts +7 -0
  11. package/node_modules/@aws-sdk/client-cloudformation/dist-types/CloudFormationClient.d.ts +3 -2
  12. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListHookResultsCommand.d.ts +89 -0
  13. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/RegisterTypeCommand.d.ts +1 -1
  14. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/RollbackStackCommand.d.ts +1 -1
  15. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/SetStackPolicyCommand.d.ts +1 -1
  16. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/index.d.ts +1 -0
  17. package/node_modules/@aws-sdk/client-cloudformation/dist-types/models/models_0.d.ts +131 -190
  18. package/node_modules/@aws-sdk/client-cloudformation/dist-types/models/models_1.d.ts +191 -1
  19. package/node_modules/@aws-sdk/client-cloudformation/dist-types/protocols/Aws_query.d.ts +9 -0
  20. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/CloudFormation.d.ts +17 -0
  21. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/CloudFormationClient.d.ts +6 -0
  22. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListHookResultsCommand.d.ts +50 -0
  23. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/RegisterTypeCommand.d.ts +1 -1
  24. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/RollbackStackCommand.d.ts +1 -1
  25. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/SetStackPolicyCommand.d.ts +1 -1
  26. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/index.d.ts +1 -0
  27. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/models/models_0.d.ts +36 -25
  28. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/models/models_1.d.ts +26 -0
  29. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/protocols/Aws_query.d.ts +12 -0
  30. package/node_modules/@aws-sdk/client-cloudformation/package.json +1 -1
  31. package/package.json +5 -5
@@ -49,6 +49,7 @@ import { ImportStacksToStackSetCommandInput, ImportStacksToStackSetCommandOutput
49
49
  import { ListChangeSetsCommandInput, ListChangeSetsCommandOutput } from "../commands/ListChangeSetsCommand";
50
50
  import { ListExportsCommandInput, ListExportsCommandOutput } from "../commands/ListExportsCommand";
51
51
  import { ListGeneratedTemplatesCommandInput, ListGeneratedTemplatesCommandOutput } from "../commands/ListGeneratedTemplatesCommand";
52
+ import { ListHookResultsCommandInput, ListHookResultsCommandOutput } from "../commands/ListHookResultsCommand";
52
53
  import { ListImportsCommandInput, ListImportsCommandOutput } from "../commands/ListImportsCommand";
53
54
  import { ListResourceScanRelatedResourcesCommandInput, ListResourceScanRelatedResourcesCommandOutput } from "../commands/ListResourceScanRelatedResourcesCommand";
54
55
  import { ListResourceScanResourcesCommandInput, ListResourceScanResourcesCommandOutput } from "../commands/ListResourceScanResourcesCommand";
@@ -278,6 +279,10 @@ export declare const se_ListExportsCommand: (input: ListExportsCommandInput, con
278
279
  * serializeAws_queryListGeneratedTemplatesCommand
279
280
  */
280
281
  export declare const se_ListGeneratedTemplatesCommand: (input: ListGeneratedTemplatesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
282
+ /**
283
+ * serializeAws_queryListHookResultsCommand
284
+ */
285
+ export declare const se_ListHookResultsCommand: (input: ListHookResultsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
281
286
  /**
282
287
  * serializeAws_queryListImportsCommand
283
288
  */
@@ -606,6 +611,10 @@ export declare const de_ListExportsCommand: (output: __HttpResponse, context: __
606
611
  * deserializeAws_queryListGeneratedTemplatesCommand
607
612
  */
608
613
  export declare const de_ListGeneratedTemplatesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListGeneratedTemplatesCommandOutput>;
614
+ /**
615
+ * deserializeAws_queryListHookResultsCommand
616
+ */
617
+ export declare const de_ListHookResultsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListHookResultsCommandOutput>;
609
618
  /**
610
619
  * deserializeAws_queryListImportsCommand
611
620
  */
@@ -196,6 +196,10 @@ import {
196
196
  ListGeneratedTemplatesCommandInput,
197
197
  ListGeneratedTemplatesCommandOutput,
198
198
  } from "./commands/ListGeneratedTemplatesCommand";
199
+ import {
200
+ ListHookResultsCommandInput,
201
+ ListHookResultsCommandOutput,
202
+ } from "./commands/ListHookResultsCommand";
199
203
  import {
200
204
  ListImportsCommandInput,
201
205
  ListImportsCommandOutput,
@@ -989,6 +993,19 @@ export interface CloudFormation {
989
993
  options: __HttpHandlerOptions,
990
994
  cb: (err: any, data?: ListGeneratedTemplatesCommandOutput) => void
991
995
  ): void;
996
+ listHookResults(
997
+ args: ListHookResultsCommandInput,
998
+ options?: __HttpHandlerOptions
999
+ ): Promise<ListHookResultsCommandOutput>;
1000
+ listHookResults(
1001
+ args: ListHookResultsCommandInput,
1002
+ cb: (err: any, data?: ListHookResultsCommandOutput) => void
1003
+ ): void;
1004
+ listHookResults(
1005
+ args: ListHookResultsCommandInput,
1006
+ options: __HttpHandlerOptions,
1007
+ cb: (err: any, data?: ListHookResultsCommandOutput) => void
1008
+ ): void;
992
1009
  listImports(
993
1010
  args: ListImportsCommandInput,
994
1011
  options?: __HttpHandlerOptions
@@ -241,6 +241,10 @@ import {
241
241
  ListGeneratedTemplatesCommandInput,
242
242
  ListGeneratedTemplatesCommandOutput,
243
243
  } from "./commands/ListGeneratedTemplatesCommand";
244
+ import {
245
+ ListHookResultsCommandInput,
246
+ ListHookResultsCommandOutput,
247
+ } from "./commands/ListHookResultsCommand";
244
248
  import {
245
249
  ListImportsCommandInput,
246
250
  ListImportsCommandOutput,
@@ -430,6 +434,7 @@ export type ServiceInputTypes =
430
434
  | ListChangeSetsCommandInput
431
435
  | ListExportsCommandInput
432
436
  | ListGeneratedTemplatesCommandInput
437
+ | ListHookResultsCommandInput
433
438
  | ListImportsCommandInput
434
439
  | ListResourceScanRelatedResourcesCommandInput
435
440
  | ListResourceScanResourcesCommandInput
@@ -513,6 +518,7 @@ export type ServiceOutputTypes =
513
518
  | ListChangeSetsCommandOutput
514
519
  | ListExportsCommandOutput
515
520
  | ListGeneratedTemplatesCommandOutput
521
+ | ListHookResultsCommandOutput
516
522
  | ListImportsCommandOutput
517
523
  | ListResourceScanRelatedResourcesCommandOutput
518
524
  | ListResourceScanResourcesCommandOutput
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CloudFormationClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CloudFormationClient";
8
+ import {
9
+ ListHookResultsInput,
10
+ ListHookResultsOutput,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListHookResultsCommandInput extends ListHookResultsInput {}
15
+ export interface ListHookResultsCommandOutput
16
+ extends ListHookResultsOutput,
17
+ __MetadataBearer {}
18
+ declare const ListHookResultsCommand_base: {
19
+ new (
20
+ input: ListHookResultsCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListHookResultsCommandInput,
23
+ ListHookResultsCommandOutput,
24
+ CloudFormationClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: ListHookResultsCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListHookResultsCommandInput,
32
+ ListHookResultsCommandOutput,
33
+ CloudFormationClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class ListHookResultsCommand extends ListHookResultsCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: ListHookResultsInput;
43
+ output: ListHookResultsOutput;
44
+ };
45
+ sdk: {
46
+ input: ListHookResultsCommandInput;
47
+ output: ListHookResultsCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -5,7 +5,7 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../CloudFormationClient";
8
- import { RegisterTypeInput, RegisterTypeOutput } from "../models/models_0";
8
+ import { RegisterTypeInput, RegisterTypeOutput } from "../models/models_1";
9
9
  export { __MetadataBearer };
10
10
  export { $Command };
11
11
  export interface RegisterTypeCommandInput extends RegisterTypeInput {}
@@ -5,7 +5,7 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../CloudFormationClient";
8
- import { RollbackStackInput, RollbackStackOutput } from "../models/models_0";
8
+ import { RollbackStackInput, RollbackStackOutput } from "../models/models_1";
9
9
  export { __MetadataBearer };
10
10
  export { $Command };
11
11
  export interface RollbackStackCommandInput extends RollbackStackInput {}
@@ -5,7 +5,7 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../CloudFormationClient";
8
- import { SetStackPolicyInput } from "../models/models_0";
8
+ import { SetStackPolicyInput } from "../models/models_1";
9
9
  export { __MetadataBearer };
10
10
  export { $Command };
11
11
  export interface SetStackPolicyCommandInput extends SetStackPolicyInput {}
@@ -47,6 +47,7 @@ export * from "./ImportStacksToStackSetCommand";
47
47
  export * from "./ListChangeSetsCommand";
48
48
  export * from "./ListExportsCommand";
49
49
  export * from "./ListGeneratedTemplatesCommand";
50
+ export * from "./ListHookResultsCommand";
50
51
  export * from "./ListImportsCommand";
51
52
  export * from "./ListResourceScanRelatedResourcesCommand";
52
53
  export * from "./ListResourceScanResourcesCommand";
@@ -1579,6 +1579,42 @@ export interface ListGeneratedTemplatesOutput {
1579
1579
  Summaries?: TemplateSummary[] | undefined;
1580
1580
  NextToken?: string | undefined;
1581
1581
  }
1582
+ export declare class HookResultNotFoundException extends __BaseException {
1583
+ readonly name: "HookResultNotFoundException";
1584
+ readonly $fault: "client";
1585
+ Message?: string | undefined;
1586
+ constructor(
1587
+ opts: __ExceptionOptionType<HookResultNotFoundException, __BaseException>
1588
+ );
1589
+ }
1590
+ export declare const ListHookResultsTargetType: {
1591
+ readonly CHANGE_SET: "CHANGE_SET";
1592
+ readonly CLOUD_CONTROL: "CLOUD_CONTROL";
1593
+ readonly RESOURCE: "RESOURCE";
1594
+ readonly STACK: "STACK";
1595
+ };
1596
+ export type ListHookResultsTargetType =
1597
+ (typeof ListHookResultsTargetType)[keyof typeof ListHookResultsTargetType];
1598
+ export interface ListHookResultsInput {
1599
+ TargetType: ListHookResultsTargetType | undefined;
1600
+ TargetId: string | undefined;
1601
+ NextToken?: string | undefined;
1602
+ }
1603
+ export interface HookResultSummary {
1604
+ InvocationPoint?: HookInvocationPoint | undefined;
1605
+ FailureMode?: HookFailureMode | undefined;
1606
+ TypeName?: string | undefined;
1607
+ TypeVersionId?: string | undefined;
1608
+ TypeConfigurationVersionId?: string | undefined;
1609
+ Status?: HookStatus | undefined;
1610
+ HookStatusReason?: string | undefined;
1611
+ }
1612
+ export interface ListHookResultsOutput {
1613
+ TargetType?: ListHookResultsTargetType | undefined;
1614
+ TargetId?: string | undefined;
1615
+ HookResults?: HookResultSummary[] | undefined;
1616
+ NextToken?: string | undefined;
1617
+ }
1582
1618
  export interface ListImportsInput {
1583
1619
  ExportName: string | undefined;
1584
1620
  NextToken?: string | undefined;
@@ -1996,28 +2032,3 @@ export interface RegisterPublisherInput {
1996
2032
  export interface RegisterPublisherOutput {
1997
2033
  PublisherId?: string | undefined;
1998
2034
  }
1999
- export interface RegisterTypeInput {
2000
- Type?: RegistryType | undefined;
2001
- TypeName: string | undefined;
2002
- SchemaHandlerPackage: string | undefined;
2003
- LoggingConfig?: LoggingConfig | undefined;
2004
- ExecutionRoleArn?: string | undefined;
2005
- ClientRequestToken?: string | undefined;
2006
- }
2007
- export interface RegisterTypeOutput {
2008
- RegistrationToken?: string | undefined;
2009
- }
2010
- export interface RollbackStackInput {
2011
- StackName: string | undefined;
2012
- RoleARN?: string | undefined;
2013
- ClientRequestToken?: string | undefined;
2014
- RetainExceptOnCreate?: boolean | undefined;
2015
- }
2016
- export interface RollbackStackOutput {
2017
- StackId?: string | undefined;
2018
- }
2019
- export interface SetStackPolicyInput {
2020
- StackName: string | undefined;
2021
- StackPolicyBody?: string | undefined;
2022
- StackPolicyURL?: string | undefined;
2023
- }
@@ -5,6 +5,7 @@ import {
5
5
  CallAs,
6
6
  Capability,
7
7
  DeploymentTargets,
8
+ LoggingConfig,
8
9
  ManagedExecution,
9
10
  Parameter,
10
11
  PermissionModels,
@@ -16,6 +17,31 @@ import {
16
17
  TemplateConfiguration,
17
18
  ThirdPartyType,
18
19
  } from "./models_0";
20
+ export interface RegisterTypeInput {
21
+ Type?: RegistryType | undefined;
22
+ TypeName: string | undefined;
23
+ SchemaHandlerPackage: string | undefined;
24
+ LoggingConfig?: LoggingConfig | undefined;
25
+ ExecutionRoleArn?: string | undefined;
26
+ ClientRequestToken?: string | undefined;
27
+ }
28
+ export interface RegisterTypeOutput {
29
+ RegistrationToken?: string | undefined;
30
+ }
31
+ export interface RollbackStackInput {
32
+ StackName: string | undefined;
33
+ RoleARN?: string | undefined;
34
+ ClientRequestToken?: string | undefined;
35
+ RetainExceptOnCreate?: boolean | undefined;
36
+ }
37
+ export interface RollbackStackOutput {
38
+ StackId?: string | undefined;
39
+ }
40
+ export interface SetStackPolicyInput {
41
+ StackName: string | undefined;
42
+ StackPolicyBody?: string | undefined;
43
+ StackPolicyURL?: string | undefined;
44
+ }
19
45
  export interface SetTypeConfigurationInput {
20
46
  TypeArn?: string | undefined;
21
47
  Configuration: string | undefined;
@@ -199,6 +199,10 @@ import {
199
199
  ListGeneratedTemplatesCommandInput,
200
200
  ListGeneratedTemplatesCommandOutput,
201
201
  } from "../commands/ListGeneratedTemplatesCommand";
202
+ import {
203
+ ListHookResultsCommandInput,
204
+ ListHookResultsCommandOutput,
205
+ } from "../commands/ListHookResultsCommand";
202
206
  import {
203
207
  ListImportsCommandInput,
204
208
  ListImportsCommandOutput,
@@ -527,6 +531,10 @@ export declare const se_ListGeneratedTemplatesCommand: (
527
531
  input: ListGeneratedTemplatesCommandInput,
528
532
  context: __SerdeContext
529
533
  ) => Promise<__HttpRequest>;
534
+ export declare const se_ListHookResultsCommand: (
535
+ input: ListHookResultsCommandInput,
536
+ context: __SerdeContext
537
+ ) => Promise<__HttpRequest>;
530
538
  export declare const se_ListImportsCommand: (
531
539
  input: ListImportsCommandInput,
532
540
  context: __SerdeContext
@@ -855,6 +863,10 @@ export declare const de_ListGeneratedTemplatesCommand: (
855
863
  output: __HttpResponse,
856
864
  context: __SerdeContext
857
865
  ) => Promise<ListGeneratedTemplatesCommandOutput>;
866
+ export declare const de_ListHookResultsCommand: (
867
+ output: __HttpResponse,
868
+ context: __SerdeContext
869
+ ) => Promise<ListHookResultsCommandOutput>;
858
870
  export declare const de_ListImportsCommand: (
859
871
  output: __HttpResponse,
860
872
  context: __SerdeContext
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-cloudformation",
3
3
  "description": "AWS SDK for JavaScript Cloudformation Client for Node.js, Browser and React Native",
4
- "version": "3.693.0",
4
+ "version": "3.695.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-cloudformation",
package/package.json CHANGED
@@ -42,7 +42,7 @@
42
42
  "organization": false
43
43
  },
44
44
  "devDependencies": {
45
- "@cdk8s/projen-common": "0.0.557",
45
+ "@cdk8s/projen-common": "0.0.558",
46
46
  "@stylistic/eslint-plugin": "^2",
47
47
  "@types/fs-extra": "^11.0.4",
48
48
  "@types/jest": "^27",
@@ -52,7 +52,7 @@
52
52
  "aws-cdk": "^2.167.1",
53
53
  "aws-cdk-lib": "2.109.0",
54
54
  "cdk8s": "2.68.91",
55
- "cdk8s-cli": "^2.198.265",
55
+ "cdk8s-cli": "^2.198.267",
56
56
  "commit-and-tag-version": "^12",
57
57
  "constructs": "10.3.0",
58
58
  "eslint": "^9",
@@ -66,7 +66,7 @@
66
66
  "jsii-docgen": "^10.5.0",
67
67
  "jsii-pacmak": "^1.105.0",
68
68
  "jsii-rosetta": "^5",
69
- "projen": "^0.90.2",
69
+ "projen": "^0.90.3",
70
70
  "ts-jest": "^27",
71
71
  "ts-node": "^10.9.2",
72
72
  "typescript": "^5.6.3"
@@ -77,7 +77,7 @@
77
77
  "constructs": "^10.3.0"
78
78
  },
79
79
  "dependencies": {
80
- "@aws-sdk/client-cloudformation": "^3.693.0"
80
+ "@aws-sdk/client-cloudformation": "^3.695.0"
81
81
  },
82
82
  "bundledDependencies": [
83
83
  "@aws-sdk/client-cloudformation"
@@ -93,7 +93,7 @@
93
93
  "publishConfig": {
94
94
  "access": "public"
95
95
  },
96
- "version": "0.0.202",
96
+ "version": "0.0.203",
97
97
  "jest": {
98
98
  "coverageProvider": "v8",
99
99
  "testMatch": [