@aws-sdk/client-resource-groups-tagging-api 3.477.0 → 3.481.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/commands/DescribeReportCreationCommand.js +18 -41
- package/dist-cjs/commands/GetComplianceSummaryCommand.js +18 -41
- package/dist-cjs/commands/GetResourcesCommand.js +18 -41
- package/dist-cjs/commands/GetTagKeysCommand.js +18 -41
- package/dist-cjs/commands/GetTagValuesCommand.js +18 -41
- package/dist-cjs/commands/StartReportCreationCommand.js +18 -41
- package/dist-cjs/commands/TagResourcesCommand.js +18 -41
- package/dist-cjs/commands/UntagResourcesCommand.js +18 -41
- package/dist-cjs/endpoint/EndpointParameters.js +7 -1
- package/dist-cjs/pagination/GetComplianceSummaryPaginator.js +2 -24
- package/dist-cjs/pagination/GetResourcesPaginator.js +2 -24
- package/dist-cjs/pagination/GetTagKeysPaginator.js +2 -23
- package/dist-cjs/pagination/GetTagValuesPaginator.js +2 -23
- package/dist-es/commands/DescribeReportCreationCommand.js +18 -41
- package/dist-es/commands/GetComplianceSummaryCommand.js +18 -41
- package/dist-es/commands/GetResourcesCommand.js +18 -41
- package/dist-es/commands/GetTagKeysCommand.js +18 -41
- package/dist-es/commands/GetTagValuesCommand.js +18 -41
- package/dist-es/commands/StartReportCreationCommand.js +18 -41
- package/dist-es/commands/TagResourcesCommand.js +18 -41
- package/dist-es/commands/UntagResourcesCommand.js +18 -41
- package/dist-es/endpoint/EndpointParameters.js +6 -0
- package/dist-es/pagination/GetComplianceSummaryPaginator.js +2 -23
- package/dist-es/pagination/GetResourcesPaginator.js +2 -23
- package/dist-es/pagination/GetTagKeysPaginator.js +2 -22
- package/dist-es/pagination/GetTagValuesPaginator.js +2 -22
- package/dist-types/commands/DescribeReportCreationCommand.d.ts +6 -21
- package/dist-types/commands/GetComplianceSummaryCommand.d.ts +6 -21
- package/dist-types/commands/GetResourcesCommand.d.ts +6 -21
- package/dist-types/commands/GetTagKeysCommand.d.ts +6 -21
- package/dist-types/commands/GetTagValuesCommand.d.ts +6 -21
- package/dist-types/commands/StartReportCreationCommand.d.ts +6 -21
- package/dist-types/commands/TagResourcesCommand.d.ts +6 -21
- package/dist-types/commands/UntagResourcesCommand.d.ts +6 -21
- package/dist-types/endpoint/EndpointParameters.d.ts +18 -0
- package/dist-types/pagination/GetComplianceSummaryPaginator.d.ts +1 -1
- package/dist-types/pagination/GetResourcesPaginator.d.ts +1 -1
- package/dist-types/pagination/GetTagKeysPaginator.d.ts +1 -1
- package/dist-types/pagination/GetTagValuesPaginator.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeReportCreationCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/GetComplianceSummaryCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/GetResourcesCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/GetTagKeysCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/GetTagValuesCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/StartReportCreationCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/TagResourcesCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/UntagResourcesCommand.d.ts +14 -23
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +18 -0
- package/dist-types/ts3.4/pagination/GetComplianceSummaryPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/GetResourcesPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/GetTagKeysPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/GetTagValuesPaginator.d.ts +3 -3
- package/package.json +11 -10
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { GetResourcesCommand, } from "../commands/GetResourcesCommand";
|
|
2
3
|
import { ResourceGroupsTaggingAPIClient } from "../ResourceGroupsTaggingAPIClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new GetResourcesCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateGetResources(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.PaginationToken = token;
|
|
12
|
-
input["ResourcesPerPage"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof ResourceGroupsTaggingAPIClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected ResourceGroupsTaggingAPI | ResourceGroupsTaggingAPIClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.PaginationToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateGetResources = createPaginator(ResourceGroupsTaggingAPIClient, GetResourcesCommand, "PaginationToken", "PaginationToken", "ResourcesPerPage");
|
|
@@ -1,24 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { GetTagKeysCommand } from "../commands/GetTagKeysCommand";
|
|
2
3
|
import { ResourceGroupsTaggingAPIClient } from "../ResourceGroupsTaggingAPIClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new GetTagKeysCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateGetTagKeys(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.PaginationToken = token;
|
|
12
|
-
if (config.client instanceof ResourceGroupsTaggingAPIClient) {
|
|
13
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
14
|
-
}
|
|
15
|
-
else {
|
|
16
|
-
throw new Error("Invalid client, expected ResourceGroupsTaggingAPI | ResourceGroupsTaggingAPIClient");
|
|
17
|
-
}
|
|
18
|
-
yield page;
|
|
19
|
-
const prevToken = token;
|
|
20
|
-
token = page.PaginationToken;
|
|
21
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
22
|
-
}
|
|
23
|
-
return undefined;
|
|
24
|
-
}
|
|
4
|
+
export const paginateGetTagKeys = createPaginator(ResourceGroupsTaggingAPIClient, GetTagKeysCommand, "PaginationToken", "PaginationToken", "");
|
|
@@ -1,24 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { GetTagValuesCommand, } from "../commands/GetTagValuesCommand";
|
|
2
3
|
import { ResourceGroupsTaggingAPIClient } from "../ResourceGroupsTaggingAPIClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new GetTagValuesCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateGetTagValues(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.PaginationToken = token;
|
|
12
|
-
if (config.client instanceof ResourceGroupsTaggingAPIClient) {
|
|
13
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
14
|
-
}
|
|
15
|
-
else {
|
|
16
|
-
throw new Error("Invalid client, expected ResourceGroupsTaggingAPI | ResourceGroupsTaggingAPIClient");
|
|
17
|
-
}
|
|
18
|
-
yield page;
|
|
19
|
-
const prevToken = token;
|
|
20
|
-
token = page.PaginationToken;
|
|
21
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
22
|
-
}
|
|
23
|
-
return undefined;
|
|
24
|
-
}
|
|
4
|
+
export const paginateGetTagValues = createPaginator(ResourceGroupsTaggingAPIClient, GetTagValuesCommand, "PaginationToken", "PaginationToken", "");
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { DescribeReportCreationInput, DescribeReportCreationOutput } from "../models/models_0";
|
|
5
4
|
import { ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsTaggingAPIClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface DescribeReportCreationCommandInput extends DescribeReportCreati
|
|
|
21
20
|
*/
|
|
22
21
|
export interface DescribeReportCreationCommandOutput extends DescribeReportCreationOutput, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const DescribeReportCreationCommand_base: {
|
|
24
|
+
new (input: DescribeReportCreationCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeReportCreationCommandInput, DescribeReportCreationCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Describes the status of the <code>StartReportCreation</code> operation. </p>
|
|
@@ -106,23 +109,5 @@ export interface DescribeReportCreationCommandOutput extends DescribeReportCreat
|
|
|
106
109
|
* <p>Base exception class for all service exceptions from ResourceGroupsTaggingAPI service.</p>
|
|
107
110
|
*
|
|
108
111
|
*/
|
|
109
|
-
export declare class DescribeReportCreationCommand extends
|
|
110
|
-
readonly input: DescribeReportCreationCommandInput;
|
|
111
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
112
|
-
/**
|
|
113
|
-
* @public
|
|
114
|
-
*/
|
|
115
|
-
constructor(input: DescribeReportCreationCommandInput);
|
|
116
|
-
/**
|
|
117
|
-
* @internal
|
|
118
|
-
*/
|
|
119
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsTaggingAPIClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeReportCreationCommandInput, DescribeReportCreationCommandOutput>;
|
|
120
|
-
/**
|
|
121
|
-
* @internal
|
|
122
|
-
*/
|
|
123
|
-
private serialize;
|
|
124
|
-
/**
|
|
125
|
-
* @internal
|
|
126
|
-
*/
|
|
127
|
-
private deserialize;
|
|
112
|
+
export declare class DescribeReportCreationCommand extends DescribeReportCreationCommand_base {
|
|
128
113
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { GetComplianceSummaryInput, GetComplianceSummaryOutput } from "../models/models_0";
|
|
5
4
|
import { ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsTaggingAPIClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface GetComplianceSummaryCommandInput extends GetComplianceSummaryIn
|
|
|
21
20
|
*/
|
|
22
21
|
export interface GetComplianceSummaryCommandOutput extends GetComplianceSummaryOutput, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const GetComplianceSummaryCommand_base: {
|
|
24
|
+
new (input: GetComplianceSummaryCommandInput): import("@smithy/smithy-client").CommandImpl<GetComplianceSummaryCommandInput, GetComplianceSummaryCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Returns a table that shows counts of resources that are noncompliant with their tag
|
|
@@ -141,23 +144,5 @@ export interface GetComplianceSummaryCommandOutput extends GetComplianceSummaryO
|
|
|
141
144
|
* <p>Base exception class for all service exceptions from ResourceGroupsTaggingAPI service.</p>
|
|
142
145
|
*
|
|
143
146
|
*/
|
|
144
|
-
export declare class GetComplianceSummaryCommand extends
|
|
145
|
-
readonly input: GetComplianceSummaryCommandInput;
|
|
146
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
147
|
-
/**
|
|
148
|
-
* @public
|
|
149
|
-
*/
|
|
150
|
-
constructor(input: GetComplianceSummaryCommandInput);
|
|
151
|
-
/**
|
|
152
|
-
* @internal
|
|
153
|
-
*/
|
|
154
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsTaggingAPIClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetComplianceSummaryCommandInput, GetComplianceSummaryCommandOutput>;
|
|
155
|
-
/**
|
|
156
|
-
* @internal
|
|
157
|
-
*/
|
|
158
|
-
private serialize;
|
|
159
|
-
/**
|
|
160
|
-
* @internal
|
|
161
|
-
*/
|
|
162
|
-
private deserialize;
|
|
147
|
+
export declare class GetComplianceSummaryCommand extends GetComplianceSummaryCommand_base {
|
|
163
148
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { GetResourcesInput, GetResourcesOutput } from "../models/models_0";
|
|
5
4
|
import { ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsTaggingAPIClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface GetResourcesCommandInput extends GetResourcesInput {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface GetResourcesCommandOutput extends GetResourcesOutput, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const GetResourcesCommand_base: {
|
|
24
|
+
new (input: GetResourcesCommandInput): import("@smithy/smithy-client").CommandImpl<GetResourcesCommandInput, GetResourcesCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Returns all the tagged or previously tagged resources that are located in the
|
|
@@ -146,23 +149,5 @@ export interface GetResourcesCommandOutput extends GetResourcesOutput, __Metadat
|
|
|
146
149
|
* <p>Base exception class for all service exceptions from ResourceGroupsTaggingAPI service.</p>
|
|
147
150
|
*
|
|
148
151
|
*/
|
|
149
|
-
export declare class GetResourcesCommand extends
|
|
150
|
-
readonly input: GetResourcesCommandInput;
|
|
151
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
152
|
-
/**
|
|
153
|
-
* @public
|
|
154
|
-
*/
|
|
155
|
-
constructor(input: GetResourcesCommandInput);
|
|
156
|
-
/**
|
|
157
|
-
* @internal
|
|
158
|
-
*/
|
|
159
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsTaggingAPIClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetResourcesCommandInput, GetResourcesCommandOutput>;
|
|
160
|
-
/**
|
|
161
|
-
* @internal
|
|
162
|
-
*/
|
|
163
|
-
private serialize;
|
|
164
|
-
/**
|
|
165
|
-
* @internal
|
|
166
|
-
*/
|
|
167
|
-
private deserialize;
|
|
152
|
+
export declare class GetResourcesCommand extends GetResourcesCommand_base {
|
|
168
153
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { GetTagKeysInput, GetTagKeysOutput } from "../models/models_0";
|
|
5
4
|
import { ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsTaggingAPIClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface GetTagKeysCommandInput extends GetTagKeysInput {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface GetTagKeysCommandOutput extends GetTagKeysOutput, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const GetTagKeysCommand_base: {
|
|
24
|
+
new (input: GetTagKeysCommandInput): import("@smithy/smithy-client").CommandImpl<GetTagKeysCommandInput, GetTagKeysCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Returns all tag keys currently in use in the specified Amazon Web Services Region for the calling
|
|
@@ -95,23 +98,5 @@ export interface GetTagKeysCommandOutput extends GetTagKeysOutput, __MetadataBea
|
|
|
95
98
|
* <p>Base exception class for all service exceptions from ResourceGroupsTaggingAPI service.</p>
|
|
96
99
|
*
|
|
97
100
|
*/
|
|
98
|
-
export declare class GetTagKeysCommand extends
|
|
99
|
-
readonly input: GetTagKeysCommandInput;
|
|
100
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
101
|
-
/**
|
|
102
|
-
* @public
|
|
103
|
-
*/
|
|
104
|
-
constructor(input: GetTagKeysCommandInput);
|
|
105
|
-
/**
|
|
106
|
-
* @internal
|
|
107
|
-
*/
|
|
108
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsTaggingAPIClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetTagKeysCommandInput, GetTagKeysCommandOutput>;
|
|
109
|
-
/**
|
|
110
|
-
* @internal
|
|
111
|
-
*/
|
|
112
|
-
private serialize;
|
|
113
|
-
/**
|
|
114
|
-
* @internal
|
|
115
|
-
*/
|
|
116
|
-
private deserialize;
|
|
101
|
+
export declare class GetTagKeysCommand extends GetTagKeysCommand_base {
|
|
117
102
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { GetTagValuesInput, GetTagValuesOutput } from "../models/models_0";
|
|
5
4
|
import { ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsTaggingAPIClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface GetTagValuesCommandInput extends GetTagValuesInput {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface GetTagValuesCommandOutput extends GetTagValuesOutput, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const GetTagValuesCommand_base: {
|
|
24
|
+
new (input: GetTagValuesCommandInput): import("@smithy/smithy-client").CommandImpl<GetTagValuesCommandInput, GetTagValuesCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Returns all tag values for the specified key that are used in the specified Amazon Web Services
|
|
@@ -96,23 +99,5 @@ export interface GetTagValuesCommandOutput extends GetTagValuesOutput, __Metadat
|
|
|
96
99
|
* <p>Base exception class for all service exceptions from ResourceGroupsTaggingAPI service.</p>
|
|
97
100
|
*
|
|
98
101
|
*/
|
|
99
|
-
export declare class GetTagValuesCommand extends
|
|
100
|
-
readonly input: GetTagValuesCommandInput;
|
|
101
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
102
|
-
/**
|
|
103
|
-
* @public
|
|
104
|
-
*/
|
|
105
|
-
constructor(input: GetTagValuesCommandInput);
|
|
106
|
-
/**
|
|
107
|
-
* @internal
|
|
108
|
-
*/
|
|
109
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsTaggingAPIClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetTagValuesCommandInput, GetTagValuesCommandOutput>;
|
|
110
|
-
/**
|
|
111
|
-
* @internal
|
|
112
|
-
*/
|
|
113
|
-
private serialize;
|
|
114
|
-
/**
|
|
115
|
-
* @internal
|
|
116
|
-
*/
|
|
117
|
-
private deserialize;
|
|
102
|
+
export declare class GetTagValuesCommand extends GetTagValuesCommand_base {
|
|
118
103
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { StartReportCreationInput, StartReportCreationOutput } from "../models/models_0";
|
|
5
4
|
import { ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsTaggingAPIClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface StartReportCreationCommandInput extends StartReportCreationInpu
|
|
|
21
20
|
*/
|
|
22
21
|
export interface StartReportCreationCommandOutput extends StartReportCreationOutput, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const StartReportCreationCommand_base: {
|
|
24
|
+
new (input: StartReportCreationCommandInput): import("@smithy/smithy-client").CommandImpl<StartReportCreationCommandInput, StartReportCreationCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Generates a report that lists all tagged resources in the accounts across your
|
|
@@ -113,23 +116,5 @@ export interface StartReportCreationCommandOutput extends StartReportCreationOut
|
|
|
113
116
|
* <p>Base exception class for all service exceptions from ResourceGroupsTaggingAPI service.</p>
|
|
114
117
|
*
|
|
115
118
|
*/
|
|
116
|
-
export declare class StartReportCreationCommand extends
|
|
117
|
-
readonly input: StartReportCreationCommandInput;
|
|
118
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
119
|
-
/**
|
|
120
|
-
* @public
|
|
121
|
-
*/
|
|
122
|
-
constructor(input: StartReportCreationCommandInput);
|
|
123
|
-
/**
|
|
124
|
-
* @internal
|
|
125
|
-
*/
|
|
126
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsTaggingAPIClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartReportCreationCommandInput, StartReportCreationCommandOutput>;
|
|
127
|
-
/**
|
|
128
|
-
* @internal
|
|
129
|
-
*/
|
|
130
|
-
private serialize;
|
|
131
|
-
/**
|
|
132
|
-
* @internal
|
|
133
|
-
*/
|
|
134
|
-
private deserialize;
|
|
119
|
+
export declare class StartReportCreationCommand extends StartReportCreationCommand_base {
|
|
135
120
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { TagResourcesInput, TagResourcesOutput } from "../models/models_0";
|
|
5
4
|
import { ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsTaggingAPIClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface TagResourcesCommandInput extends TagResourcesInput {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface TagResourcesCommandOutput extends TagResourcesOutput, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const TagResourcesCommand_base: {
|
|
24
|
+
new (input: TagResourcesCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourcesCommandInput, TagResourcesCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Applies one or more tags to the specified resources. Note the following:</p>
|
|
@@ -141,23 +144,5 @@ export interface TagResourcesCommandOutput extends TagResourcesOutput, __Metadat
|
|
|
141
144
|
* <p>Base exception class for all service exceptions from ResourceGroupsTaggingAPI service.</p>
|
|
142
145
|
*
|
|
143
146
|
*/
|
|
144
|
-
export declare class TagResourcesCommand extends
|
|
145
|
-
readonly input: TagResourcesCommandInput;
|
|
146
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
147
|
-
/**
|
|
148
|
-
* @public
|
|
149
|
-
*/
|
|
150
|
-
constructor(input: TagResourcesCommandInput);
|
|
151
|
-
/**
|
|
152
|
-
* @internal
|
|
153
|
-
*/
|
|
154
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsTaggingAPIClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourcesCommandInput, TagResourcesCommandOutput>;
|
|
155
|
-
/**
|
|
156
|
-
* @internal
|
|
157
|
-
*/
|
|
158
|
-
private serialize;
|
|
159
|
-
/**
|
|
160
|
-
* @internal
|
|
161
|
-
*/
|
|
162
|
-
private deserialize;
|
|
147
|
+
export declare class TagResourcesCommand extends TagResourcesCommand_base {
|
|
163
148
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { UntagResourcesInput, UntagResourcesOutput } from "../models/models_0";
|
|
5
4
|
import { ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsTaggingAPIClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface UntagResourcesCommandInput extends UntagResourcesInput {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface UntagResourcesCommandOutput extends UntagResourcesOutput, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const UntagResourcesCommand_base: {
|
|
24
|
+
new (input: UntagResourcesCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourcesCommandInput, UntagResourcesCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Removes the specified tags from the specified resources. When you specify a tag key,
|
|
@@ -127,23 +130,5 @@ export interface UntagResourcesCommandOutput extends UntagResourcesOutput, __Met
|
|
|
127
130
|
* <p>Base exception class for all service exceptions from ResourceGroupsTaggingAPI service.</p>
|
|
128
131
|
*
|
|
129
132
|
*/
|
|
130
|
-
export declare class UntagResourcesCommand extends
|
|
131
|
-
readonly input: UntagResourcesCommandInput;
|
|
132
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
133
|
-
/**
|
|
134
|
-
* @public
|
|
135
|
-
*/
|
|
136
|
-
constructor(input: UntagResourcesCommandInput);
|
|
137
|
-
/**
|
|
138
|
-
* @internal
|
|
139
|
-
*/
|
|
140
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceGroupsTaggingAPIClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourcesCommandInput, UntagResourcesCommandOutput>;
|
|
141
|
-
/**
|
|
142
|
-
* @internal
|
|
143
|
-
*/
|
|
144
|
-
private serialize;
|
|
145
|
-
/**
|
|
146
|
-
* @internal
|
|
147
|
-
*/
|
|
148
|
-
private deserialize;
|
|
133
|
+
export declare class UntagResourcesCommand extends UntagResourcesCommand_base {
|
|
149
134
|
}
|
|
@@ -14,6 +14,24 @@ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
|
14
14
|
export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
|
|
15
15
|
defaultSigningName: string;
|
|
16
16
|
};
|
|
17
|
+
export declare const commonParams: {
|
|
18
|
+
readonly UseFIPS: {
|
|
19
|
+
readonly type: "builtInParams";
|
|
20
|
+
readonly name: "useFipsEndpoint";
|
|
21
|
+
};
|
|
22
|
+
readonly Endpoint: {
|
|
23
|
+
readonly type: "builtInParams";
|
|
24
|
+
readonly name: "endpoint";
|
|
25
|
+
};
|
|
26
|
+
readonly Region: {
|
|
27
|
+
readonly type: "builtInParams";
|
|
28
|
+
readonly name: "region";
|
|
29
|
+
};
|
|
30
|
+
readonly UseDualStack: {
|
|
31
|
+
readonly type: "builtInParams";
|
|
32
|
+
readonly name: "useDualstackEndpoint";
|
|
33
|
+
};
|
|
34
|
+
};
|
|
17
35
|
export interface EndpointParameters extends __EndpointParameters {
|
|
18
36
|
Region?: string;
|
|
19
37
|
UseDualStack?: boolean;
|
|
@@ -4,4 +4,4 @@ import { ResourceGroupsTaggingAPIPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateGetComplianceSummary: (config: ResourceGroupsTaggingAPIPaginationConfiguration, input: GetComplianceSummaryCommandInput, ...rest: any[]) => Paginator<GetComplianceSummaryCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { ResourceGroupsTaggingAPIPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateGetResources: (config: ResourceGroupsTaggingAPIPaginationConfiguration, input: GetResourcesCommandInput, ...rest: any[]) => Paginator<GetResourcesCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { ResourceGroupsTaggingAPIPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateGetTagKeys: (config: ResourceGroupsTaggingAPIPaginationConfiguration, input: GetTagKeysCommandInput, ...rest: any[]) => Paginator<GetTagKeysCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { ResourceGroupsTaggingAPIPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateGetTagValues: (config: ResourceGroupsTaggingAPIPaginationConfiguration, input: GetTagValuesCommandInput, ...rest: any[]) => Paginator<GetTagValuesCommandOutput>;
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
DescribeReportCreationInput,
|
|
11
5
|
DescribeReportCreationOutput,
|
|
@@ -21,22 +15,16 @@ export interface DescribeReportCreationCommandInput
|
|
|
21
15
|
export interface DescribeReportCreationCommandOutput
|
|
22
16
|
extends DescribeReportCreationOutput,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
> {
|
|
29
|
-
readonly input: DescribeReportCreationCommandInput;
|
|
30
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
-
constructor(input: DescribeReportCreationCommandInput);
|
|
32
|
-
resolveMiddleware(
|
|
33
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
-
configuration: ResourceGroupsTaggingAPIClientResolvedConfig,
|
|
35
|
-
options?: __HttpHandlerOptions
|
|
36
|
-
): Handler<
|
|
18
|
+
declare const DescribeReportCreationCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: DescribeReportCreationCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
37
22
|
DescribeReportCreationCommandInput,
|
|
38
|
-
DescribeReportCreationCommandOutput
|
|
23
|
+
DescribeReportCreationCommandOutput,
|
|
24
|
+
ResourceGroupsTaggingAPIClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
39
27
|
>;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class DescribeReportCreationCommand extends DescribeReportCreationCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
GetComplianceSummaryInput,
|
|
11
5
|
GetComplianceSummaryOutput,
|
|
@@ -21,22 +15,16 @@ export interface GetComplianceSummaryCommandInput
|
|
|
21
15
|
export interface GetComplianceSummaryCommandOutput
|
|
22
16
|
extends GetComplianceSummaryOutput,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
> {
|
|
29
|
-
readonly input: GetComplianceSummaryCommandInput;
|
|
30
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
-
constructor(input: GetComplianceSummaryCommandInput);
|
|
32
|
-
resolveMiddleware(
|
|
33
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
-
configuration: ResourceGroupsTaggingAPIClientResolvedConfig,
|
|
35
|
-
options?: __HttpHandlerOptions
|
|
36
|
-
): Handler<
|
|
18
|
+
declare const GetComplianceSummaryCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: GetComplianceSummaryCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
37
22
|
GetComplianceSummaryCommandInput,
|
|
38
|
-
GetComplianceSummaryCommandOutput
|
|
23
|
+
GetComplianceSummaryCommandOutput,
|
|
24
|
+
ResourceGroupsTaggingAPIClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
39
27
|
>;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class GetComplianceSummaryCommand extends GetComplianceSummaryCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import { GetResourcesInput, GetResourcesOutput } from "../models/models_0";
|
|
10
4
|
import {
|
|
11
5
|
ResourceGroupsTaggingAPIClientResolvedConfig,
|
|
@@ -17,19 +11,16 @@ export interface GetResourcesCommandInput extends GetResourcesInput {}
|
|
|
17
11
|
export interface GetResourcesCommandOutput
|
|
18
12
|
extends GetResourcesOutput,
|
|
19
13
|
__MetadataBearer {}
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
private serialize;
|
|
34
|
-
private deserialize;
|
|
35
|
-
}
|
|
14
|
+
declare const GetResourcesCommand_base: {
|
|
15
|
+
new (
|
|
16
|
+
input: GetResourcesCommandInput
|
|
17
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
18
|
+
GetResourcesCommandInput,
|
|
19
|
+
GetResourcesCommandOutput,
|
|
20
|
+
ResourceGroupsTaggingAPIClientResolvedConfig,
|
|
21
|
+
ServiceInputTypes,
|
|
22
|
+
ServiceOutputTypes
|
|
23
|
+
>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
export declare class GetResourcesCommand extends GetResourcesCommand_base {}
|