@aws-sdk/client-codeguruprofiler 3.1075.0 → 3.1077.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/index.js +1052 -15
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/package.json +8 -10
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/CodeGuruProfilerServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -76
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -774
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,58 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
const {
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
const { Sha256 } = require("@smithy/core/checksum");
|
|
17
|
+
|
|
18
|
+
const defaultCodeGuruProfilerHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
19
|
+
return {
|
|
20
|
+
operation: getSmithyContext(context).operation,
|
|
21
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
22
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
23
|
+
})(),
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
27
|
+
return {
|
|
28
|
+
schemeId: "aws.auth#sigv4",
|
|
29
|
+
signingProperties: {
|
|
30
|
+
name: "codeguru-profiler",
|
|
31
|
+
region: authParameters.region,
|
|
32
|
+
},
|
|
33
|
+
propertiesExtractor: (config, context) => ({
|
|
34
|
+
signingProperties: {
|
|
35
|
+
config,
|
|
36
|
+
context,
|
|
37
|
+
},
|
|
38
|
+
}),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
const defaultCodeGuruProfilerHttpAuthSchemeProvider = (authParameters) => {
|
|
42
|
+
const options = [];
|
|
43
|
+
switch (authParameters.operation) {
|
|
44
|
+
default: {
|
|
45
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
return options;
|
|
49
|
+
};
|
|
50
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
51
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
52
|
+
return Object.assign(config_0, {
|
|
53
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
54
|
+
});
|
|
55
|
+
};
|
|
19
56
|
|
|
20
57
|
const resolveClientEndpointParameters = (options) => {
|
|
21
58
|
return Object.assign(options, {
|
|
@@ -31,6 +68,903 @@ const commonParams = {
|
|
|
31
68
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
69
|
};
|
|
33
70
|
|
|
71
|
+
var version = "3.1076.0";
|
|
72
|
+
var packageInfo = {
|
|
73
|
+
version: version};
|
|
74
|
+
|
|
75
|
+
const k = "ref";
|
|
76
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
77
|
+
const _data = {
|
|
78
|
+
conditions: [
|
|
79
|
+
[c, [g]],
|
|
80
|
+
[c, j],
|
|
81
|
+
["aws.partition", j, d],
|
|
82
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
83
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
85
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
86
|
+
],
|
|
87
|
+
results: [
|
|
88
|
+
[a],
|
|
89
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
90
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
91
|
+
[g, i],
|
|
92
|
+
["https://codeguru-profiler-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
93
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
94
|
+
["https://codeguru-profiler-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
95
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
96
|
+
["https://codeguru-profiler.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
97
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
98
|
+
["https://codeguru-profiler.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
99
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
100
|
+
]
|
|
101
|
+
};
|
|
102
|
+
const root = 2;
|
|
103
|
+
const r = 100_000_000;
|
|
104
|
+
const nodes = new Int32Array([
|
|
105
|
+
-1, 1, -1,
|
|
106
|
+
0, 12, 3,
|
|
107
|
+
1, 4, r + 11,
|
|
108
|
+
2, 5, r + 11,
|
|
109
|
+
3, 8, 6,
|
|
110
|
+
4, 7, r + 10,
|
|
111
|
+
5, r + 8, r + 9,
|
|
112
|
+
4, 10, 9,
|
|
113
|
+
6, r + 6, r + 7,
|
|
114
|
+
5, 11, r + 5,
|
|
115
|
+
6, r + 4, r + 5,
|
|
116
|
+
3, r + 1, 13,
|
|
117
|
+
4, r + 2, r + 3,
|
|
118
|
+
]);
|
|
119
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
120
|
+
|
|
121
|
+
const cache = new EndpointCache({
|
|
122
|
+
size: 50,
|
|
123
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
124
|
+
});
|
|
125
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
126
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
127
|
+
endpointParams: endpointParams,
|
|
128
|
+
logger: context.logger,
|
|
129
|
+
}));
|
|
130
|
+
};
|
|
131
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
132
|
+
|
|
133
|
+
class CodeGuruProfilerServiceException extends ServiceException {
|
|
134
|
+
constructor(options) {
|
|
135
|
+
super(options);
|
|
136
|
+
Object.setPrototypeOf(this, CodeGuruProfilerServiceException.prototype);
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
class ConflictException extends CodeGuruProfilerServiceException {
|
|
141
|
+
name = "ConflictException";
|
|
142
|
+
$fault = "client";
|
|
143
|
+
constructor(opts) {
|
|
144
|
+
super({
|
|
145
|
+
name: "ConflictException",
|
|
146
|
+
$fault: "client",
|
|
147
|
+
...opts,
|
|
148
|
+
});
|
|
149
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
class InternalServerException extends CodeGuruProfilerServiceException {
|
|
153
|
+
name = "InternalServerException";
|
|
154
|
+
$fault = "server";
|
|
155
|
+
$retryable = {};
|
|
156
|
+
constructor(opts) {
|
|
157
|
+
super({
|
|
158
|
+
name: "InternalServerException",
|
|
159
|
+
$fault: "server",
|
|
160
|
+
...opts,
|
|
161
|
+
});
|
|
162
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
class ResourceNotFoundException extends CodeGuruProfilerServiceException {
|
|
166
|
+
name = "ResourceNotFoundException";
|
|
167
|
+
$fault = "client";
|
|
168
|
+
constructor(opts) {
|
|
169
|
+
super({
|
|
170
|
+
name: "ResourceNotFoundException",
|
|
171
|
+
$fault: "client",
|
|
172
|
+
...opts,
|
|
173
|
+
});
|
|
174
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
class ServiceQuotaExceededException extends CodeGuruProfilerServiceException {
|
|
178
|
+
name = "ServiceQuotaExceededException";
|
|
179
|
+
$fault = "client";
|
|
180
|
+
$retryable = {};
|
|
181
|
+
constructor(opts) {
|
|
182
|
+
super({
|
|
183
|
+
name: "ServiceQuotaExceededException",
|
|
184
|
+
$fault: "client",
|
|
185
|
+
...opts,
|
|
186
|
+
});
|
|
187
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
class ThrottlingException extends CodeGuruProfilerServiceException {
|
|
191
|
+
name = "ThrottlingException";
|
|
192
|
+
$fault = "client";
|
|
193
|
+
$retryable = {};
|
|
194
|
+
constructor(opts) {
|
|
195
|
+
super({
|
|
196
|
+
name: "ThrottlingException",
|
|
197
|
+
$fault: "client",
|
|
198
|
+
...opts,
|
|
199
|
+
});
|
|
200
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
class ValidationException extends CodeGuruProfilerServiceException {
|
|
204
|
+
name = "ValidationException";
|
|
205
|
+
$fault = "client";
|
|
206
|
+
constructor(opts) {
|
|
207
|
+
super({
|
|
208
|
+
name: "ValidationException",
|
|
209
|
+
$fault: "client",
|
|
210
|
+
...opts,
|
|
211
|
+
});
|
|
212
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
const _A = "Anomaly";
|
|
217
|
+
const _AC = "AgentConfiguration";
|
|
218
|
+
const _AI = "AnomalyInstance";
|
|
219
|
+
const _AIn = "AnomalyInstances";
|
|
220
|
+
const _ANC = "AddNotificationChannels";
|
|
221
|
+
const _ANCR = "AddNotificationChannelsRequest";
|
|
222
|
+
const _ANCRd = "AddNotificationChannelsResponse";
|
|
223
|
+
const _AOC = "AgentOrchestrationConfig";
|
|
224
|
+
const _APT = "AggregatedProfileTime";
|
|
225
|
+
const _Ac = "Accept";
|
|
226
|
+
const _An = "Anomalies";
|
|
227
|
+
const _BGFMD = "BatchGetFrameMetricData";
|
|
228
|
+
const _BGFMDR = "BatchGetFrameMetricDataRequest";
|
|
229
|
+
const _BGFMDRa = "BatchGetFrameMetricDataResponse";
|
|
230
|
+
const _C = "Channel";
|
|
231
|
+
const _CA = "ConfigureAgent";
|
|
232
|
+
const _CAR = "ConfigureAgentRequest";
|
|
233
|
+
const _CARo = "ConfigureAgentResponse";
|
|
234
|
+
const _CE = "ConflictException";
|
|
235
|
+
const _CE_ = "Content-Encoding";
|
|
236
|
+
const _CPG = "CreateProfilingGroup";
|
|
237
|
+
const _CPGR = "CreateProfilingGroupRequest";
|
|
238
|
+
const _CPGRr = "CreateProfilingGroupResponse";
|
|
239
|
+
const _CT = "Content-Type";
|
|
240
|
+
const _Ch = "Channels";
|
|
241
|
+
const _DPG = "DeleteProfilingGroup";
|
|
242
|
+
const _DPGR = "DeleteProfilingGroupRequest";
|
|
243
|
+
const _DPGRe = "DeleteProfilingGroupResponse";
|
|
244
|
+
const _DPGRes = "DescribeProfilingGroupRequest";
|
|
245
|
+
const _DPGResc = "DescribeProfilingGroupResponse";
|
|
246
|
+
const _DPGe = "DescribeProfilingGroup";
|
|
247
|
+
const _FM = "FrameMetric";
|
|
248
|
+
const _FMD = "FrameMetricDatum";
|
|
249
|
+
const _FMDr = "FrameMetricData";
|
|
250
|
+
const _FMr = "FrameMetrics";
|
|
251
|
+
const _FRS = "FindingsReportSummary";
|
|
252
|
+
const _FRSi = "FindingsReportSummaries";
|
|
253
|
+
const _GFRAS = "GetFindingsReportAccountSummary";
|
|
254
|
+
const _GFRASR = "GetFindingsReportAccountSummaryRequest";
|
|
255
|
+
const _GFRASRe = "GetFindingsReportAccountSummaryResponse";
|
|
256
|
+
const _GNC = "GetNotificationConfiguration";
|
|
257
|
+
const _GNCR = "GetNotificationConfigurationRequest";
|
|
258
|
+
const _GNCRe = "GetNotificationConfigurationResponse";
|
|
259
|
+
const _GP = "GetPolicy";
|
|
260
|
+
const _GPR = "GetPolicyRequest";
|
|
261
|
+
const _GPRe = "GetPolicyResponse";
|
|
262
|
+
const _GPRet = "GetProfileRequest";
|
|
263
|
+
const _GPRetr = "GetProfileResponse";
|
|
264
|
+
const _GPe = "GetProfile";
|
|
265
|
+
const _GR = "GetRecommendations";
|
|
266
|
+
const _GRR = "GetRecommendationsRequest";
|
|
267
|
+
const _GRRe = "GetRecommendationsResponse";
|
|
268
|
+
const _ISE = "InternalServerException";
|
|
269
|
+
const _LFR = "ListFindingsReports";
|
|
270
|
+
const _LFRR = "ListFindingsReportsRequest";
|
|
271
|
+
const _LFRRi = "ListFindingsReportsResponse";
|
|
272
|
+
const _LOT = "ListOfTimestamps";
|
|
273
|
+
const _LPG = "ListProfilingGroups";
|
|
274
|
+
const _LPGR = "ListProfilingGroupsRequest";
|
|
275
|
+
const _LPGRi = "ListProfilingGroupsResponse";
|
|
276
|
+
const _LPT = "ListProfileTimes";
|
|
277
|
+
const _LPTR = "ListProfileTimesRequest";
|
|
278
|
+
const _LPTRi = "ListProfileTimesResponse";
|
|
279
|
+
const _LTFR = "ListTagsForResource";
|
|
280
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
281
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
282
|
+
const _M = "Match";
|
|
283
|
+
const _Ma = "Matches";
|
|
284
|
+
const _Me = "Metric";
|
|
285
|
+
const _NC = "NotificationConfiguration";
|
|
286
|
+
const _P = "Pattern";
|
|
287
|
+
const _PAP = "PostAgentProfile";
|
|
288
|
+
const _PAPR = "PostAgentProfileRequest";
|
|
289
|
+
const _PAPRo = "PostAgentProfileResponse";
|
|
290
|
+
const _PGD = "ProfilingGroupDescription";
|
|
291
|
+
const _PGDr = "ProfilingGroupDescriptions";
|
|
292
|
+
const _PP = "PutPermission";
|
|
293
|
+
const _PPR = "PutPermissionRequest";
|
|
294
|
+
const _PPRu = "PutPermissionResponse";
|
|
295
|
+
const _PS = "ProfilingStatus";
|
|
296
|
+
const _PT = "ProfileTime";
|
|
297
|
+
const _PTr = "ProfileTimes";
|
|
298
|
+
const _R = "Recommendation";
|
|
299
|
+
const _RNC = "RemoveNotificationChannel";
|
|
300
|
+
const _RNCR = "RemoveNotificationChannelRequest";
|
|
301
|
+
const _RNCRe = "RemoveNotificationChannelResponse";
|
|
302
|
+
const _RNFE = "ResourceNotFoundException";
|
|
303
|
+
const _RP = "RemovePermission";
|
|
304
|
+
const _RPR = "RemovePermissionRequest";
|
|
305
|
+
const _RPRe = "RemovePermissionResponse";
|
|
306
|
+
const _Re = "Recommendations";
|
|
307
|
+
const _SF = "SubmitFeedback";
|
|
308
|
+
const _SFR = "SubmitFeedbackRequest";
|
|
309
|
+
const _SFRu = "SubmitFeedbackResponse";
|
|
310
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
311
|
+
const _TE = "ThrottlingException";
|
|
312
|
+
const _TF = "TargetFrames";
|
|
313
|
+
const _TR = "TagResource";
|
|
314
|
+
const _TRR = "TagResourceRequest";
|
|
315
|
+
const _TRRa = "TagResourceResponse";
|
|
316
|
+
const _TS = "TimestampStructure";
|
|
317
|
+
const _UETM = "UnprocessedEndTimeMap";
|
|
318
|
+
const _UF = "UserFeedback";
|
|
319
|
+
const _UPG = "UpdateProfilingGroup";
|
|
320
|
+
const _UPGR = "UpdateProfilingGroupRequest";
|
|
321
|
+
const _UPGRp = "UpdateProfilingGroupResponse";
|
|
322
|
+
const _UR = "UntagResource";
|
|
323
|
+
const _URR = "UntagResourceRequest";
|
|
324
|
+
const _URRn = "UntagResourceResponse";
|
|
325
|
+
const _VE = "ValidationException";
|
|
326
|
+
const _a = "accept";
|
|
327
|
+
const _aG = "actionGroup";
|
|
328
|
+
const _aII = "anomalyInstanceId";
|
|
329
|
+
const _aMC = "allMatchesCount";
|
|
330
|
+
const _aMS = "allMatchesSum";
|
|
331
|
+
const _aOC = "agentOrchestrationConfig";
|
|
332
|
+
const _aP = "agentParameters";
|
|
333
|
+
const _aPg = "agentProfile";
|
|
334
|
+
const _an = "anomalies";
|
|
335
|
+
const _ar = "arn";
|
|
336
|
+
const _c = "client";
|
|
337
|
+
const _cA = "createdAt";
|
|
338
|
+
const _cE = "contentEncoding";
|
|
339
|
+
const _cI = "channelId";
|
|
340
|
+
const _cP = "computePlatform";
|
|
341
|
+
const _cT = "clientToken";
|
|
342
|
+
const _cTA = "countersToAggregate";
|
|
343
|
+
const _cTo = "contentType";
|
|
344
|
+
const _ch = "channels";
|
|
345
|
+
const _co = "configuration";
|
|
346
|
+
const _com = "comment";
|
|
347
|
+
const _d = "description";
|
|
348
|
+
const _dRO = "dailyReportsOnly";
|
|
349
|
+
const _e = "error";
|
|
350
|
+
const _eP = "eventPublishers";
|
|
351
|
+
const _eT = "endTime";
|
|
352
|
+
const _eTn = "endTimes";
|
|
353
|
+
const _fA = "frameAddress";
|
|
354
|
+
const _fII = "fleetInstanceId";
|
|
355
|
+
const _fM = "frameMetrics";
|
|
356
|
+
const _fMD = "frameMetricData";
|
|
357
|
+
const _fMr = "frameMetric";
|
|
358
|
+
const _fN = "frameName";
|
|
359
|
+
const _fRS = "findingsReportSummaries";
|
|
360
|
+
const _h = "http";
|
|
361
|
+
const _hE = "httpError";
|
|
362
|
+
const _hH = "httpHeader";
|
|
363
|
+
const _hQ = "httpQuery";
|
|
364
|
+
const _i = "instances";
|
|
365
|
+
const _iD = "includeDescription";
|
|
366
|
+
const _iT = "idempotencyToken";
|
|
367
|
+
const _id = "id";
|
|
368
|
+
const _l = "locale";
|
|
369
|
+
const _lAOA = "latestAgentOrchestratedAt";
|
|
370
|
+
const _lAP = "latestAggregatedProfile";
|
|
371
|
+
const _lAPRA = "latestAgentProfileReportedAt";
|
|
372
|
+
const _m = "message";
|
|
373
|
+
const _mD = "maxDepth";
|
|
374
|
+
const _mR = "maxResults";
|
|
375
|
+
const _me = "metric";
|
|
376
|
+
const _met = "metadata";
|
|
377
|
+
const _n = "name";
|
|
378
|
+
const _nC = "notificationConfiguration";
|
|
379
|
+
const _nT = "nextToken";
|
|
380
|
+
const _oB = "orderBy";
|
|
381
|
+
const _p = "period";
|
|
382
|
+
const _pE = "profilingEnabled";
|
|
383
|
+
const _pET = "profileEndTime";
|
|
384
|
+
const _pG = "profilingGroup";
|
|
385
|
+
const _pGN = "profilingGroupName";
|
|
386
|
+
const _pGNr = "profilingGroupNames";
|
|
387
|
+
const _pGr = "profilingGroups";
|
|
388
|
+
const _pIS = "periodInSeconds";
|
|
389
|
+
const _pS = "profilingStatus";
|
|
390
|
+
const _pST = "profileStartTime";
|
|
391
|
+
const _pT = "profileTimes";
|
|
392
|
+
const _pTr = "profileToken";
|
|
393
|
+
const _pa = "pattern";
|
|
394
|
+
const _po = "policy";
|
|
395
|
+
const _pr = "profile";
|
|
396
|
+
const _pri = "principals";
|
|
397
|
+
const _r = "reason";
|
|
398
|
+
const _rA = "resourceArn";
|
|
399
|
+
const _rI = "revisionId";
|
|
400
|
+
const _rS = "reportSummaries";
|
|
401
|
+
const _rSe = "resolutionSteps";
|
|
402
|
+
const _re = "resolution";
|
|
403
|
+
const _rec = "recommendations";
|
|
404
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.codeguruprofiler";
|
|
405
|
+
const _sP = "shouldProfile";
|
|
406
|
+
const _sT = "startTime";
|
|
407
|
+
const _se = "server";
|
|
408
|
+
const _st = "start";
|
|
409
|
+
const _t = "tags";
|
|
410
|
+
const _tBV = "thresholdBreachValue";
|
|
411
|
+
const _tF = "targetFrames";
|
|
412
|
+
const _tFI = "targetFramesIndex";
|
|
413
|
+
const _tK = "tagKeys";
|
|
414
|
+
const _tM = "topMatches";
|
|
415
|
+
const _tNOF = "totalNumberOfFindings";
|
|
416
|
+
const _tP = "thresholdPercent";
|
|
417
|
+
const _tR = "targetResolution";
|
|
418
|
+
const _tS = "threadStates";
|
|
419
|
+
const _ty = "type";
|
|
420
|
+
const _u = "uri";
|
|
421
|
+
const _uA = "updatedAt";
|
|
422
|
+
const _uET = "unprocessedEndTimes";
|
|
423
|
+
const _uF = "userFeedback";
|
|
424
|
+
const _v = "values";
|
|
425
|
+
const _va = "value";
|
|
426
|
+
const n0 = "com.amazonaws.codeguruprofiler";
|
|
427
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
428
|
+
var CodeGuruProfilerServiceException$ = [-3, _s, "CodeGuruProfilerServiceException", 0, [], []];
|
|
429
|
+
_s_registry.registerError(CodeGuruProfilerServiceException$, CodeGuruProfilerServiceException);
|
|
430
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
431
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
432
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
433
|
+
[_m],
|
|
434
|
+
[0], 1
|
|
435
|
+
];
|
|
436
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
437
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
438
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
439
|
+
[_m],
|
|
440
|
+
[0], 1
|
|
441
|
+
];
|
|
442
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
443
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
444
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
445
|
+
[_m],
|
|
446
|
+
[0], 1
|
|
447
|
+
];
|
|
448
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
449
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
450
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
451
|
+
[_m],
|
|
452
|
+
[0], 1
|
|
453
|
+
];
|
|
454
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
455
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
456
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
457
|
+
[_m],
|
|
458
|
+
[0], 1
|
|
459
|
+
];
|
|
460
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
461
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
462
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
463
|
+
[_m],
|
|
464
|
+
[0], 1
|
|
465
|
+
];
|
|
466
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
467
|
+
const errorTypeRegistries = [
|
|
468
|
+
_s_registry,
|
|
469
|
+
n0_registry,
|
|
470
|
+
];
|
|
471
|
+
var AddNotificationChannelsRequest$ = [3, n0, _ANCR,
|
|
472
|
+
0,
|
|
473
|
+
[_pGN, _ch],
|
|
474
|
+
[[0, 1], () => Channels], 2
|
|
475
|
+
];
|
|
476
|
+
var AddNotificationChannelsResponse$ = [3, n0, _ANCRd,
|
|
477
|
+
0,
|
|
478
|
+
[_nC],
|
|
479
|
+
[() => NotificationConfiguration$]
|
|
480
|
+
];
|
|
481
|
+
var AgentConfiguration$ = [3, n0, _AC,
|
|
482
|
+
0,
|
|
483
|
+
[_sP, _pIS, _aP],
|
|
484
|
+
[2, 1, 128 | 0], 2
|
|
485
|
+
];
|
|
486
|
+
var AgentOrchestrationConfig$ = [3, n0, _AOC,
|
|
487
|
+
0,
|
|
488
|
+
[_pE],
|
|
489
|
+
[2], 1
|
|
490
|
+
];
|
|
491
|
+
var AggregatedProfileTime$ = [3, n0, _APT,
|
|
492
|
+
0,
|
|
493
|
+
[_st, _p],
|
|
494
|
+
[5, 0]
|
|
495
|
+
];
|
|
496
|
+
var Anomaly$ = [3, n0, _A,
|
|
497
|
+
0,
|
|
498
|
+
[_me, _r, _i],
|
|
499
|
+
[() => Metric$, 0, () => AnomalyInstances], 3
|
|
500
|
+
];
|
|
501
|
+
var AnomalyInstance$ = [3, n0, _AI,
|
|
502
|
+
0,
|
|
503
|
+
[_id, _sT, _eT, _uF],
|
|
504
|
+
[0, 5, 5, () => UserFeedback$], 2
|
|
505
|
+
];
|
|
506
|
+
var BatchGetFrameMetricDataRequest$ = [3, n0, _BGFMDR,
|
|
507
|
+
0,
|
|
508
|
+
[_pGN, _sT, _eT, _p, _tR, _fM],
|
|
509
|
+
[[0, 1], [5, { [_hQ]: _sT }], [5, { [_hQ]: _eT }], [0, { [_hQ]: _p }], [0, { [_hQ]: _tR }], () => FrameMetrics], 1
|
|
510
|
+
];
|
|
511
|
+
var BatchGetFrameMetricDataResponse$ = [3, n0, _BGFMDRa,
|
|
512
|
+
0,
|
|
513
|
+
[_sT, _eT, _re, _eTn, _uET, _fMD],
|
|
514
|
+
[5, 5, 0, () => ListOfTimestamps, () => UnprocessedEndTimeMap, () => FrameMetricData], 6
|
|
515
|
+
];
|
|
516
|
+
var Channel$ = [3, n0, _C,
|
|
517
|
+
0,
|
|
518
|
+
[_u, _eP, _id],
|
|
519
|
+
[0, 64 | 0, 0], 2
|
|
520
|
+
];
|
|
521
|
+
var ConfigureAgentRequest$ = [3, n0, _CAR,
|
|
522
|
+
0,
|
|
523
|
+
[_pGN, _fII, _met],
|
|
524
|
+
[[0, 1], 0, 128 | 0], 1
|
|
525
|
+
];
|
|
526
|
+
var ConfigureAgentResponse$ = [3, n0, _CARo,
|
|
527
|
+
0,
|
|
528
|
+
[_co],
|
|
529
|
+
[[() => AgentConfiguration$, 16]], 1
|
|
530
|
+
];
|
|
531
|
+
var CreateProfilingGroupRequest$ = [3, n0, _CPGR,
|
|
532
|
+
0,
|
|
533
|
+
[_pGN, _cP, _cT, _aOC, _t],
|
|
534
|
+
[0, 0, [0, { [_hQ]: _cT, [_iT]: 1 }], () => AgentOrchestrationConfig$, 128 | 0], 1
|
|
535
|
+
];
|
|
536
|
+
var CreateProfilingGroupResponse$ = [3, n0, _CPGRr,
|
|
537
|
+
0,
|
|
538
|
+
[_pG],
|
|
539
|
+
[[() => ProfilingGroupDescription$, 16]], 1
|
|
540
|
+
];
|
|
541
|
+
var DeleteProfilingGroupRequest$ = [3, n0, _DPGR,
|
|
542
|
+
0,
|
|
543
|
+
[_pGN],
|
|
544
|
+
[[0, 1]], 1
|
|
545
|
+
];
|
|
546
|
+
var DeleteProfilingGroupResponse$ = [3, n0, _DPGRe,
|
|
547
|
+
0,
|
|
548
|
+
[],
|
|
549
|
+
[]
|
|
550
|
+
];
|
|
551
|
+
var DescribeProfilingGroupRequest$ = [3, n0, _DPGRes,
|
|
552
|
+
0,
|
|
553
|
+
[_pGN],
|
|
554
|
+
[[0, 1]], 1
|
|
555
|
+
];
|
|
556
|
+
var DescribeProfilingGroupResponse$ = [3, n0, _DPGResc,
|
|
557
|
+
0,
|
|
558
|
+
[_pG],
|
|
559
|
+
[[() => ProfilingGroupDescription$, 16]], 1
|
|
560
|
+
];
|
|
561
|
+
var FindingsReportSummary$ = [3, n0, _FRS,
|
|
562
|
+
0,
|
|
563
|
+
[_id, _pGN, _pST, _pET, _tNOF],
|
|
564
|
+
[0, 0, 5, 5, 1]
|
|
565
|
+
];
|
|
566
|
+
var FrameMetric$ = [3, n0, _FM,
|
|
567
|
+
0,
|
|
568
|
+
[_fN, _ty, _tS],
|
|
569
|
+
[0, 0, 64 | 0], 3
|
|
570
|
+
];
|
|
571
|
+
var FrameMetricDatum$ = [3, n0, _FMD,
|
|
572
|
+
0,
|
|
573
|
+
[_fMr, _v],
|
|
574
|
+
[() => FrameMetric$, 64 | 1], 2
|
|
575
|
+
];
|
|
576
|
+
var GetFindingsReportAccountSummaryRequest$ = [3, n0, _GFRASR,
|
|
577
|
+
0,
|
|
578
|
+
[_nT, _mR, _dRO],
|
|
579
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [2, { [_hQ]: _dRO }]]
|
|
580
|
+
];
|
|
581
|
+
var GetFindingsReportAccountSummaryResponse$ = [3, n0, _GFRASRe,
|
|
582
|
+
0,
|
|
583
|
+
[_rS, _nT],
|
|
584
|
+
[() => FindingsReportSummaries, 0], 1
|
|
585
|
+
];
|
|
586
|
+
var GetNotificationConfigurationRequest$ = [3, n0, _GNCR,
|
|
587
|
+
0,
|
|
588
|
+
[_pGN],
|
|
589
|
+
[[0, 1]], 1
|
|
590
|
+
];
|
|
591
|
+
var GetNotificationConfigurationResponse$ = [3, n0, _GNCRe,
|
|
592
|
+
0,
|
|
593
|
+
[_nC],
|
|
594
|
+
[() => NotificationConfiguration$], 1
|
|
595
|
+
];
|
|
596
|
+
var GetPolicyRequest$ = [3, n0, _GPR,
|
|
597
|
+
0,
|
|
598
|
+
[_pGN],
|
|
599
|
+
[[0, 1]], 1
|
|
600
|
+
];
|
|
601
|
+
var GetPolicyResponse$ = [3, n0, _GPRe,
|
|
602
|
+
0,
|
|
603
|
+
[_po, _rI],
|
|
604
|
+
[0, 0], 2
|
|
605
|
+
];
|
|
606
|
+
var GetProfileRequest$ = [3, n0, _GPRet,
|
|
607
|
+
0,
|
|
608
|
+
[_pGN, _sT, _p, _eT, _mD, _a],
|
|
609
|
+
[[0, 1], [5, { [_hQ]: _sT }], [0, { [_hQ]: _p }], [5, { [_hQ]: _eT }], [1, { [_hQ]: _mD }], [0, { [_hH]: _Ac }]], 1
|
|
610
|
+
];
|
|
611
|
+
var GetProfileResponse$ = [3, n0, _GPRetr,
|
|
612
|
+
0,
|
|
613
|
+
[_pr, _cTo, _cE],
|
|
614
|
+
[[21, 16], [0, { [_hH]: _CT }], [0, { [_hH]: _CE_ }]], 2
|
|
615
|
+
];
|
|
616
|
+
var GetRecommendationsRequest$ = [3, n0, _GRR,
|
|
617
|
+
0,
|
|
618
|
+
[_pGN, _sT, _eT, _l],
|
|
619
|
+
[[0, 1], [5, { [_hQ]: _sT }], [5, { [_hQ]: _eT }], [0, { [_hQ]: _l }]], 3
|
|
620
|
+
];
|
|
621
|
+
var GetRecommendationsResponse$ = [3, n0, _GRRe,
|
|
622
|
+
0,
|
|
623
|
+
[_pGN, _pST, _pET, _rec, _an],
|
|
624
|
+
[0, 5, 5, () => Recommendations, () => Anomalies], 5
|
|
625
|
+
];
|
|
626
|
+
var ListFindingsReportsRequest$ = [3, n0, _LFRR,
|
|
627
|
+
0,
|
|
628
|
+
[_pGN, _sT, _eT, _nT, _mR, _dRO],
|
|
629
|
+
[[0, 1], [5, { [_hQ]: _sT }], [5, { [_hQ]: _eT }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [2, { [_hQ]: _dRO }]], 3
|
|
630
|
+
];
|
|
631
|
+
var ListFindingsReportsResponse$ = [3, n0, _LFRRi,
|
|
632
|
+
0,
|
|
633
|
+
[_fRS, _nT],
|
|
634
|
+
[() => FindingsReportSummaries, 0], 1
|
|
635
|
+
];
|
|
636
|
+
var ListProfileTimesRequest$ = [3, n0, _LPTR,
|
|
637
|
+
0,
|
|
638
|
+
[_pGN, _sT, _eT, _p, _oB, _mR, _nT],
|
|
639
|
+
[[0, 1], [5, { [_hQ]: _sT }], [5, { [_hQ]: _eT }], [0, { [_hQ]: _p }], [0, { [_hQ]: _oB }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 4
|
|
640
|
+
];
|
|
641
|
+
var ListProfileTimesResponse$ = [3, n0, _LPTRi,
|
|
642
|
+
0,
|
|
643
|
+
[_pT, _nT],
|
|
644
|
+
[() => ProfileTimes, 0], 1
|
|
645
|
+
];
|
|
646
|
+
var ListProfilingGroupsRequest$ = [3, n0, _LPGR,
|
|
647
|
+
0,
|
|
648
|
+
[_nT, _mR, _iD],
|
|
649
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [2, { [_hQ]: _iD }]]
|
|
650
|
+
];
|
|
651
|
+
var ListProfilingGroupsResponse$ = [3, n0, _LPGRi,
|
|
652
|
+
0,
|
|
653
|
+
[_pGNr, _pGr, _nT],
|
|
654
|
+
[64 | 0, () => ProfilingGroupDescriptions, 0], 1
|
|
655
|
+
];
|
|
656
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
657
|
+
0,
|
|
658
|
+
[_rA],
|
|
659
|
+
[[0, 1]], 1
|
|
660
|
+
];
|
|
661
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
662
|
+
0,
|
|
663
|
+
[_t],
|
|
664
|
+
[128 | 0]
|
|
665
|
+
];
|
|
666
|
+
var Match$ = [3, n0, _M,
|
|
667
|
+
0,
|
|
668
|
+
[_tFI, _fA, _tBV],
|
|
669
|
+
[1, 0, 1]
|
|
670
|
+
];
|
|
671
|
+
var Metric$ = [3, n0, _Me,
|
|
672
|
+
0,
|
|
673
|
+
[_fN, _ty, _tS],
|
|
674
|
+
[0, 0, 64 | 0], 3
|
|
675
|
+
];
|
|
676
|
+
var NotificationConfiguration$ = [3, n0, _NC,
|
|
677
|
+
0,
|
|
678
|
+
[_ch],
|
|
679
|
+
[() => Channels]
|
|
680
|
+
];
|
|
681
|
+
var Pattern$ = [3, n0, _P,
|
|
682
|
+
0,
|
|
683
|
+
[_id, _n, _d, _rSe, _tF, _tP, _cTA],
|
|
684
|
+
[0, 0, 0, 0, [1, n0, _TF, 0, 64 | 0], 1, 64 | 0]
|
|
685
|
+
];
|
|
686
|
+
var PostAgentProfileRequest$ = [3, n0, _PAPR,
|
|
687
|
+
0,
|
|
688
|
+
[_pGN, _aPg, _cTo, _pTr],
|
|
689
|
+
[[0, 1], [21, 16], [0, { [_hH]: _CT }], [0, { [_hQ]: _pTr, [_iT]: 1 }]], 3
|
|
690
|
+
];
|
|
691
|
+
var PostAgentProfileResponse$ = [3, n0, _PAPRo,
|
|
692
|
+
0,
|
|
693
|
+
[],
|
|
694
|
+
[]
|
|
695
|
+
];
|
|
696
|
+
var ProfileTime$ = [3, n0, _PT,
|
|
697
|
+
0,
|
|
698
|
+
[_st],
|
|
699
|
+
[5]
|
|
700
|
+
];
|
|
701
|
+
var ProfilingGroupDescription$ = [3, n0, _PGD,
|
|
702
|
+
0,
|
|
703
|
+
[_n, _aOC, _ar, _cA, _uA, _pS, _cP, _t],
|
|
704
|
+
[0, () => AgentOrchestrationConfig$, 0, 5, 5, () => ProfilingStatus$, 0, 128 | 0]
|
|
705
|
+
];
|
|
706
|
+
var ProfilingStatus$ = [3, n0, _PS,
|
|
707
|
+
0,
|
|
708
|
+
[_lAPRA, _lAP, _lAOA],
|
|
709
|
+
[5, () => AggregatedProfileTime$, 5]
|
|
710
|
+
];
|
|
711
|
+
var PutPermissionRequest$ = [3, n0, _PPR,
|
|
712
|
+
0,
|
|
713
|
+
[_pGN, _aG, _pri, _rI],
|
|
714
|
+
[[0, 1], [0, 1], 64 | 0, 0], 3
|
|
715
|
+
];
|
|
716
|
+
var PutPermissionResponse$ = [3, n0, _PPRu,
|
|
717
|
+
0,
|
|
718
|
+
[_po, _rI],
|
|
719
|
+
[0, 0], 2
|
|
720
|
+
];
|
|
721
|
+
var Recommendation$ = [3, n0, _R,
|
|
722
|
+
0,
|
|
723
|
+
[_aMC, _aMS, _pa, _tM, _sT, _eT],
|
|
724
|
+
[1, 1, () => Pattern$, () => Matches, 5, 5], 6
|
|
725
|
+
];
|
|
726
|
+
var RemoveNotificationChannelRequest$ = [3, n0, _RNCR,
|
|
727
|
+
0,
|
|
728
|
+
[_pGN, _cI],
|
|
729
|
+
[[0, 1], [0, 1]], 2
|
|
730
|
+
];
|
|
731
|
+
var RemoveNotificationChannelResponse$ = [3, n0, _RNCRe,
|
|
732
|
+
0,
|
|
733
|
+
[_nC],
|
|
734
|
+
[() => NotificationConfiguration$]
|
|
735
|
+
];
|
|
736
|
+
var RemovePermissionRequest$ = [3, n0, _RPR,
|
|
737
|
+
0,
|
|
738
|
+
[_pGN, _aG, _rI],
|
|
739
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _rI }]], 3
|
|
740
|
+
];
|
|
741
|
+
var RemovePermissionResponse$ = [3, n0, _RPRe,
|
|
742
|
+
0,
|
|
743
|
+
[_po, _rI],
|
|
744
|
+
[0, 0], 2
|
|
745
|
+
];
|
|
746
|
+
var SubmitFeedbackRequest$ = [3, n0, _SFR,
|
|
747
|
+
0,
|
|
748
|
+
[_pGN, _aII, _ty, _com],
|
|
749
|
+
[[0, 1], [0, 1], 0, 0], 3
|
|
750
|
+
];
|
|
751
|
+
var SubmitFeedbackResponse$ = [3, n0, _SFRu,
|
|
752
|
+
0,
|
|
753
|
+
[],
|
|
754
|
+
[]
|
|
755
|
+
];
|
|
756
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
757
|
+
0,
|
|
758
|
+
[_rA, _t],
|
|
759
|
+
[[0, 1], 128 | 0], 2
|
|
760
|
+
];
|
|
761
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
762
|
+
0,
|
|
763
|
+
[],
|
|
764
|
+
[]
|
|
765
|
+
];
|
|
766
|
+
var TimestampStructure$ = [3, n0, _TS,
|
|
767
|
+
0,
|
|
768
|
+
[_va],
|
|
769
|
+
[5], 1
|
|
770
|
+
];
|
|
771
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
772
|
+
0,
|
|
773
|
+
[_rA, _tK],
|
|
774
|
+
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
775
|
+
];
|
|
776
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
777
|
+
0,
|
|
778
|
+
[],
|
|
779
|
+
[]
|
|
780
|
+
];
|
|
781
|
+
var UpdateProfilingGroupRequest$ = [3, n0, _UPGR,
|
|
782
|
+
0,
|
|
783
|
+
[_pGN, _aOC],
|
|
784
|
+
[[0, 1], () => AgentOrchestrationConfig$], 2
|
|
785
|
+
];
|
|
786
|
+
var UpdateProfilingGroupResponse$ = [3, n0, _UPGRp,
|
|
787
|
+
0,
|
|
788
|
+
[_pG],
|
|
789
|
+
[[() => ProfilingGroupDescription$, 16]], 1
|
|
790
|
+
];
|
|
791
|
+
var UserFeedback$ = [3, n0, _UF,
|
|
792
|
+
0,
|
|
793
|
+
[_ty],
|
|
794
|
+
[0], 1
|
|
795
|
+
];
|
|
796
|
+
var Anomalies = [1, n0, _An,
|
|
797
|
+
0, () => Anomaly$
|
|
798
|
+
];
|
|
799
|
+
var AnomalyInstances = [1, n0, _AIn,
|
|
800
|
+
0, () => AnomalyInstance$
|
|
801
|
+
];
|
|
802
|
+
var Channels = [1, n0, _Ch,
|
|
803
|
+
0, () => Channel$
|
|
804
|
+
];
|
|
805
|
+
var FindingsReportSummaries = [1, n0, _FRSi,
|
|
806
|
+
0, () => FindingsReportSummary$
|
|
807
|
+
];
|
|
808
|
+
var FrameMetricData = [1, n0, _FMDr,
|
|
809
|
+
0, () => FrameMetricDatum$
|
|
810
|
+
];
|
|
811
|
+
var FrameMetrics = [1, n0, _FMr,
|
|
812
|
+
0, () => FrameMetric$
|
|
813
|
+
];
|
|
814
|
+
var ListOfTimestamps = [1, n0, _LOT,
|
|
815
|
+
0, () => TimestampStructure$
|
|
816
|
+
];
|
|
817
|
+
var Matches = [1, n0, _Ma,
|
|
818
|
+
0, () => Match$
|
|
819
|
+
];
|
|
820
|
+
var ProfileTimes = [1, n0, _PTr,
|
|
821
|
+
0, () => ProfileTime$
|
|
822
|
+
];
|
|
823
|
+
var ProfilingGroupDescriptions = [1, n0, _PGDr,
|
|
824
|
+
0, () => ProfilingGroupDescription$
|
|
825
|
+
];
|
|
826
|
+
var Recommendations = [1, n0, _Re,
|
|
827
|
+
0, () => Recommendation$
|
|
828
|
+
];
|
|
829
|
+
var UnprocessedEndTimeMap = [2, n0, _UETM,
|
|
830
|
+
0, 0, () => ListOfTimestamps
|
|
831
|
+
];
|
|
832
|
+
var AddNotificationChannels$ = [9, n0, _ANC,
|
|
833
|
+
{ [_h]: ["POST", "/profilingGroups/{profilingGroupName}/notificationConfiguration", 200] }, () => AddNotificationChannelsRequest$, () => AddNotificationChannelsResponse$
|
|
834
|
+
];
|
|
835
|
+
var BatchGetFrameMetricData$ = [9, n0, _BGFMD,
|
|
836
|
+
{ [_h]: ["POST", "/profilingGroups/{profilingGroupName}/frames/-/metrics", 200] }, () => BatchGetFrameMetricDataRequest$, () => BatchGetFrameMetricDataResponse$
|
|
837
|
+
];
|
|
838
|
+
var ConfigureAgent$ = [9, n0, _CA,
|
|
839
|
+
{ [_h]: ["POST", "/profilingGroups/{profilingGroupName}/configureAgent", 200] }, () => ConfigureAgentRequest$, () => ConfigureAgentResponse$
|
|
840
|
+
];
|
|
841
|
+
var CreateProfilingGroup$ = [9, n0, _CPG,
|
|
842
|
+
{ [_h]: ["POST", "/profilingGroups", 201] }, () => CreateProfilingGroupRequest$, () => CreateProfilingGroupResponse$
|
|
843
|
+
];
|
|
844
|
+
var DeleteProfilingGroup$ = [9, n0, _DPG,
|
|
845
|
+
{ [_h]: ["DELETE", "/profilingGroups/{profilingGroupName}", 204] }, () => DeleteProfilingGroupRequest$, () => DeleteProfilingGroupResponse$
|
|
846
|
+
];
|
|
847
|
+
var DescribeProfilingGroup$ = [9, n0, _DPGe,
|
|
848
|
+
{ [_h]: ["GET", "/profilingGroups/{profilingGroupName}", 200] }, () => DescribeProfilingGroupRequest$, () => DescribeProfilingGroupResponse$
|
|
849
|
+
];
|
|
850
|
+
var GetFindingsReportAccountSummary$ = [9, n0, _GFRAS,
|
|
851
|
+
{ [_h]: ["GET", "/internal/findingsReports", 200] }, () => GetFindingsReportAccountSummaryRequest$, () => GetFindingsReportAccountSummaryResponse$
|
|
852
|
+
];
|
|
853
|
+
var GetNotificationConfiguration$ = [9, n0, _GNC,
|
|
854
|
+
{ [_h]: ["GET", "/profilingGroups/{profilingGroupName}/notificationConfiguration", 200] }, () => GetNotificationConfigurationRequest$, () => GetNotificationConfigurationResponse$
|
|
855
|
+
];
|
|
856
|
+
var GetPolicy$ = [9, n0, _GP,
|
|
857
|
+
{ [_h]: ["GET", "/profilingGroups/{profilingGroupName}/policy", 200] }, () => GetPolicyRequest$, () => GetPolicyResponse$
|
|
858
|
+
];
|
|
859
|
+
var GetProfile$ = [9, n0, _GPe,
|
|
860
|
+
{ [_h]: ["GET", "/profilingGroups/{profilingGroupName}/profile", 200] }, () => GetProfileRequest$, () => GetProfileResponse$
|
|
861
|
+
];
|
|
862
|
+
var GetRecommendations$ = [9, n0, _GR,
|
|
863
|
+
{ [_h]: ["GET", "/internal/profilingGroups/{profilingGroupName}/recommendations", 200] }, () => GetRecommendationsRequest$, () => GetRecommendationsResponse$
|
|
864
|
+
];
|
|
865
|
+
var ListFindingsReports$ = [9, n0, _LFR,
|
|
866
|
+
{ [_h]: ["GET", "/internal/profilingGroups/{profilingGroupName}/findingsReports", 200] }, () => ListFindingsReportsRequest$, () => ListFindingsReportsResponse$
|
|
867
|
+
];
|
|
868
|
+
var ListProfileTimes$ = [9, n0, _LPT,
|
|
869
|
+
{ [_h]: ["GET", "/profilingGroups/{profilingGroupName}/profileTimes", 200] }, () => ListProfileTimesRequest$, () => ListProfileTimesResponse$
|
|
870
|
+
];
|
|
871
|
+
var ListProfilingGroups$ = [9, n0, _LPG,
|
|
872
|
+
{ [_h]: ["GET", "/profilingGroups", 200] }, () => ListProfilingGroupsRequest$, () => ListProfilingGroupsResponse$
|
|
873
|
+
];
|
|
874
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
875
|
+
{ [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
876
|
+
];
|
|
877
|
+
var PostAgentProfile$ = [9, n0, _PAP,
|
|
878
|
+
{ [_h]: ["POST", "/profilingGroups/{profilingGroupName}/agentProfile", 204] }, () => PostAgentProfileRequest$, () => PostAgentProfileResponse$
|
|
879
|
+
];
|
|
880
|
+
var PutPermission$ = [9, n0, _PP,
|
|
881
|
+
{ [_h]: ["PUT", "/profilingGroups/{profilingGroupName}/policy/{actionGroup}", 200] }, () => PutPermissionRequest$, () => PutPermissionResponse$
|
|
882
|
+
];
|
|
883
|
+
var RemoveNotificationChannel$ = [9, n0, _RNC,
|
|
884
|
+
{ [_h]: ["DELETE", "/profilingGroups/{profilingGroupName}/notificationConfiguration/{channelId}", 200] }, () => RemoveNotificationChannelRequest$, () => RemoveNotificationChannelResponse$
|
|
885
|
+
];
|
|
886
|
+
var RemovePermission$ = [9, n0, _RP,
|
|
887
|
+
{ [_h]: ["DELETE", "/profilingGroups/{profilingGroupName}/policy/{actionGroup}", 200] }, () => RemovePermissionRequest$, () => RemovePermissionResponse$
|
|
888
|
+
];
|
|
889
|
+
var SubmitFeedback$ = [9, n0, _SF,
|
|
890
|
+
{ [_h]: ["POST", "/internal/profilingGroups/{profilingGroupName}/anomalies/{anomalyInstanceId}/feedback", 204] }, () => SubmitFeedbackRequest$, () => SubmitFeedbackResponse$
|
|
891
|
+
];
|
|
892
|
+
var TagResource$ = [9, n0, _TR,
|
|
893
|
+
{ [_h]: ["POST", "/tags/{resourceArn}", 204] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
894
|
+
];
|
|
895
|
+
var UntagResource$ = [9, n0, _UR,
|
|
896
|
+
{ [_h]: ["DELETE", "/tags/{resourceArn}", 204] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
897
|
+
];
|
|
898
|
+
var UpdateProfilingGroup$ = [9, n0, _UPG,
|
|
899
|
+
{ [_h]: ["PUT", "/profilingGroups/{profilingGroupName}", 200] }, () => UpdateProfilingGroupRequest$, () => UpdateProfilingGroupResponse$
|
|
900
|
+
];
|
|
901
|
+
|
|
902
|
+
const getRuntimeConfig$1 = (config) => {
|
|
903
|
+
return {
|
|
904
|
+
apiVersion: "2019-07-18",
|
|
905
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
906
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
907
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
908
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
909
|
+
extensions: config?.extensions ?? [],
|
|
910
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultCodeGuruProfilerHttpAuthSchemeProvider,
|
|
911
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
912
|
+
{
|
|
913
|
+
schemeId: "aws.auth#sigv4",
|
|
914
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
915
|
+
signer: new AwsSdkSigV4Signer(),
|
|
916
|
+
},
|
|
917
|
+
],
|
|
918
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
919
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
920
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
921
|
+
defaultNamespace: "com.amazonaws.codeguruprofiler",
|
|
922
|
+
errorTypeRegistries,
|
|
923
|
+
version: "2019-07-18",
|
|
924
|
+
serviceTarget: "CodeGuruProfiler",
|
|
925
|
+
},
|
|
926
|
+
serviceId: config?.serviceId ?? "CodeGuruProfiler",
|
|
927
|
+
sha256: config?.sha256 ?? Sha256,
|
|
928
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
929
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
930
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
931
|
+
};
|
|
932
|
+
};
|
|
933
|
+
|
|
934
|
+
const getRuntimeConfig = (config) => {
|
|
935
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
936
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
937
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
938
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
939
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
940
|
+
const loaderConfig = {
|
|
941
|
+
profile: config?.profile,
|
|
942
|
+
logger: clientSharedValues.logger,
|
|
943
|
+
};
|
|
944
|
+
return {
|
|
945
|
+
...clientSharedValues,
|
|
946
|
+
...config,
|
|
947
|
+
runtime: "node",
|
|
948
|
+
defaultsMode,
|
|
949
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
950
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
951
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
952
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
953
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
954
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
955
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
956
|
+
retryMode: config?.retryMode ??
|
|
957
|
+
loadConfig({
|
|
958
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
959
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
960
|
+
}, config),
|
|
961
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
962
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
963
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
964
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
965
|
+
};
|
|
966
|
+
};
|
|
967
|
+
|
|
34
968
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
969
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
970
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -476,39 +1410,142 @@ const OrderBy = {
|
|
|
476
1410
|
};
|
|
477
1411
|
|
|
478
1412
|
exports.ActionGroup = ActionGroup;
|
|
1413
|
+
exports.AddNotificationChannels$ = AddNotificationChannels$;
|
|
479
1414
|
exports.AddNotificationChannelsCommand = AddNotificationChannelsCommand;
|
|
1415
|
+
exports.AddNotificationChannelsRequest$ = AddNotificationChannelsRequest$;
|
|
1416
|
+
exports.AddNotificationChannelsResponse$ = AddNotificationChannelsResponse$;
|
|
1417
|
+
exports.AgentConfiguration$ = AgentConfiguration$;
|
|
1418
|
+
exports.AgentOrchestrationConfig$ = AgentOrchestrationConfig$;
|
|
480
1419
|
exports.AgentParameterField = AgentParameterField;
|
|
1420
|
+
exports.AggregatedProfileTime$ = AggregatedProfileTime$;
|
|
481
1421
|
exports.AggregationPeriod = AggregationPeriod;
|
|
1422
|
+
exports.Anomaly$ = Anomaly$;
|
|
1423
|
+
exports.AnomalyInstance$ = AnomalyInstance$;
|
|
1424
|
+
exports.BatchGetFrameMetricData$ = BatchGetFrameMetricData$;
|
|
482
1425
|
exports.BatchGetFrameMetricDataCommand = BatchGetFrameMetricDataCommand;
|
|
1426
|
+
exports.BatchGetFrameMetricDataRequest$ = BatchGetFrameMetricDataRequest$;
|
|
1427
|
+
exports.BatchGetFrameMetricDataResponse$ = BatchGetFrameMetricDataResponse$;
|
|
1428
|
+
exports.Channel$ = Channel$;
|
|
483
1429
|
exports.CodeGuruProfiler = CodeGuruProfiler;
|
|
484
1430
|
exports.CodeGuruProfilerClient = CodeGuruProfilerClient;
|
|
1431
|
+
exports.CodeGuruProfilerServiceException = CodeGuruProfilerServiceException;
|
|
1432
|
+
exports.CodeGuruProfilerServiceException$ = CodeGuruProfilerServiceException$;
|
|
485
1433
|
exports.ComputePlatform = ComputePlatform;
|
|
1434
|
+
exports.ConfigureAgent$ = ConfigureAgent$;
|
|
486
1435
|
exports.ConfigureAgentCommand = ConfigureAgentCommand;
|
|
1436
|
+
exports.ConfigureAgentRequest$ = ConfigureAgentRequest$;
|
|
1437
|
+
exports.ConfigureAgentResponse$ = ConfigureAgentResponse$;
|
|
1438
|
+
exports.ConflictException = ConflictException;
|
|
1439
|
+
exports.ConflictException$ = ConflictException$;
|
|
1440
|
+
exports.CreateProfilingGroup$ = CreateProfilingGroup$;
|
|
487
1441
|
exports.CreateProfilingGroupCommand = CreateProfilingGroupCommand;
|
|
1442
|
+
exports.CreateProfilingGroupRequest$ = CreateProfilingGroupRequest$;
|
|
1443
|
+
exports.CreateProfilingGroupResponse$ = CreateProfilingGroupResponse$;
|
|
1444
|
+
exports.DeleteProfilingGroup$ = DeleteProfilingGroup$;
|
|
488
1445
|
exports.DeleteProfilingGroupCommand = DeleteProfilingGroupCommand;
|
|
1446
|
+
exports.DeleteProfilingGroupRequest$ = DeleteProfilingGroupRequest$;
|
|
1447
|
+
exports.DeleteProfilingGroupResponse$ = DeleteProfilingGroupResponse$;
|
|
1448
|
+
exports.DescribeProfilingGroup$ = DescribeProfilingGroup$;
|
|
489
1449
|
exports.DescribeProfilingGroupCommand = DescribeProfilingGroupCommand;
|
|
1450
|
+
exports.DescribeProfilingGroupRequest$ = DescribeProfilingGroupRequest$;
|
|
1451
|
+
exports.DescribeProfilingGroupResponse$ = DescribeProfilingGroupResponse$;
|
|
490
1452
|
exports.EventPublisher = EventPublisher;
|
|
491
1453
|
exports.FeedbackType = FeedbackType;
|
|
1454
|
+
exports.FindingsReportSummary$ = FindingsReportSummary$;
|
|
1455
|
+
exports.FrameMetric$ = FrameMetric$;
|
|
1456
|
+
exports.FrameMetricDatum$ = FrameMetricDatum$;
|
|
1457
|
+
exports.GetFindingsReportAccountSummary$ = GetFindingsReportAccountSummary$;
|
|
492
1458
|
exports.GetFindingsReportAccountSummaryCommand = GetFindingsReportAccountSummaryCommand;
|
|
1459
|
+
exports.GetFindingsReportAccountSummaryRequest$ = GetFindingsReportAccountSummaryRequest$;
|
|
1460
|
+
exports.GetFindingsReportAccountSummaryResponse$ = GetFindingsReportAccountSummaryResponse$;
|
|
1461
|
+
exports.GetNotificationConfiguration$ = GetNotificationConfiguration$;
|
|
493
1462
|
exports.GetNotificationConfigurationCommand = GetNotificationConfigurationCommand;
|
|
1463
|
+
exports.GetNotificationConfigurationRequest$ = GetNotificationConfigurationRequest$;
|
|
1464
|
+
exports.GetNotificationConfigurationResponse$ = GetNotificationConfigurationResponse$;
|
|
1465
|
+
exports.GetPolicy$ = GetPolicy$;
|
|
494
1466
|
exports.GetPolicyCommand = GetPolicyCommand;
|
|
1467
|
+
exports.GetPolicyRequest$ = GetPolicyRequest$;
|
|
1468
|
+
exports.GetPolicyResponse$ = GetPolicyResponse$;
|
|
1469
|
+
exports.GetProfile$ = GetProfile$;
|
|
495
1470
|
exports.GetProfileCommand = GetProfileCommand;
|
|
1471
|
+
exports.GetProfileRequest$ = GetProfileRequest$;
|
|
1472
|
+
exports.GetProfileResponse$ = GetProfileResponse$;
|
|
1473
|
+
exports.GetRecommendations$ = GetRecommendations$;
|
|
496
1474
|
exports.GetRecommendationsCommand = GetRecommendationsCommand;
|
|
1475
|
+
exports.GetRecommendationsRequest$ = GetRecommendationsRequest$;
|
|
1476
|
+
exports.GetRecommendationsResponse$ = GetRecommendationsResponse$;
|
|
1477
|
+
exports.InternalServerException = InternalServerException;
|
|
1478
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
1479
|
+
exports.ListFindingsReports$ = ListFindingsReports$;
|
|
497
1480
|
exports.ListFindingsReportsCommand = ListFindingsReportsCommand;
|
|
1481
|
+
exports.ListFindingsReportsRequest$ = ListFindingsReportsRequest$;
|
|
1482
|
+
exports.ListFindingsReportsResponse$ = ListFindingsReportsResponse$;
|
|
1483
|
+
exports.ListProfileTimes$ = ListProfileTimes$;
|
|
498
1484
|
exports.ListProfileTimesCommand = ListProfileTimesCommand;
|
|
1485
|
+
exports.ListProfileTimesRequest$ = ListProfileTimesRequest$;
|
|
1486
|
+
exports.ListProfileTimesResponse$ = ListProfileTimesResponse$;
|
|
1487
|
+
exports.ListProfilingGroups$ = ListProfilingGroups$;
|
|
499
1488
|
exports.ListProfilingGroupsCommand = ListProfilingGroupsCommand;
|
|
1489
|
+
exports.ListProfilingGroupsRequest$ = ListProfilingGroupsRequest$;
|
|
1490
|
+
exports.ListProfilingGroupsResponse$ = ListProfilingGroupsResponse$;
|
|
1491
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
500
1492
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1493
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1494
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1495
|
+
exports.Match$ = Match$;
|
|
501
1496
|
exports.MetadataField = MetadataField;
|
|
1497
|
+
exports.Metric$ = Metric$;
|
|
502
1498
|
exports.MetricType = MetricType;
|
|
1499
|
+
exports.NotificationConfiguration$ = NotificationConfiguration$;
|
|
503
1500
|
exports.OrderBy = OrderBy;
|
|
1501
|
+
exports.Pattern$ = Pattern$;
|
|
1502
|
+
exports.PostAgentProfile$ = PostAgentProfile$;
|
|
504
1503
|
exports.PostAgentProfileCommand = PostAgentProfileCommand;
|
|
1504
|
+
exports.PostAgentProfileRequest$ = PostAgentProfileRequest$;
|
|
1505
|
+
exports.PostAgentProfileResponse$ = PostAgentProfileResponse$;
|
|
1506
|
+
exports.ProfileTime$ = ProfileTime$;
|
|
1507
|
+
exports.ProfilingGroupDescription$ = ProfilingGroupDescription$;
|
|
1508
|
+
exports.ProfilingStatus$ = ProfilingStatus$;
|
|
1509
|
+
exports.PutPermission$ = PutPermission$;
|
|
505
1510
|
exports.PutPermissionCommand = PutPermissionCommand;
|
|
1511
|
+
exports.PutPermissionRequest$ = PutPermissionRequest$;
|
|
1512
|
+
exports.PutPermissionResponse$ = PutPermissionResponse$;
|
|
1513
|
+
exports.Recommendation$ = Recommendation$;
|
|
1514
|
+
exports.RemoveNotificationChannel$ = RemoveNotificationChannel$;
|
|
506
1515
|
exports.RemoveNotificationChannelCommand = RemoveNotificationChannelCommand;
|
|
1516
|
+
exports.RemoveNotificationChannelRequest$ = RemoveNotificationChannelRequest$;
|
|
1517
|
+
exports.RemoveNotificationChannelResponse$ = RemoveNotificationChannelResponse$;
|
|
1518
|
+
exports.RemovePermission$ = RemovePermission$;
|
|
507
1519
|
exports.RemovePermissionCommand = RemovePermissionCommand;
|
|
1520
|
+
exports.RemovePermissionRequest$ = RemovePermissionRequest$;
|
|
1521
|
+
exports.RemovePermissionResponse$ = RemovePermissionResponse$;
|
|
1522
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1523
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1524
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1525
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1526
|
+
exports.SubmitFeedback$ = SubmitFeedback$;
|
|
508
1527
|
exports.SubmitFeedbackCommand = SubmitFeedbackCommand;
|
|
1528
|
+
exports.SubmitFeedbackRequest$ = SubmitFeedbackRequest$;
|
|
1529
|
+
exports.SubmitFeedbackResponse$ = SubmitFeedbackResponse$;
|
|
1530
|
+
exports.TagResource$ = TagResource$;
|
|
509
1531
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1532
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1533
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1534
|
+
exports.ThrottlingException = ThrottlingException;
|
|
1535
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
1536
|
+
exports.TimestampStructure$ = TimestampStructure$;
|
|
1537
|
+
exports.UntagResource$ = UntagResource$;
|
|
510
1538
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1539
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1540
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1541
|
+
exports.UpdateProfilingGroup$ = UpdateProfilingGroup$;
|
|
511
1542
|
exports.UpdateProfilingGroupCommand = UpdateProfilingGroupCommand;
|
|
1543
|
+
exports.UpdateProfilingGroupRequest$ = UpdateProfilingGroupRequest$;
|
|
1544
|
+
exports.UpdateProfilingGroupResponse$ = UpdateProfilingGroupResponse$;
|
|
1545
|
+
exports.UserFeedback$ = UserFeedback$;
|
|
1546
|
+
exports.ValidationException = ValidationException;
|
|
1547
|
+
exports.ValidationException$ = ValidationException$;
|
|
1548
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
512
1549
|
exports.paginateGetFindingsReportAccountSummary = paginateGetFindingsReportAccountSummary;
|
|
513
1550
|
exports.paginateListFindingsReports = paginateListFindingsReports;
|
|
514
1551
|
exports.paginateListProfileTimes = paginateListProfileTimes;
|