@aws-sdk/client-service-catalog-appregistry 3.927.0 → 3.929.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/index.js +912 -1028
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/ServiceCatalogAppRegistryClient.js +2 -0
- package/dist-es/commands/AssociateAttributeGroupCommand.js +3 -9
- package/dist-es/commands/AssociateResourceCommand.js +3 -9
- package/dist-es/commands/CreateApplicationCommand.js +3 -9
- package/dist-es/commands/CreateAttributeGroupCommand.js +3 -9
- package/dist-es/commands/DeleteApplicationCommand.js +3 -9
- package/dist-es/commands/DeleteAttributeGroupCommand.js +3 -9
- package/dist-es/commands/DisassociateAttributeGroupCommand.js +3 -9
- package/dist-es/commands/DisassociateResourceCommand.js +3 -9
- package/dist-es/commands/GetApplicationCommand.js +3 -9
- package/dist-es/commands/GetAssociatedResourceCommand.js +3 -9
- package/dist-es/commands/GetAttributeGroupCommand.js +3 -9
- package/dist-es/commands/GetConfigurationCommand.js +3 -9
- package/dist-es/commands/ListApplicationsCommand.js +3 -9
- package/dist-es/commands/ListAssociatedAttributeGroupsCommand.js +3 -9
- package/dist-es/commands/ListAssociatedResourcesCommand.js +3 -9
- package/dist-es/commands/ListAttributeGroupsCommand.js +3 -9
- package/dist-es/commands/ListAttributeGroupsForApplicationCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/PutConfigurationCommand.js +3 -9
- package/dist-es/commands/SyncResourceCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateApplicationCommand.js +3 -9
- package/dist-es/commands/UpdateAttributeGroupCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +853 -0
- package/dist-types/ServiceCatalogAppRegistryClient.d.ts +10 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +105 -0
- package/dist-types/ts3.4/ServiceCatalogAppRegistryClient.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +110 -0
- package/package.json +5 -6
- package/dist-es/protocols/Aws_restJson1.js +0 -846
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -218
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -293
|
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
|
|
|
5
5
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
8
|
-
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
8
|
+
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { AssociateAttributeGroupCommandInput, AssociateAttributeGroupCommandOutput } from "./commands/AssociateAttributeGroupCommand";
|
|
11
11
|
import { AssociateResourceCommandInput, AssociateResourceCommandOutput } from "./commands/AssociateResourceCommand";
|
|
@@ -165,6 +165,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
165
165
|
* Optional extensions
|
|
166
166
|
*/
|
|
167
167
|
extensions?: RuntimeExtension[];
|
|
168
|
+
/**
|
|
169
|
+
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
170
|
+
* may be overridden. A default will always be set by the client.
|
|
171
|
+
* Available options depend on the service's supported protocols and will not be validated by
|
|
172
|
+
* the client.
|
|
173
|
+
* @alpha
|
|
174
|
+
*
|
|
175
|
+
*/
|
|
176
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
168
177
|
/**
|
|
169
178
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
170
179
|
*/
|
|
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: ServiceCatalogAppRegistryClientC
|
|
|
29
29
|
profile?: string;
|
|
30
30
|
logger: import("@smithy/types").Logger;
|
|
31
31
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
32
33
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
33
34
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
34
35
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: ServiceCatalogAppRegistryClientC
|
|
|
31
31
|
profile?: string;
|
|
32
32
|
logger: import("@smithy/types").Logger;
|
|
33
33
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
34
35
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
35
36
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
36
37
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: ServiceCatalogAppRegistryClientC
|
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
29
29
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
30
31
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
31
32
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
32
33
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (config: ServiceCatalogAppRegistryClientC
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ServiceCatalogAppRegistryHttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
17
18
|
serviceId: string;
|
|
18
19
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
20
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
|
+
export declare var Application: StaticStructureSchema;
|
|
3
|
+
export declare var ApplicationSummary: StaticStructureSchema;
|
|
4
|
+
export declare var ApplicationTagResult: StaticStructureSchema;
|
|
5
|
+
export declare var AppRegistryConfiguration: StaticStructureSchema;
|
|
6
|
+
export declare var AssociateAttributeGroupRequest: StaticStructureSchema;
|
|
7
|
+
export declare var AssociateAttributeGroupResponse: StaticStructureSchema;
|
|
8
|
+
export declare var AssociateResourceRequest: StaticStructureSchema;
|
|
9
|
+
export declare var AssociateResourceResponse: StaticStructureSchema;
|
|
10
|
+
export declare var AttributeGroup: StaticStructureSchema;
|
|
11
|
+
export declare var AttributeGroupDetails: StaticStructureSchema;
|
|
12
|
+
export declare var AttributeGroupSummary: StaticStructureSchema;
|
|
13
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
14
|
+
export declare var CreateApplicationRequest: StaticStructureSchema;
|
|
15
|
+
export declare var CreateApplicationResponse: StaticStructureSchema;
|
|
16
|
+
export declare var CreateAttributeGroupRequest: StaticStructureSchema;
|
|
17
|
+
export declare var CreateAttributeGroupResponse: StaticStructureSchema;
|
|
18
|
+
export declare var DeleteApplicationRequest: StaticStructureSchema;
|
|
19
|
+
export declare var DeleteApplicationResponse: StaticStructureSchema;
|
|
20
|
+
export declare var DeleteAttributeGroupRequest: StaticStructureSchema;
|
|
21
|
+
export declare var DeleteAttributeGroupResponse: StaticStructureSchema;
|
|
22
|
+
export declare var DisassociateAttributeGroupRequest: StaticStructureSchema;
|
|
23
|
+
export declare var DisassociateAttributeGroupResponse: StaticStructureSchema;
|
|
24
|
+
export declare var DisassociateResourceRequest: StaticStructureSchema;
|
|
25
|
+
export declare var DisassociateResourceResponse: StaticStructureSchema;
|
|
26
|
+
export declare var GetApplicationRequest: StaticStructureSchema;
|
|
27
|
+
export declare var GetApplicationResponse: StaticStructureSchema;
|
|
28
|
+
export declare var GetAssociatedResourceRequest: StaticStructureSchema;
|
|
29
|
+
export declare var GetAssociatedResourceResponse: StaticStructureSchema;
|
|
30
|
+
export declare var GetAttributeGroupRequest: StaticStructureSchema;
|
|
31
|
+
export declare var GetAttributeGroupResponse: StaticStructureSchema;
|
|
32
|
+
export declare var GetConfigurationResponse: StaticStructureSchema;
|
|
33
|
+
export declare var Integrations: StaticStructureSchema;
|
|
34
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
35
|
+
export declare var ListApplicationsRequest: StaticStructureSchema;
|
|
36
|
+
export declare var ListApplicationsResponse: StaticStructureSchema;
|
|
37
|
+
export declare var ListAssociatedAttributeGroupsRequest: StaticStructureSchema;
|
|
38
|
+
export declare var ListAssociatedAttributeGroupsResponse: StaticStructureSchema;
|
|
39
|
+
export declare var ListAssociatedResourcesRequest: StaticStructureSchema;
|
|
40
|
+
export declare var ListAssociatedResourcesResponse: StaticStructureSchema;
|
|
41
|
+
export declare var ListAttributeGroupsForApplicationRequest: StaticStructureSchema;
|
|
42
|
+
export declare var ListAttributeGroupsForApplicationResponse: StaticStructureSchema;
|
|
43
|
+
export declare var ListAttributeGroupsRequest: StaticStructureSchema;
|
|
44
|
+
export declare var ListAttributeGroupsResponse: StaticStructureSchema;
|
|
45
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
46
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
47
|
+
export declare var PutConfigurationRequest: StaticStructureSchema;
|
|
48
|
+
export declare var Resource: StaticStructureSchema;
|
|
49
|
+
export declare var ResourceDetails: StaticStructureSchema;
|
|
50
|
+
export declare var ResourceGroup: StaticStructureSchema;
|
|
51
|
+
export declare var ResourceInfo: StaticStructureSchema;
|
|
52
|
+
export declare var ResourceIntegrations: StaticStructureSchema;
|
|
53
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
54
|
+
export declare var ResourcesListItem: StaticStructureSchema;
|
|
55
|
+
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
56
|
+
export declare var SyncResourceRequest: StaticStructureSchema;
|
|
57
|
+
export declare var SyncResourceResponse: StaticStructureSchema;
|
|
58
|
+
export declare var TagQueryConfiguration: StaticStructureSchema;
|
|
59
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
60
|
+
export declare var TagResourceResponse: StaticStructureSchema;
|
|
61
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
62
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
63
|
+
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
64
|
+
export declare var UpdateApplicationRequest: StaticStructureSchema;
|
|
65
|
+
export declare var UpdateApplicationResponse: StaticStructureSchema;
|
|
66
|
+
export declare var UpdateAttributeGroupRequest: StaticStructureSchema;
|
|
67
|
+
export declare var UpdateAttributeGroupResponse: StaticStructureSchema;
|
|
68
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
69
|
+
export declare var __Unit: "unit";
|
|
70
|
+
export declare var ServiceCatalogAppRegistryServiceException: StaticErrorSchema;
|
|
71
|
+
export declare var ApplicationSummaries: StaticListSchema;
|
|
72
|
+
export declare var AttributeGroupDetailsList: StaticListSchema;
|
|
73
|
+
export declare var AttributeGroupIds: number;
|
|
74
|
+
export declare var AttributeGroupSummaries: StaticListSchema;
|
|
75
|
+
export declare var GetAssociatedResourceFilter: number;
|
|
76
|
+
export declare var Options: number;
|
|
77
|
+
export declare var Resources: StaticListSchema;
|
|
78
|
+
export declare var ResourcesList: StaticListSchema;
|
|
79
|
+
export declare var TagKeys: number;
|
|
80
|
+
export declare var ApplicationTagDefinition: number;
|
|
81
|
+
export declare var Tags: number;
|
|
82
|
+
export declare var AssociateAttributeGroup: StaticOperationSchema;
|
|
83
|
+
export declare var AssociateResource: StaticOperationSchema;
|
|
84
|
+
export declare var CreateApplication: StaticOperationSchema;
|
|
85
|
+
export declare var CreateAttributeGroup: StaticOperationSchema;
|
|
86
|
+
export declare var DeleteApplication: StaticOperationSchema;
|
|
87
|
+
export declare var DeleteAttributeGroup: StaticOperationSchema;
|
|
88
|
+
export declare var DisassociateAttributeGroup: StaticOperationSchema;
|
|
89
|
+
export declare var DisassociateResource: StaticOperationSchema;
|
|
90
|
+
export declare var GetApplication: StaticOperationSchema;
|
|
91
|
+
export declare var GetAssociatedResource: StaticOperationSchema;
|
|
92
|
+
export declare var GetAttributeGroup: StaticOperationSchema;
|
|
93
|
+
export declare var GetConfiguration: StaticOperationSchema;
|
|
94
|
+
export declare var ListApplications: StaticOperationSchema;
|
|
95
|
+
export declare var ListAssociatedAttributeGroups: StaticOperationSchema;
|
|
96
|
+
export declare var ListAssociatedResources: StaticOperationSchema;
|
|
97
|
+
export declare var ListAttributeGroups: StaticOperationSchema;
|
|
98
|
+
export declare var ListAttributeGroupsForApplication: StaticOperationSchema;
|
|
99
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
100
|
+
export declare var PutConfiguration: StaticOperationSchema;
|
|
101
|
+
export declare var SyncResource: StaticOperationSchema;
|
|
102
|
+
export declare var TagResource: StaticOperationSchema;
|
|
103
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
104
|
+
export declare var UpdateApplication: StaticOperationSchema;
|
|
105
|
+
export declare var UpdateAttributeGroup: StaticOperationSchema;
|
|
@@ -30,10 +30,13 @@ import {
|
|
|
30
30
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
31
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
32
|
ChecksumConstructor as __ChecksumConstructor,
|
|
33
|
+
ClientProtocol,
|
|
33
34
|
Decoder as __Decoder,
|
|
34
35
|
Encoder as __Encoder,
|
|
35
36
|
HashConstructor as __HashConstructor,
|
|
36
37
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
38
|
+
HttpRequest,
|
|
39
|
+
HttpResponse,
|
|
37
40
|
Logger as __Logger,
|
|
38
41
|
Provider as __Provider,
|
|
39
42
|
Provider,
|
|
@@ -222,6 +225,7 @@ export interface ClientDefaults
|
|
|
222
225
|
retryMode?: string | __Provider<string>;
|
|
223
226
|
logger?: __Logger;
|
|
224
227
|
extensions?: RuntimeExtension[];
|
|
228
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
225
229
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
226
230
|
}
|
|
227
231
|
export type ServiceCatalogAppRegistryClientConfigType = Partial<
|
|
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
|
|
|
40
40
|
profile?: string;
|
|
41
41
|
logger: import("@smithy/types").Logger;
|
|
42
42
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
44
|
+
import("@smithy/types").HttpRequest,
|
|
45
|
+
import("@smithy/types").HttpResponse
|
|
46
|
+
>;
|
|
43
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
44
48
|
userAgentAppId?:
|
|
45
49
|
| string
|
|
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
|
|
|
40
40
|
profile?: string;
|
|
41
41
|
logger: import("@smithy/types").Logger;
|
|
42
42
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
44
|
+
import("@smithy/types").HttpRequest,
|
|
45
|
+
import("@smithy/types").HttpResponse
|
|
46
|
+
>;
|
|
43
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
44
48
|
retryStrategy?:
|
|
45
49
|
| import("@smithy/types").RetryStrategy
|
|
@@ -39,6 +39,10 @@ export declare const getRuntimeConfig: (
|
|
|
39
39
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
40
40
|
logger: import("@smithy/types").Logger;
|
|
41
41
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
42
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
43
|
+
import("@smithy/types").HttpRequest,
|
|
44
|
+
import("@smithy/types").HttpResponse
|
|
45
|
+
>;
|
|
42
46
|
defaultsMode:
|
|
43
47
|
| import("@smithy/smithy-client").DefaultsMode
|
|
44
48
|
| import("@smithy/types").Provider<
|
|
@@ -16,6 +16,10 @@ export declare const getRuntimeConfig: (
|
|
|
16
16
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ServiceCatalogAppRegistryHttpAuthSchemeProvider;
|
|
17
17
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
18
18
|
logger: import("@smithy/types").Logger;
|
|
19
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
20
|
+
import("@smithy/types").HttpRequest,
|
|
21
|
+
import("@smithy/types").HttpResponse
|
|
22
|
+
>;
|
|
19
23
|
serviceId: string;
|
|
20
24
|
urlParser: import("@smithy/types").UrlParser;
|
|
21
25
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
import {
|
|
2
|
+
StaticErrorSchema,
|
|
3
|
+
StaticListSchema,
|
|
4
|
+
StaticOperationSchema,
|
|
5
|
+
StaticStructureSchema,
|
|
6
|
+
} from "@smithy/types";
|
|
7
|
+
export declare var Application: StaticStructureSchema;
|
|
8
|
+
export declare var ApplicationSummary: StaticStructureSchema;
|
|
9
|
+
export declare var ApplicationTagResult: StaticStructureSchema;
|
|
10
|
+
export declare var AppRegistryConfiguration: StaticStructureSchema;
|
|
11
|
+
export declare var AssociateAttributeGroupRequest: StaticStructureSchema;
|
|
12
|
+
export declare var AssociateAttributeGroupResponse: StaticStructureSchema;
|
|
13
|
+
export declare var AssociateResourceRequest: StaticStructureSchema;
|
|
14
|
+
export declare var AssociateResourceResponse: StaticStructureSchema;
|
|
15
|
+
export declare var AttributeGroup: StaticStructureSchema;
|
|
16
|
+
export declare var AttributeGroupDetails: StaticStructureSchema;
|
|
17
|
+
export declare var AttributeGroupSummary: StaticStructureSchema;
|
|
18
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
19
|
+
export declare var CreateApplicationRequest: StaticStructureSchema;
|
|
20
|
+
export declare var CreateApplicationResponse: StaticStructureSchema;
|
|
21
|
+
export declare var CreateAttributeGroupRequest: StaticStructureSchema;
|
|
22
|
+
export declare var CreateAttributeGroupResponse: StaticStructureSchema;
|
|
23
|
+
export declare var DeleteApplicationRequest: StaticStructureSchema;
|
|
24
|
+
export declare var DeleteApplicationResponse: StaticStructureSchema;
|
|
25
|
+
export declare var DeleteAttributeGroupRequest: StaticStructureSchema;
|
|
26
|
+
export declare var DeleteAttributeGroupResponse: StaticStructureSchema;
|
|
27
|
+
export declare var DisassociateAttributeGroupRequest: StaticStructureSchema;
|
|
28
|
+
export declare var DisassociateAttributeGroupResponse: StaticStructureSchema;
|
|
29
|
+
export declare var DisassociateResourceRequest: StaticStructureSchema;
|
|
30
|
+
export declare var DisassociateResourceResponse: StaticStructureSchema;
|
|
31
|
+
export declare var GetApplicationRequest: StaticStructureSchema;
|
|
32
|
+
export declare var GetApplicationResponse: StaticStructureSchema;
|
|
33
|
+
export declare var GetAssociatedResourceRequest: StaticStructureSchema;
|
|
34
|
+
export declare var GetAssociatedResourceResponse: StaticStructureSchema;
|
|
35
|
+
export declare var GetAttributeGroupRequest: StaticStructureSchema;
|
|
36
|
+
export declare var GetAttributeGroupResponse: StaticStructureSchema;
|
|
37
|
+
export declare var GetConfigurationResponse: StaticStructureSchema;
|
|
38
|
+
export declare var Integrations: StaticStructureSchema;
|
|
39
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
40
|
+
export declare var ListApplicationsRequest: StaticStructureSchema;
|
|
41
|
+
export declare var ListApplicationsResponse: StaticStructureSchema;
|
|
42
|
+
export declare var ListAssociatedAttributeGroupsRequest: StaticStructureSchema;
|
|
43
|
+
export declare var ListAssociatedAttributeGroupsResponse: StaticStructureSchema;
|
|
44
|
+
export declare var ListAssociatedResourcesRequest: StaticStructureSchema;
|
|
45
|
+
export declare var ListAssociatedResourcesResponse: StaticStructureSchema;
|
|
46
|
+
export declare var ListAttributeGroupsForApplicationRequest: StaticStructureSchema;
|
|
47
|
+
export declare var ListAttributeGroupsForApplicationResponse: StaticStructureSchema;
|
|
48
|
+
export declare var ListAttributeGroupsRequest: StaticStructureSchema;
|
|
49
|
+
export declare var ListAttributeGroupsResponse: StaticStructureSchema;
|
|
50
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
51
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
52
|
+
export declare var PutConfigurationRequest: StaticStructureSchema;
|
|
53
|
+
export declare var Resource: StaticStructureSchema;
|
|
54
|
+
export declare var ResourceDetails: StaticStructureSchema;
|
|
55
|
+
export declare var ResourceGroup: StaticStructureSchema;
|
|
56
|
+
export declare var ResourceInfo: StaticStructureSchema;
|
|
57
|
+
export declare var ResourceIntegrations: StaticStructureSchema;
|
|
58
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
59
|
+
export declare var ResourcesListItem: StaticStructureSchema;
|
|
60
|
+
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
61
|
+
export declare var SyncResourceRequest: StaticStructureSchema;
|
|
62
|
+
export declare var SyncResourceResponse: StaticStructureSchema;
|
|
63
|
+
export declare var TagQueryConfiguration: StaticStructureSchema;
|
|
64
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
65
|
+
export declare var TagResourceResponse: StaticStructureSchema;
|
|
66
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
67
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
68
|
+
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
69
|
+
export declare var UpdateApplicationRequest: StaticStructureSchema;
|
|
70
|
+
export declare var UpdateApplicationResponse: StaticStructureSchema;
|
|
71
|
+
export declare var UpdateAttributeGroupRequest: StaticStructureSchema;
|
|
72
|
+
export declare var UpdateAttributeGroupResponse: StaticStructureSchema;
|
|
73
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
74
|
+
export declare var __Unit: "unit";
|
|
75
|
+
export declare var ServiceCatalogAppRegistryServiceException: StaticErrorSchema;
|
|
76
|
+
export declare var ApplicationSummaries: StaticListSchema;
|
|
77
|
+
export declare var AttributeGroupDetailsList: StaticListSchema;
|
|
78
|
+
export declare var AttributeGroupIds: number;
|
|
79
|
+
export declare var AttributeGroupSummaries: StaticListSchema;
|
|
80
|
+
export declare var GetAssociatedResourceFilter: number;
|
|
81
|
+
export declare var Options: number;
|
|
82
|
+
export declare var Resources: StaticListSchema;
|
|
83
|
+
export declare var ResourcesList: StaticListSchema;
|
|
84
|
+
export declare var TagKeys: number;
|
|
85
|
+
export declare var ApplicationTagDefinition: number;
|
|
86
|
+
export declare var Tags: number;
|
|
87
|
+
export declare var AssociateAttributeGroup: StaticOperationSchema;
|
|
88
|
+
export declare var AssociateResource: StaticOperationSchema;
|
|
89
|
+
export declare var CreateApplication: StaticOperationSchema;
|
|
90
|
+
export declare var CreateAttributeGroup: StaticOperationSchema;
|
|
91
|
+
export declare var DeleteApplication: StaticOperationSchema;
|
|
92
|
+
export declare var DeleteAttributeGroup: StaticOperationSchema;
|
|
93
|
+
export declare var DisassociateAttributeGroup: StaticOperationSchema;
|
|
94
|
+
export declare var DisassociateResource: StaticOperationSchema;
|
|
95
|
+
export declare var GetApplication: StaticOperationSchema;
|
|
96
|
+
export declare var GetAssociatedResource: StaticOperationSchema;
|
|
97
|
+
export declare var GetAttributeGroup: StaticOperationSchema;
|
|
98
|
+
export declare var GetConfiguration: StaticOperationSchema;
|
|
99
|
+
export declare var ListApplications: StaticOperationSchema;
|
|
100
|
+
export declare var ListAssociatedAttributeGroups: StaticOperationSchema;
|
|
101
|
+
export declare var ListAssociatedResources: StaticOperationSchema;
|
|
102
|
+
export declare var ListAttributeGroups: StaticOperationSchema;
|
|
103
|
+
export declare var ListAttributeGroupsForApplication: StaticOperationSchema;
|
|
104
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
105
|
+
export declare var PutConfiguration: StaticOperationSchema;
|
|
106
|
+
export declare var SyncResource: StaticOperationSchema;
|
|
107
|
+
export declare var TagResource: StaticOperationSchema;
|
|
108
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
109
|
+
export declare var UpdateApplication: StaticOperationSchema;
|
|
110
|
+
export declare var UpdateAttributeGroup: StaticOperationSchema;
|
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.929.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-service-catalog-appregistry",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.928.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.929.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.922.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.922.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.922.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.928.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.925.0",
|
|
30
30
|
"@aws-sdk/types": "3.922.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.922.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.922.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.928.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.2",
|
|
35
35
|
"@smithy/core": "^3.17.2",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.5",
|
|
@@ -56,7 +56,6 @@
|
|
|
56
56
|
"@smithy/util-middleware": "^4.2.4",
|
|
57
57
|
"@smithy/util-retry": "^4.2.4",
|
|
58
58
|
"@smithy/util-utf8": "^4.2.0",
|
|
59
|
-
"@smithy/uuid": "^1.1.0",
|
|
60
59
|
"tslib": "^2.6.2"
|
|
61
60
|
},
|
|
62
61
|
"devDependencies": {
|