@aws-sdk/client-service-catalog-appregistry 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.
- package/dist-cjs/ServiceCatalogAppRegistry.js +1 -59
- package/dist-cjs/ServiceCatalogAppRegistryClient.js +1 -43
- package/dist-cjs/commands/AssociateAttributeGroupCommand.js +1 -28
- package/dist-cjs/commands/AssociateResourceCommand.js +1 -28
- package/dist-cjs/commands/CreateApplicationCommand.js +1 -28
- package/dist-cjs/commands/CreateAttributeGroupCommand.js +1 -28
- package/dist-cjs/commands/DeleteApplicationCommand.js +1 -28
- package/dist-cjs/commands/DeleteAttributeGroupCommand.js +1 -28
- package/dist-cjs/commands/DisassociateAttributeGroupCommand.js +1 -28
- package/dist-cjs/commands/DisassociateResourceCommand.js +1 -28
- package/dist-cjs/commands/GetApplicationCommand.js +1 -28
- package/dist-cjs/commands/GetAssociatedResourceCommand.js +1 -28
- package/dist-cjs/commands/GetAttributeGroupCommand.js +1 -28
- package/dist-cjs/commands/GetConfigurationCommand.js +1 -28
- package/dist-cjs/commands/ListApplicationsCommand.js +1 -28
- package/dist-cjs/commands/ListAssociatedAttributeGroupsCommand.js +1 -28
- package/dist-cjs/commands/ListAssociatedResourcesCommand.js +1 -28
- package/dist-cjs/commands/ListAttributeGroupsCommand.js +1 -28
- package/dist-cjs/commands/ListAttributeGroupsForApplicationCommand.js +1 -28
- package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
- package/dist-cjs/commands/PutConfigurationCommand.js +1 -28
- package/dist-cjs/commands/SyncResourceCommand.js +1 -28
- package/dist-cjs/commands/TagResourceCommand.js +1 -28
- package/dist-cjs/commands/UntagResourceCommand.js +1 -28
- package/dist-cjs/commands/UpdateApplicationCommand.js +1 -28
- package/dist-cjs/commands/UpdateAttributeGroupCommand.js +1 -28
- package/dist-cjs/commands/index.js +1 -27
- package/dist-cjs/endpoint/EndpointParameters.js +1 -18
- package/dist-cjs/extensionConfiguration.js +1 -2
- package/dist-cjs/index.js +2326 -11
- package/dist-cjs/models/ServiceCatalogAppRegistryServiceException.js +1 -12
- package/dist-cjs/models/index.js +1 -4
- package/dist-cjs/models/models_0.js +1 -114
- package/dist-cjs/pagination/Interfaces.js +1 -2
- package/dist-cjs/pagination/ListApplicationsPaginator.js +1 -7
- package/dist-cjs/pagination/ListAssociatedAttributeGroupsPaginator.js +1 -7
- package/dist-cjs/pagination/ListAssociatedResourcesPaginator.js +1 -7
- package/dist-cjs/pagination/ListAttributeGroupsForApplicationPaginator.js +1 -7
- package/dist-cjs/pagination/ListAttributeGroupsPaginator.js +1 -7
- package/dist-cjs/pagination/index.js +1 -9
- package/dist-cjs/protocols/Aws_restJson1.js +1 -1549
- package/dist-cjs/runtimeExtensions.js +1 -22
- package/package.json +40 -40
|
@@ -1,12 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ServiceCatalogAppRegistryServiceException = 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 ServiceCatalogAppRegistryServiceException extends smithy_client_1.ServiceException {
|
|
7
|
-
constructor(options) {
|
|
8
|
-
super(options);
|
|
9
|
-
Object.setPrototypeOf(this, ServiceCatalogAppRegistryServiceException.prototype);
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
exports.ServiceCatalogAppRegistryServiceException = ServiceCatalogAppRegistryServiceException;
|
|
1
|
+
module.exports = require("../index.js");
|
package/dist-cjs/models/index.js
CHANGED
|
@@ -1,114 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SyncAction = exports.ResourceItemStatus = exports.ResourceGroupState = exports.ThrottlingException = exports.ResourceType = exports.AssociationOption = exports.ValidationException = exports.ServiceQuotaExceededException = exports.ResourceNotFoundException = exports.InternalServerException = exports.ConflictException = exports.ApplicationTagStatus = void 0;
|
|
4
|
-
const ServiceCatalogAppRegistryServiceException_1 = require("./ServiceCatalogAppRegistryServiceException");
|
|
5
|
-
exports.ApplicationTagStatus = {
|
|
6
|
-
FAILURE: "FAILURE",
|
|
7
|
-
IN_PROGRESS: "IN_PROGRESS",
|
|
8
|
-
SUCCESS: "SUCCESS",
|
|
9
|
-
};
|
|
10
|
-
class ConflictException extends ServiceCatalogAppRegistryServiceException_1.ServiceCatalogAppRegistryServiceException {
|
|
11
|
-
constructor(opts) {
|
|
12
|
-
super({
|
|
13
|
-
name: "ConflictException",
|
|
14
|
-
$fault: "client",
|
|
15
|
-
...opts,
|
|
16
|
-
});
|
|
17
|
-
this.name = "ConflictException";
|
|
18
|
-
this.$fault = "client";
|
|
19
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
exports.ConflictException = ConflictException;
|
|
23
|
-
class InternalServerException extends ServiceCatalogAppRegistryServiceException_1.ServiceCatalogAppRegistryServiceException {
|
|
24
|
-
constructor(opts) {
|
|
25
|
-
super({
|
|
26
|
-
name: "InternalServerException",
|
|
27
|
-
$fault: "server",
|
|
28
|
-
...opts,
|
|
29
|
-
});
|
|
30
|
-
this.name = "InternalServerException";
|
|
31
|
-
this.$fault = "server";
|
|
32
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
exports.InternalServerException = InternalServerException;
|
|
36
|
-
class ResourceNotFoundException extends ServiceCatalogAppRegistryServiceException_1.ServiceCatalogAppRegistryServiceException {
|
|
37
|
-
constructor(opts) {
|
|
38
|
-
super({
|
|
39
|
-
name: "ResourceNotFoundException",
|
|
40
|
-
$fault: "client",
|
|
41
|
-
...opts,
|
|
42
|
-
});
|
|
43
|
-
this.name = "ResourceNotFoundException";
|
|
44
|
-
this.$fault = "client";
|
|
45
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
49
|
-
class ServiceQuotaExceededException extends ServiceCatalogAppRegistryServiceException_1.ServiceCatalogAppRegistryServiceException {
|
|
50
|
-
constructor(opts) {
|
|
51
|
-
super({
|
|
52
|
-
name: "ServiceQuotaExceededException",
|
|
53
|
-
$fault: "client",
|
|
54
|
-
...opts,
|
|
55
|
-
});
|
|
56
|
-
this.name = "ServiceQuotaExceededException";
|
|
57
|
-
this.$fault = "client";
|
|
58
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
62
|
-
class ValidationException extends ServiceCatalogAppRegistryServiceException_1.ServiceCatalogAppRegistryServiceException {
|
|
63
|
-
constructor(opts) {
|
|
64
|
-
super({
|
|
65
|
-
name: "ValidationException",
|
|
66
|
-
$fault: "client",
|
|
67
|
-
...opts,
|
|
68
|
-
});
|
|
69
|
-
this.name = "ValidationException";
|
|
70
|
-
this.$fault = "client";
|
|
71
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
exports.ValidationException = ValidationException;
|
|
75
|
-
exports.AssociationOption = {
|
|
76
|
-
APPLY_APPLICATION_TAG: "APPLY_APPLICATION_TAG",
|
|
77
|
-
SKIP_APPLICATION_TAG: "SKIP_APPLICATION_TAG",
|
|
78
|
-
};
|
|
79
|
-
exports.ResourceType = {
|
|
80
|
-
CFN_STACK: "CFN_STACK",
|
|
81
|
-
RESOURCE_TAG_VALUE: "RESOURCE_TAG_VALUE",
|
|
82
|
-
};
|
|
83
|
-
class ThrottlingException extends ServiceCatalogAppRegistryServiceException_1.ServiceCatalogAppRegistryServiceException {
|
|
84
|
-
constructor(opts) {
|
|
85
|
-
super({
|
|
86
|
-
name: "ThrottlingException",
|
|
87
|
-
$fault: "client",
|
|
88
|
-
...opts,
|
|
89
|
-
});
|
|
90
|
-
this.name = "ThrottlingException";
|
|
91
|
-
this.$fault = "client";
|
|
92
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
93
|
-
this.serviceCode = opts.serviceCode;
|
|
94
|
-
}
|
|
95
|
-
}
|
|
96
|
-
exports.ThrottlingException = ThrottlingException;
|
|
97
|
-
exports.ResourceGroupState = {
|
|
98
|
-
CREATE_COMPLETE: "CREATE_COMPLETE",
|
|
99
|
-
CREATE_FAILED: "CREATE_FAILED",
|
|
100
|
-
CREATING: "CREATING",
|
|
101
|
-
UPDATE_COMPLETE: "UPDATE_COMPLETE",
|
|
102
|
-
UPDATE_FAILED: "UPDATE_FAILED",
|
|
103
|
-
UPDATING: "UPDATING",
|
|
104
|
-
};
|
|
105
|
-
exports.ResourceItemStatus = {
|
|
106
|
-
FAILED: "FAILED",
|
|
107
|
-
IN_PROGRESS: "IN_PROGRESS",
|
|
108
|
-
SKIPPED: "SKIPPED",
|
|
109
|
-
SUCCESS: "SUCCESS",
|
|
110
|
-
};
|
|
111
|
-
exports.SyncAction = {
|
|
112
|
-
NO_ACTION: "NO_ACTION",
|
|
113
|
-
START_SYNC: "START_SYNC",
|
|
114
|
-
};
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListApplications = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListApplicationsCommand_1 = require("../commands/ListApplicationsCommand");
|
|
6
|
-
const ServiceCatalogAppRegistryClient_1 = require("../ServiceCatalogAppRegistryClient");
|
|
7
|
-
exports.paginateListApplications = (0, core_1.createPaginator)(ServiceCatalogAppRegistryClient_1.ServiceCatalogAppRegistryClient, ListApplicationsCommand_1.ListApplicationsCommand, "nextToken", "nextToken", "maxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListAssociatedAttributeGroups = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListAssociatedAttributeGroupsCommand_1 = require("../commands/ListAssociatedAttributeGroupsCommand");
|
|
6
|
-
const ServiceCatalogAppRegistryClient_1 = require("../ServiceCatalogAppRegistryClient");
|
|
7
|
-
exports.paginateListAssociatedAttributeGroups = (0, core_1.createPaginator)(ServiceCatalogAppRegistryClient_1.ServiceCatalogAppRegistryClient, ListAssociatedAttributeGroupsCommand_1.ListAssociatedAttributeGroupsCommand, "nextToken", "nextToken", "maxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListAssociatedResources = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListAssociatedResourcesCommand_1 = require("../commands/ListAssociatedResourcesCommand");
|
|
6
|
-
const ServiceCatalogAppRegistryClient_1 = require("../ServiceCatalogAppRegistryClient");
|
|
7
|
-
exports.paginateListAssociatedResources = (0, core_1.createPaginator)(ServiceCatalogAppRegistryClient_1.ServiceCatalogAppRegistryClient, ListAssociatedResourcesCommand_1.ListAssociatedResourcesCommand, "nextToken", "nextToken", "maxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListAttributeGroupsForApplication = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListAttributeGroupsForApplicationCommand_1 = require("../commands/ListAttributeGroupsForApplicationCommand");
|
|
6
|
-
const ServiceCatalogAppRegistryClient_1 = require("../ServiceCatalogAppRegistryClient");
|
|
7
|
-
exports.paginateListAttributeGroupsForApplication = (0, core_1.createPaginator)(ServiceCatalogAppRegistryClient_1.ServiceCatalogAppRegistryClient, ListAttributeGroupsForApplicationCommand_1.ListAttributeGroupsForApplicationCommand, "nextToken", "nextToken", "maxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListAttributeGroups = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListAttributeGroupsCommand_1 = require("../commands/ListAttributeGroupsCommand");
|
|
6
|
-
const ServiceCatalogAppRegistryClient_1 = require("../ServiceCatalogAppRegistryClient");
|
|
7
|
-
exports.paginateListAttributeGroups = (0, core_1.createPaginator)(ServiceCatalogAppRegistryClient_1.ServiceCatalogAppRegistryClient, ListAttributeGroupsCommand_1.ListAttributeGroupsCommand, "nextToken", "nextToken", "maxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,9 +1 @@
|
|
|
1
|
-
|
|
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("./ListApplicationsPaginator"), exports);
|
|
6
|
-
tslib_1.__exportStar(require("./ListAssociatedAttributeGroupsPaginator"), exports);
|
|
7
|
-
tslib_1.__exportStar(require("./ListAssociatedResourcesPaginator"), exports);
|
|
8
|
-
tslib_1.__exportStar(require("./ListAttributeGroupsForApplicationPaginator"), exports);
|
|
9
|
-
tslib_1.__exportStar(require("./ListAttributeGroupsPaginator"), exports);
|
|
1
|
+
module.exports = require("../index.js");
|