@aws-sdk/client-resource-groups-tagging-api 3.478.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-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-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/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/package.json +9 -9
|
@@ -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;
|
|
@@ -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 {}
|
|
@@ -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 { GetTagKeysInput, GetTagKeysOutput } from "../models/models_0";
|
|
10
4
|
import {
|
|
11
5
|
ResourceGroupsTaggingAPIClientResolvedConfig,
|
|
@@ -17,19 +11,16 @@ export interface GetTagKeysCommandInput extends GetTagKeysInput {}
|
|
|
17
11
|
export interface GetTagKeysCommandOutput
|
|
18
12
|
extends GetTagKeysOutput,
|
|
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 GetTagKeysCommand_base: {
|
|
15
|
+
new (
|
|
16
|
+
input: GetTagKeysCommandInput
|
|
17
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
18
|
+
GetTagKeysCommandInput,
|
|
19
|
+
GetTagKeysCommandOutput,
|
|
20
|
+
ResourceGroupsTaggingAPIClientResolvedConfig,
|
|
21
|
+
ServiceInputTypes,
|
|
22
|
+
ServiceOutputTypes
|
|
23
|
+
>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
export declare class GetTagKeysCommand extends GetTagKeysCommand_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 { GetTagValuesInput, GetTagValuesOutput } from "../models/models_0";
|
|
10
4
|
import {
|
|
11
5
|
ResourceGroupsTaggingAPIClientResolvedConfig,
|
|
@@ -17,19 +11,16 @@ export interface GetTagValuesCommandInput extends GetTagValuesInput {}
|
|
|
17
11
|
export interface GetTagValuesCommandOutput
|
|
18
12
|
extends GetTagValuesOutput,
|
|
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 GetTagValuesCommand_base: {
|
|
15
|
+
new (
|
|
16
|
+
input: GetTagValuesCommandInput
|
|
17
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
18
|
+
GetTagValuesCommandInput,
|
|
19
|
+
GetTagValuesCommandOutput,
|
|
20
|
+
ResourceGroupsTaggingAPIClientResolvedConfig,
|
|
21
|
+
ServiceInputTypes,
|
|
22
|
+
ServiceOutputTypes
|
|
23
|
+
>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
export declare class GetTagValuesCommand extends GetTagValuesCommand_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
|
StartReportCreationInput,
|
|
11
5
|
StartReportCreationOutput,
|
|
@@ -21,19 +15,16 @@ export interface StartReportCreationCommandInput
|
|
|
21
15
|
export interface StartReportCreationCommandOutput
|
|
22
16
|
extends StartReportCreationOutput,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
private serialize;
|
|
38
|
-
private deserialize;
|
|
39
|
-
}
|
|
18
|
+
declare const StartReportCreationCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: StartReportCreationCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
StartReportCreationCommandInput,
|
|
23
|
+
StartReportCreationCommandOutput,
|
|
24
|
+
ResourceGroupsTaggingAPIClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class StartReportCreationCommand extends StartReportCreationCommand_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 { TagResourcesInput, TagResourcesOutput } from "../models/models_0";
|
|
10
4
|
import {
|
|
11
5
|
ResourceGroupsTaggingAPIClientResolvedConfig,
|
|
@@ -17,19 +11,16 @@ export interface TagResourcesCommandInput extends TagResourcesInput {}
|
|
|
17
11
|
export interface TagResourcesCommandOutput
|
|
18
12
|
extends TagResourcesOutput,
|
|
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 TagResourcesCommand_base: {
|
|
15
|
+
new (
|
|
16
|
+
input: TagResourcesCommandInput
|
|
17
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
18
|
+
TagResourcesCommandInput,
|
|
19
|
+
TagResourcesCommandOutput,
|
|
20
|
+
ResourceGroupsTaggingAPIClientResolvedConfig,
|
|
21
|
+
ServiceInputTypes,
|
|
22
|
+
ServiceOutputTypes
|
|
23
|
+
>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
export declare class TagResourcesCommand extends TagResourcesCommand_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 { UntagResourcesInput, UntagResourcesOutput } from "../models/models_0";
|
|
10
4
|
import {
|
|
11
5
|
ResourceGroupsTaggingAPIClientResolvedConfig,
|
|
@@ -17,19 +11,16 @@ export interface UntagResourcesCommandInput extends UntagResourcesInput {}
|
|
|
17
11
|
export interface UntagResourcesCommandOutput
|
|
18
12
|
extends UntagResourcesOutput,
|
|
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 UntagResourcesCommand_base: {
|
|
15
|
+
new (
|
|
16
|
+
input: UntagResourcesCommandInput
|
|
17
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
18
|
+
UntagResourcesCommandInput,
|
|
19
|
+
UntagResourcesCommandOutput,
|
|
20
|
+
ResourceGroupsTaggingAPIClientResolvedConfig,
|
|
21
|
+
ServiceInputTypes,
|
|
22
|
+
ServiceOutputTypes
|
|
23
|
+
>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
export declare class UntagResourcesCommand extends UntagResourcesCommand_base {}
|
|
@@ -25,6 +25,24 @@ export declare const resolveClientEndpointParameters: <T>(
|
|
|
25
25
|
ClientInputEndpointParameters & {
|
|
26
26
|
defaultSigningName: string;
|
|
27
27
|
};
|
|
28
|
+
export declare const commonParams: {
|
|
29
|
+
readonly UseFIPS: {
|
|
30
|
+
readonly type: "builtInParams";
|
|
31
|
+
readonly name: "useFipsEndpoint";
|
|
32
|
+
};
|
|
33
|
+
readonly Endpoint: {
|
|
34
|
+
readonly type: "builtInParams";
|
|
35
|
+
readonly name: "endpoint";
|
|
36
|
+
};
|
|
37
|
+
readonly Region: {
|
|
38
|
+
readonly type: "builtInParams";
|
|
39
|
+
readonly name: "region";
|
|
40
|
+
};
|
|
41
|
+
readonly UseDualStack: {
|
|
42
|
+
readonly type: "builtInParams";
|
|
43
|
+
readonly name: "useDualstackEndpoint";
|
|
44
|
+
};
|
|
45
|
+
};
|
|
28
46
|
export interface EndpointParameters extends __EndpointParameters {
|
|
29
47
|
Region?: string;
|
|
30
48
|
UseDualStack?: boolean;
|