@aws-sdk/client-appintegrations 3.489.0 → 3.495.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 (41) hide show
  1. package/dist-cjs/AppIntegrations.js +1 -53
  2. package/dist-cjs/AppIntegrationsClient.js +1 -43
  3. package/dist-cjs/commands/CreateApplicationCommand.js +1 -28
  4. package/dist-cjs/commands/CreateDataIntegrationCommand.js +1 -28
  5. package/dist-cjs/commands/CreateEventIntegrationCommand.js +1 -28
  6. package/dist-cjs/commands/DeleteApplicationCommand.js +1 -28
  7. package/dist-cjs/commands/DeleteDataIntegrationCommand.js +1 -28
  8. package/dist-cjs/commands/DeleteEventIntegrationCommand.js +1 -28
  9. package/dist-cjs/commands/GetApplicationCommand.js +1 -28
  10. package/dist-cjs/commands/GetDataIntegrationCommand.js +1 -28
  11. package/dist-cjs/commands/GetEventIntegrationCommand.js +1 -28
  12. package/dist-cjs/commands/ListApplicationAssociationsCommand.js +1 -28
  13. package/dist-cjs/commands/ListApplicationsCommand.js +1 -28
  14. package/dist-cjs/commands/ListDataIntegrationAssociationsCommand.js +1 -28
  15. package/dist-cjs/commands/ListDataIntegrationsCommand.js +1 -28
  16. package/dist-cjs/commands/ListEventIntegrationAssociationsCommand.js +1 -28
  17. package/dist-cjs/commands/ListEventIntegrationsCommand.js +1 -28
  18. package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
  19. package/dist-cjs/commands/TagResourceCommand.js +1 -28
  20. package/dist-cjs/commands/UntagResourceCommand.js +1 -28
  21. package/dist-cjs/commands/UpdateApplicationCommand.js +1 -28
  22. package/dist-cjs/commands/UpdateDataIntegrationCommand.js +1 -28
  23. package/dist-cjs/commands/UpdateEventIntegrationCommand.js +1 -28
  24. package/dist-cjs/commands/index.js +1 -24
  25. package/dist-cjs/endpoint/EndpointParameters.js +1 -18
  26. package/dist-cjs/extensionConfiguration.js +1 -2
  27. package/dist-cjs/index.js +2190 -11
  28. package/dist-cjs/models/AppIntegrationsServiceException.js +1 -12
  29. package/dist-cjs/models/index.js +1 -4
  30. package/dist-cjs/models/models_0.js +1 -116
  31. package/dist-cjs/pagination/Interfaces.js +1 -2
  32. package/dist-cjs/pagination/ListApplicationAssociationsPaginator.js +1 -7
  33. package/dist-cjs/pagination/ListApplicationsPaginator.js +1 -7
  34. package/dist-cjs/pagination/ListDataIntegrationAssociationsPaginator.js +1 -7
  35. package/dist-cjs/pagination/ListDataIntegrationsPaginator.js +1 -7
  36. package/dist-cjs/pagination/ListEventIntegrationAssociationsPaginator.js +1 -7
  37. package/dist-cjs/pagination/ListEventIntegrationsPaginator.js +1 -7
  38. package/dist-cjs/pagination/index.js +1 -10
  39. package/dist-cjs/protocols/Aws_restJson1.js +1 -1457
  40. package/dist-cjs/runtimeExtensions.js +1 -22
  41. package/package.json +40 -40
