@aws-sdk/client-appconfig 3.121.0 → 3.129.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 (82) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/README.md +24 -23
  3. package/dist-cjs/AppConfig.js +150 -0
  4. package/dist-cjs/commands/CreateExtensionAssociationCommand.js +36 -0
  5. package/dist-cjs/commands/CreateExtensionCommand.js +36 -0
  6. package/dist-cjs/commands/DeleteExtensionAssociationCommand.js +36 -0
  7. package/dist-cjs/commands/DeleteExtensionCommand.js +36 -0
  8. package/dist-cjs/commands/GetExtensionAssociationCommand.js +36 -0
  9. package/dist-cjs/commands/GetExtensionCommand.js +36 -0
  10. package/dist-cjs/commands/ListExtensionAssociationsCommand.js +36 -0
  11. package/dist-cjs/commands/ListExtensionsCommand.js +36 -0
  12. package/dist-cjs/commands/UpdateExtensionAssociationCommand.js +36 -0
  13. package/dist-cjs/commands/UpdateExtensionCommand.js +36 -0
  14. package/dist-cjs/commands/index.js +10 -0
  15. package/dist-cjs/endpoints.js +19 -2
  16. package/dist-cjs/models/models_0.js +146 -16
  17. package/dist-cjs/pagination/ListExtensionAssociationsPaginator.js +36 -0
  18. package/dist-cjs/pagination/ListExtensionsPaginator.js +36 -0
  19. package/dist-cjs/pagination/index.js +2 -0
  20. package/dist-cjs/protocols/Aws_restJson1.js +1162 -115
  21. package/dist-es/AppConfig.js +150 -0
  22. package/dist-es/commands/CreateExtensionAssociationCommand.js +39 -0
  23. package/dist-es/commands/CreateExtensionCommand.js +39 -0
  24. package/dist-es/commands/DeleteExtensionAssociationCommand.js +39 -0
  25. package/dist-es/commands/DeleteExtensionCommand.js +39 -0
  26. package/dist-es/commands/GetExtensionAssociationCommand.js +39 -0
  27. package/dist-es/commands/GetExtensionCommand.js +39 -0
  28. package/dist-es/commands/ListExtensionAssociationsCommand.js +39 -0
  29. package/dist-es/commands/ListExtensionsCommand.js +39 -0
  30. package/dist-es/commands/UpdateExtensionAssociationCommand.js +39 -0
  31. package/dist-es/commands/UpdateExtensionCommand.js +39 -0
  32. package/dist-es/commands/index.js +10 -0
  33. package/dist-es/endpoints.js +19 -2
  34. package/dist-es/models/models_0.js +103 -13
  35. package/dist-es/pagination/ListExtensionAssociationsPaginator.js +75 -0
  36. package/dist-es/pagination/ListExtensionsPaginator.js +75 -0
  37. package/dist-es/pagination/index.js +2 -0
  38. package/dist-es/protocols/Aws_restJson1.js +1507 -253
  39. package/dist-types/AppConfig.d.ts +159 -51
  40. package/dist-types/AppConfigClient.d.ts +36 -25
  41. package/dist-types/commands/CreateApplicationCommand.d.ts +5 -5
  42. package/dist-types/commands/CreateConfigurationProfileCommand.d.ts +5 -6
  43. package/dist-types/commands/CreateEnvironmentCommand.d.ts +1 -1
  44. package/dist-types/commands/CreateExtensionAssociationCommand.d.ts +47 -0
  45. package/dist-types/commands/CreateExtensionCommand.d.ts +43 -0
  46. package/dist-types/commands/CreateHostedConfigurationVersionCommand.d.ts +2 -1
  47. package/dist-types/commands/DeleteExtensionAssociationCommand.d.ts +36 -0
  48. package/dist-types/commands/DeleteExtensionCommand.d.ts +36 -0
  49. package/dist-types/commands/GetConfigurationCommand.d.ts +6 -5
  50. package/dist-types/commands/GetEnvironmentCommand.d.ts +6 -5
  51. package/dist-types/commands/GetExtensionAssociationCommand.d.ts +38 -0
  52. package/dist-types/commands/GetExtensionCommand.d.ts +35 -0
  53. package/dist-types/commands/ListExtensionAssociationsCommand.d.ts +38 -0
  54. package/dist-types/commands/ListExtensionsCommand.d.ts +38 -0
  55. package/dist-types/commands/TagResourceCommand.d.ts +3 -5
  56. package/dist-types/commands/UpdateExtensionAssociationCommand.d.ts +38 -0
  57. package/dist-types/commands/UpdateExtensionCommand.d.ts +38 -0
  58. package/dist-types/commands/index.d.ts +10 -0
  59. package/dist-types/models/models_0.d.ts +678 -98
  60. package/dist-types/pagination/ListExtensionAssociationsPaginator.d.ts +4 -0
  61. package/dist-types/pagination/ListExtensionsPaginator.d.ts +4 -0
  62. package/dist-types/pagination/index.d.ts +2 -0
  63. package/dist-types/protocols/Aws_restJson1.d.ts +30 -0
  64. package/dist-types/ts3.4/AppConfig.d.ts +50 -0
  65. package/dist-types/ts3.4/AppConfigClient.d.ts +12 -2
  66. package/dist-types/ts3.4/commands/CreateExtensionAssociationCommand.d.ts +17 -0
  67. package/dist-types/ts3.4/commands/CreateExtensionCommand.d.ts +17 -0
  68. package/dist-types/ts3.4/commands/DeleteExtensionAssociationCommand.d.ts +17 -0
  69. package/dist-types/ts3.4/commands/DeleteExtensionCommand.d.ts +17 -0
  70. package/dist-types/ts3.4/commands/GetExtensionAssociationCommand.d.ts +17 -0
  71. package/dist-types/ts3.4/commands/GetExtensionCommand.d.ts +17 -0
  72. package/dist-types/ts3.4/commands/ListExtensionAssociationsCommand.d.ts +17 -0
  73. package/dist-types/ts3.4/commands/ListExtensionsCommand.d.ts +17 -0
  74. package/dist-types/ts3.4/commands/UpdateExtensionAssociationCommand.d.ts +17 -0
  75. package/dist-types/ts3.4/commands/UpdateExtensionCommand.d.ts +17 -0
  76. package/dist-types/ts3.4/commands/index.d.ts +10 -0
  77. package/dist-types/ts3.4/models/models_0.d.ts +298 -9
  78. package/dist-types/ts3.4/pagination/ListExtensionAssociationsPaginator.d.ts +4 -0
  79. package/dist-types/ts3.4/pagination/ListExtensionsPaginator.d.ts +4 -0
  80. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  81. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +30 -0
  82. package/package.json +26 -26
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListExtensionAssociationsCommandInput, ListExtensionAssociationsCommandOutput } from "../commands/ListExtensionAssociationsCommand";
3
+ import { AppConfigPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListExtensionAssociations(config: AppConfigPaginationConfiguration, input: ListExtensionAssociationsCommandInput, ...additionalArguments: any): Paginator<ListExtensionAssociationsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListExtensionsCommandInput, ListExtensionsCommandOutput } from "../commands/ListExtensionsCommand";
3
+ import { AppConfigPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListExtensions(config: AppConfigPaginationConfiguration, input: ListExtensionsCommandInput, ...additionalArguments: any): Paginator<ListExtensionsCommandOutput>;
@@ -4,4 +4,6 @@ export * from "./ListConfigurationProfilesPaginator";
4
4
  export * from "./ListDeploymentStrategiesPaginator";
5
5
  export * from "./ListDeploymentsPaginator";
6
6
  export * from "./ListEnvironmentsPaginator";
7
+ export * from "./ListExtensionAssociationsPaginator";
8
+ export * from "./ListExtensionsPaginator";
7
9
  export * from "./ListHostedConfigurationVersionsPaginator";
@@ -4,11 +4,15 @@ import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from ".
4
4
  import { CreateConfigurationProfileCommandInput, CreateConfigurationProfileCommandOutput } from "../commands/CreateConfigurationProfileCommand";
5
5
  import { CreateDeploymentStrategyCommandInput, CreateDeploymentStrategyCommandOutput } from "../commands/CreateDeploymentStrategyCommand";
6
6
  import { CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput } from "../commands/CreateEnvironmentCommand";
7
+ import { CreateExtensionAssociationCommandInput, CreateExtensionAssociationCommandOutput } from "../commands/CreateExtensionAssociationCommand";
8
+ import { CreateExtensionCommandInput, CreateExtensionCommandOutput } from "../commands/CreateExtensionCommand";
7
9
  import { CreateHostedConfigurationVersionCommandInput, CreateHostedConfigurationVersionCommandOutput } from "../commands/CreateHostedConfigurationVersionCommand";
8
10
  import { DeleteApplicationCommandInput, DeleteApplicationCommandOutput } from "../commands/DeleteApplicationCommand";
9
11
  import { DeleteConfigurationProfileCommandInput, DeleteConfigurationProfileCommandOutput } from "../commands/DeleteConfigurationProfileCommand";
10
12
  import { DeleteDeploymentStrategyCommandInput, DeleteDeploymentStrategyCommandOutput } from "../commands/DeleteDeploymentStrategyCommand";
11
13
  import { DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput } from "../commands/DeleteEnvironmentCommand";
14
+ import { DeleteExtensionAssociationCommandInput, DeleteExtensionAssociationCommandOutput } from "../commands/DeleteExtensionAssociationCommand";
15
+ import { DeleteExtensionCommandInput, DeleteExtensionCommandOutput } from "../commands/DeleteExtensionCommand";
12
16
  import { DeleteHostedConfigurationVersionCommandInput, DeleteHostedConfigurationVersionCommandOutput } from "../commands/DeleteHostedConfigurationVersionCommand";
13
17
  import { GetApplicationCommandInput, GetApplicationCommandOutput } from "../commands/GetApplicationCommand";
14
18
  import { GetConfigurationCommandInput, GetConfigurationCommandOutput } from "../commands/GetConfigurationCommand";
@@ -16,12 +20,16 @@ import { GetConfigurationProfileCommandInput, GetConfigurationProfileCommandOutp
16
20
  import { GetDeploymentCommandInput, GetDeploymentCommandOutput } from "../commands/GetDeploymentCommand";
17
21
  import { GetDeploymentStrategyCommandInput, GetDeploymentStrategyCommandOutput } from "../commands/GetDeploymentStrategyCommand";
18
22
  import { GetEnvironmentCommandInput, GetEnvironmentCommandOutput } from "../commands/GetEnvironmentCommand";
23
+ import { GetExtensionAssociationCommandInput, GetExtensionAssociationCommandOutput } from "../commands/GetExtensionAssociationCommand";
24
+ import { GetExtensionCommandInput, GetExtensionCommandOutput } from "../commands/GetExtensionCommand";
19
25
  import { GetHostedConfigurationVersionCommandInput, GetHostedConfigurationVersionCommandOutput } from "../commands/GetHostedConfigurationVersionCommand";
20
26
  import { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "../commands/ListApplicationsCommand";
21
27
  import { ListConfigurationProfilesCommandInput, ListConfigurationProfilesCommandOutput } from "../commands/ListConfigurationProfilesCommand";
22
28
  import { ListDeploymentsCommandInput, ListDeploymentsCommandOutput } from "../commands/ListDeploymentsCommand";
23
29
  import { ListDeploymentStrategiesCommandInput, ListDeploymentStrategiesCommandOutput } from "../commands/ListDeploymentStrategiesCommand";
24
30
  import { ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput } from "../commands/ListEnvironmentsCommand";
31
+ import { ListExtensionAssociationsCommandInput, ListExtensionAssociationsCommandOutput } from "../commands/ListExtensionAssociationsCommand";
32
+ import { ListExtensionsCommandInput, ListExtensionsCommandOutput } from "../commands/ListExtensionsCommand";
25
33
  import { ListHostedConfigurationVersionsCommandInput, ListHostedConfigurationVersionsCommandOutput } from "../commands/ListHostedConfigurationVersionsCommand";
26
34
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
27
35
  import { StartDeploymentCommandInput, StartDeploymentCommandOutput } from "../commands/StartDeploymentCommand";
@@ -32,16 +40,22 @@ import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from ".
32
40
  import { UpdateConfigurationProfileCommandInput, UpdateConfigurationProfileCommandOutput } from "../commands/UpdateConfigurationProfileCommand";
33
41
  import { UpdateDeploymentStrategyCommandInput, UpdateDeploymentStrategyCommandOutput } from "../commands/UpdateDeploymentStrategyCommand";
34
42
  import { UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput } from "../commands/UpdateEnvironmentCommand";
43
+ import { UpdateExtensionAssociationCommandInput, UpdateExtensionAssociationCommandOutput } from "../commands/UpdateExtensionAssociationCommand";
44
+ import { UpdateExtensionCommandInput, UpdateExtensionCommandOutput } from "../commands/UpdateExtensionCommand";
35
45
  import { ValidateConfigurationCommandInput, ValidateConfigurationCommandOutput } from "../commands/ValidateConfigurationCommand";
36
46
  export declare const serializeAws_restJson1CreateApplicationCommand: (input: CreateApplicationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
47
  export declare const serializeAws_restJson1CreateConfigurationProfileCommand: (input: CreateConfigurationProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
48
  export declare const serializeAws_restJson1CreateDeploymentStrategyCommand: (input: CreateDeploymentStrategyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
49
  export declare const serializeAws_restJson1CreateEnvironmentCommand: (input: CreateEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
50
+ export declare const serializeAws_restJson1CreateExtensionCommand: (input: CreateExtensionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
51
+ export declare const serializeAws_restJson1CreateExtensionAssociationCommand: (input: CreateExtensionAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
52
  export declare const serializeAws_restJson1CreateHostedConfigurationVersionCommand: (input: CreateHostedConfigurationVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
53
  export declare const serializeAws_restJson1DeleteApplicationCommand: (input: DeleteApplicationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
54
  export declare const serializeAws_restJson1DeleteConfigurationProfileCommand: (input: DeleteConfigurationProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
55
  export declare const serializeAws_restJson1DeleteDeploymentStrategyCommand: (input: DeleteDeploymentStrategyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
44
56
  export declare const serializeAws_restJson1DeleteEnvironmentCommand: (input: DeleteEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
57
+ export declare const serializeAws_restJson1DeleteExtensionCommand: (input: DeleteExtensionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
58
+ export declare const serializeAws_restJson1DeleteExtensionAssociationCommand: (input: DeleteExtensionAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
45
59
  export declare const serializeAws_restJson1DeleteHostedConfigurationVersionCommand: (input: DeleteHostedConfigurationVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
46
60
  export declare const serializeAws_restJson1GetApplicationCommand: (input: GetApplicationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
61
  export declare const serializeAws_restJson1GetConfigurationCommand: (input: GetConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -49,12 +63,16 @@ export declare const serializeAws_restJson1GetConfigurationProfileCommand: (inpu
49
63
  export declare const serializeAws_restJson1GetDeploymentCommand: (input: GetDeploymentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
50
64
  export declare const serializeAws_restJson1GetDeploymentStrategyCommand: (input: GetDeploymentStrategyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
51
65
  export declare const serializeAws_restJson1GetEnvironmentCommand: (input: GetEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
66
+ export declare const serializeAws_restJson1GetExtensionCommand: (input: GetExtensionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
67
+ export declare const serializeAws_restJson1GetExtensionAssociationCommand: (input: GetExtensionAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
52
68
  export declare const serializeAws_restJson1GetHostedConfigurationVersionCommand: (input: GetHostedConfigurationVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
53
69
  export declare const serializeAws_restJson1ListApplicationsCommand: (input: ListApplicationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
54
70
  export declare const serializeAws_restJson1ListConfigurationProfilesCommand: (input: ListConfigurationProfilesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
55
71
  export declare const serializeAws_restJson1ListDeploymentsCommand: (input: ListDeploymentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
56
72
  export declare const serializeAws_restJson1ListDeploymentStrategiesCommand: (input: ListDeploymentStrategiesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
57
73
  export declare const serializeAws_restJson1ListEnvironmentsCommand: (input: ListEnvironmentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
74
+ export declare const serializeAws_restJson1ListExtensionAssociationsCommand: (input: ListExtensionAssociationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
75
+ export declare const serializeAws_restJson1ListExtensionsCommand: (input: ListExtensionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
58
76
  export declare const serializeAws_restJson1ListHostedConfigurationVersionsCommand: (input: ListHostedConfigurationVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
59
77
  export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
60
78
  export declare const serializeAws_restJson1StartDeploymentCommand: (input: StartDeploymentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -65,16 +83,22 @@ export declare const serializeAws_restJson1UpdateApplicationCommand: (input: Upd
65
83
  export declare const serializeAws_restJson1UpdateConfigurationProfileCommand: (input: UpdateConfigurationProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
66
84
  export declare const serializeAws_restJson1UpdateDeploymentStrategyCommand: (input: UpdateDeploymentStrategyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
67
85
  export declare const serializeAws_restJson1UpdateEnvironmentCommand: (input: UpdateEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
86
+ export declare const serializeAws_restJson1UpdateExtensionCommand: (input: UpdateExtensionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
87
+ export declare const serializeAws_restJson1UpdateExtensionAssociationCommand: (input: UpdateExtensionAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
68
88
  export declare const serializeAws_restJson1ValidateConfigurationCommand: (input: ValidateConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
69
89
  export declare const deserializeAws_restJson1CreateApplicationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateApplicationCommandOutput>;
70
90
  export declare const deserializeAws_restJson1CreateConfigurationProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateConfigurationProfileCommandOutput>;
71
91
  export declare const deserializeAws_restJson1CreateDeploymentStrategyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDeploymentStrategyCommandOutput>;
72
92
  export declare const deserializeAws_restJson1CreateEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEnvironmentCommandOutput>;
93
+ export declare const deserializeAws_restJson1CreateExtensionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateExtensionCommandOutput>;
94
+ export declare const deserializeAws_restJson1CreateExtensionAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateExtensionAssociationCommandOutput>;
73
95
  export declare const deserializeAws_restJson1CreateHostedConfigurationVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateHostedConfigurationVersionCommandOutput>;
74
96
  export declare const deserializeAws_restJson1DeleteApplicationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteApplicationCommandOutput>;
75
97
  export declare const deserializeAws_restJson1DeleteConfigurationProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteConfigurationProfileCommandOutput>;
76
98
  export declare const deserializeAws_restJson1DeleteDeploymentStrategyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDeploymentStrategyCommandOutput>;
77
99
  export declare const deserializeAws_restJson1DeleteEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEnvironmentCommandOutput>;
100
+ export declare const deserializeAws_restJson1DeleteExtensionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteExtensionCommandOutput>;
101
+ export declare const deserializeAws_restJson1DeleteExtensionAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteExtensionAssociationCommandOutput>;
78
102
  export declare const deserializeAws_restJson1DeleteHostedConfigurationVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteHostedConfigurationVersionCommandOutput>;
79
103
  export declare const deserializeAws_restJson1GetApplicationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetApplicationCommandOutput>;
80
104
  export declare const deserializeAws_restJson1GetConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetConfigurationCommandOutput>;
@@ -82,12 +106,16 @@ export declare const deserializeAws_restJson1GetConfigurationProfileCommand: (ou
82
106
  export declare const deserializeAws_restJson1GetDeploymentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDeploymentCommandOutput>;
83
107
  export declare const deserializeAws_restJson1GetDeploymentStrategyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDeploymentStrategyCommandOutput>;
84
108
  export declare const deserializeAws_restJson1GetEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEnvironmentCommandOutput>;
109
+ export declare const deserializeAws_restJson1GetExtensionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetExtensionCommandOutput>;
110
+ export declare const deserializeAws_restJson1GetExtensionAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetExtensionAssociationCommandOutput>;
85
111
  export declare const deserializeAws_restJson1GetHostedConfigurationVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetHostedConfigurationVersionCommandOutput>;
86
112
  export declare const deserializeAws_restJson1ListApplicationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListApplicationsCommandOutput>;
87
113
  export declare const deserializeAws_restJson1ListConfigurationProfilesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListConfigurationProfilesCommandOutput>;
88
114
  export declare const deserializeAws_restJson1ListDeploymentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDeploymentsCommandOutput>;
89
115
  export declare const deserializeAws_restJson1ListDeploymentStrategiesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDeploymentStrategiesCommandOutput>;
90
116
  export declare const deserializeAws_restJson1ListEnvironmentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEnvironmentsCommandOutput>;
117
+ export declare const deserializeAws_restJson1ListExtensionAssociationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListExtensionAssociationsCommandOutput>;
118
+ export declare const deserializeAws_restJson1ListExtensionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListExtensionsCommandOutput>;
91
119
  export declare const deserializeAws_restJson1ListHostedConfigurationVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListHostedConfigurationVersionsCommandOutput>;
92
120
  export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
93
121
  export declare const deserializeAws_restJson1StartDeploymentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartDeploymentCommandOutput>;
@@ -98,4 +126,6 @@ export declare const deserializeAws_restJson1UpdateApplicationCommand: (output:
98
126
  export declare const deserializeAws_restJson1UpdateConfigurationProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateConfigurationProfileCommandOutput>;
99
127
  export declare const deserializeAws_restJson1UpdateDeploymentStrategyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDeploymentStrategyCommandOutput>;
100
128
  export declare const deserializeAws_restJson1UpdateEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateEnvironmentCommandOutput>;
129
+ export declare const deserializeAws_restJson1UpdateExtensionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateExtensionCommandOutput>;
130
+ export declare const deserializeAws_restJson1UpdateExtensionAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateExtensionAssociationCommandOutput>;
101
131
  export declare const deserializeAws_restJson1ValidateConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ValidateConfigurationCommandOutput>;
@@ -4,11 +4,15 @@ import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from ".
4
4
  import { CreateConfigurationProfileCommandInput, CreateConfigurationProfileCommandOutput } from "./commands/CreateConfigurationProfileCommand";
5
5
  import { CreateDeploymentStrategyCommandInput, CreateDeploymentStrategyCommandOutput } from "./commands/CreateDeploymentStrategyCommand";
6
6
  import { CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput } from "./commands/CreateEnvironmentCommand";
7
+ import { CreateExtensionAssociationCommandInput, CreateExtensionAssociationCommandOutput } from "./commands/CreateExtensionAssociationCommand";
8
+ import { CreateExtensionCommandInput, CreateExtensionCommandOutput } from "./commands/CreateExtensionCommand";
7
9
  import { CreateHostedConfigurationVersionCommandInput, CreateHostedConfigurationVersionCommandOutput } from "./commands/CreateHostedConfigurationVersionCommand";
8
10
  import { DeleteApplicationCommandInput, DeleteApplicationCommandOutput } from "./commands/DeleteApplicationCommand";
9
11
  import { DeleteConfigurationProfileCommandInput, DeleteConfigurationProfileCommandOutput } from "./commands/DeleteConfigurationProfileCommand";
10
12
  import { DeleteDeploymentStrategyCommandInput, DeleteDeploymentStrategyCommandOutput } from "./commands/DeleteDeploymentStrategyCommand";
11
13
  import { DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput } from "./commands/DeleteEnvironmentCommand";
14
+ import { DeleteExtensionAssociationCommandInput, DeleteExtensionAssociationCommandOutput } from "./commands/DeleteExtensionAssociationCommand";
15
+ import { DeleteExtensionCommandInput, DeleteExtensionCommandOutput } from "./commands/DeleteExtensionCommand";
12
16
  import { DeleteHostedConfigurationVersionCommandInput, DeleteHostedConfigurationVersionCommandOutput } from "./commands/DeleteHostedConfigurationVersionCommand";
13
17
  import { GetApplicationCommandInput, GetApplicationCommandOutput } from "./commands/GetApplicationCommand";
14
18
  import { GetConfigurationCommandInput, GetConfigurationCommandOutput } from "./commands/GetConfigurationCommand";
@@ -16,12 +20,16 @@ import { GetConfigurationProfileCommandInput, GetConfigurationProfileCommandOutp
16
20
  import { GetDeploymentCommandInput, GetDeploymentCommandOutput } from "./commands/GetDeploymentCommand";
17
21
  import { GetDeploymentStrategyCommandInput, GetDeploymentStrategyCommandOutput } from "./commands/GetDeploymentStrategyCommand";
18
22
  import { GetEnvironmentCommandInput, GetEnvironmentCommandOutput } from "./commands/GetEnvironmentCommand";
23
+ import { GetExtensionAssociationCommandInput, GetExtensionAssociationCommandOutput } from "./commands/GetExtensionAssociationCommand";
24
+ import { GetExtensionCommandInput, GetExtensionCommandOutput } from "./commands/GetExtensionCommand";
19
25
  import { GetHostedConfigurationVersionCommandInput, GetHostedConfigurationVersionCommandOutput } from "./commands/GetHostedConfigurationVersionCommand";
20
26
  import { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "./commands/ListApplicationsCommand";
21
27
  import { ListConfigurationProfilesCommandInput, ListConfigurationProfilesCommandOutput } from "./commands/ListConfigurationProfilesCommand";
22
28
  import { ListDeploymentsCommandInput, ListDeploymentsCommandOutput } from "./commands/ListDeploymentsCommand";
23
29
  import { ListDeploymentStrategiesCommandInput, ListDeploymentStrategiesCommandOutput } from "./commands/ListDeploymentStrategiesCommand";
24
30
  import { ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput } from "./commands/ListEnvironmentsCommand";
31
+ import { ListExtensionAssociationsCommandInput, ListExtensionAssociationsCommandOutput } from "./commands/ListExtensionAssociationsCommand";
32
+ import { ListExtensionsCommandInput, ListExtensionsCommandOutput } from "./commands/ListExtensionsCommand";
25
33
  import { ListHostedConfigurationVersionsCommandInput, ListHostedConfigurationVersionsCommandOutput } from "./commands/ListHostedConfigurationVersionsCommand";
26
34
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
27
35
  import { StartDeploymentCommandInput, StartDeploymentCommandOutput } from "./commands/StartDeploymentCommand";
@@ -32,6 +40,8 @@ import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from ".
32
40
  import { UpdateConfigurationProfileCommandInput, UpdateConfigurationProfileCommandOutput } from "./commands/UpdateConfigurationProfileCommand";
33
41
  import { UpdateDeploymentStrategyCommandInput, UpdateDeploymentStrategyCommandOutput } from "./commands/UpdateDeploymentStrategyCommand";
34
42
  import { UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput } from "./commands/UpdateEnvironmentCommand";
43
+ import { UpdateExtensionAssociationCommandInput, UpdateExtensionAssociationCommandOutput } from "./commands/UpdateExtensionAssociationCommand";
44
+ import { UpdateExtensionCommandInput, UpdateExtensionCommandOutput } from "./commands/UpdateExtensionCommand";
35
45
  import { ValidateConfigurationCommandInput, ValidateConfigurationCommandOutput } from "./commands/ValidateConfigurationCommand";
36
46
 
37
47
  export declare class AppConfig extends AppConfigClient {
@@ -52,6 +62,14 @@ export declare class AppConfig extends AppConfigClient {
52
62
  createEnvironment(args: CreateEnvironmentCommandInput, cb: (err: any, data?: CreateEnvironmentCommandOutput) => void): void;
53
63
  createEnvironment(args: CreateEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEnvironmentCommandOutput) => void): void;
54
64
 
65
+ createExtension(args: CreateExtensionCommandInput, options?: __HttpHandlerOptions): Promise<CreateExtensionCommandOutput>;
66
+ createExtension(args: CreateExtensionCommandInput, cb: (err: any, data?: CreateExtensionCommandOutput) => void): void;
67
+ createExtension(args: CreateExtensionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateExtensionCommandOutput) => void): void;
68
+
69
+ createExtensionAssociation(args: CreateExtensionAssociationCommandInput, options?: __HttpHandlerOptions): Promise<CreateExtensionAssociationCommandOutput>;
70
+ createExtensionAssociation(args: CreateExtensionAssociationCommandInput, cb: (err: any, data?: CreateExtensionAssociationCommandOutput) => void): void;
71
+ createExtensionAssociation(args: CreateExtensionAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateExtensionAssociationCommandOutput) => void): void;
72
+
55
73
  createHostedConfigurationVersion(args: CreateHostedConfigurationVersionCommandInput, options?: __HttpHandlerOptions): Promise<CreateHostedConfigurationVersionCommandOutput>;
56
74
  createHostedConfigurationVersion(args: CreateHostedConfigurationVersionCommandInput, cb: (err: any, data?: CreateHostedConfigurationVersionCommandOutput) => void): void;
57
75
  createHostedConfigurationVersion(args: CreateHostedConfigurationVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateHostedConfigurationVersionCommandOutput) => void): void;
@@ -72,6 +90,14 @@ export declare class AppConfig extends AppConfigClient {
72
90
  deleteEnvironment(args: DeleteEnvironmentCommandInput, cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void): void;
73
91
  deleteEnvironment(args: DeleteEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void): void;
74
92
 
93
+ deleteExtension(args: DeleteExtensionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteExtensionCommandOutput>;
94
+ deleteExtension(args: DeleteExtensionCommandInput, cb: (err: any, data?: DeleteExtensionCommandOutput) => void): void;
95
+ deleteExtension(args: DeleteExtensionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteExtensionCommandOutput) => void): void;
96
+
97
+ deleteExtensionAssociation(args: DeleteExtensionAssociationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteExtensionAssociationCommandOutput>;
98
+ deleteExtensionAssociation(args: DeleteExtensionAssociationCommandInput, cb: (err: any, data?: DeleteExtensionAssociationCommandOutput) => void): void;
99
+ deleteExtensionAssociation(args: DeleteExtensionAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteExtensionAssociationCommandOutput) => void): void;
100
+
75
101
  deleteHostedConfigurationVersion(args: DeleteHostedConfigurationVersionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteHostedConfigurationVersionCommandOutput>;
76
102
  deleteHostedConfigurationVersion(args: DeleteHostedConfigurationVersionCommandInput, cb: (err: any, data?: DeleteHostedConfigurationVersionCommandOutput) => void): void;
77
103
  deleteHostedConfigurationVersion(args: DeleteHostedConfigurationVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteHostedConfigurationVersionCommandOutput) => void): void;
@@ -100,6 +126,14 @@ export declare class AppConfig extends AppConfigClient {
100
126
  getEnvironment(args: GetEnvironmentCommandInput, cb: (err: any, data?: GetEnvironmentCommandOutput) => void): void;
101
127
  getEnvironment(args: GetEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEnvironmentCommandOutput) => void): void;
102
128
 
129
+ getExtension(args: GetExtensionCommandInput, options?: __HttpHandlerOptions): Promise<GetExtensionCommandOutput>;
130
+ getExtension(args: GetExtensionCommandInput, cb: (err: any, data?: GetExtensionCommandOutput) => void): void;
131
+ getExtension(args: GetExtensionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetExtensionCommandOutput) => void): void;
132
+
133
+ getExtensionAssociation(args: GetExtensionAssociationCommandInput, options?: __HttpHandlerOptions): Promise<GetExtensionAssociationCommandOutput>;
134
+ getExtensionAssociation(args: GetExtensionAssociationCommandInput, cb: (err: any, data?: GetExtensionAssociationCommandOutput) => void): void;
135
+ getExtensionAssociation(args: GetExtensionAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetExtensionAssociationCommandOutput) => void): void;
136
+
103
137
  getHostedConfigurationVersion(args: GetHostedConfigurationVersionCommandInput, options?: __HttpHandlerOptions): Promise<GetHostedConfigurationVersionCommandOutput>;
104
138
  getHostedConfigurationVersion(args: GetHostedConfigurationVersionCommandInput, cb: (err: any, data?: GetHostedConfigurationVersionCommandOutput) => void): void;
105
139
  getHostedConfigurationVersion(args: GetHostedConfigurationVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetHostedConfigurationVersionCommandOutput) => void): void;
@@ -124,6 +158,14 @@ export declare class AppConfig extends AppConfigClient {
124
158
  listEnvironments(args: ListEnvironmentsCommandInput, cb: (err: any, data?: ListEnvironmentsCommandOutput) => void): void;
125
159
  listEnvironments(args: ListEnvironmentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEnvironmentsCommandOutput) => void): void;
126
160
 
161
+ listExtensionAssociations(args: ListExtensionAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<ListExtensionAssociationsCommandOutput>;
162
+ listExtensionAssociations(args: ListExtensionAssociationsCommandInput, cb: (err: any, data?: ListExtensionAssociationsCommandOutput) => void): void;
163
+ listExtensionAssociations(args: ListExtensionAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListExtensionAssociationsCommandOutput) => void): void;
164
+
165
+ listExtensions(args: ListExtensionsCommandInput, options?: __HttpHandlerOptions): Promise<ListExtensionsCommandOutput>;
166
+ listExtensions(args: ListExtensionsCommandInput, cb: (err: any, data?: ListExtensionsCommandOutput) => void): void;
167
+ listExtensions(args: ListExtensionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListExtensionsCommandOutput) => void): void;
168
+
127
169
  listHostedConfigurationVersions(args: ListHostedConfigurationVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListHostedConfigurationVersionsCommandOutput>;
128
170
  listHostedConfigurationVersions(args: ListHostedConfigurationVersionsCommandInput, cb: (err: any, data?: ListHostedConfigurationVersionsCommandOutput) => void): void;
129
171
  listHostedConfigurationVersions(args: ListHostedConfigurationVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListHostedConfigurationVersionsCommandOutput) => void): void;
@@ -164,6 +206,14 @@ export declare class AppConfig extends AppConfigClient {
164
206
  updateEnvironment(args: UpdateEnvironmentCommandInput, cb: (err: any, data?: UpdateEnvironmentCommandOutput) => void): void;
165
207
  updateEnvironment(args: UpdateEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEnvironmentCommandOutput) => void): void;
166
208
 
209
+ updateExtension(args: UpdateExtensionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateExtensionCommandOutput>;
210
+ updateExtension(args: UpdateExtensionCommandInput, cb: (err: any, data?: UpdateExtensionCommandOutput) => void): void;
211
+ updateExtension(args: UpdateExtensionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateExtensionCommandOutput) => void): void;
212
+
213
+ updateExtensionAssociation(args: UpdateExtensionAssociationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateExtensionAssociationCommandOutput>;
214
+ updateExtensionAssociation(args: UpdateExtensionAssociationCommandInput, cb: (err: any, data?: UpdateExtensionAssociationCommandOutput) => void): void;
215
+ updateExtensionAssociation(args: UpdateExtensionAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateExtensionAssociationCommandOutput) => void): void;
216
+
167
217
  validateConfiguration(args: ValidateConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<ValidateConfigurationCommandOutput>;
168
218
  validateConfiguration(args: ValidateConfigurationCommandInput, cb: (err: any, data?: ValidateConfigurationCommandOutput) => void): void;
169
219
  validateConfiguration(args: ValidateConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ValidateConfigurationCommandOutput) => void): void;
@@ -10,11 +10,15 @@ import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from ".
10
10
  import { CreateConfigurationProfileCommandInput, CreateConfigurationProfileCommandOutput } from "./commands/CreateConfigurationProfileCommand";
11
11
  import { CreateDeploymentStrategyCommandInput, CreateDeploymentStrategyCommandOutput } from "./commands/CreateDeploymentStrategyCommand";
12
12
  import { CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput } from "./commands/CreateEnvironmentCommand";
13
+ import { CreateExtensionAssociationCommandInput, CreateExtensionAssociationCommandOutput } from "./commands/CreateExtensionAssociationCommand";
14
+ import { CreateExtensionCommandInput, CreateExtensionCommandOutput } from "./commands/CreateExtensionCommand";
13
15
  import { CreateHostedConfigurationVersionCommandInput, CreateHostedConfigurationVersionCommandOutput } from "./commands/CreateHostedConfigurationVersionCommand";
14
16
  import { DeleteApplicationCommandInput, DeleteApplicationCommandOutput } from "./commands/DeleteApplicationCommand";
15
17
  import { DeleteConfigurationProfileCommandInput, DeleteConfigurationProfileCommandOutput } from "./commands/DeleteConfigurationProfileCommand";
16
18
  import { DeleteDeploymentStrategyCommandInput, DeleteDeploymentStrategyCommandOutput } from "./commands/DeleteDeploymentStrategyCommand";
17
19
  import { DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput } from "./commands/DeleteEnvironmentCommand";
20
+ import { DeleteExtensionAssociationCommandInput, DeleteExtensionAssociationCommandOutput } from "./commands/DeleteExtensionAssociationCommand";
21
+ import { DeleteExtensionCommandInput, DeleteExtensionCommandOutput } from "./commands/DeleteExtensionCommand";
18
22
  import { DeleteHostedConfigurationVersionCommandInput, DeleteHostedConfigurationVersionCommandOutput } from "./commands/DeleteHostedConfigurationVersionCommand";
19
23
  import { GetApplicationCommandInput, GetApplicationCommandOutput } from "./commands/GetApplicationCommand";
20
24
  import { GetConfigurationCommandInput, GetConfigurationCommandOutput } from "./commands/GetConfigurationCommand";
@@ -22,12 +26,16 @@ import { GetConfigurationProfileCommandInput, GetConfigurationProfileCommandOutp
22
26
  import { GetDeploymentCommandInput, GetDeploymentCommandOutput } from "./commands/GetDeploymentCommand";
23
27
  import { GetDeploymentStrategyCommandInput, GetDeploymentStrategyCommandOutput } from "./commands/GetDeploymentStrategyCommand";
24
28
  import { GetEnvironmentCommandInput, GetEnvironmentCommandOutput } from "./commands/GetEnvironmentCommand";
29
+ import { GetExtensionAssociationCommandInput, GetExtensionAssociationCommandOutput } from "./commands/GetExtensionAssociationCommand";
30
+ import { GetExtensionCommandInput, GetExtensionCommandOutput } from "./commands/GetExtensionCommand";
25
31
  import { GetHostedConfigurationVersionCommandInput, GetHostedConfigurationVersionCommandOutput } from "./commands/GetHostedConfigurationVersionCommand";
26
32
  import { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "./commands/ListApplicationsCommand";
27
33
  import { ListConfigurationProfilesCommandInput, ListConfigurationProfilesCommandOutput } from "./commands/ListConfigurationProfilesCommand";
28
34
  import { ListDeploymentsCommandInput, ListDeploymentsCommandOutput } from "./commands/ListDeploymentsCommand";
29
35
  import { ListDeploymentStrategiesCommandInput, ListDeploymentStrategiesCommandOutput } from "./commands/ListDeploymentStrategiesCommand";
30
36
  import { ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput } from "./commands/ListEnvironmentsCommand";
37
+ import { ListExtensionAssociationsCommandInput, ListExtensionAssociationsCommandOutput } from "./commands/ListExtensionAssociationsCommand";
38
+ import { ListExtensionsCommandInput, ListExtensionsCommandOutput } from "./commands/ListExtensionsCommand";
31
39
  import { ListHostedConfigurationVersionsCommandInput, ListHostedConfigurationVersionsCommandOutput } from "./commands/ListHostedConfigurationVersionsCommand";
32
40
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
33
41
  import { StartDeploymentCommandInput, StartDeploymentCommandOutput } from "./commands/StartDeploymentCommand";
@@ -38,9 +46,11 @@ import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from ".
38
46
  import { UpdateConfigurationProfileCommandInput, UpdateConfigurationProfileCommandOutput } from "./commands/UpdateConfigurationProfileCommand";
39
47
  import { UpdateDeploymentStrategyCommandInput, UpdateDeploymentStrategyCommandOutput } from "./commands/UpdateDeploymentStrategyCommand";
40
48
  import { UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput } from "./commands/UpdateEnvironmentCommand";
49
+ import { UpdateExtensionAssociationCommandInput, UpdateExtensionAssociationCommandOutput } from "./commands/UpdateExtensionAssociationCommand";
50
+ import { UpdateExtensionCommandInput, UpdateExtensionCommandOutput } from "./commands/UpdateExtensionCommand";
41
51
  import { ValidateConfigurationCommandInput, ValidateConfigurationCommandOutput } from "./commands/ValidateConfigurationCommand";
42
- export declare type ServiceInputTypes = CreateApplicationCommandInput | CreateConfigurationProfileCommandInput | CreateDeploymentStrategyCommandInput | CreateEnvironmentCommandInput | CreateHostedConfigurationVersionCommandInput | DeleteApplicationCommandInput | DeleteConfigurationProfileCommandInput | DeleteDeploymentStrategyCommandInput | DeleteEnvironmentCommandInput | DeleteHostedConfigurationVersionCommandInput | GetApplicationCommandInput | GetConfigurationCommandInput | GetConfigurationProfileCommandInput | GetDeploymentCommandInput | GetDeploymentStrategyCommandInput | GetEnvironmentCommandInput | GetHostedConfigurationVersionCommandInput | ListApplicationsCommandInput | ListConfigurationProfilesCommandInput | ListDeploymentStrategiesCommandInput | ListDeploymentsCommandInput | ListEnvironmentsCommandInput | ListHostedConfigurationVersionsCommandInput | ListTagsForResourceCommandInput | StartDeploymentCommandInput | StopDeploymentCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateApplicationCommandInput | UpdateConfigurationProfileCommandInput | UpdateDeploymentStrategyCommandInput | UpdateEnvironmentCommandInput | ValidateConfigurationCommandInput;
43
- export declare type ServiceOutputTypes = CreateApplicationCommandOutput | CreateConfigurationProfileCommandOutput | CreateDeploymentStrategyCommandOutput | CreateEnvironmentCommandOutput | CreateHostedConfigurationVersionCommandOutput | DeleteApplicationCommandOutput | DeleteConfigurationProfileCommandOutput | DeleteDeploymentStrategyCommandOutput | DeleteEnvironmentCommandOutput | DeleteHostedConfigurationVersionCommandOutput | GetApplicationCommandOutput | GetConfigurationCommandOutput | GetConfigurationProfileCommandOutput | GetDeploymentCommandOutput | GetDeploymentStrategyCommandOutput | GetEnvironmentCommandOutput | GetHostedConfigurationVersionCommandOutput | ListApplicationsCommandOutput | ListConfigurationProfilesCommandOutput | ListDeploymentStrategiesCommandOutput | ListDeploymentsCommandOutput | ListEnvironmentsCommandOutput | ListHostedConfigurationVersionsCommandOutput | ListTagsForResourceCommandOutput | StartDeploymentCommandOutput | StopDeploymentCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateApplicationCommandOutput | UpdateConfigurationProfileCommandOutput | UpdateDeploymentStrategyCommandOutput | UpdateEnvironmentCommandOutput | ValidateConfigurationCommandOutput;
52
+ export declare type ServiceInputTypes = CreateApplicationCommandInput | CreateConfigurationProfileCommandInput | CreateDeploymentStrategyCommandInput | CreateEnvironmentCommandInput | CreateExtensionAssociationCommandInput | CreateExtensionCommandInput | CreateHostedConfigurationVersionCommandInput | DeleteApplicationCommandInput | DeleteConfigurationProfileCommandInput | DeleteDeploymentStrategyCommandInput | DeleteEnvironmentCommandInput | DeleteExtensionAssociationCommandInput | DeleteExtensionCommandInput | DeleteHostedConfigurationVersionCommandInput | GetApplicationCommandInput | GetConfigurationCommandInput | GetConfigurationProfileCommandInput | GetDeploymentCommandInput | GetDeploymentStrategyCommandInput | GetEnvironmentCommandInput | GetExtensionAssociationCommandInput | GetExtensionCommandInput | GetHostedConfigurationVersionCommandInput | ListApplicationsCommandInput | ListConfigurationProfilesCommandInput | ListDeploymentStrategiesCommandInput | ListDeploymentsCommandInput | ListEnvironmentsCommandInput | ListExtensionAssociationsCommandInput | ListExtensionsCommandInput | ListHostedConfigurationVersionsCommandInput | ListTagsForResourceCommandInput | StartDeploymentCommandInput | StopDeploymentCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateApplicationCommandInput | UpdateConfigurationProfileCommandInput | UpdateDeploymentStrategyCommandInput | UpdateEnvironmentCommandInput | UpdateExtensionAssociationCommandInput | UpdateExtensionCommandInput | ValidateConfigurationCommandInput;
53
+ export declare type ServiceOutputTypes = CreateApplicationCommandOutput | CreateConfigurationProfileCommandOutput | CreateDeploymentStrategyCommandOutput | CreateEnvironmentCommandOutput | CreateExtensionAssociationCommandOutput | CreateExtensionCommandOutput | CreateHostedConfigurationVersionCommandOutput | DeleteApplicationCommandOutput | DeleteConfigurationProfileCommandOutput | DeleteDeploymentStrategyCommandOutput | DeleteEnvironmentCommandOutput | DeleteExtensionAssociationCommandOutput | DeleteExtensionCommandOutput | DeleteHostedConfigurationVersionCommandOutput | GetApplicationCommandOutput | GetConfigurationCommandOutput | GetConfigurationProfileCommandOutput | GetDeploymentCommandOutput | GetDeploymentStrategyCommandOutput | GetEnvironmentCommandOutput | GetExtensionAssociationCommandOutput | GetExtensionCommandOutput | GetHostedConfigurationVersionCommandOutput | ListApplicationsCommandOutput | ListConfigurationProfilesCommandOutput | ListDeploymentStrategiesCommandOutput | ListDeploymentsCommandOutput | ListEnvironmentsCommandOutput | ListExtensionAssociationsCommandOutput | ListExtensionsCommandOutput | ListHostedConfigurationVersionsCommandOutput | ListTagsForResourceCommandOutput | StartDeploymentCommandOutput | StopDeploymentCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateApplicationCommandOutput | UpdateConfigurationProfileCommandOutput | UpdateDeploymentStrategyCommandOutput | UpdateEnvironmentCommandOutput | UpdateExtensionAssociationCommandOutput | UpdateExtensionCommandOutput | ValidateConfigurationCommandOutput;
44
54
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
45
55
 
46
56
  requestHandler?: __HttpHandler;
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
4
+ import { CreateExtensionAssociationRequest, ExtensionAssociation } from "../models/models_0";
5
+ export interface CreateExtensionAssociationCommandInput extends CreateExtensionAssociationRequest {
6
+ }
7
+ export interface CreateExtensionAssociationCommandOutput extends ExtensionAssociation, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateExtensionAssociationCommand extends $Command<CreateExtensionAssociationCommandInput, CreateExtensionAssociationCommandOutput, AppConfigClientResolvedConfig> {
11
+ readonly input: CreateExtensionAssociationCommandInput;
12
+ constructor(input: CreateExtensionAssociationCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateExtensionAssociationCommandInput, CreateExtensionAssociationCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
4
+ import { CreateExtensionRequest, Extension } from "../models/models_0";
5
+ export interface CreateExtensionCommandInput extends CreateExtensionRequest {
6
+ }
7
+ export interface CreateExtensionCommandOutput extends Extension, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateExtensionCommand extends $Command<CreateExtensionCommandInput, CreateExtensionCommandOutput, AppConfigClientResolvedConfig> {
11
+ readonly input: CreateExtensionCommandInput;
12
+ constructor(input: CreateExtensionCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateExtensionCommandInput, CreateExtensionCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
4
+ import { DeleteExtensionAssociationRequest } from "../models/models_0";
5
+ export interface DeleteExtensionAssociationCommandInput extends DeleteExtensionAssociationRequest {
6
+ }
7
+ export interface DeleteExtensionAssociationCommandOutput extends __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteExtensionAssociationCommand extends $Command<DeleteExtensionAssociationCommandInput, DeleteExtensionAssociationCommandOutput, AppConfigClientResolvedConfig> {
11
+ readonly input: DeleteExtensionAssociationCommandInput;
12
+ constructor(input: DeleteExtensionAssociationCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteExtensionAssociationCommandInput, DeleteExtensionAssociationCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
4
+ import { DeleteExtensionRequest } from "../models/models_0";
5
+ export interface DeleteExtensionCommandInput extends DeleteExtensionRequest {
6
+ }
7
+ export interface DeleteExtensionCommandOutput extends __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteExtensionCommand extends $Command<DeleteExtensionCommandInput, DeleteExtensionCommandOutput, AppConfigClientResolvedConfig> {
11
+ readonly input: DeleteExtensionCommandInput;
12
+ constructor(input: DeleteExtensionCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteExtensionCommandInput, DeleteExtensionCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
4
+ import { ExtensionAssociation, GetExtensionAssociationRequest } from "../models/models_0";
5
+ export interface GetExtensionAssociationCommandInput extends GetExtensionAssociationRequest {
6
+ }
7
+ export interface GetExtensionAssociationCommandOutput extends ExtensionAssociation, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetExtensionAssociationCommand extends $Command<GetExtensionAssociationCommandInput, GetExtensionAssociationCommandOutput, AppConfigClientResolvedConfig> {
11
+ readonly input: GetExtensionAssociationCommandInput;
12
+ constructor(input: GetExtensionAssociationCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetExtensionAssociationCommandInput, GetExtensionAssociationCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
4
+ import { Extension, GetExtensionRequest } from "../models/models_0";
5
+ export interface GetExtensionCommandInput extends GetExtensionRequest {
6
+ }
7
+ export interface GetExtensionCommandOutput extends Extension, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetExtensionCommand extends $Command<GetExtensionCommandInput, GetExtensionCommandOutput, AppConfigClientResolvedConfig> {
11
+ readonly input: GetExtensionCommandInput;
12
+ constructor(input: GetExtensionCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetExtensionCommandInput, GetExtensionCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
4
+ import { ExtensionAssociations, ListExtensionAssociationsRequest } from "../models/models_0";
5
+ export interface ListExtensionAssociationsCommandInput extends ListExtensionAssociationsRequest {
6
+ }
7
+ export interface ListExtensionAssociationsCommandOutput extends ExtensionAssociations, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListExtensionAssociationsCommand extends $Command<ListExtensionAssociationsCommandInput, ListExtensionAssociationsCommandOutput, AppConfigClientResolvedConfig> {
11
+ readonly input: ListExtensionAssociationsCommandInput;
12
+ constructor(input: ListExtensionAssociationsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListExtensionAssociationsCommandInput, ListExtensionAssociationsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
4
+ import { Extensions, ListExtensionsRequest } from "../models/models_0";
5
+ export interface ListExtensionsCommandInput extends ListExtensionsRequest {
6
+ }
7
+ export interface ListExtensionsCommandOutput extends Extensions, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListExtensionsCommand extends $Command<ListExtensionsCommandInput, ListExtensionsCommandOutput, AppConfigClientResolvedConfig> {
11
+ readonly input: ListExtensionsCommandInput;
12
+ constructor(input: ListExtensionsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListExtensionsCommandInput, ListExtensionsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
4
+ import { ExtensionAssociation, UpdateExtensionAssociationRequest } from "../models/models_0";
5
+ export interface UpdateExtensionAssociationCommandInput extends UpdateExtensionAssociationRequest {
6
+ }
7
+ export interface UpdateExtensionAssociationCommandOutput extends ExtensionAssociation, __MetadataBearer {
8
+ }
9
+
10
+ export declare class UpdateExtensionAssociationCommand extends $Command<UpdateExtensionAssociationCommandInput, UpdateExtensionAssociationCommandOutput, AppConfigClientResolvedConfig> {
11
+ readonly input: UpdateExtensionAssociationCommandInput;
12
+ constructor(input: UpdateExtensionAssociationCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateExtensionAssociationCommandInput, UpdateExtensionAssociationCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
4
+ import { Extension, UpdateExtensionRequest } from "../models/models_0";
5
+ export interface UpdateExtensionCommandInput extends UpdateExtensionRequest {
6
+ }
7
+ export interface UpdateExtensionCommandOutput extends Extension, __MetadataBearer {
8
+ }
9
+
10
+ export declare class UpdateExtensionCommand extends $Command<UpdateExtensionCommandInput, UpdateExtensionCommandOutput, AppConfigClientResolvedConfig> {
11
+ readonly input: UpdateExtensionCommandInput;
12
+ constructor(input: UpdateExtensionCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateExtensionCommandInput, UpdateExtensionCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -2,11 +2,15 @@ export * from "./CreateApplicationCommand";
2
2
  export * from "./CreateConfigurationProfileCommand";
3
3
  export * from "./CreateDeploymentStrategyCommand";
4
4
  export * from "./CreateEnvironmentCommand";
5
+ export * from "./CreateExtensionAssociationCommand";
6
+ export * from "./CreateExtensionCommand";
5
7
  export * from "./CreateHostedConfigurationVersionCommand";
6
8
  export * from "./DeleteApplicationCommand";
7
9
  export * from "./DeleteConfigurationProfileCommand";
8
10
  export * from "./DeleteDeploymentStrategyCommand";
9
11
  export * from "./DeleteEnvironmentCommand";
12
+ export * from "./DeleteExtensionAssociationCommand";
13
+ export * from "./DeleteExtensionCommand";
10
14
  export * from "./DeleteHostedConfigurationVersionCommand";
11
15
  export * from "./GetApplicationCommand";
12
16
  export * from "./GetConfigurationCommand";
@@ -14,12 +18,16 @@ export * from "./GetConfigurationProfileCommand";
14
18
  export * from "./GetDeploymentCommand";
15
19
  export * from "./GetDeploymentStrategyCommand";
16
20
  export * from "./GetEnvironmentCommand";
21
+ export * from "./GetExtensionAssociationCommand";
22
+ export * from "./GetExtensionCommand";
17
23
  export * from "./GetHostedConfigurationVersionCommand";
18
24
  export * from "./ListApplicationsCommand";
19
25
  export * from "./ListConfigurationProfilesCommand";
20
26
  export * from "./ListDeploymentStrategiesCommand";
21
27
  export * from "./ListDeploymentsCommand";
22
28
  export * from "./ListEnvironmentsCommand";
29
+ export * from "./ListExtensionAssociationsCommand";
30
+ export * from "./ListExtensionsCommand";
23
31
  export * from "./ListHostedConfigurationVersionsCommand";
24
32
  export * from "./ListTagsForResourceCommand";
25
33
  export * from "./StartDeploymentCommand";
@@ -30,4 +38,6 @@ export * from "./UpdateApplicationCommand";
30
38
  export * from "./UpdateConfigurationProfileCommand";
31
39
  export * from "./UpdateDeploymentStrategyCommand";
32
40
  export * from "./UpdateEnvironmentCommand";
41
+ export * from "./UpdateExtensionAssociationCommand";
42
+ export * from "./UpdateExtensionCommand";
33
43
  export * from "./ValidateConfigurationCommand";