@aws-sdk/client-service-catalog-appregistry 3.169.0 → 3.170.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 +8 -0
  2. package/dist-types/ts3.4/ServiceCatalogAppRegistry.d.ts +406 -115
  3. package/dist-types/ts3.4/ServiceCatalogAppRegistryClient.d.ts +262 -95
  4. package/dist-types/ts3.4/commands/AssociateAttributeGroupCommand.d.ts +41 -17
  5. package/dist-types/ts3.4/commands/AssociateResourceCommand.d.ts +38 -17
  6. package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +38 -17
  7. package/dist-types/ts3.4/commands/CreateAttributeGroupCommand.d.ts +41 -17
  8. package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +38 -17
  9. package/dist-types/ts3.4/commands/DeleteAttributeGroupCommand.d.ts +41 -17
  10. package/dist-types/ts3.4/commands/DisassociateAttributeGroupCommand.d.ts +41 -17
  11. package/dist-types/ts3.4/commands/DisassociateResourceCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +37 -17
  13. package/dist-types/ts3.4/commands/GetAssociatedResourceCommand.d.ts +41 -17
  14. package/dist-types/ts3.4/commands/GetAttributeGroupCommand.d.ts +38 -17
  15. package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +37 -17
  16. package/dist-types/ts3.4/commands/ListAssociatedAttributeGroupsCommand.d.ts +41 -17
  17. package/dist-types/ts3.4/commands/ListAssociatedResourcesCommand.d.ts +41 -17
  18. package/dist-types/ts3.4/commands/ListAttributeGroupsCommand.d.ts +38 -17
  19. package/dist-types/ts3.4/commands/ListAttributeGroupsForApplicationCommand.d.ts +41 -17
  20. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  21. package/dist-types/ts3.4/commands/SyncResourceCommand.d.ts +34 -17
  22. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  23. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  24. package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +38 -17
  25. package/dist-types/ts3.4/commands/UpdateAttributeGroupCommand.d.ts +41 -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 +8 -6
  30. package/dist-types/ts3.4/models/index.d.ts +1 -1
  31. package/dist-types/ts3.4/models/models_0.d.ts +610 -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 +68 -38
  41. package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
  42. package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
  43. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
  44. package/package.json +34 -34
