@aws-sdk/client-codeguruprofiler 3.934.0 → 3.936.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 +0 -53
- package/dist-es/index.js +1 -1
- package/dist-es/models/errors.js +76 -0
- package/dist-es/models/models_0.js +0 -76
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +2 -1
- package/dist-types/models/errors.d.ts +83 -0
- package/dist-types/models/models_0.d.ts +0 -83
- package/dist-types/ts3.4/index.d.ts +2 -1
- package/dist-types/ts3.4/models/errors.d.ts +45 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -45
- package/package.json +19 -19
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
package/dist-cjs/index.js
CHANGED
|
@@ -117,12 +117,6 @@ let CodeGuruProfilerServiceException$1 = class CodeGuruProfilerServiceException
|
|
|
117
117
|
}
|
|
118
118
|
};
|
|
119
119
|
|
|
120
|
-
const ActionGroup = {
|
|
121
|
-
AGENT_PERMISSIONS: "agentPermissions",
|
|
122
|
-
};
|
|
123
|
-
const EventPublisher = {
|
|
124
|
-
ANOMALY_DETECTION: "AnomalyDetection",
|
|
125
|
-
};
|
|
126
120
|
let ConflictException$1 = class ConflictException extends CodeGuruProfilerServiceException$1 {
|
|
127
121
|
name = "ConflictException";
|
|
128
122
|
$fault = "client";
|
|
@@ -198,44 +192,6 @@ let ValidationException$1 = class ValidationException extends CodeGuruProfilerSe
|
|
|
198
192
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
199
193
|
}
|
|
200
194
|
};
|
|
201
|
-
const AgentParameterField = {
|
|
202
|
-
MAX_STACK_DEPTH: "MaxStackDepth",
|
|
203
|
-
MEMORY_USAGE_LIMIT_PERCENT: "MemoryUsageLimitPercent",
|
|
204
|
-
MINIMUM_TIME_FOR_REPORTING_IN_MILLISECONDS: "MinimumTimeForReportingInMilliseconds",
|
|
205
|
-
REPORTING_INTERVAL_IN_MILLISECONDS: "ReportingIntervalInMilliseconds",
|
|
206
|
-
SAMPLING_INTERVAL_IN_MILLISECONDS: "SamplingIntervalInMilliseconds",
|
|
207
|
-
};
|
|
208
|
-
const AggregationPeriod = {
|
|
209
|
-
P1D: "P1D",
|
|
210
|
-
PT1H: "PT1H",
|
|
211
|
-
PT5M: "PT5M",
|
|
212
|
-
};
|
|
213
|
-
const FeedbackType = {
|
|
214
|
-
Negative: "Negative",
|
|
215
|
-
Positive: "Positive",
|
|
216
|
-
};
|
|
217
|
-
const MetricType = {
|
|
218
|
-
AggregatedRelativeTotalTime: "AggregatedRelativeTotalTime",
|
|
219
|
-
};
|
|
220
|
-
const MetadataField = {
|
|
221
|
-
AGENT_ID: "AgentId",
|
|
222
|
-
AWS_REQUEST_ID: "AwsRequestId",
|
|
223
|
-
COMPUTE_PLATFORM: "ComputePlatform",
|
|
224
|
-
EXECUTION_ENVIRONMENT: "ExecutionEnvironment",
|
|
225
|
-
LAMBDA_FUNCTION_ARN: "LambdaFunctionArn",
|
|
226
|
-
LAMBDA_MEMORY_LIMIT_IN_MB: "LambdaMemoryLimitInMB",
|
|
227
|
-
LAMBDA_PREVIOUS_EXECUTION_TIME_IN_MILLISECONDS: "LambdaPreviousExecutionTimeInMilliseconds",
|
|
228
|
-
LAMBDA_REMAINING_TIME_IN_MILLISECONDS: "LambdaRemainingTimeInMilliseconds",
|
|
229
|
-
LAMBDA_TIME_GAP_BETWEEN_INVOKES_IN_MILLISECONDS: "LambdaTimeGapBetweenInvokesInMilliseconds",
|
|
230
|
-
};
|
|
231
|
-
const ComputePlatform = {
|
|
232
|
-
AWSLAMBDA: "AWSLambda",
|
|
233
|
-
DEFAULT: "Default",
|
|
234
|
-
};
|
|
235
|
-
const OrderBy = {
|
|
236
|
-
TIMESTAMP_ASCENDING: "TimestampAscending",
|
|
237
|
-
TIMESTAMP_DESCENDING: "TimestampDescending",
|
|
238
|
-
};
|
|
239
195
|
|
|
240
196
|
const _A = "Anomaly";
|
|
241
197
|
const _AC = "AgentConfiguration";
|
|
@@ -1645,22 +1601,16 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1645
1601
|
enumerable: true,
|
|
1646
1602
|
get: function () { return smithyClient.Client; }
|
|
1647
1603
|
});
|
|
1648
|
-
exports.ActionGroup = ActionGroup;
|
|
1649
1604
|
exports.AddNotificationChannelsCommand = AddNotificationChannelsCommand;
|
|
1650
|
-
exports.AgentParameterField = AgentParameterField;
|
|
1651
|
-
exports.AggregationPeriod = AggregationPeriod;
|
|
1652
1605
|
exports.BatchGetFrameMetricDataCommand = BatchGetFrameMetricDataCommand;
|
|
1653
1606
|
exports.CodeGuruProfiler = CodeGuruProfiler;
|
|
1654
1607
|
exports.CodeGuruProfilerClient = CodeGuruProfilerClient;
|
|
1655
1608
|
exports.CodeGuruProfilerServiceException = CodeGuruProfilerServiceException$1;
|
|
1656
|
-
exports.ComputePlatform = ComputePlatform;
|
|
1657
1609
|
exports.ConfigureAgentCommand = ConfigureAgentCommand;
|
|
1658
1610
|
exports.ConflictException = ConflictException$1;
|
|
1659
1611
|
exports.CreateProfilingGroupCommand = CreateProfilingGroupCommand;
|
|
1660
1612
|
exports.DeleteProfilingGroupCommand = DeleteProfilingGroupCommand;
|
|
1661
1613
|
exports.DescribeProfilingGroupCommand = DescribeProfilingGroupCommand;
|
|
1662
|
-
exports.EventPublisher = EventPublisher;
|
|
1663
|
-
exports.FeedbackType = FeedbackType;
|
|
1664
1614
|
exports.GetFindingsReportAccountSummaryCommand = GetFindingsReportAccountSummaryCommand;
|
|
1665
1615
|
exports.GetNotificationConfigurationCommand = GetNotificationConfigurationCommand;
|
|
1666
1616
|
exports.GetPolicyCommand = GetPolicyCommand;
|
|
@@ -1671,9 +1621,6 @@ exports.ListFindingsReportsCommand = ListFindingsReportsCommand;
|
|
|
1671
1621
|
exports.ListProfileTimesCommand = ListProfileTimesCommand;
|
|
1672
1622
|
exports.ListProfilingGroupsCommand = ListProfilingGroupsCommand;
|
|
1673
1623
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1674
|
-
exports.MetadataField = MetadataField;
|
|
1675
|
-
exports.MetricType = MetricType;
|
|
1676
|
-
exports.OrderBy = OrderBy;
|
|
1677
1624
|
exports.PostAgentProfileCommand = PostAgentProfileCommand;
|
|
1678
1625
|
exports.PutPermissionCommand = PutPermissionCommand;
|
|
1679
1626
|
exports.RemoveNotificationChannelCommand = RemoveNotificationChannelCommand;
|
package/dist-es/index.js
CHANGED
|
@@ -2,5 +2,5 @@ export * from "./CodeGuruProfilerClient";
|
|
|
2
2
|
export * from "./CodeGuruProfiler";
|
|
3
3
|
export * from "./commands";
|
|
4
4
|
export * from "./pagination";
|
|
5
|
-
export * from "./models";
|
|
5
|
+
export * from "./models/errors";
|
|
6
6
|
export { CodeGuruProfilerServiceException } from "./models/CodeGuruProfilerServiceException";
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import { CodeGuruProfilerServiceException as __BaseException } from "./CodeGuruProfilerServiceException";
|
|
2
|
+
export class ConflictException extends __BaseException {
|
|
3
|
+
name = "ConflictException";
|
|
4
|
+
$fault = "client";
|
|
5
|
+
constructor(opts) {
|
|
6
|
+
super({
|
|
7
|
+
name: "ConflictException",
|
|
8
|
+
$fault: "client",
|
|
9
|
+
...opts,
|
|
10
|
+
});
|
|
11
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
export class InternalServerException extends __BaseException {
|
|
15
|
+
name = "InternalServerException";
|
|
16
|
+
$fault = "server";
|
|
17
|
+
$retryable = {};
|
|
18
|
+
constructor(opts) {
|
|
19
|
+
super({
|
|
20
|
+
name: "InternalServerException",
|
|
21
|
+
$fault: "server",
|
|
22
|
+
...opts,
|
|
23
|
+
});
|
|
24
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
28
|
+
name = "ResourceNotFoundException";
|
|
29
|
+
$fault = "client";
|
|
30
|
+
constructor(opts) {
|
|
31
|
+
super({
|
|
32
|
+
name: "ResourceNotFoundException",
|
|
33
|
+
$fault: "client",
|
|
34
|
+
...opts,
|
|
35
|
+
});
|
|
36
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
export class ServiceQuotaExceededException extends __BaseException {
|
|
40
|
+
name = "ServiceQuotaExceededException";
|
|
41
|
+
$fault = "client";
|
|
42
|
+
$retryable = {};
|
|
43
|
+
constructor(opts) {
|
|
44
|
+
super({
|
|
45
|
+
name: "ServiceQuotaExceededException",
|
|
46
|
+
$fault: "client",
|
|
47
|
+
...opts,
|
|
48
|
+
});
|
|
49
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
export class ThrottlingException extends __BaseException {
|
|
53
|
+
name = "ThrottlingException";
|
|
54
|
+
$fault = "client";
|
|
55
|
+
$retryable = {};
|
|
56
|
+
constructor(opts) {
|
|
57
|
+
super({
|
|
58
|
+
name: "ThrottlingException",
|
|
59
|
+
$fault: "client",
|
|
60
|
+
...opts,
|
|
61
|
+
});
|
|
62
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
export class ValidationException extends __BaseException {
|
|
66
|
+
name = "ValidationException";
|
|
67
|
+
$fault = "client";
|
|
68
|
+
constructor(opts) {
|
|
69
|
+
super({
|
|
70
|
+
name: "ValidationException",
|
|
71
|
+
$fault: "client",
|
|
72
|
+
...opts,
|
|
73
|
+
});
|
|
74
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
75
|
+
}
|
|
76
|
+
}
|
|
@@ -1,85 +1,9 @@
|
|
|
1
|
-
import { CodeGuruProfilerServiceException as __BaseException } from "./CodeGuruProfilerServiceException";
|
|
2
1
|
export const ActionGroup = {
|
|
3
2
|
AGENT_PERMISSIONS: "agentPermissions",
|
|
4
3
|
};
|
|
5
4
|
export const EventPublisher = {
|
|
6
5
|
ANOMALY_DETECTION: "AnomalyDetection",
|
|
7
6
|
};
|
|
8
|
-
export class ConflictException extends __BaseException {
|
|
9
|
-
name = "ConflictException";
|
|
10
|
-
$fault = "client";
|
|
11
|
-
constructor(opts) {
|
|
12
|
-
super({
|
|
13
|
-
name: "ConflictException",
|
|
14
|
-
$fault: "client",
|
|
15
|
-
...opts,
|
|
16
|
-
});
|
|
17
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
export class InternalServerException extends __BaseException {
|
|
21
|
-
name = "InternalServerException";
|
|
22
|
-
$fault = "server";
|
|
23
|
-
$retryable = {};
|
|
24
|
-
constructor(opts) {
|
|
25
|
-
super({
|
|
26
|
-
name: "InternalServerException",
|
|
27
|
-
$fault: "server",
|
|
28
|
-
...opts,
|
|
29
|
-
});
|
|
30
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
export class ResourceNotFoundException extends __BaseException {
|
|
34
|
-
name = "ResourceNotFoundException";
|
|
35
|
-
$fault = "client";
|
|
36
|
-
constructor(opts) {
|
|
37
|
-
super({
|
|
38
|
-
name: "ResourceNotFoundException",
|
|
39
|
-
$fault: "client",
|
|
40
|
-
...opts,
|
|
41
|
-
});
|
|
42
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
export class ServiceQuotaExceededException extends __BaseException {
|
|
46
|
-
name = "ServiceQuotaExceededException";
|
|
47
|
-
$fault = "client";
|
|
48
|
-
$retryable = {};
|
|
49
|
-
constructor(opts) {
|
|
50
|
-
super({
|
|
51
|
-
name: "ServiceQuotaExceededException",
|
|
52
|
-
$fault: "client",
|
|
53
|
-
...opts,
|
|
54
|
-
});
|
|
55
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
export class ThrottlingException extends __BaseException {
|
|
59
|
-
name = "ThrottlingException";
|
|
60
|
-
$fault = "client";
|
|
61
|
-
$retryable = {};
|
|
62
|
-
constructor(opts) {
|
|
63
|
-
super({
|
|
64
|
-
name: "ThrottlingException",
|
|
65
|
-
$fault: "client",
|
|
66
|
-
...opts,
|
|
67
|
-
});
|
|
68
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
export class ValidationException extends __BaseException {
|
|
72
|
-
name = "ValidationException";
|
|
73
|
-
$fault = "client";
|
|
74
|
-
constructor(opts) {
|
|
75
|
-
super({
|
|
76
|
-
name: "ValidationException",
|
|
77
|
-
$fault: "client",
|
|
78
|
-
...opts,
|
|
79
|
-
});
|
|
80
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
7
|
export const AgentParameterField = {
|
|
84
8
|
MAX_STACK_DEPTH: "MaxStackDepth",
|
|
85
9
|
MEMORY_USAGE_LIMIT_PERCENT: "MemoryUsageLimitPercent",
|
|
@@ -211,7 +211,7 @@ const _va = "value";
|
|
|
211
211
|
const n0 = "com.amazonaws.codeguruprofiler";
|
|
212
212
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
213
213
|
import { CodeGuruProfilerServiceException as __CodeGuruProfilerServiceException } from "../models/CodeGuruProfilerServiceException";
|
|
214
|
-
import { ConflictException as __ConflictException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/
|
|
214
|
+
import { ConflictException as __ConflictException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/errors";
|
|
215
215
|
export var AddNotificationChannelsRequest = [
|
|
216
216
|
3,
|
|
217
217
|
n0,
|
package/dist-types/index.d.ts
CHANGED
|
@@ -32,5 +32,6 @@ export type { RuntimeExtension } from "./runtimeExtensions";
|
|
|
32
32
|
export type { CodeGuruProfilerExtensionConfiguration } from "./extensionConfiguration";
|
|
33
33
|
export * from "./commands";
|
|
34
34
|
export * from "./pagination";
|
|
35
|
-
export * from "./models";
|
|
35
|
+
export * from "./models/errors";
|
|
36
|
+
export type * from "./models/models_0";
|
|
36
37
|
export { CodeGuruProfilerServiceException } from "./models/CodeGuruProfilerServiceException";
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { CodeGuruProfilerServiceException as __BaseException } from "./CodeGuruProfilerServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>The requested operation would cause a conflict with the current state
|
|
5
|
+
* of a service resource associated with the request. Resolve the conflict
|
|
6
|
+
* before retrying this request.
|
|
7
|
+
* </p>
|
|
8
|
+
* @public
|
|
9
|
+
*/
|
|
10
|
+
export declare class ConflictException extends __BaseException {
|
|
11
|
+
readonly name: "ConflictException";
|
|
12
|
+
readonly $fault: "client";
|
|
13
|
+
/**
|
|
14
|
+
* @internal
|
|
15
|
+
*/
|
|
16
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* <p>The server encountered an internal error and is unable to complete the request.</p>
|
|
20
|
+
* @public
|
|
21
|
+
*/
|
|
22
|
+
export declare class InternalServerException extends __BaseException {
|
|
23
|
+
readonly name: "InternalServerException";
|
|
24
|
+
readonly $fault: "server";
|
|
25
|
+
$retryable: {};
|
|
26
|
+
/**
|
|
27
|
+
* @internal
|
|
28
|
+
*/
|
|
29
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* <p>The resource specified in the request does not exist.</p>
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
36
|
+
readonly name: "ResourceNotFoundException";
|
|
37
|
+
readonly $fault: "client";
|
|
38
|
+
/**
|
|
39
|
+
* @internal
|
|
40
|
+
*/
|
|
41
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* <p>You have exceeded your service quota. To perform the requested action,
|
|
45
|
+
* remove some of the relevant resources, or use <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/intro.html">Service Quotas</a> to request a
|
|
46
|
+
* service quota increase.
|
|
47
|
+
* </p>
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
50
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
51
|
+
readonly name: "ServiceQuotaExceededException";
|
|
52
|
+
readonly $fault: "client";
|
|
53
|
+
$retryable: {};
|
|
54
|
+
/**
|
|
55
|
+
* @internal
|
|
56
|
+
*/
|
|
57
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
58
|
+
}
|
|
59
|
+
/**
|
|
60
|
+
* <p>The request was denied due to request throttling.</p>
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
63
|
+
export declare class ThrottlingException extends __BaseException {
|
|
64
|
+
readonly name: "ThrottlingException";
|
|
65
|
+
readonly $fault: "client";
|
|
66
|
+
$retryable: {};
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
70
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
71
|
+
}
|
|
72
|
+
/**
|
|
73
|
+
* <p>The parameter is not valid.</p>
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
76
|
+
export declare class ValidationException extends __BaseException {
|
|
77
|
+
readonly name: "ValidationException";
|
|
78
|
+
readonly $fault: "client";
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
82
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
83
|
+
}
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
-
import { CodeGuruProfilerServiceException as __BaseException } from "./CodeGuruProfilerServiceException";
|
|
3
1
|
/**
|
|
4
2
|
* @public
|
|
5
3
|
* @enum
|
|
@@ -89,87 +87,6 @@ export interface AddNotificationChannelsResponse {
|
|
|
89
87
|
*/
|
|
90
88
|
notificationConfiguration?: NotificationConfiguration | undefined;
|
|
91
89
|
}
|
|
92
|
-
/**
|
|
93
|
-
* <p>The requested operation would cause a conflict with the current state
|
|
94
|
-
* of a service resource associated with the request. Resolve the conflict
|
|
95
|
-
* before retrying this request.
|
|
96
|
-
* </p>
|
|
97
|
-
* @public
|
|
98
|
-
*/
|
|
99
|
-
export declare class ConflictException extends __BaseException {
|
|
100
|
-
readonly name: "ConflictException";
|
|
101
|
-
readonly $fault: "client";
|
|
102
|
-
/**
|
|
103
|
-
* @internal
|
|
104
|
-
*/
|
|
105
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
106
|
-
}
|
|
107
|
-
/**
|
|
108
|
-
* <p>The server encountered an internal error and is unable to complete the request.</p>
|
|
109
|
-
* @public
|
|
110
|
-
*/
|
|
111
|
-
export declare class InternalServerException extends __BaseException {
|
|
112
|
-
readonly name: "InternalServerException";
|
|
113
|
-
readonly $fault: "server";
|
|
114
|
-
$retryable: {};
|
|
115
|
-
/**
|
|
116
|
-
* @internal
|
|
117
|
-
*/
|
|
118
|
-
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
119
|
-
}
|
|
120
|
-
/**
|
|
121
|
-
* <p>The resource specified in the request does not exist.</p>
|
|
122
|
-
* @public
|
|
123
|
-
*/
|
|
124
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
125
|
-
readonly name: "ResourceNotFoundException";
|
|
126
|
-
readonly $fault: "client";
|
|
127
|
-
/**
|
|
128
|
-
* @internal
|
|
129
|
-
*/
|
|
130
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
131
|
-
}
|
|
132
|
-
/**
|
|
133
|
-
* <p>You have exceeded your service quota. To perform the requested action,
|
|
134
|
-
* remove some of the relevant resources, or use <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/intro.html">Service Quotas</a> to request a
|
|
135
|
-
* service quota increase.
|
|
136
|
-
* </p>
|
|
137
|
-
* @public
|
|
138
|
-
*/
|
|
139
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
140
|
-
readonly name: "ServiceQuotaExceededException";
|
|
141
|
-
readonly $fault: "client";
|
|
142
|
-
$retryable: {};
|
|
143
|
-
/**
|
|
144
|
-
* @internal
|
|
145
|
-
*/
|
|
146
|
-
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
147
|
-
}
|
|
148
|
-
/**
|
|
149
|
-
* <p>The request was denied due to request throttling.</p>
|
|
150
|
-
* @public
|
|
151
|
-
*/
|
|
152
|
-
export declare class ThrottlingException extends __BaseException {
|
|
153
|
-
readonly name: "ThrottlingException";
|
|
154
|
-
readonly $fault: "client";
|
|
155
|
-
$retryable: {};
|
|
156
|
-
/**
|
|
157
|
-
* @internal
|
|
158
|
-
*/
|
|
159
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
160
|
-
}
|
|
161
|
-
/**
|
|
162
|
-
* <p>The parameter is not valid.</p>
|
|
163
|
-
* @public
|
|
164
|
-
*/
|
|
165
|
-
export declare class ValidationException extends __BaseException {
|
|
166
|
-
readonly name: "ValidationException";
|
|
167
|
-
readonly $fault: "client";
|
|
168
|
-
/**
|
|
169
|
-
* @internal
|
|
170
|
-
*/
|
|
171
|
-
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
172
|
-
}
|
|
173
90
|
/**
|
|
174
91
|
* @public
|
|
175
92
|
* @enum
|
|
@@ -5,5 +5,6 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { CodeGuruProfilerExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/errors";
|
|
9
|
+
export * from "./models/models_0";
|
|
9
10
|
export { CodeGuruProfilerServiceException } from "./models/CodeGuruProfilerServiceException";
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { CodeGuruProfilerServiceException as __BaseException } from "./CodeGuruProfilerServiceException";
|
|
3
|
+
export declare class ConflictException extends __BaseException {
|
|
4
|
+
readonly name: "ConflictException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
7
|
+
}
|
|
8
|
+
export declare class InternalServerException extends __BaseException {
|
|
9
|
+
readonly name: "InternalServerException";
|
|
10
|
+
readonly $fault: "server";
|
|
11
|
+
$retryable: {};
|
|
12
|
+
constructor(
|
|
13
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
14
|
+
);
|
|
15
|
+
}
|
|
16
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
17
|
+
readonly name: "ResourceNotFoundException";
|
|
18
|
+
readonly $fault: "client";
|
|
19
|
+
constructor(
|
|
20
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
21
|
+
);
|
|
22
|
+
}
|
|
23
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
24
|
+
readonly name: "ServiceQuotaExceededException";
|
|
25
|
+
readonly $fault: "client";
|
|
26
|
+
$retryable: {};
|
|
27
|
+
constructor(
|
|
28
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
29
|
+
);
|
|
30
|
+
}
|
|
31
|
+
export declare class ThrottlingException extends __BaseException {
|
|
32
|
+
readonly name: "ThrottlingException";
|
|
33
|
+
readonly $fault: "client";
|
|
34
|
+
$retryable: {};
|
|
35
|
+
constructor(
|
|
36
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
37
|
+
);
|
|
38
|
+
}
|
|
39
|
+
export declare class ValidationException extends __BaseException {
|
|
40
|
+
readonly name: "ValidationException";
|
|
41
|
+
readonly $fault: "client";
|
|
42
|
+
constructor(
|
|
43
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
44
|
+
);
|
|
45
|
+
}
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
-
import { CodeGuruProfilerServiceException as __BaseException } from "./CodeGuruProfilerServiceException";
|
|
3
1
|
export declare const ActionGroup: {
|
|
4
2
|
readonly AGENT_PERMISSIONS: "agentPermissions";
|
|
5
3
|
};
|
|
@@ -24,49 +22,6 @@ export interface NotificationConfiguration {
|
|
|
24
22
|
export interface AddNotificationChannelsResponse {
|
|
25
23
|
notificationConfiguration?: NotificationConfiguration | undefined;
|
|
26
24
|
}
|
|
27
|
-
export declare class ConflictException extends __BaseException {
|
|
28
|
-
readonly name: "ConflictException";
|
|
29
|
-
readonly $fault: "client";
|
|
30
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
31
|
-
}
|
|
32
|
-
export declare class InternalServerException extends __BaseException {
|
|
33
|
-
readonly name: "InternalServerException";
|
|
34
|
-
readonly $fault: "server";
|
|
35
|
-
$retryable: {};
|
|
36
|
-
constructor(
|
|
37
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
38
|
-
);
|
|
39
|
-
}
|
|
40
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
41
|
-
readonly name: "ResourceNotFoundException";
|
|
42
|
-
readonly $fault: "client";
|
|
43
|
-
constructor(
|
|
44
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
45
|
-
);
|
|
46
|
-
}
|
|
47
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
48
|
-
readonly name: "ServiceQuotaExceededException";
|
|
49
|
-
readonly $fault: "client";
|
|
50
|
-
$retryable: {};
|
|
51
|
-
constructor(
|
|
52
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
53
|
-
);
|
|
54
|
-
}
|
|
55
|
-
export declare class ThrottlingException extends __BaseException {
|
|
56
|
-
readonly name: "ThrottlingException";
|
|
57
|
-
readonly $fault: "client";
|
|
58
|
-
$retryable: {};
|
|
59
|
-
constructor(
|
|
60
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
61
|
-
);
|
|
62
|
-
}
|
|
63
|
-
export declare class ValidationException extends __BaseException {
|
|
64
|
-
readonly name: "ValidationException";
|
|
65
|
-
readonly $fault: "client";
|
|
66
|
-
constructor(
|
|
67
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
68
|
-
);
|
|
69
|
-
}
|
|
70
25
|
export declare const AgentParameterField: {
|
|
71
26
|
readonly MAX_STACK_DEPTH: "MaxStackDepth";
|
|
72
27
|
readonly MEMORY_USAGE_LIMIT_PERCENT: "MemoryUsageLimitPercent";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-codeguruprofiler",
|
|
3
3
|
"description": "AWS SDK for JavaScript Codeguruprofiler Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.936.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-codeguruprofiler",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.936.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.936.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.936.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.936.0",
|
|
30
|
+
"@aws-sdk/types": "3.936.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.936.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.936.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.936.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|