@aws-sdk/client-service-catalog-appregistry 3.300.0 → 3.303.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/models/models_0.js +16 -19
- package/dist-es/models/models_0.js +16 -19
- package/dist-types/commands/AssociateAttributeGroupCommand.d.ts +1 -1
- package/dist-types/commands/AssociateResourceCommand.d.ts +1 -1
- package/dist-types/commands/CreateApplicationCommand.d.ts +2 -2
- package/dist-types/commands/CreateAttributeGroupCommand.d.ts +2 -2
- package/dist-types/commands/DeleteApplicationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAttributeGroupCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateAttributeGroupCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateResourceCommand.d.ts +1 -1
- package/dist-types/commands/GetApplicationCommand.d.ts +1 -1
- package/dist-types/commands/GetAssociatedResourceCommand.d.ts +1 -1
- package/dist-types/commands/GetAttributeGroupCommand.d.ts +1 -1
- package/dist-types/commands/ListApplicationsCommand.d.ts +1 -1
- package/dist-types/commands/ListAssociatedAttributeGroupsCommand.d.ts +1 -1
- package/dist-types/commands/ListAssociatedResourcesCommand.d.ts +1 -1
- package/dist-types/commands/ListAttributeGroupsCommand.d.ts +1 -1
- package/dist-types/commands/ListAttributeGroupsForApplicationCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/PutConfigurationCommand.d.ts +3 -3
- package/dist-types/commands/SyncResourceCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateApplicationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAttributeGroupCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +31 -16
- package/dist-types/ts3.4/models/models_0.d.ts +20 -16
- package/package.json +34 -34
|
@@ -67,11 +67,10 @@ class ValidationException extends ServiceCatalogAppRegistryServiceException_1.Se
|
|
|
67
67
|
}
|
|
68
68
|
}
|
|
69
69
|
exports.ValidationException = ValidationException;
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
})(ResourceType = exports.ResourceType || (exports.ResourceType = {}));
|
|
70
|
+
exports.ResourceType = {
|
|
71
|
+
CFN_STACK: "CFN_STACK",
|
|
72
|
+
RESOURCE_TAG_VALUE: "RESOURCE_TAG_VALUE",
|
|
73
|
+
};
|
|
75
74
|
class ThrottlingException extends ServiceCatalogAppRegistryServiceException_1.ServiceCatalogAppRegistryServiceException {
|
|
76
75
|
constructor(opts) {
|
|
77
76
|
super({
|
|
@@ -86,17 +85,15 @@ class ThrottlingException extends ServiceCatalogAppRegistryServiceException_1.Se
|
|
|
86
85
|
}
|
|
87
86
|
}
|
|
88
87
|
exports.ThrottlingException = ThrottlingException;
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
SyncAction["START_SYNC"] = "START_SYNC";
|
|
102
|
-
})(SyncAction = exports.SyncAction || (exports.SyncAction = {}));
|
|
88
|
+
exports.ResourceGroupState = {
|
|
89
|
+
CREATE_COMPLETE: "CREATE_COMPLETE",
|
|
90
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
91
|
+
CREATING: "CREATING",
|
|
92
|
+
UPDATE_COMPLETE: "UPDATE_COMPLETE",
|
|
93
|
+
UPDATE_FAILED: "UPDATE_FAILED",
|
|
94
|
+
UPDATING: "UPDATING",
|
|
95
|
+
};
|
|
96
|
+
exports.SyncAction = {
|
|
97
|
+
NO_ACTION: "NO_ACTION",
|
|
98
|
+
START_SYNC: "START_SYNC",
|
|
99
|
+
};
|
|
@@ -59,11 +59,10 @@ export class ValidationException extends __BaseException {
|
|
|
59
59
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
60
60
|
}
|
|
61
61
|
}
|
|
62
|
-
export
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
})(ResourceType || (ResourceType = {}));
|
|
62
|
+
export const ResourceType = {
|
|
63
|
+
CFN_STACK: "CFN_STACK",
|
|
64
|
+
RESOURCE_TAG_VALUE: "RESOURCE_TAG_VALUE",
|
|
65
|
+
};
|
|
67
66
|
export class ThrottlingException extends __BaseException {
|
|
68
67
|
constructor(opts) {
|
|
69
68
|
super({
|
|
@@ -77,17 +76,15 @@ export class ThrottlingException extends __BaseException {
|
|
|
77
76
|
this.serviceCode = opts.serviceCode;
|
|
78
77
|
}
|
|
79
78
|
}
|
|
80
|
-
export
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
SyncAction["START_SYNC"] = "START_SYNC";
|
|
93
|
-
})(SyncAction || (SyncAction = {}));
|
|
79
|
+
export const ResourceGroupState = {
|
|
80
|
+
CREATE_COMPLETE: "CREATE_COMPLETE",
|
|
81
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
82
|
+
CREATING: "CREATING",
|
|
83
|
+
UPDATE_COMPLETE: "UPDATE_COMPLETE",
|
|
84
|
+
UPDATE_FAILED: "UPDATE_FAILED",
|
|
85
|
+
UPDATING: "UPDATING",
|
|
86
|
+
};
|
|
87
|
+
export const SyncAction = {
|
|
88
|
+
NO_ACTION: "NO_ACTION",
|
|
89
|
+
START_SYNC: "START_SYNC",
|
|
90
|
+
};
|
|
@@ -28,7 +28,7 @@ export interface AssociateAttributeGroupCommandOutput extends AssociateAttribute
|
|
|
28
28
|
* import { ServiceCatalogAppRegistryClient, AssociateAttributeGroupCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
29
29
|
* // const { ServiceCatalogAppRegistryClient, AssociateAttributeGroupCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
30
30
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // AssociateAttributeGroupRequest
|
|
32
32
|
* application: "STRING_VALUE", // required
|
|
33
33
|
* attributeGroup: "STRING_VALUE", // required
|
|
34
34
|
* };
|
|
@@ -33,7 +33,7 @@ export interface AssociateResourceCommandOutput extends AssociateResourceRespons
|
|
|
33
33
|
* import { ServiceCatalogAppRegistryClient, AssociateResourceCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
34
34
|
* // const { ServiceCatalogAppRegistryClient, AssociateResourceCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
35
35
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
36
|
-
* const input = {
|
|
36
|
+
* const input = { // AssociateResourceRequest
|
|
37
37
|
* application: "STRING_VALUE", // required
|
|
38
38
|
* resourceType: "CFN_STACK" || "RESOURCE_TAG_VALUE", // required
|
|
39
39
|
* resource: "STRING_VALUE", // required
|
|
@@ -26,10 +26,10 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
|
|
|
26
26
|
* import { ServiceCatalogAppRegistryClient, CreateApplicationCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
27
27
|
* // const { ServiceCatalogAppRegistryClient, CreateApplicationCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
28
28
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreateApplicationRequest
|
|
30
30
|
* name: "STRING_VALUE", // required
|
|
31
31
|
* description: "STRING_VALUE",
|
|
32
|
-
* tags: {
|
|
32
|
+
* tags: { // Tags
|
|
33
33
|
* "<keys>": "STRING_VALUE",
|
|
34
34
|
* },
|
|
35
35
|
* clientToken: "STRING_VALUE", // required
|
|
@@ -29,11 +29,11 @@ export interface CreateAttributeGroupCommandOutput extends CreateAttributeGroupR
|
|
|
29
29
|
* import { ServiceCatalogAppRegistryClient, CreateAttributeGroupCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
30
30
|
* // const { ServiceCatalogAppRegistryClient, CreateAttributeGroupCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
31
31
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // CreateAttributeGroupRequest
|
|
33
33
|
* name: "STRING_VALUE", // required
|
|
34
34
|
* description: "STRING_VALUE",
|
|
35
35
|
* attributes: "STRING_VALUE", // required
|
|
36
|
-
* tags: {
|
|
36
|
+
* tags: { // Tags
|
|
37
37
|
* "<keys>": "STRING_VALUE",
|
|
38
38
|
* },
|
|
39
39
|
* clientToken: "STRING_VALUE", // required
|
|
@@ -26,7 +26,7 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons
|
|
|
26
26
|
* import { ServiceCatalogAppRegistryClient, DeleteApplicationCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
27
27
|
* // const { ServiceCatalogAppRegistryClient, DeleteApplicationCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
28
28
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteApplicationRequest
|
|
30
30
|
* application: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteApplicationCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DeleteAttributeGroupCommandOutput extends DeleteAttributeGroupR
|
|
|
26
26
|
* import { ServiceCatalogAppRegistryClient, DeleteAttributeGroupCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
27
27
|
* // const { ServiceCatalogAppRegistryClient, DeleteAttributeGroupCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
28
28
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteAttributeGroupRequest
|
|
30
30
|
* attributeGroup: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteAttributeGroupCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DisassociateAttributeGroupCommandOutput extends DisassociateAtt
|
|
|
26
26
|
* import { ServiceCatalogAppRegistryClient, DisassociateAttributeGroupCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
27
27
|
* // const { ServiceCatalogAppRegistryClient, DisassociateAttributeGroupCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
28
28
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DisassociateAttributeGroupRequest
|
|
30
30
|
* application: "STRING_VALUE", // required
|
|
31
31
|
* attributeGroup: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DisassociateResourceCommandOutput extends DisassociateResourceR
|
|
|
26
26
|
* import { ServiceCatalogAppRegistryClient, DisassociateResourceCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
27
27
|
* // const { ServiceCatalogAppRegistryClient, DisassociateResourceCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
28
28
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DisassociateResourceRequest
|
|
30
30
|
* application: "STRING_VALUE", // required
|
|
31
31
|
* resourceType: "CFN_STACK" || "RESOURCE_TAG_VALUE", // required
|
|
32
32
|
* resource: "STRING_VALUE", // required
|
|
@@ -44,7 +44,7 @@ export interface GetApplicationCommandOutput extends GetApplicationResponse, __M
|
|
|
44
44
|
* import { ServiceCatalogAppRegistryClient, GetApplicationCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
45
45
|
* // const { ServiceCatalogAppRegistryClient, GetApplicationCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
46
46
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
47
|
-
* const input = {
|
|
47
|
+
* const input = { // GetApplicationRequest
|
|
48
48
|
* application: "STRING_VALUE", // required
|
|
49
49
|
* };
|
|
50
50
|
* const command = new GetApplicationCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface GetAssociatedResourceCommandOutput extends GetAssociatedResourc
|
|
|
26
26
|
* import { ServiceCatalogAppRegistryClient, GetAssociatedResourceCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
27
27
|
* // const { ServiceCatalogAppRegistryClient, GetAssociatedResourceCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
28
28
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetAssociatedResourceRequest
|
|
30
30
|
* application: "STRING_VALUE", // required
|
|
31
31
|
* resourceType: "CFN_STACK" || "RESOURCE_TAG_VALUE", // required
|
|
32
32
|
* resource: "STRING_VALUE", // required
|
|
@@ -31,7 +31,7 @@ export interface GetAttributeGroupCommandOutput extends GetAttributeGroupRespons
|
|
|
31
31
|
* import { ServiceCatalogAppRegistryClient, GetAttributeGroupCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
32
32
|
* // const { ServiceCatalogAppRegistryClient, GetAttributeGroupCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
33
33
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // GetAttributeGroupRequest
|
|
35
35
|
* attributeGroup: "STRING_VALUE", // required
|
|
36
36
|
* };
|
|
37
37
|
* const command = new GetAttributeGroupCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse,
|
|
|
26
26
|
* import { ServiceCatalogAppRegistryClient, ListApplicationsCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
27
27
|
* // const { ServiceCatalogAppRegistryClient, ListApplicationsCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
28
28
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListApplicationsRequest
|
|
30
30
|
* nextToken: "STRING_VALUE",
|
|
31
31
|
* maxResults: Number("int"),
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListAssociatedAttributeGroupsCommandOutput extends ListAssociat
|
|
|
26
26
|
* import { ServiceCatalogAppRegistryClient, ListAssociatedAttributeGroupsCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
27
27
|
* // const { ServiceCatalogAppRegistryClient, ListAssociatedAttributeGroupsCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
28
28
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListAssociatedAttributeGroupsRequest
|
|
30
30
|
* application: "STRING_VALUE", // required
|
|
31
31
|
* nextToken: "STRING_VALUE",
|
|
32
32
|
* maxResults: Number("int"),
|
|
@@ -46,7 +46,7 @@ export interface ListAssociatedResourcesCommandOutput extends ListAssociatedReso
|
|
|
46
46
|
* import { ServiceCatalogAppRegistryClient, ListAssociatedResourcesCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
47
47
|
* // const { ServiceCatalogAppRegistryClient, ListAssociatedResourcesCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
48
48
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
49
|
-
* const input = {
|
|
49
|
+
* const input = { // ListAssociatedResourcesRequest
|
|
50
50
|
* application: "STRING_VALUE", // required
|
|
51
51
|
* nextToken: "STRING_VALUE",
|
|
52
52
|
* maxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ export interface ListAttributeGroupsCommandOutput extends ListAttributeGroupsRes
|
|
|
26
26
|
* import { ServiceCatalogAppRegistryClient, ListAttributeGroupsCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
27
27
|
* // const { ServiceCatalogAppRegistryClient, ListAttributeGroupsCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
28
28
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListAttributeGroupsRequest
|
|
30
30
|
* nextToken: "STRING_VALUE",
|
|
31
31
|
* maxResults: Number("int"),
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListAttributeGroupsForApplicationCommandOutput extends ListAttr
|
|
|
26
26
|
* import { ServiceCatalogAppRegistryClient, ListAttributeGroupsForApplicationCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
27
27
|
* // const { ServiceCatalogAppRegistryClient, ListAttributeGroupsForApplicationCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
28
28
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListAttributeGroupsForApplicationRequest
|
|
30
30
|
* application: "STRING_VALUE", // required
|
|
31
31
|
* nextToken: "STRING_VALUE",
|
|
32
32
|
* maxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { ServiceCatalogAppRegistryClient, ListTagsForResourceCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
27
27
|
* // const { ServiceCatalogAppRegistryClient, ListTagsForResourceCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
28
28
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListTagsForResourceRequest
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -29,9 +29,9 @@ export interface PutConfigurationCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* import { ServiceCatalogAppRegistryClient, PutConfigurationCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
30
30
|
* // const { ServiceCatalogAppRegistryClient, PutConfigurationCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
31
31
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
32
|
-
* const input = {
|
|
33
|
-
* configuration: {
|
|
34
|
-
* tagQueryConfiguration: {
|
|
32
|
+
* const input = { // PutConfigurationRequest
|
|
33
|
+
* configuration: { // AppRegistryConfiguration
|
|
34
|
+
* tagQueryConfiguration: { // TagQueryConfiguration
|
|
35
35
|
* tagKey: "STRING_VALUE",
|
|
36
36
|
* },
|
|
37
37
|
* },
|
|
@@ -27,7 +27,7 @@ export interface SyncResourceCommandOutput extends SyncResourceResponse, __Metad
|
|
|
27
27
|
* import { ServiceCatalogAppRegistryClient, SyncResourceCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
28
28
|
* // const { ServiceCatalogAppRegistryClient, SyncResourceCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
29
29
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // SyncResourceRequest
|
|
31
31
|
* resourceType: "CFN_STACK" || "RESOURCE_TAG_VALUE", // required
|
|
32
32
|
* resource: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
@@ -28,9 +28,9 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
28
28
|
* import { ServiceCatalogAppRegistryClient, TagResourceCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
29
29
|
* // const { ServiceCatalogAppRegistryClient, TagResourceCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
30
30
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // TagResourceRequest
|
|
32
32
|
* resourceArn: "STRING_VALUE", // required
|
|
33
|
-
* tags: { // required
|
|
33
|
+
* tags: { // Tags // required
|
|
34
34
|
* "<keys>": "STRING_VALUE",
|
|
35
35
|
* },
|
|
36
36
|
* };
|
|
@@ -27,9 +27,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
27
27
|
* import { ServiceCatalogAppRegistryClient, UntagResourceCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
28
28
|
* // const { ServiceCatalogAppRegistryClient, UntagResourceCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
29
29
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // UntagResourceRequest
|
|
31
31
|
* resourceArn: "STRING_VALUE", // required
|
|
32
|
-
* tagKeys: [ // required
|
|
32
|
+
* tagKeys: [ // TagKeys // required
|
|
33
33
|
* "STRING_VALUE",
|
|
34
34
|
* ],
|
|
35
35
|
* };
|
|
@@ -26,7 +26,7 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
|
|
|
26
26
|
* import { ServiceCatalogAppRegistryClient, UpdateApplicationCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
27
27
|
* // const { ServiceCatalogAppRegistryClient, UpdateApplicationCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
28
28
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateApplicationRequest
|
|
30
30
|
* application: "STRING_VALUE", // required
|
|
31
31
|
* name: "STRING_VALUE",
|
|
32
32
|
* description: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface UpdateAttributeGroupCommandOutput extends UpdateAttributeGroupR
|
|
|
26
26
|
* import { ServiceCatalogAppRegistryClient, UpdateAttributeGroupCommand } from "@aws-sdk/client-service-catalog-appregistry"; // ES Modules import
|
|
27
27
|
* // const { ServiceCatalogAppRegistryClient, UpdateAttributeGroupCommand } = require("@aws-sdk/client-service-catalog-appregistry"); // CommonJS import
|
|
28
28
|
* const client = new ServiceCatalogAppRegistryClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateAttributeGroupRequest
|
|
30
30
|
* attributeGroup: "STRING_VALUE", // required
|
|
31
31
|
* name: "STRING_VALUE",
|
|
32
32
|
* description: "STRING_VALUE",
|
|
@@ -202,11 +202,16 @@ export declare class ValidationException extends __BaseException {
|
|
|
202
202
|
}
|
|
203
203
|
/**
|
|
204
204
|
* @public
|
|
205
|
+
* @enum
|
|
205
206
|
*/
|
|
206
|
-
export declare
|
|
207
|
-
CFN_STACK
|
|
208
|
-
RESOURCE_TAG_VALUE
|
|
209
|
-
}
|
|
207
|
+
export declare const ResourceType: {
|
|
208
|
+
readonly CFN_STACK: "CFN_STACK";
|
|
209
|
+
readonly RESOURCE_TAG_VALUE: "RESOURCE_TAG_VALUE";
|
|
210
|
+
};
|
|
211
|
+
/**
|
|
212
|
+
* @public
|
|
213
|
+
*/
|
|
214
|
+
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
210
215
|
/**
|
|
211
216
|
* @public
|
|
212
217
|
*/
|
|
@@ -555,15 +560,20 @@ export interface GetApplicationRequest {
|
|
|
555
560
|
}
|
|
556
561
|
/**
|
|
557
562
|
* @public
|
|
563
|
+
* @enum
|
|
558
564
|
*/
|
|
559
|
-
export declare
|
|
560
|
-
CREATE_COMPLETE
|
|
561
|
-
CREATE_FAILED
|
|
562
|
-
CREATING
|
|
563
|
-
UPDATE_COMPLETE
|
|
564
|
-
UPDATE_FAILED
|
|
565
|
-
UPDATING
|
|
566
|
-
}
|
|
565
|
+
export declare const ResourceGroupState: {
|
|
566
|
+
readonly CREATE_COMPLETE: "CREATE_COMPLETE";
|
|
567
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
568
|
+
readonly CREATING: "CREATING";
|
|
569
|
+
readonly UPDATE_COMPLETE: "UPDATE_COMPLETE";
|
|
570
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
571
|
+
readonly UPDATING: "UPDATING";
|
|
572
|
+
};
|
|
573
|
+
/**
|
|
574
|
+
* @public
|
|
575
|
+
*/
|
|
576
|
+
export type ResourceGroupState = (typeof ResourceGroupState)[keyof typeof ResourceGroupState];
|
|
567
577
|
/**
|
|
568
578
|
* @public
|
|
569
579
|
* <p>The information about the resource group integration.</p>
|
|
@@ -1015,11 +1025,16 @@ export interface SyncResourceRequest {
|
|
|
1015
1025
|
}
|
|
1016
1026
|
/**
|
|
1017
1027
|
* @public
|
|
1028
|
+
* @enum
|
|
1018
1029
|
*/
|
|
1019
|
-
export declare
|
|
1020
|
-
NO_ACTION
|
|
1021
|
-
START_SYNC
|
|
1022
|
-
}
|
|
1030
|
+
export declare const SyncAction: {
|
|
1031
|
+
readonly NO_ACTION: "NO_ACTION";
|
|
1032
|
+
readonly START_SYNC: "START_SYNC";
|
|
1033
|
+
};
|
|
1034
|
+
/**
|
|
1035
|
+
* @public
|
|
1036
|
+
*/
|
|
1037
|
+
export type SyncAction = (typeof SyncAction)[keyof typeof SyncAction];
|
|
1023
1038
|
/**
|
|
1024
1039
|
* @public
|
|
1025
1040
|
*/
|
|
@@ -64,10 +64,11 @@ export declare class ValidationException extends __BaseException {
|
|
|
64
64
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
65
65
|
);
|
|
66
66
|
}
|
|
67
|
-
export declare
|
|
68
|
-
CFN_STACK
|
|
69
|
-
RESOURCE_TAG_VALUE
|
|
70
|
-
}
|
|
67
|
+
export declare const ResourceType: {
|
|
68
|
+
readonly CFN_STACK: "CFN_STACK";
|
|
69
|
+
readonly RESOURCE_TAG_VALUE: "RESOURCE_TAG_VALUE";
|
|
70
|
+
};
|
|
71
|
+
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
71
72
|
export interface AssociateResourceRequest {
|
|
72
73
|
application: string | undefined;
|
|
73
74
|
resourceType: ResourceType | string | undefined;
|
|
@@ -160,14 +161,16 @@ export interface DisassociateResourceResponse {
|
|
|
160
161
|
export interface GetApplicationRequest {
|
|
161
162
|
application: string | undefined;
|
|
162
163
|
}
|
|
163
|
-
export declare
|
|
164
|
-
CREATE_COMPLETE
|
|
165
|
-
CREATE_FAILED
|
|
166
|
-
CREATING
|
|
167
|
-
UPDATE_COMPLETE
|
|
168
|
-
UPDATE_FAILED
|
|
169
|
-
UPDATING
|
|
170
|
-
}
|
|
164
|
+
export declare const ResourceGroupState: {
|
|
165
|
+
readonly CREATE_COMPLETE: "CREATE_COMPLETE";
|
|
166
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
167
|
+
readonly CREATING: "CREATING";
|
|
168
|
+
readonly UPDATE_COMPLETE: "UPDATE_COMPLETE";
|
|
169
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
170
|
+
readonly UPDATING: "UPDATING";
|
|
171
|
+
};
|
|
172
|
+
export type ResourceGroupState =
|
|
173
|
+
(typeof ResourceGroupState)[keyof typeof ResourceGroupState];
|
|
171
174
|
export interface ResourceGroup {
|
|
172
175
|
state?: ResourceGroupState | string;
|
|
173
176
|
arn?: string;
|
|
@@ -286,10 +289,11 @@ export interface SyncResourceRequest {
|
|
|
286
289
|
resourceType: ResourceType | string | undefined;
|
|
287
290
|
resource: string | undefined;
|
|
288
291
|
}
|
|
289
|
-
export declare
|
|
290
|
-
NO_ACTION
|
|
291
|
-
START_SYNC
|
|
292
|
-
}
|
|
292
|
+
export declare const SyncAction: {
|
|
293
|
+
readonly NO_ACTION: "NO_ACTION";
|
|
294
|
+
readonly START_SYNC: "START_SYNC";
|
|
295
|
+
};
|
|
296
|
+
export type SyncAction = (typeof SyncAction)[keyof typeof SyncAction];
|
|
293
297
|
export interface SyncResourceResponse {
|
|
294
298
|
applicationArn?: string;
|
|
295
299
|
resourceArn?: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-service-catalog-appregistry",
|
|
3
3
|
"description": "AWS SDK for JavaScript Service Catalog Appregistry Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.303.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,43 +21,43 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/protocol-http": "3.
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
44
|
-
"@aws-sdk/types": "3.
|
|
45
|
-
"@aws-sdk/url-parser": "3.
|
|
46
|
-
"@aws-sdk/util-base64": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
55
|
-
"@aws-sdk/util-utf8": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.303.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.303.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.303.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.303.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.303.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.303.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.303.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.303.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.303.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.303.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.303.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.303.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.303.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.303.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.303.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.303.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.303.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.303.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.303.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.303.0",
|
|
44
|
+
"@aws-sdk/types": "3.303.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.303.0",
|
|
46
|
+
"@aws-sdk/util-base64": "3.303.0",
|
|
47
|
+
"@aws-sdk/util-body-length-browser": "3.303.0",
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.303.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.303.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.303.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.303.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.303.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.303.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.303.0",
|
|
55
|
+
"@aws-sdk/util-utf8": "3.303.0",
|
|
56
56
|
"tslib": "^2.5.0",
|
|
57
57
|
"uuid": "^8.3.2"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
60
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
61
61
|
"@tsconfig/node14": "1.0.3",
|
|
62
62
|
"@types/node": "^14.14.31",
|
|
63
63
|
"@types/uuid": "^8.3.0",
|