@aws-sdk/client-service-catalog-appregistry 3.169.0 → 3.171.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 (44) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/ServiceCatalogAppRegistry.d.ts +384 -115
  3. package/dist-types/ts3.4/ServiceCatalogAppRegistryClient.d.ts +237 -95
  4. package/dist-types/ts3.4/commands/AssociateAttributeGroupCommand.d.ts +39 -17
  5. package/dist-types/ts3.4/commands/AssociateResourceCommand.d.ts +36 -17
  6. package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +36 -17
  7. package/dist-types/ts3.4/commands/CreateAttributeGroupCommand.d.ts +39 -17
  8. package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +36 -17
  9. package/dist-types/ts3.4/commands/DeleteAttributeGroupCommand.d.ts +39 -17
  10. package/dist-types/ts3.4/commands/DisassociateAttributeGroupCommand.d.ts +39 -17
  11. package/dist-types/ts3.4/commands/DisassociateResourceCommand.d.ts +39 -17
  12. package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +35 -17
  13. package/dist-types/ts3.4/commands/GetAssociatedResourceCommand.d.ts +39 -17
  14. package/dist-types/ts3.4/commands/GetAttributeGroupCommand.d.ts +36 -17
  15. package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +35 -17
  16. package/dist-types/ts3.4/commands/ListAssociatedAttributeGroupsCommand.d.ts +39 -17
  17. package/dist-types/ts3.4/commands/ListAssociatedResourcesCommand.d.ts +39 -17
  18. package/dist-types/ts3.4/commands/ListAttributeGroupsCommand.d.ts +36 -17
  19. package/dist-types/ts3.4/commands/ListAttributeGroupsForApplicationCommand.d.ts +39 -17
  20. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  21. package/dist-types/ts3.4/commands/SyncResourceCommand.d.ts +32 -17
  22. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  23. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  24. package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +36 -17
  25. package/dist-types/ts3.4/commands/UpdateAttributeGroupCommand.d.ts +39 -17
  26. package/dist-types/ts3.4/commands/index.d.ts +22 -22
  27. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  28. package/dist-types/ts3.4/index.d.ts +6 -6
  29. package/dist-types/ts3.4/models/ServiceCatalogAppRegistryServiceException.d.ts +7 -6
  30. package/dist-types/ts3.4/models/index.d.ts +1 -1
  31. package/dist-types/ts3.4/models/models_0.d.ts +449 -556
  32. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  33. package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +11 -4
  34. package/dist-types/ts3.4/pagination/ListAssociatedAttributeGroupsPaginator.d.ts +11 -4
  35. package/dist-types/ts3.4/pagination/ListAssociatedResourcesPaginator.d.ts +11 -4
  36. package/dist-types/ts3.4/pagination/ListAttributeGroupsForApplicationPaginator.d.ts +11 -4
  37. package/dist-types/ts3.4/pagination/ListAttributeGroupsPaginator.d.ts +11 -4
  38. package/dist-types/ts3.4/pagination/index.d.ts +6 -6
  39. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +269 -68
  40. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
  41. package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
  42. package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
  43. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
  44. package/package.json +34 -34