@@ -1,17 +1,41 @@
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 { DeleteAttributeGroupRequest, DeleteAttributeGroupResponse } from "../models/models_0";
4
- import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
5
- export interface DeleteAttributeGroupCommandInput extends DeleteAttributeGroupRequest {
6
- }
7
- export interface DeleteAttributeGroupCommandOutput extends DeleteAttributeGroupResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteAttributeGroupCommand extends $Command<DeleteAttributeGroupCommandInput, DeleteAttributeGroupCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
11
- readonly input: DeleteAttributeGroupCommandInput;
12
- constructor(input: DeleteAttributeGroupCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteAttributeGroupCommandInput, DeleteAttributeGroupCommandOutput>;
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
+ DeleteAttributeGroupRequest,
10
+ DeleteAttributeGroupResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceCatalogAppRegistryClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../ServiceCatalogAppRegistryClient";
17
+ export interface DeleteAttributeGroupCommandInput
18
+ extends DeleteAttributeGroupRequest {}
19
+ export interface DeleteAttributeGroupCommandOutput
20
+ extends DeleteAttributeGroupResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DeleteAttributeGroupCommand extends $Command<
24
+ DeleteAttributeGroupCommandInput,
25
+ DeleteAttributeGroupCommandOutput,
26
+ ServiceCatalogAppRegistryClientResolvedConfig
27
+ > {
28
+ readonly input: DeleteAttributeGroupCommandInput;
29
+ constructor(input: DeleteAttributeGroupCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ServiceCatalogAppRegistryClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DeleteAttributeGroupCommandInput,
37
+ DeleteAttributeGroupCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,41 @@
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 { DisassociateAttributeGroupRequest, DisassociateAttributeGroupResponse } from "../models/models_0";
4
- import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
5
- export interface DisassociateAttributeGroupCommandInput extends DisassociateAttributeGroupRequest {
6
- }
7
- export interface DisassociateAttributeGroupCommandOutput extends DisassociateAttributeGroupResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DisassociateAttributeGroupCommand extends $Command<DisassociateAttributeGroupCommandInput, DisassociateAttributeGroupCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
11
- readonly input: DisassociateAttributeGroupCommandInput;
12
- constructor(input: DisassociateAttributeGroupCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisassociateAttributeGroupCommandInput, DisassociateAttributeGroupCommandOutput>;
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
+ DisassociateAttributeGroupRequest,
10
+ DisassociateAttributeGroupResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceCatalogAppRegistryClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../ServiceCatalogAppRegistryClient";
17
+ export interface DisassociateAttributeGroupCommandInput
18
+ extends DisassociateAttributeGroupRequest {}
19
+ export interface DisassociateAttributeGroupCommandOutput
20
+ extends DisassociateAttributeGroupResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DisassociateAttributeGroupCommand extends $Command<
24
+ DisassociateAttributeGroupCommandInput,
25
+ DisassociateAttributeGroupCommandOutput,
26
+ ServiceCatalogAppRegistryClientResolvedConfig
27
+ > {
28
+ readonly input: DisassociateAttributeGroupCommandInput;
29
+ constructor(input: DisassociateAttributeGroupCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ServiceCatalogAppRegistryClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DisassociateAttributeGroupCommandInput,
37
+ DisassociateAttributeGroupCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,41 @@
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 { DisassociateResourceRequest, DisassociateResourceResponse } from "../models/models_0";
4
- import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
5
- export interface DisassociateResourceCommandInput extends DisassociateResourceRequest {
6
- }
7
- export interface DisassociateResourceCommandOutput extends DisassociateResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DisassociateResourceCommand extends $Command<DisassociateResourceCommandInput, DisassociateResourceCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
11
- readonly input: DisassociateResourceCommandInput;
12
- constructor(input: DisassociateResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisassociateResourceCommandInput, DisassociateResourceCommandOutput>;
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
+ DisassociateResourceRequest,
10
+ DisassociateResourceResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceCatalogAppRegistryClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../ServiceCatalogAppRegistryClient";
17
+ export interface DisassociateResourceCommandInput
18
+ extends DisassociateResourceRequest {}
19
+ export interface DisassociateResourceCommandOutput
20
+ extends DisassociateResourceResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DisassociateResourceCommand extends $Command<
24
+ DisassociateResourceCommandInput,
25
+ DisassociateResourceCommandOutput,
26
+ ServiceCatalogAppRegistryClientResolvedConfig
27
+ > {
28
+ readonly input: DisassociateResourceCommandInput;
29
+ constructor(input: DisassociateResourceCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ServiceCatalogAppRegistryClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DisassociateResourceCommandInput,
37
+ DisassociateResourceCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,37 @@
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 { GetApplicationRequest, GetApplicationResponse } from "../models/models_0";
4
- import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
5
- export interface GetApplicationCommandInput extends GetApplicationRequest {
6
- }
7
- export interface GetApplicationCommandOutput extends GetApplicationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetApplicationCommand extends $Command<GetApplicationCommandInput, GetApplicationCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
11
- readonly input: GetApplicationCommandInput;
12
- constructor(input: GetApplicationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetApplicationCommandInput, GetApplicationCommandOutput>;
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
+ GetApplicationRequest,
10
+ GetApplicationResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceCatalogAppRegistryClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../ServiceCatalogAppRegistryClient";
17
+ export interface GetApplicationCommandInput extends GetApplicationRequest {}
18
+ export interface GetApplicationCommandOutput
19
+ extends GetApplicationResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class GetApplicationCommand extends $Command<
23
+ GetApplicationCommandInput,
24
+ GetApplicationCommandOutput,
25
+ ServiceCatalogAppRegistryClientResolvedConfig
26
+ > {
27
+ readonly input: GetApplicationCommandInput;
28
+ constructor(input: GetApplicationCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: ServiceCatalogAppRegistryClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<GetApplicationCommandInput, GetApplicationCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,41 @@
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 { GetAssociatedResourceRequest, GetAssociatedResourceResponse } from "../models/models_0";
4
- import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
5
- export interface GetAssociatedResourceCommandInput extends GetAssociatedResourceRequest {
6
- }
7
- export interface GetAssociatedResourceCommandOutput extends GetAssociatedResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetAssociatedResourceCommand extends $Command<GetAssociatedResourceCommandInput, GetAssociatedResourceCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
11
- readonly input: GetAssociatedResourceCommandInput;
12
- constructor(input: GetAssociatedResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAssociatedResourceCommandInput, GetAssociatedResourceCommandOutput>;
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
+ GetAssociatedResourceRequest,
10
+ GetAssociatedResourceResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceCatalogAppRegistryClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../ServiceCatalogAppRegistryClient";
17
+ export interface GetAssociatedResourceCommandInput
18
+ extends GetAssociatedResourceRequest {}
19
+ export interface GetAssociatedResourceCommandOutput
20
+ extends GetAssociatedResourceResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class GetAssociatedResourceCommand extends $Command<
24
+ GetAssociatedResourceCommandInput,
25
+ GetAssociatedResourceCommandOutput,
26
+ ServiceCatalogAppRegistryClientResolvedConfig
27
+ > {
28
+ readonly input: GetAssociatedResourceCommandInput;
29
+ constructor(input: GetAssociatedResourceCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ServiceCatalogAppRegistryClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ GetAssociatedResourceCommandInput,
37
+ GetAssociatedResourceCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,38 @@
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 { GetAttributeGroupRequest, GetAttributeGroupResponse } from "../models/models_0";
4
- import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
5
- export interface GetAttributeGroupCommandInput extends GetAttributeGroupRequest {
6
- }
7
- export interface GetAttributeGroupCommandOutput extends GetAttributeGroupResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetAttributeGroupCommand extends $Command<GetAttributeGroupCommandInput, GetAttributeGroupCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
11
- readonly input: GetAttributeGroupCommandInput;
12
- constructor(input: GetAttributeGroupCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAttributeGroupCommandInput, GetAttributeGroupCommandOutput>;
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
+ GetAttributeGroupRequest,
10
+ GetAttributeGroupResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceCatalogAppRegistryClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../ServiceCatalogAppRegistryClient";
17
+ export interface GetAttributeGroupCommandInput
18
+ extends GetAttributeGroupRequest {}
19
+ export interface GetAttributeGroupCommandOutput
20
+ extends GetAttributeGroupResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class GetAttributeGroupCommand extends $Command<
24
+ GetAttributeGroupCommandInput,
25
+ GetAttributeGroupCommandOutput,
26
+ ServiceCatalogAppRegistryClientResolvedConfig
27
+ > {
28
+ readonly input: GetAttributeGroupCommandInput;
29
+ constructor(input: GetAttributeGroupCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ServiceCatalogAppRegistryClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<GetAttributeGroupCommandInput, GetAttributeGroupCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,37 @@
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 { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0";
4
- import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
5
- export interface ListApplicationsCommandInput extends ListApplicationsRequest {
6
- }
7
- export interface ListApplicationsCommandOutput extends ListApplicationsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListApplicationsCommand extends $Command<ListApplicationsCommandInput, ListApplicationsCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
11
- readonly input: ListApplicationsCommandInput;
12
- constructor(input: ListApplicationsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListApplicationsCommandInput, ListApplicationsCommandOutput>;
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
+ ListApplicationsRequest,
10
+ ListApplicationsResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceCatalogAppRegistryClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../ServiceCatalogAppRegistryClient";
17
+ export interface ListApplicationsCommandInput extends ListApplicationsRequest {}
18
+ export interface ListApplicationsCommandOutput
19
+ extends ListApplicationsResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class ListApplicationsCommand extends $Command<
23
+ ListApplicationsCommandInput,
24
+ ListApplicationsCommandOutput,
25
+ ServiceCatalogAppRegistryClientResolvedConfig
26
+ > {
27
+ readonly input: ListApplicationsCommandInput;
28
+ constructor(input: ListApplicationsCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: ServiceCatalogAppRegistryClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<ListApplicationsCommandInput, ListApplicationsCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,41 @@
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 { ListAssociatedAttributeGroupsRequest, ListAssociatedAttributeGroupsResponse } from "../models/models_0";
4
- import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
5
- export interface ListAssociatedAttributeGroupsCommandInput extends ListAssociatedAttributeGroupsRequest {
6
- }
7
- export interface ListAssociatedAttributeGroupsCommandOutput extends ListAssociatedAttributeGroupsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListAssociatedAttributeGroupsCommand extends $Command<ListAssociatedAttributeGroupsCommandInput, ListAssociatedAttributeGroupsCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
11
- readonly input: ListAssociatedAttributeGroupsCommandInput;
12
- constructor(input: ListAssociatedAttributeGroupsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAssociatedAttributeGroupsCommandInput, ListAssociatedAttributeGroupsCommandOutput>;
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
+ ListAssociatedAttributeGroupsRequest,
10
+ ListAssociatedAttributeGroupsResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceCatalogAppRegistryClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../ServiceCatalogAppRegistryClient";
17
+ export interface ListAssociatedAttributeGroupsCommandInput
18
+ extends ListAssociatedAttributeGroupsRequest {}
19
+ export interface ListAssociatedAttributeGroupsCommandOutput
20
+ extends ListAssociatedAttributeGroupsResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListAssociatedAttributeGroupsCommand extends $Command<
24
+ ListAssociatedAttributeGroupsCommandInput,
25
+ ListAssociatedAttributeGroupsCommandOutput,
26
+ ServiceCatalogAppRegistryClientResolvedConfig
27
+ > {
28
+ readonly input: ListAssociatedAttributeGroupsCommandInput;
29
+ constructor(input: ListAssociatedAttributeGroupsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ServiceCatalogAppRegistryClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ ListAssociatedAttributeGroupsCommandInput,
37
+ ListAssociatedAttributeGroupsCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,41 @@
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 { ListAssociatedResourcesRequest, ListAssociatedResourcesResponse } from "../models/models_0";
4
- import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
5
- export interface ListAssociatedResourcesCommandInput extends ListAssociatedResourcesRequest {
6
- }
7
- export interface ListAssociatedResourcesCommandOutput extends ListAssociatedResourcesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListAssociatedResourcesCommand extends $Command<ListAssociatedResourcesCommandInput, ListAssociatedResourcesCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
11
- readonly input: ListAssociatedResourcesCommandInput;
12
- constructor(input: ListAssociatedResourcesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAssociatedResourcesCommandInput, ListAssociatedResourcesCommandOutput>;
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
+ ListAssociatedResourcesRequest,
10
+ ListAssociatedResourcesResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceCatalogAppRegistryClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../ServiceCatalogAppRegistryClient";
17
+ export interface ListAssociatedResourcesCommandInput
18
+ extends ListAssociatedResourcesRequest {}
19
+ export interface ListAssociatedResourcesCommandOutput
20
+ extends ListAssociatedResourcesResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListAssociatedResourcesCommand extends $Command<
24
+ ListAssociatedResourcesCommandInput,
25
+ ListAssociatedResourcesCommandOutput,
26
+ ServiceCatalogAppRegistryClientResolvedConfig
27
+ > {
28
+ readonly input: ListAssociatedResourcesCommandInput;
29
+ constructor(input: ListAssociatedResourcesCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ServiceCatalogAppRegistryClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ ListAssociatedResourcesCommandInput,
37
+ ListAssociatedResourcesCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,38 @@
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 { ListAttributeGroupsRequest, ListAttributeGroupsResponse } from "../models/models_0";
4
- import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
5
- export interface ListAttributeGroupsCommandInput extends ListAttributeGroupsRequest {
6
- }
7
- export interface ListAttributeGroupsCommandOutput extends ListAttributeGroupsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListAttributeGroupsCommand extends $Command<ListAttributeGroupsCommandInput, ListAttributeGroupsCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
11
- readonly input: ListAttributeGroupsCommandInput;
12
- constructor(input: ListAttributeGroupsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAttributeGroupsCommandInput, ListAttributeGroupsCommandOutput>;
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
+ ListAttributeGroupsRequest,
10
+ ListAttributeGroupsResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceCatalogAppRegistryClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../ServiceCatalogAppRegistryClient";
17
+ export interface ListAttributeGroupsCommandInput
18
+ extends ListAttributeGroupsRequest {}
19
+ export interface ListAttributeGroupsCommandOutput
20
+ extends ListAttributeGroupsResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListAttributeGroupsCommand extends $Command<
24
+ ListAttributeGroupsCommandInput,
25
+ ListAttributeGroupsCommandOutput,
26
+ ServiceCatalogAppRegistryClientResolvedConfig
27
+ > {
28
+ readonly input: ListAttributeGroupsCommandInput;
29
+ constructor(input: ListAttributeGroupsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ServiceCatalogAppRegistryClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListAttributeGroupsCommandInput, ListAttributeGroupsCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,41 @@
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 { ListAttributeGroupsForApplicationRequest, ListAttributeGroupsForApplicationResponse } from "../models/models_0";
4
- import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
5
- export interface ListAttributeGroupsForApplicationCommandInput extends ListAttributeGroupsForApplicationRequest {
6
- }
7
- export interface ListAttributeGroupsForApplicationCommandOutput extends ListAttributeGroupsForApplicationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListAttributeGroupsForApplicationCommand extends $Command<ListAttributeGroupsForApplicationCommandInput, ListAttributeGroupsForApplicationCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
11
- readonly input: ListAttributeGroupsForApplicationCommandInput;
12
- constructor(input: ListAttributeGroupsForApplicationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAttributeGroupsForApplicationCommandInput, ListAttributeGroupsForApplicationCommandOutput>;
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
+ ListAttributeGroupsForApplicationRequest,
10
+ ListAttributeGroupsForApplicationResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceCatalogAppRegistryClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../ServiceCatalogAppRegistryClient";
17
+ export interface ListAttributeGroupsForApplicationCommandInput
18
+ extends ListAttributeGroupsForApplicationRequest {}
19
+ export interface ListAttributeGroupsForApplicationCommandOutput
20
+ extends ListAttributeGroupsForApplicationResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListAttributeGroupsForApplicationCommand extends $Command<
24
+ ListAttributeGroupsForApplicationCommandInput,
25
+ ListAttributeGroupsForApplicationCommandOutput,
26
+ ServiceCatalogAppRegistryClientResolvedConfig
27
+ > {
28
+ readonly input: ListAttributeGroupsForApplicationCommandInput;
29
+ constructor(input: ListAttributeGroupsForApplicationCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ServiceCatalogAppRegistryClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ ListAttributeGroupsForApplicationCommandInput,
37
+ ListAttributeGroupsForApplicationCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }