@aws-sdk/client-service-catalog-appregistry 3.296.0 → 3.297.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-types/ServiceCatalogAppRegistry.d.ts +25 -0
- package/dist-types/ServiceCatalogAppRegistryClient.d.ts +24 -4
- package/dist-types/commands/AssociateAttributeGroupCommand.d.ts +16 -0
- package/dist-types/commands/AssociateResourceCommand.d.ts +16 -0
- package/dist-types/commands/CreateApplicationCommand.d.ts +16 -0
- package/dist-types/commands/CreateAttributeGroupCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteAttributeGroupCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateAttributeGroupCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateResourceCommand.d.ts +16 -0
- package/dist-types/commands/GetApplicationCommand.d.ts +16 -0
- package/dist-types/commands/GetAssociatedResourceCommand.d.ts +16 -0
- package/dist-types/commands/GetAttributeGroupCommand.d.ts +16 -0
- package/dist-types/commands/GetConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/ListApplicationsCommand.d.ts +16 -0
- package/dist-types/commands/ListAssociatedAttributeGroupsCommand.d.ts +16 -0
- package/dist-types/commands/ListAssociatedResourcesCommand.d.ts +16 -0
- package/dist-types/commands/ListAttributeGroupsCommand.d.ts +16 -0
- package/dist-types/commands/ListAttributeGroupsForApplicationCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/PutConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/SyncResourceCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateAttributeGroupCommand.d.ts +16 -0
- package/dist-types/models/ServiceCatalogAppRegistryServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +165 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListApplicationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListAssociatedAttributeGroupsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListAssociatedResourcesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListAttributeGroupsForApplicationPaginator.d.ts +3 -0
- package/dist-types/pagination/ListAttributeGroupsPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DisassociateResourceRequest, DisassociateResourceResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DisassociateResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DisassociateResourceCommandInput extends DisassociateResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DisassociateResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DisassociateResourceCommandOutput extends DisassociateResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Disassociates a resource from application. Both the resource and the application can be specified either by ID or name.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DisassociateResourceCommandOutput extends DisassociateResourceR
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DisassociateResourceCommandInput - {@link DisassociateResourceCommandInput}
|
|
34
|
+
* @returns {@link DisassociateResourceCommandOutput}
|
|
28
35
|
* @see {@link DisassociateResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DisassociateResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface DisassociateResourceCommandOutput extends DisassociateResourceR
|
|
|
43
50
|
export declare class DisassociateResourceCommand extends $Command<DisassociateResourceCommandInput, DisassociateResourceCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
44
51
|
readonly input: DisassociateResourceCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: DisassociateResourceCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisassociateResourceCommandInput, DisassociateResourceCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetApplicationRequest, GetApplicationResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetApplicationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetApplicationCommandInput extends GetApplicationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetApplicationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetApplicationCommandOutput extends GetApplicationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves metadata information about one of your applications. The application can be specified either by its unique ID or by its name (which is unique within one account in one region at a given point in time). Specify by ID in automated workflows if you want to make sure that the exact same application is returned or a <code>ResourceNotFoundException</code> is thrown, avoiding the ABA addressing problem.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetApplicationCommandOutput extends GetApplicationResponse, __M
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetApplicationCommandInput - {@link GetApplicationCommandInput}
|
|
34
|
+
* @returns {@link GetApplicationCommandOutput}
|
|
28
35
|
* @see {@link GetApplicationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetApplicationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface GetApplicationCommandOutput extends GetApplicationResponse, __M
|
|
|
47
54
|
export declare class GetApplicationCommand extends $Command<GetApplicationCommandInput, GetApplicationCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
48
55
|
readonly input: GetApplicationCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: GetApplicationCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetApplicationCommandInput, GetApplicationCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetAssociatedResourceRequest, GetAssociatedResourceResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetAssociatedResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetAssociatedResourceCommandInput extends GetAssociatedResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetAssociatedResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetAssociatedResourceCommandOutput extends GetAssociatedResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets the resource associated with the application.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetAssociatedResourceCommandOutput extends GetAssociatedResourc
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetAssociatedResourceCommandInput - {@link GetAssociatedResourceCommandInput}
|
|
34
|
+
* @returns {@link GetAssociatedResourceCommandOutput}
|
|
28
35
|
* @see {@link GetAssociatedResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetAssociatedResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface GetAssociatedResourceCommandOutput extends GetAssociatedResourc
|
|
|
43
50
|
export declare class GetAssociatedResourceCommand extends $Command<GetAssociatedResourceCommandInput, GetAssociatedResourceCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
44
51
|
readonly input: GetAssociatedResourceCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: GetAssociatedResourceCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAssociatedResourceCommandInput, GetAssociatedResourceCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetAttributeGroupRequest, GetAttributeGroupResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetAttributeGroupCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetAttributeGroupCommandInput extends GetAttributeGroupRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetAttributeGroupCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetAttributeGroupCommandOutput extends GetAttributeGroupResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves an attribute group, either by its name or its ID. The attribute group can be specified either by its unique ID or by its name.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetAttributeGroupCommandOutput extends GetAttributeGroupRespons
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetAttributeGroupCommandInput - {@link GetAttributeGroupCommandInput}
|
|
34
|
+
* @returns {@link GetAttributeGroupCommandOutput}
|
|
28
35
|
* @see {@link GetAttributeGroupCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetAttributeGroupCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface GetAttributeGroupCommandOutput extends GetAttributeGroupRespons
|
|
|
47
54
|
export declare class GetAttributeGroupCommand extends $Command<GetAttributeGroupCommandInput, GetAttributeGroupCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
48
55
|
readonly input: GetAttributeGroupCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: GetAttributeGroupCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAttributeGroupCommandInput, GetAttributeGroupCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetConfigurationResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetConfigurationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetConfigurationCommandInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetConfigurationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetConfigurationCommandOutput extends GetConfigurationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* Retrieves a <code>TagKey</code> configuration
|
|
19
24
|
* from an account.
|
|
@@ -28,6 +33,8 @@ export interface GetConfigurationCommandOutput extends GetConfigurationResponse,
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param GetConfigurationCommandInput - {@link GetConfigurationCommandInput}
|
|
37
|
+
* @returns {@link GetConfigurationCommandOutput}
|
|
31
38
|
* @see {@link GetConfigurationCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link GetConfigurationCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface GetConfigurationCommandOutput extends GetConfigurationResponse,
|
|
|
40
47
|
export declare class GetConfigurationCommand extends $Command<GetConfigurationCommandInput, GetConfigurationCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
41
48
|
readonly input: GetConfigurationCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: GetConfigurationCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetConfigurationCommandInput, GetConfigurationCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListApplicationsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListApplicationsCommandInput extends ListApplicationsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListApplicationsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListApplicationsCommandOutput extends ListApplicationsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a list of all of your applications. Results are paginated.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListApplicationsCommandInput - {@link ListApplicationsCommandInput}
|
|
34
|
+
* @returns {@link ListApplicationsCommandOutput}
|
|
28
35
|
* @see {@link ListApplicationsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListApplicationsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse,
|
|
|
40
47
|
export declare class ListApplicationsCommand extends $Command<ListApplicationsCommandInput, ListApplicationsCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
41
48
|
readonly input: ListApplicationsCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: ListApplicationsCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListApplicationsCommandInput, ListApplicationsCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListAssociatedAttributeGroupsRequest, ListAssociatedAttributeGroupsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListAssociatedAttributeGroupsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListAssociatedAttributeGroupsCommandInput extends ListAssociatedAttributeGroupsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListAssociatedAttributeGroupsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListAssociatedAttributeGroupsCommandOutput extends ListAssociatedAttributeGroupsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all attribute groups that are associated with specified application. Results are paginated.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListAssociatedAttributeGroupsCommandOutput extends ListAssociat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListAssociatedAttributeGroupsCommandInput - {@link ListAssociatedAttributeGroupsCommandInput}
|
|
34
|
+
* @returns {@link ListAssociatedAttributeGroupsCommandOutput}
|
|
28
35
|
* @see {@link ListAssociatedAttributeGroupsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListAssociatedAttributeGroupsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface ListAssociatedAttributeGroupsCommandOutput extends ListAssociat
|
|
|
43
50
|
export declare class ListAssociatedAttributeGroupsCommand extends $Command<ListAssociatedAttributeGroupsCommandInput, ListAssociatedAttributeGroupsCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
44
51
|
readonly input: ListAssociatedAttributeGroupsCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: ListAssociatedAttributeGroupsCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAssociatedAttributeGroupsCommandInput, ListAssociatedAttributeGroupsCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListAssociatedResourcesRequest, ListAssociatedResourcesResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListAssociatedResourcesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListAssociatedResourcesCommandInput extends ListAssociatedResourcesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListAssociatedResourcesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListAssociatedResourcesCommandOutput extends ListAssociatedResourcesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* Lists all
|
|
19
24
|
* of the resources
|
|
@@ -45,6 +50,8 @@ export interface ListAssociatedResourcesCommandOutput extends ListAssociatedReso
|
|
|
45
50
|
* const response = await client.send(command);
|
|
46
51
|
* ```
|
|
47
52
|
*
|
|
53
|
+
* @param ListAssociatedResourcesCommandInput - {@link ListAssociatedResourcesCommandInput}
|
|
54
|
+
* @returns {@link ListAssociatedResourcesCommandOutput}
|
|
48
55
|
* @see {@link ListAssociatedResourcesCommandInput} for command's `input` shape.
|
|
49
56
|
* @see {@link ListAssociatedResourcesCommandOutput} for command's `response` shape.
|
|
50
57
|
* @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
|
|
@@ -63,11 +70,20 @@ export interface ListAssociatedResourcesCommandOutput extends ListAssociatedReso
|
|
|
63
70
|
export declare class ListAssociatedResourcesCommand extends $Command<ListAssociatedResourcesCommandInput, ListAssociatedResourcesCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
64
71
|
readonly input: ListAssociatedResourcesCommandInput;
|
|
65
72
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
66
76
|
constructor(input: ListAssociatedResourcesCommandInput);
|
|
67
77
|
/**
|
|
68
78
|
* @internal
|
|
69
79
|
*/
|
|
70
80
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAssociatedResourcesCommandInput, ListAssociatedResourcesCommandOutput>;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
71
84
|
private serialize;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
72
88
|
private deserialize;
|
|
73
89
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListAttributeGroupsRequest, ListAttributeGroupsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListAttributeGroupsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListAttributeGroupsCommandInput extends ListAttributeGroupsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListAttributeGroupsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListAttributeGroupsCommandOutput extends ListAttributeGroupsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all attribute groups which you have access to. Results are paginated.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListAttributeGroupsCommandOutput extends ListAttributeGroupsRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListAttributeGroupsCommandInput - {@link ListAttributeGroupsCommandInput}
|
|
34
|
+
* @returns {@link ListAttributeGroupsCommandOutput}
|
|
28
35
|
* @see {@link ListAttributeGroupsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListAttributeGroupsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface ListAttributeGroupsCommandOutput extends ListAttributeGroupsRes
|
|
|
40
47
|
export declare class ListAttributeGroupsCommand extends $Command<ListAttributeGroupsCommandInput, ListAttributeGroupsCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
41
48
|
readonly input: ListAttributeGroupsCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: ListAttributeGroupsCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAttributeGroupsCommandInput, ListAttributeGroupsCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListAttributeGroupsForApplicationRequest, ListAttributeGroupsForApplicationResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListAttributeGroupsForApplicationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListAttributeGroupsForApplicationCommandInput extends ListAttributeGroupsForApplicationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListAttributeGroupsForApplicationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListAttributeGroupsForApplicationCommandOutput extends ListAttributeGroupsForApplicationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the details of all attribute groups associated with a specific application. The results display in pages.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListAttributeGroupsForApplicationCommandOutput extends ListAttr
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListAttributeGroupsForApplicationCommandInput - {@link ListAttributeGroupsForApplicationCommandInput}
|
|
34
|
+
* @returns {@link ListAttributeGroupsForApplicationCommandOutput}
|
|
28
35
|
* @see {@link ListAttributeGroupsForApplicationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListAttributeGroupsForApplicationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface ListAttributeGroupsForApplicationCommandOutput extends ListAttr
|
|
|
43
50
|
export declare class ListAttributeGroupsForApplicationCommand extends $Command<ListAttributeGroupsForApplicationCommandInput, ListAttributeGroupsForApplicationCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
44
51
|
readonly input: ListAttributeGroupsForApplicationCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: ListAttributeGroupsForApplicationCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAttributeGroupsForApplicationCommandInput, ListAttributeGroupsForApplicationCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListTagsForResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListTagsForResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all of the tags on the resource.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
34
|
+
* @returns {@link ListTagsForResourceCommandOutput}
|
|
28
35
|
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
43
50
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
44
51
|
readonly input: ListTagsForResourceCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: ListTagsForResourceCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { PutConfigurationRequest } from "../models/models_0";
|
|
5
5
|
import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PutConfigurationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PutConfigurationCommandInput extends PutConfigurationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PutConfigurationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PutConfigurationCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* Associates a <code>TagKey</code> configuration
|
|
19
24
|
* to an account.
|
|
@@ -28,6 +33,8 @@ export interface PutConfigurationCommandOutput extends __MetadataBearer {
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param PutConfigurationCommandInput - {@link PutConfigurationCommandInput}
|
|
37
|
+
* @returns {@link PutConfigurationCommandOutput}
|
|
31
38
|
* @see {@link PutConfigurationCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link PutConfigurationCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface PutConfigurationCommandOutput extends __MetadataBearer {
|
|
|
47
54
|
export declare class PutConfigurationCommand extends $Command<PutConfigurationCommandInput, PutConfigurationCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
48
55
|
readonly input: PutConfigurationCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: PutConfigurationCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutConfigurationCommandInput, PutConfigurationCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|