@@ -1,17 +1,36 @@
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 { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
4
- import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
5
- export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
6
- }
7
- export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
11
- readonly input: ListTagsForResourceCommandInput;
12
- constructor(input: ListTagsForResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ListTagsForResourceRequest,
10
+ ListTagsForResourceResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceCatalogAppRegistryClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../ServiceCatalogAppRegistryClient";
17
+ export interface ListTagsForResourceCommandInput
18
+ extends ListTagsForResourceRequest {}
19
+ export interface ListTagsForResourceCommandOutput
20
+ extends ListTagsForResourceResponse,
21
+ __MetadataBearer {}
22
+ export declare class ListTagsForResourceCommand extends $Command<
23
+ ListTagsForResourceCommandInput,
24
+ ListTagsForResourceCommandOutput,
25
+ ServiceCatalogAppRegistryClientResolvedConfig
26
+ > {
27
+ readonly input: ListTagsForResourceCommandInput;
28
+ constructor(input: ListTagsForResourceCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: ServiceCatalogAppRegistryClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,32 @@
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 { SyncResourceRequest, SyncResourceResponse } from "../models/models_0";
4
- import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
5
- export interface SyncResourceCommandInput extends SyncResourceRequest {
6
- }
7
- export interface SyncResourceCommandOutput extends SyncResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class SyncResourceCommand extends $Command<SyncResourceCommandInput, SyncResourceCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
11
- readonly input: SyncResourceCommandInput;
12
- constructor(input: SyncResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SyncResourceCommandInput, SyncResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { SyncResourceRequest, SyncResourceResponse } from "../models/models_0";
9
+ import {
10
+ ServiceCatalogAppRegistryClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../ServiceCatalogAppRegistryClient";
14
+ export interface SyncResourceCommandInput extends SyncResourceRequest {}
15
+ export interface SyncResourceCommandOutput
16
+ extends SyncResourceResponse,
17
+ __MetadataBearer {}
18
+ export declare class SyncResourceCommand extends $Command<
19
+ SyncResourceCommandInput,
20
+ SyncResourceCommandOutput,
21
+ ServiceCatalogAppRegistryClientResolvedConfig
22
+ > {
23
+ readonly input: SyncResourceCommandInput;
24
+ constructor(input: SyncResourceCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: ServiceCatalogAppRegistryClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<SyncResourceCommandInput, SyncResourceCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,32 @@
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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
4
- import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
5
- export interface TagResourceCommandInput extends TagResourceRequest {
6
- }
7
- export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
11
- readonly input: TagResourceCommandInput;
12
- constructor(input: TagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
9
+ import {
10
+ ServiceCatalogAppRegistryClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../ServiceCatalogAppRegistryClient";
14
+ export interface TagResourceCommandInput extends TagResourceRequest {}
15
+ export interface TagResourceCommandOutput
16
+ extends TagResourceResponse,
17
+ __MetadataBearer {}
18
+ export declare class TagResourceCommand extends $Command<
19
+ TagResourceCommandInput,
20
+ TagResourceCommandOutput,
21
+ ServiceCatalogAppRegistryClientResolvedConfig
22
+ > {
23
+ readonly input: TagResourceCommandInput;
24
+ constructor(input: TagResourceCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: ServiceCatalogAppRegistryClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,35 @@
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 { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
4
- import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
5
- export interface UntagResourceCommandInput extends UntagResourceRequest {
6
- }
7
- export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
11
- readonly input: UntagResourceCommandInput;
12
- constructor(input: UntagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ UntagResourceRequest,
10
+ UntagResourceResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceCatalogAppRegistryClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../ServiceCatalogAppRegistryClient";
17
+ export interface UntagResourceCommandInput extends UntagResourceRequest {}
18
+ export interface UntagResourceCommandOutput
19
+ extends UntagResourceResponse,
20
+ __MetadataBearer {}
21
+ export declare class UntagResourceCommand extends $Command<
22
+ UntagResourceCommandInput,
23
+ UntagResourceCommandOutput,
24
+ ServiceCatalogAppRegistryClientResolvedConfig
25
+ > {
26
+ readonly input: UntagResourceCommandInput;
27
+ constructor(input: UntagResourceCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: ServiceCatalogAppRegistryClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,36 @@
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 { UpdateApplicationRequest, UpdateApplicationResponse } from "../models/models_0";
4
- import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
5
- export interface UpdateApplicationCommandInput extends UpdateApplicationRequest {
6
- }
7
- export interface UpdateApplicationCommandOutput extends UpdateApplicationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateApplicationCommand extends $Command<UpdateApplicationCommandInput, UpdateApplicationCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
11
- readonly input: UpdateApplicationCommandInput;
12
- constructor(input: UpdateApplicationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateApplicationCommandInput, UpdateApplicationCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ UpdateApplicationRequest,
10
+ UpdateApplicationResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceCatalogAppRegistryClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../ServiceCatalogAppRegistryClient";
17
+ export interface UpdateApplicationCommandInput
18
+ extends UpdateApplicationRequest {}
19
+ export interface UpdateApplicationCommandOutput
20
+ extends UpdateApplicationResponse,
21
+ __MetadataBearer {}
22
+ export declare class UpdateApplicationCommand extends $Command<
23
+ UpdateApplicationCommandInput,
24
+ UpdateApplicationCommandOutput,
25
+ ServiceCatalogAppRegistryClientResolvedConfig
26
+ > {
27
+ readonly input: UpdateApplicationCommandInput;
28
+ constructor(input: UpdateApplicationCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: ServiceCatalogAppRegistryClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<UpdateApplicationCommandInput, UpdateApplicationCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,39 @@
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 { UpdateAttributeGroupRequest, UpdateAttributeGroupResponse } from "../models/models_0";
4
- import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
5
- export interface UpdateAttributeGroupCommandInput extends UpdateAttributeGroupRequest {
6
- }
7
- export interface UpdateAttributeGroupCommandOutput extends UpdateAttributeGroupResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateAttributeGroupCommand extends $Command<UpdateAttributeGroupCommandInput, UpdateAttributeGroupCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
11
- readonly input: UpdateAttributeGroupCommandInput;
12
- constructor(input: UpdateAttributeGroupCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateAttributeGroupCommandInput, UpdateAttributeGroupCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ UpdateAttributeGroupRequest,
10
+ UpdateAttributeGroupResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceCatalogAppRegistryClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../ServiceCatalogAppRegistryClient";
17
+ export interface UpdateAttributeGroupCommandInput
18
+ extends UpdateAttributeGroupRequest {}
19
+ export interface UpdateAttributeGroupCommandOutput
20
+ extends UpdateAttributeGroupResponse,
21
+ __MetadataBearer {}
22
+ export declare class UpdateAttributeGroupCommand extends $Command<
23
+ UpdateAttributeGroupCommandInput,
24
+ UpdateAttributeGroupCommandOutput,
25
+ ServiceCatalogAppRegistryClientResolvedConfig
26
+ > {
27
+ readonly input: UpdateAttributeGroupCommandInput;
28
+ constructor(input: UpdateAttributeGroupCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: ServiceCatalogAppRegistryClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ UpdateAttributeGroupCommandInput,
35
+ UpdateAttributeGroupCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,22 +1,22 @@
1
- export * from "./AssociateAttributeGroupCommand";
2
- export * from "./AssociateResourceCommand";
3
- export * from "./CreateApplicationCommand";
4
- export * from "./CreateAttributeGroupCommand";
5
- export * from "./DeleteApplicationCommand";
6
- export * from "./DeleteAttributeGroupCommand";
7
- export * from "./DisassociateAttributeGroupCommand";
8
- export * from "./DisassociateResourceCommand";
9
- export * from "./GetApplicationCommand";
10
- export * from "./GetAssociatedResourceCommand";
11
- export * from "./GetAttributeGroupCommand";
12
- export * from "./ListApplicationsCommand";
13
- export * from "./ListAssociatedAttributeGroupsCommand";
14
- export * from "./ListAssociatedResourcesCommand";
15
- export * from "./ListAttributeGroupsCommand";
16
- export * from "./ListAttributeGroupsForApplicationCommand";
17
- export * from "./ListTagsForResourceCommand";
18
- export * from "./SyncResourceCommand";
19
- export * from "./TagResourceCommand";
20
- export * from "./UntagResourceCommand";
21
- export * from "./UpdateApplicationCommand";
22
- export * from "./UpdateAttributeGroupCommand";
1
+ export * from "./AssociateAttributeGroupCommand";
2
+ export * from "./AssociateResourceCommand";
3
+ export * from "./CreateApplicationCommand";
4
+ export * from "./CreateAttributeGroupCommand";
5
+ export * from "./DeleteApplicationCommand";
6
+ export * from "./DeleteAttributeGroupCommand";
7
+ export * from "./DisassociateAttributeGroupCommand";
8
+ export * from "./DisassociateResourceCommand";
9
+ export * from "./GetApplicationCommand";
10
+ export * from "./GetAssociatedResourceCommand";
11
+ export * from "./GetAttributeGroupCommand";
12
+ export * from "./ListApplicationsCommand";
13
+ export * from "./ListAssociatedAttributeGroupsCommand";
14
+ export * from "./ListAssociatedResourcesCommand";
15
+ export * from "./ListAttributeGroupsCommand";
16
+ export * from "./ListAttributeGroupsForApplicationCommand";
17
+ export * from "./ListTagsForResourceCommand";
18
+ export * from "./SyncResourceCommand";
19
+ export * from "./TagResourceCommand";
20
+ export * from "./UntagResourceCommand";
21
+ export * from "./UpdateApplicationCommand";
22
+ export * from "./UpdateAttributeGroupCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,6 +1,6 @@
1
- export * from "./ServiceCatalogAppRegistry";
2
- export * from "./ServiceCatalogAppRegistryClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export { ServiceCatalogAppRegistryServiceException } from "./models/ServiceCatalogAppRegistryServiceException";
1
+ export * from "./ServiceCatalogAppRegistry";
2
+ export * from "./ServiceCatalogAppRegistryClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { ServiceCatalogAppRegistryServiceException } from "./models/ServiceCatalogAppRegistryServiceException";
@@ -1,6 +1,7 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class ServiceCatalogAppRegistryServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+ export declare class ServiceCatalogAppRegistryServiceException extends __ServiceException {
6
+ constructor(options: __ServiceExceptionOptions);
7
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";