@@ -1,12 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AppIntegrationsServiceException = exports.__ServiceException = void 0;
4
- const smithy_client_1 = require("@smithy/smithy-client");
5
- Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
6
- class AppIntegrationsServiceException extends smithy_client_1.ServiceException {
7
- constructor(options) {
8
- super(options);
9
- Object.setPrototypeOf(this, AppIntegrationsServiceException.prototype);
10
- }
11
- }
12
- exports.AppIntegrationsServiceException = AppIntegrationsServiceException;
1
+ module.exports = require("../index.js");
@@ -1,4 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./models_0"), exports);
1
+ module.exports = require("../index.js");
@@ -1,116 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ResourceNotFoundException = exports.UnsupportedOperationException = exports.ThrottlingException = exports.ResourceQuotaExceededException = exports.InvalidRequestException = exports.InternalServiceError = exports.DuplicateResourceException = exports.AccessDeniedException = void 0;
4
- const AppIntegrationsServiceException_1 = require("./AppIntegrationsServiceException");
5
- class AccessDeniedException extends AppIntegrationsServiceException_1.AppIntegrationsServiceException {
6
- constructor(opts) {
7
- super({
8
- name: "AccessDeniedException",
9
- $fault: "client",
10
- ...opts,
11
- });
12
- this.name = "AccessDeniedException";
13
- this.$fault = "client";
14
- Object.setPrototypeOf(this, AccessDeniedException.prototype);
15
- this.Message = opts.Message;
16
- }
17
- }
18
- exports.AccessDeniedException = AccessDeniedException;
19
- class DuplicateResourceException extends AppIntegrationsServiceException_1.AppIntegrationsServiceException {
20
- constructor(opts) {
21
- super({
22
- name: "DuplicateResourceException",
23
- $fault: "client",
24
- ...opts,
25
- });
26
- this.name = "DuplicateResourceException";
27
- this.$fault = "client";
28
- Object.setPrototypeOf(this, DuplicateResourceException.prototype);
29
- this.Message = opts.Message;
30
- }
31
- }
32
- exports.DuplicateResourceException = DuplicateResourceException;
33
- class InternalServiceError extends AppIntegrationsServiceException_1.AppIntegrationsServiceException {
34
- constructor(opts) {
35
- super({
36
- name: "InternalServiceError",
37
- $fault: "server",
38
- ...opts,
39
- });
40
- this.name = "InternalServiceError";
41
- this.$fault = "server";
42
- Object.setPrototypeOf(this, InternalServiceError.prototype);
43
- this.Message = opts.Message;
44
- }
45
- }
46
- exports.InternalServiceError = InternalServiceError;
47
- class InvalidRequestException extends AppIntegrationsServiceException_1.AppIntegrationsServiceException {
48
- constructor(opts) {
49
- super({
50
- name: "InvalidRequestException",
51
- $fault: "client",
52
- ...opts,
53
- });
54
- this.name = "InvalidRequestException";
55
- this.$fault = "client";
56
- Object.setPrototypeOf(this, InvalidRequestException.prototype);
57
- this.Message = opts.Message;
58
- }
59
- }
60
- exports.InvalidRequestException = InvalidRequestException;
61
- class ResourceQuotaExceededException extends AppIntegrationsServiceException_1.AppIntegrationsServiceException {
62
- constructor(opts) {
63
- super({
64
- name: "ResourceQuotaExceededException",
65
- $fault: "client",
66
- ...opts,
67
- });
68
- this.name = "ResourceQuotaExceededException";
69
- this.$fault = "client";
70
- Object.setPrototypeOf(this, ResourceQuotaExceededException.prototype);
71
- this.Message = opts.Message;
72
- }
73
- }
74
- exports.ResourceQuotaExceededException = ResourceQuotaExceededException;
75
- class ThrottlingException extends AppIntegrationsServiceException_1.AppIntegrationsServiceException {
76
- constructor(opts) {
77
- super({
78
- name: "ThrottlingException",
79
- $fault: "client",
80
- ...opts,
81
- });
82
- this.name = "ThrottlingException";
83
- this.$fault = "client";
84
- Object.setPrototypeOf(this, ThrottlingException.prototype);
85
- this.Message = opts.Message;
86
- }
87
- }
88
- exports.ThrottlingException = ThrottlingException;
89
- class UnsupportedOperationException extends AppIntegrationsServiceException_1.AppIntegrationsServiceException {
90
- constructor(opts) {
91
- super({
92
- name: "UnsupportedOperationException",
93
- $fault: "client",
94
- ...opts,
95
- });
96
- this.name = "UnsupportedOperationException";
97
- this.$fault = "client";
98
- Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
99
- this.Message = opts.Message;
100
- }
101
- }
102
- exports.UnsupportedOperationException = UnsupportedOperationException;
103
- class ResourceNotFoundException extends AppIntegrationsServiceException_1.AppIntegrationsServiceException {
104
- constructor(opts) {
105
- super({
106
- name: "ResourceNotFoundException",
107
- $fault: "client",
108
- ...opts,
109
- });
110
- this.name = "ResourceNotFoundException";
111
- this.$fault = "client";
112
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
113
- this.Message = opts.Message;
114
- }
115
- }
116
- exports.ResourceNotFoundException = ResourceNotFoundException;
1
+ module.exports = require("../index.js");
@@ -1,2 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListApplicationAssociations = void 0;
4
- const core_1 = require("@smithy/core");
5
- const AppIntegrationsClient_1 = require("../AppIntegrationsClient");
6
- const ListApplicationAssociationsCommand_1 = require("../commands/ListApplicationAssociationsCommand");
7
- exports.paginateListApplicationAssociations = (0, core_1.createPaginator)(AppIntegrationsClient_1.AppIntegrationsClient, ListApplicationAssociationsCommand_1.ListApplicationAssociationsCommand, "NextToken", "NextToken", "MaxResults");
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListApplications = void 0;
4
- const core_1 = require("@smithy/core");
5
- const AppIntegrationsClient_1 = require("../AppIntegrationsClient");
6
- const ListApplicationsCommand_1 = require("../commands/ListApplicationsCommand");
7
- exports.paginateListApplications = (0, core_1.createPaginator)(AppIntegrationsClient_1.AppIntegrationsClient, ListApplicationsCommand_1.ListApplicationsCommand, "NextToken", "NextToken", "MaxResults");
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListDataIntegrationAssociations = void 0;
4
- const core_1 = require("@smithy/core");
5
- const AppIntegrationsClient_1 = require("../AppIntegrationsClient");
6
- const ListDataIntegrationAssociationsCommand_1 = require("../commands/ListDataIntegrationAssociationsCommand");
7
- exports.paginateListDataIntegrationAssociations = (0, core_1.createPaginator)(AppIntegrationsClient_1.AppIntegrationsClient, ListDataIntegrationAssociationsCommand_1.ListDataIntegrationAssociationsCommand, "NextToken", "NextToken", "MaxResults");
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListDataIntegrations = void 0;
4
- const core_1 = require("@smithy/core");
5
- const AppIntegrationsClient_1 = require("../AppIntegrationsClient");
6
- const ListDataIntegrationsCommand_1 = require("../commands/ListDataIntegrationsCommand");
7
- exports.paginateListDataIntegrations = (0, core_1.createPaginator)(AppIntegrationsClient_1.AppIntegrationsClient, ListDataIntegrationsCommand_1.ListDataIntegrationsCommand, "NextToken", "NextToken", "MaxResults");
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListEventIntegrationAssociations = void 0;
4
- const core_1 = require("@smithy/core");
5
- const AppIntegrationsClient_1 = require("../AppIntegrationsClient");
6
- const ListEventIntegrationAssociationsCommand_1 = require("../commands/ListEventIntegrationAssociationsCommand");
7
- exports.paginateListEventIntegrationAssociations = (0, core_1.createPaginator)(AppIntegrationsClient_1.AppIntegrationsClient, ListEventIntegrationAssociationsCommand_1.ListEventIntegrationAssociationsCommand, "NextToken", "NextToken", "MaxResults");
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListEventIntegrations = void 0;
4
- const core_1 = require("@smithy/core");
5
- const AppIntegrationsClient_1 = require("../AppIntegrationsClient");
6
- const ListEventIntegrationsCommand_1 = require("../commands/ListEventIntegrationsCommand");
7
- exports.paginateListEventIntegrations = (0, core_1.createPaginator)(AppIntegrationsClient_1.AppIntegrationsClient, ListEventIntegrationsCommand_1.ListEventIntegrationsCommand, "NextToken", "NextToken", "MaxResults");
1
+ module.exports = require("../index.js");
@@ -1,10 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./Interfaces"), exports);
5
- tslib_1.__exportStar(require("./ListApplicationAssociationsPaginator"), exports);
6
- tslib_1.__exportStar(require("./ListApplicationsPaginator"), exports);
7
- tslib_1.__exportStar(require("./ListDataIntegrationAssociationsPaginator"), exports);
8
- tslib_1.__exportStar(require("./ListDataIntegrationsPaginator"), exports);
9
- tslib_1.__exportStar(require("./ListEventIntegrationAssociationsPaginator"), exports);
10
- tslib_1.__exportStar(require("./ListEventIntegrationsPaginator"), exports);
1
+ module.exports = require("../index.js");