@aws-sdk/client-resource-groups 3.169.0 → 3.171.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/ResourceGroups.d.ts +270 -85
- package/dist-types/ts3.4/ResourceGroupsClient.d.ts +195 -89
- package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetGroupCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetGroupConfigurationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetGroupQueryCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetTagsCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/GroupResourcesCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListGroupResourcesCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/PutGroupConfigurationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/SearchResourcesCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/TagCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/UngroupResourcesCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UntagCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateGroupQueryCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/index.d.ts +16 -16
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/ResourceGroupsServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +397 -492
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListGroupResourcesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListGroupsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/SearchResourcesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +4 -4
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +194 -50
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { ResourceGroups } from "../ResourceGroups";
|
|
3
|
-
import { ResourceGroupsClient } from "../ResourceGroupsClient";
|
|
4
|
-
export interface ResourceGroupsPaginationConfiguration
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { ResourceGroups } from "../ResourceGroups";
|
|
3
|
+
import { ResourceGroupsClient } from "../ResourceGroupsClient";
|
|
4
|
+
export interface ResourceGroupsPaginationConfiguration
|
|
5
|
+
extends PaginationConfiguration {
|
|
6
|
+
client: ResourceGroups | ResourceGroupsClient;
|
|
7
|
+
}
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListGroupResourcesCommandInput,
|
|
4
|
+
ListGroupResourcesCommandOutput,
|
|
5
|
+
} from "../commands/ListGroupResourcesCommand";
|
|
6
|
+
import { ResourceGroupsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListGroupResources(
|
|
8
|
+
config: ResourceGroupsPaginationConfiguration,
|
|
9
|
+
input: ListGroupResourcesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListGroupResourcesCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListGroupsCommandInput,
|
|
4
|
+
ListGroupsCommandOutput,
|
|
5
|
+
} from "../commands/ListGroupsCommand";
|
|
6
|
+
import { ResourceGroupsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListGroups(
|
|
8
|
+
config: ResourceGroupsPaginationConfiguration,
|
|
9
|
+
input: ListGroupsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListGroupsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
SearchResourcesCommandInput,
|
|
4
|
+
SearchResourcesCommandOutput,
|
|
5
|
+
} from "../commands/SearchResourcesCommand";
|
|
6
|
+
import { ResourceGroupsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateSearchResources(
|
|
8
|
+
config: ResourceGroupsPaginationConfiguration,
|
|
9
|
+
input: SearchResourcesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<SearchResourcesCommandOutput>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from "./Interfaces";
|
|
2
|
-
export * from "./ListGroupResourcesPaginator";
|
|
3
|
-
export * from "./ListGroupsPaginator";
|
|
4
|
-
export * from "./SearchResourcesPaginator";
|
|
1
|
+
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListGroupResourcesPaginator";
|
|
3
|
+
export * from "./ListGroupsPaginator";
|
|
4
|
+
export * from "./SearchResourcesPaginator";
|
|
@@ -1,50 +1,194 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
import {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@aws-sdk/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
6
|
+
import {
|
|
7
|
+
CreateGroupCommandInput,
|
|
8
|
+
CreateGroupCommandOutput,
|
|
9
|
+
} from "../commands/CreateGroupCommand";
|
|
10
|
+
import {
|
|
11
|
+
DeleteGroupCommandInput,
|
|
12
|
+
DeleteGroupCommandOutput,
|
|
13
|
+
} from "../commands/DeleteGroupCommand";
|
|
14
|
+
import {
|
|
15
|
+
GetGroupCommandInput,
|
|
16
|
+
GetGroupCommandOutput,
|
|
17
|
+
} from "../commands/GetGroupCommand";
|
|
18
|
+
import {
|
|
19
|
+
GetGroupConfigurationCommandInput,
|
|
20
|
+
GetGroupConfigurationCommandOutput,
|
|
21
|
+
} from "../commands/GetGroupConfigurationCommand";
|
|
22
|
+
import {
|
|
23
|
+
GetGroupQueryCommandInput,
|
|
24
|
+
GetGroupQueryCommandOutput,
|
|
25
|
+
} from "../commands/GetGroupQueryCommand";
|
|
26
|
+
import {
|
|
27
|
+
GetTagsCommandInput,
|
|
28
|
+
GetTagsCommandOutput,
|
|
29
|
+
} from "../commands/GetTagsCommand";
|
|
30
|
+
import {
|
|
31
|
+
GroupResourcesCommandInput,
|
|
32
|
+
GroupResourcesCommandOutput,
|
|
33
|
+
} from "../commands/GroupResourcesCommand";
|
|
34
|
+
import {
|
|
35
|
+
ListGroupResourcesCommandInput,
|
|
36
|
+
ListGroupResourcesCommandOutput,
|
|
37
|
+
} from "../commands/ListGroupResourcesCommand";
|
|
38
|
+
import {
|
|
39
|
+
ListGroupsCommandInput,
|
|
40
|
+
ListGroupsCommandOutput,
|
|
41
|
+
} from "../commands/ListGroupsCommand";
|
|
42
|
+
import {
|
|
43
|
+
PutGroupConfigurationCommandInput,
|
|
44
|
+
PutGroupConfigurationCommandOutput,
|
|
45
|
+
} from "../commands/PutGroupConfigurationCommand";
|
|
46
|
+
import {
|
|
47
|
+
SearchResourcesCommandInput,
|
|
48
|
+
SearchResourcesCommandOutput,
|
|
49
|
+
} from "../commands/SearchResourcesCommand";
|
|
50
|
+
import { TagCommandInput, TagCommandOutput } from "../commands/TagCommand";
|
|
51
|
+
import {
|
|
52
|
+
UngroupResourcesCommandInput,
|
|
53
|
+
UngroupResourcesCommandOutput,
|
|
54
|
+
} from "../commands/UngroupResourcesCommand";
|
|
55
|
+
import {
|
|
56
|
+
UntagCommandInput,
|
|
57
|
+
UntagCommandOutput,
|
|
58
|
+
} from "../commands/UntagCommand";
|
|
59
|
+
import {
|
|
60
|
+
UpdateGroupCommandInput,
|
|
61
|
+
UpdateGroupCommandOutput,
|
|
62
|
+
} from "../commands/UpdateGroupCommand";
|
|
63
|
+
import {
|
|
64
|
+
UpdateGroupQueryCommandInput,
|
|
65
|
+
UpdateGroupQueryCommandOutput,
|
|
66
|
+
} from "../commands/UpdateGroupQueryCommand";
|
|
67
|
+
export declare const serializeAws_restJson1CreateGroupCommand: (
|
|
68
|
+
input: CreateGroupCommandInput,
|
|
69
|
+
context: __SerdeContext
|
|
70
|
+
) => Promise<__HttpRequest>;
|
|
71
|
+
export declare const serializeAws_restJson1DeleteGroupCommand: (
|
|
72
|
+
input: DeleteGroupCommandInput,
|
|
73
|
+
context: __SerdeContext
|
|
74
|
+
) => Promise<__HttpRequest>;
|
|
75
|
+
export declare const serializeAws_restJson1GetGroupCommand: (
|
|
76
|
+
input: GetGroupCommandInput,
|
|
77
|
+
context: __SerdeContext
|
|
78
|
+
) => Promise<__HttpRequest>;
|
|
79
|
+
export declare const serializeAws_restJson1GetGroupConfigurationCommand: (
|
|
80
|
+
input: GetGroupConfigurationCommandInput,
|
|
81
|
+
context: __SerdeContext
|
|
82
|
+
) => Promise<__HttpRequest>;
|
|
83
|
+
export declare const serializeAws_restJson1GetGroupQueryCommand: (
|
|
84
|
+
input: GetGroupQueryCommandInput,
|
|
85
|
+
context: __SerdeContext
|
|
86
|
+
) => Promise<__HttpRequest>;
|
|
87
|
+
export declare const serializeAws_restJson1GetTagsCommand: (
|
|
88
|
+
input: GetTagsCommandInput,
|
|
89
|
+
context: __SerdeContext
|
|
90
|
+
) => Promise<__HttpRequest>;
|
|
91
|
+
export declare const serializeAws_restJson1GroupResourcesCommand: (
|
|
92
|
+
input: GroupResourcesCommandInput,
|
|
93
|
+
context: __SerdeContext
|
|
94
|
+
) => Promise<__HttpRequest>;
|
|
95
|
+
export declare const serializeAws_restJson1ListGroupResourcesCommand: (
|
|
96
|
+
input: ListGroupResourcesCommandInput,
|
|
97
|
+
context: __SerdeContext
|
|
98
|
+
) => Promise<__HttpRequest>;
|
|
99
|
+
export declare const serializeAws_restJson1ListGroupsCommand: (
|
|
100
|
+
input: ListGroupsCommandInput,
|
|
101
|
+
context: __SerdeContext
|
|
102
|
+
) => Promise<__HttpRequest>;
|
|
103
|
+
export declare const serializeAws_restJson1PutGroupConfigurationCommand: (
|
|
104
|
+
input: PutGroupConfigurationCommandInput,
|
|
105
|
+
context: __SerdeContext
|
|
106
|
+
) => Promise<__HttpRequest>;
|
|
107
|
+
export declare const serializeAws_restJson1SearchResourcesCommand: (
|
|
108
|
+
input: SearchResourcesCommandInput,
|
|
109
|
+
context: __SerdeContext
|
|
110
|
+
) => Promise<__HttpRequest>;
|
|
111
|
+
export declare const serializeAws_restJson1TagCommand: (
|
|
112
|
+
input: TagCommandInput,
|
|
113
|
+
context: __SerdeContext
|
|
114
|
+
) => Promise<__HttpRequest>;
|
|
115
|
+
export declare const serializeAws_restJson1UngroupResourcesCommand: (
|
|
116
|
+
input: UngroupResourcesCommandInput,
|
|
117
|
+
context: __SerdeContext
|
|
118
|
+
) => Promise<__HttpRequest>;
|
|
119
|
+
export declare const serializeAws_restJson1UntagCommand: (
|
|
120
|
+
input: UntagCommandInput,
|
|
121
|
+
context: __SerdeContext
|
|
122
|
+
) => Promise<__HttpRequest>;
|
|
123
|
+
export declare const serializeAws_restJson1UpdateGroupCommand: (
|
|
124
|
+
input: UpdateGroupCommandInput,
|
|
125
|
+
context: __SerdeContext
|
|
126
|
+
) => Promise<__HttpRequest>;
|
|
127
|
+
export declare const serializeAws_restJson1UpdateGroupQueryCommand: (
|
|
128
|
+
input: UpdateGroupQueryCommandInput,
|
|
129
|
+
context: __SerdeContext
|
|
130
|
+
) => Promise<__HttpRequest>;
|
|
131
|
+
export declare const deserializeAws_restJson1CreateGroupCommand: (
|
|
132
|
+
output: __HttpResponse,
|
|
133
|
+
context: __SerdeContext
|
|
134
|
+
) => Promise<CreateGroupCommandOutput>;
|
|
135
|
+
export declare const deserializeAws_restJson1DeleteGroupCommand: (
|
|
136
|
+
output: __HttpResponse,
|
|
137
|
+
context: __SerdeContext
|
|
138
|
+
) => Promise<DeleteGroupCommandOutput>;
|
|
139
|
+
export declare const deserializeAws_restJson1GetGroupCommand: (
|
|
140
|
+
output: __HttpResponse,
|
|
141
|
+
context: __SerdeContext
|
|
142
|
+
) => Promise<GetGroupCommandOutput>;
|
|
143
|
+
export declare const deserializeAws_restJson1GetGroupConfigurationCommand: (
|
|
144
|
+
output: __HttpResponse,
|
|
145
|
+
context: __SerdeContext
|
|
146
|
+
) => Promise<GetGroupConfigurationCommandOutput>;
|
|
147
|
+
export declare const deserializeAws_restJson1GetGroupQueryCommand: (
|
|
148
|
+
output: __HttpResponse,
|
|
149
|
+
context: __SerdeContext
|
|
150
|
+
) => Promise<GetGroupQueryCommandOutput>;
|
|
151
|
+
export declare const deserializeAws_restJson1GetTagsCommand: (
|
|
152
|
+
output: __HttpResponse,
|
|
153
|
+
context: __SerdeContext
|
|
154
|
+
) => Promise<GetTagsCommandOutput>;
|
|
155
|
+
export declare const deserializeAws_restJson1GroupResourcesCommand: (
|
|
156
|
+
output: __HttpResponse,
|
|
157
|
+
context: __SerdeContext
|
|
158
|
+
) => Promise<GroupResourcesCommandOutput>;
|
|
159
|
+
export declare const deserializeAws_restJson1ListGroupResourcesCommand: (
|
|
160
|
+
output: __HttpResponse,
|
|
161
|
+
context: __SerdeContext
|
|
162
|
+
) => Promise<ListGroupResourcesCommandOutput>;
|
|
163
|
+
export declare const deserializeAws_restJson1ListGroupsCommand: (
|
|
164
|
+
output: __HttpResponse,
|
|
165
|
+
context: __SerdeContext
|
|
166
|
+
) => Promise<ListGroupsCommandOutput>;
|
|
167
|
+
export declare const deserializeAws_restJson1PutGroupConfigurationCommand: (
|
|
168
|
+
output: __HttpResponse,
|
|
169
|
+
context: __SerdeContext
|
|
170
|
+
) => Promise<PutGroupConfigurationCommandOutput>;
|
|
171
|
+
export declare const deserializeAws_restJson1SearchResourcesCommand: (
|
|
172
|
+
output: __HttpResponse,
|
|
173
|
+
context: __SerdeContext
|
|
174
|
+
) => Promise<SearchResourcesCommandOutput>;
|
|
175
|
+
export declare const deserializeAws_restJson1TagCommand: (
|
|
176
|
+
output: __HttpResponse,
|
|
177
|
+
context: __SerdeContext
|
|
178
|
+
) => Promise<TagCommandOutput>;
|
|
179
|
+
export declare const deserializeAws_restJson1UngroupResourcesCommand: (
|
|
180
|
+
output: __HttpResponse,
|
|
181
|
+
context: __SerdeContext
|
|
182
|
+
) => Promise<UngroupResourcesCommandOutput>;
|
|
183
|
+
export declare const deserializeAws_restJson1UntagCommand: (
|
|
184
|
+
output: __HttpResponse,
|
|
185
|
+
context: __SerdeContext
|
|
186
|
+
) => Promise<UntagCommandOutput>;
|
|
187
|
+
export declare const deserializeAws_restJson1UpdateGroupCommand: (
|
|
188
|
+
output: __HttpResponse,
|
|
189
|
+
context: __SerdeContext
|
|
190
|
+
) => Promise<UpdateGroupCommandOutput>;
|
|
191
|
+
export declare const deserializeAws_restJson1UpdateGroupQueryCommand: (
|
|
192
|
+
output: __HttpResponse,
|
|
193
|
+
context: __SerdeContext
|
|
194
|
+
) => Promise<UpdateGroupQueryCommandOutput>;
|
|
@@ -1,38 +1,65 @@
|
|
|
1
|
-
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
-
import { ResourceGroupsClientConfig } from "./ResourceGroupsClient";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { ResourceGroupsClientConfig } from "./ResourceGroupsClient";
|
|
3
|
+
export declare const getRuntimeConfig: (config: ResourceGroupsClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
6
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
7
|
+
>;
|
|
8
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
11
|
+
credentialDefaultProvider: (
|
|
12
|
+
input: any
|
|
13
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
14
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
15
|
+
import("@aws-sdk/types").UserAgent
|
|
16
|
+
>;
|
|
17
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
18
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
19
|
+
requestHandler:
|
|
20
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
21
|
+
any,
|
|
22
|
+
any,
|
|
23
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
24
|
+
> &
|
|
25
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
26
|
+
| RequestHandler;
|
|
27
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
28
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
29
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
30
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
31
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
32
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
33
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
34
|
+
apiVersion: string;
|
|
35
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
36
|
+
disableHostPrefix: boolean;
|
|
37
|
+
logger: import("@aws-sdk/types").Logger;
|
|
38
|
+
serviceId: string;
|
|
39
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
40
|
+
endpoint?:
|
|
41
|
+
| string
|
|
42
|
+
| import("@aws-sdk/types").Endpoint
|
|
43
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
44
|
+
| undefined;
|
|
45
|
+
tls?: boolean | undefined;
|
|
46
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
47
|
+
credentials?:
|
|
48
|
+
| import("@aws-sdk/types").Credentials
|
|
49
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
50
|
+
| undefined;
|
|
51
|
+
signer?:
|
|
52
|
+
| import("@aws-sdk/types").RequestSigner
|
|
53
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
54
|
+
| undefined;
|
|
55
|
+
signingEscapePath?: boolean | undefined;
|
|
56
|
+
systemClockOffset?: number | undefined;
|
|
57
|
+
signingRegion?: string | undefined;
|
|
58
|
+
signerConstructor?:
|
|
59
|
+
| (new (
|
|
60
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
61
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
62
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
63
|
+
| undefined;
|
|
64
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
65
|
+
};
|
|
@@ -1,38 +1,65 @@
|
|
|
1
|
-
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
-
import { ResourceGroupsClientConfig } from "./ResourceGroupsClient";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { ResourceGroupsClientConfig } from "./ResourceGroupsClient";
|
|
3
|
+
export declare const getRuntimeConfig: (config: ResourceGroupsClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
6
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
7
|
+
>;
|
|
8
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
11
|
+
credentialDefaultProvider: (
|
|
12
|
+
input: any
|
|
13
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
14
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
15
|
+
import("@aws-sdk/types").UserAgent
|
|
16
|
+
>;
|
|
17
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
18
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
19
|
+
requestHandler:
|
|
20
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
21
|
+
any,
|
|
22
|
+
any,
|
|
23
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
24
|
+
> &
|
|
25
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
26
|
+
| RequestHandler;
|
|
27
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
28
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
29
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
30
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
31
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
32
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
33
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
34
|
+
apiVersion: string;
|
|
35
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
36
|
+
disableHostPrefix: boolean;
|
|
37
|
+
logger: import("@aws-sdk/types").Logger;
|
|
38
|
+
serviceId: string;
|
|
39
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
40
|
+
endpoint?:
|
|
41
|
+
| string
|
|
42
|
+
| import("@aws-sdk/types").Endpoint
|
|
43
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
44
|
+
| undefined;
|
|
45
|
+
tls?: boolean | undefined;
|
|
46
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
47
|
+
credentials?:
|
|
48
|
+
| import("@aws-sdk/types").Credentials
|
|
49
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
50
|
+
| undefined;
|
|
51
|
+
signer?:
|
|
52
|
+
| import("@aws-sdk/types").RequestSigner
|
|
53
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
54
|
+
| undefined;
|
|
55
|
+
signingEscapePath?: boolean | undefined;
|
|
56
|
+
systemClockOffset?: number | undefined;
|
|
57
|
+
signingRegion?: string | undefined;
|
|
58
|
+
signerConstructor?:
|
|
59
|
+
| (new (
|
|
60
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
61
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
62
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
63
|
+
| undefined;
|
|
64
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
65
|
+
};
|