@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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/ServiceCatalogAppRegistry.d.ts +384 -115
- package/dist-types/ts3.4/ServiceCatalogAppRegistryClient.d.ts +237 -95
- package/dist-types/ts3.4/commands/AssociateAttributeGroupCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/AssociateResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/CreateAttributeGroupCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DeleteAttributeGroupCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DisassociateAttributeGroupCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DisassociateResourceCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetAssociatedResourceCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetAttributeGroupCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListAssociatedAttributeGroupsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListAssociatedResourcesCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListAttributeGroupsCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListAttributeGroupsForApplicationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/SyncResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/UpdateAttributeGroupCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/index.d.ts +22 -22
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/ServiceCatalogAppRegistryServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +449 -556
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListAssociatedAttributeGroupsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListAssociatedResourcesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListAttributeGroupsForApplicationPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListAttributeGroupsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +6 -6
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +269 -68
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
- package/package.json +34 -34
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class DeleteAttributeGroupCommand extends $Command<
|
|
23
|
+
DeleteAttributeGroupCommandInput,
|
|
24
|
+
DeleteAttributeGroupCommandOutput,
|
|
25
|
+
ServiceCatalogAppRegistryClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteAttributeGroupCommandInput;
|
|
28
|
+
constructor(input: DeleteAttributeGroupCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ServiceCatalogAppRegistryClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DeleteAttributeGroupCommandInput,
|
|
35
|
+
DeleteAttributeGroupCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class DisassociateAttributeGroupCommand extends $Command<
|
|
23
|
+
DisassociateAttributeGroupCommandInput,
|
|
24
|
+
DisassociateAttributeGroupCommandOutput,
|
|
25
|
+
ServiceCatalogAppRegistryClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DisassociateAttributeGroupCommandInput;
|
|
28
|
+
constructor(input: DisassociateAttributeGroupCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ServiceCatalogAppRegistryClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DisassociateAttributeGroupCommandInput,
|
|
35
|
+
DisassociateAttributeGroupCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class DisassociateResourceCommand extends $Command<
|
|
23
|
+
DisassociateResourceCommandInput,
|
|
24
|
+
DisassociateResourceCommandOutput,
|
|
25
|
+
ServiceCatalogAppRegistryClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DisassociateResourceCommandInput;
|
|
28
|
+
constructor(input: DisassociateResourceCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ServiceCatalogAppRegistryClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DisassociateResourceCommandInput,
|
|
35
|
+
DisassociateResourceCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class GetApplicationCommand extends $Command<
|
|
22
|
+
GetApplicationCommandInput,
|
|
23
|
+
GetApplicationCommandOutput,
|
|
24
|
+
ServiceCatalogAppRegistryClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: GetApplicationCommandInput;
|
|
27
|
+
constructor(input: GetApplicationCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: ServiceCatalogAppRegistryClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<GetApplicationCommandInput, GetApplicationCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class GetAssociatedResourceCommand extends $Command<
|
|
23
|
+
GetAssociatedResourceCommandInput,
|
|
24
|
+
GetAssociatedResourceCommandOutput,
|
|
25
|
+
ServiceCatalogAppRegistryClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetAssociatedResourceCommandInput;
|
|
28
|
+
constructor(input: GetAssociatedResourceCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ServiceCatalogAppRegistryClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
GetAssociatedResourceCommandInput,
|
|
35
|
+
GetAssociatedResourceCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class GetAttributeGroupCommand extends $Command<
|
|
23
|
+
GetAttributeGroupCommandInput,
|
|
24
|
+
GetAttributeGroupCommandOutput,
|
|
25
|
+
ServiceCatalogAppRegistryClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetAttributeGroupCommandInput;
|
|
28
|
+
constructor(input: GetAttributeGroupCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ServiceCatalogAppRegistryClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<GetAttributeGroupCommandInput, GetAttributeGroupCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class ListApplicationsCommand extends $Command<
|
|
22
|
+
ListApplicationsCommandInput,
|
|
23
|
+
ListApplicationsCommandOutput,
|
|
24
|
+
ServiceCatalogAppRegistryClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: ListApplicationsCommandInput;
|
|
27
|
+
constructor(input: ListApplicationsCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: ServiceCatalogAppRegistryClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ListApplicationsCommandInput, ListApplicationsCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class ListAssociatedAttributeGroupsCommand extends $Command<
|
|
23
|
+
ListAssociatedAttributeGroupsCommandInput,
|
|
24
|
+
ListAssociatedAttributeGroupsCommandOutput,
|
|
25
|
+
ServiceCatalogAppRegistryClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListAssociatedAttributeGroupsCommandInput;
|
|
28
|
+
constructor(input: ListAssociatedAttributeGroupsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ServiceCatalogAppRegistryClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ListAssociatedAttributeGroupsCommandInput,
|
|
35
|
+
ListAssociatedAttributeGroupsCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class ListAssociatedResourcesCommand extends $Command<
|
|
23
|
+
ListAssociatedResourcesCommandInput,
|
|
24
|
+
ListAssociatedResourcesCommandOutput,
|
|
25
|
+
ServiceCatalogAppRegistryClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListAssociatedResourcesCommandInput;
|
|
28
|
+
constructor(input: ListAssociatedResourcesCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ServiceCatalogAppRegistryClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ListAssociatedResourcesCommandInput,
|
|
35
|
+
ListAssociatedResourcesCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class ListAttributeGroupsCommand extends $Command<
|
|
23
|
+
ListAttributeGroupsCommandInput,
|
|
24
|
+
ListAttributeGroupsCommandOutput,
|
|
25
|
+
ServiceCatalogAppRegistryClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListAttributeGroupsCommandInput;
|
|
28
|
+
constructor(input: ListAttributeGroupsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ServiceCatalogAppRegistryClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<ListAttributeGroupsCommandInput, ListAttributeGroupsCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class ListAttributeGroupsForApplicationCommand extends $Command<
|
|
23
|
+
ListAttributeGroupsForApplicationCommandInput,
|
|
24
|
+
ListAttributeGroupsForApplicationCommandOutput,
|
|
25
|
+
ServiceCatalogAppRegistryClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListAttributeGroupsForApplicationCommandInput;
|
|
28
|
+
constructor(input: ListAttributeGroupsForApplicationCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ServiceCatalogAppRegistryClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ListAttributeGroupsForApplicationCommandInput,
|
|
35
|
+
ListAttributeGroupsForApplicationCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|