@aws-sdk/client-application-signals 3.927.0 → 3.929.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 +1416 -1212
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/ApplicationSignalsClient.js +2 -0
- package/dist-es/commands/BatchGetServiceLevelObjectiveBudgetReportCommand.js +3 -9
- package/dist-es/commands/BatchUpdateExclusionWindowsCommand.js +3 -9
- package/dist-es/commands/CreateServiceLevelObjectiveCommand.js +3 -9
- package/dist-es/commands/DeleteGroupingConfigurationCommand.js +3 -9
- package/dist-es/commands/DeleteServiceLevelObjectiveCommand.js +3 -9
- package/dist-es/commands/GetServiceCommand.js +3 -9
- package/dist-es/commands/GetServiceLevelObjectiveCommand.js +3 -9
- package/dist-es/commands/ListAuditFindingsCommand.js +3 -9
- package/dist-es/commands/ListGroupingAttributeDefinitionsCommand.js +3 -9
- package/dist-es/commands/ListServiceDependenciesCommand.js +3 -9
- package/dist-es/commands/ListServiceDependentsCommand.js +3 -9
- package/dist-es/commands/ListServiceLevelObjectiveExclusionWindowsCommand.js +3 -9
- package/dist-es/commands/ListServiceLevelObjectivesCommand.js +3 -9
- package/dist-es/commands/ListServiceOperationsCommand.js +3 -9
- package/dist-es/commands/ListServiceStatesCommand.js +3 -9
- package/dist-es/commands/ListServicesCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/PutGroupingConfigurationCommand.js +3 -9
- package/dist-es/commands/StartDiscoveryCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateServiceLevelObjectiveCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1371 -0
- package/dist-types/ApplicationSignalsClient.d.ts +10 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +160 -0
- package/dist-types/ts3.4/ApplicationSignalsClient.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +165 -0
- package/package.json +5 -5
- package/dist-es/protocols/Aws_restJson1.js +0 -1050
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -200
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -269
|
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
|
|
|
5
5
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
8
|
-
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
8
|
+
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { BatchGetServiceLevelObjectiveBudgetReportCommandInput, BatchGetServiceLevelObjectiveBudgetReportCommandOutput } from "./commands/BatchGetServiceLevelObjectiveBudgetReportCommand";
|
|
11
11
|
import { BatchUpdateExclusionWindowsCommandInput, BatchUpdateExclusionWindowsCommandOutput } from "./commands/BatchUpdateExclusionWindowsCommand";
|
|
@@ -163,6 +163,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
163
163
|
* Optional extensions
|
|
164
164
|
*/
|
|
165
165
|
extensions?: RuntimeExtension[];
|
|
166
|
+
/**
|
|
167
|
+
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
168
|
+
* may be overridden. A default will always be set by the client.
|
|
169
|
+
* Available options depend on the service's supported protocols and will not be validated by
|
|
170
|
+
* the client.
|
|
171
|
+
* @alpha
|
|
172
|
+
*
|
|
173
|
+
*/
|
|
174
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
166
175
|
/**
|
|
167
176
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
168
177
|
*/
|
|
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: ApplicationSignalsClientConfig)
|
|
|
29
29
|
profile?: string;
|
|
30
30
|
logger: import("@smithy/types").Logger;
|
|
31
31
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
32
33
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
33
34
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
34
35
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: ApplicationSignalsClientConfig)
|
|
|
31
31
|
profile?: string;
|
|
32
32
|
logger: import("@smithy/types").Logger;
|
|
33
33
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
34
35
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
35
36
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
36
37
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: ApplicationSignalsClientConfig)
|
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
29
29
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
30
31
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
31
32
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
32
33
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (config: ApplicationSignalsClientConfig)
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ApplicationSignalsHttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
17
18
|
serviceId: string;
|
|
18
19
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
20
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
3
|
+
export declare var AttributeFilter: StaticStructureSchema;
|
|
4
|
+
export declare var AuditFinding: StaticStructureSchema;
|
|
5
|
+
export declare var AuditorResult: StaticStructureSchema;
|
|
6
|
+
export declare var AuditTarget: StaticStructureSchema;
|
|
7
|
+
export declare var BatchGetServiceLevelObjectiveBudgetReportInput: StaticStructureSchema;
|
|
8
|
+
export declare var BatchGetServiceLevelObjectiveBudgetReportOutput: StaticStructureSchema;
|
|
9
|
+
export declare var BatchUpdateExclusionWindowsError: StaticStructureSchema;
|
|
10
|
+
export declare var BatchUpdateExclusionWindowsInput: StaticStructureSchema;
|
|
11
|
+
export declare var BatchUpdateExclusionWindowsOutput: StaticStructureSchema;
|
|
12
|
+
export declare var BurnRateConfiguration: StaticStructureSchema;
|
|
13
|
+
export declare var CalendarInterval: StaticStructureSchema;
|
|
14
|
+
export declare var CanaryEntity: StaticStructureSchema;
|
|
15
|
+
export declare var ChangeEvent: StaticStructureSchema;
|
|
16
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
17
|
+
export declare var CreateServiceLevelObjectiveInput: StaticStructureSchema;
|
|
18
|
+
export declare var CreateServiceLevelObjectiveOutput: StaticStructureSchema;
|
|
19
|
+
export declare var DeleteGroupingConfigurationOutput: StaticStructureSchema;
|
|
20
|
+
export declare var DeleteServiceLevelObjectiveInput: StaticStructureSchema;
|
|
21
|
+
export declare var DeleteServiceLevelObjectiveOutput: StaticStructureSchema;
|
|
22
|
+
export declare var DependencyConfig: StaticStructureSchema;
|
|
23
|
+
export declare var DependencyGraph: StaticStructureSchema;
|
|
24
|
+
export declare var Dimension: StaticStructureSchema;
|
|
25
|
+
export declare var Edge: StaticStructureSchema;
|
|
26
|
+
export declare var ExclusionWindow: StaticStructureSchema;
|
|
27
|
+
export declare var GetServiceInput: StaticStructureSchema;
|
|
28
|
+
export declare var GetServiceLevelObjectiveInput: StaticStructureSchema;
|
|
29
|
+
export declare var GetServiceLevelObjectiveOutput: StaticStructureSchema;
|
|
30
|
+
export declare var GetServiceOutput: StaticStructureSchema;
|
|
31
|
+
export declare var Goal: StaticStructureSchema;
|
|
32
|
+
export declare var GroupingAttributeDefinition: StaticStructureSchema;
|
|
33
|
+
export declare var GroupingConfiguration: StaticStructureSchema;
|
|
34
|
+
export declare var ListAuditFindingsInput: StaticStructureSchema;
|
|
35
|
+
export declare var ListAuditFindingsOutput: StaticStructureSchema;
|
|
36
|
+
export declare var ListGroupingAttributeDefinitionsInput: StaticStructureSchema;
|
|
37
|
+
export declare var ListGroupingAttributeDefinitionsOutput: StaticStructureSchema;
|
|
38
|
+
export declare var ListServiceDependenciesInput: StaticStructureSchema;
|
|
39
|
+
export declare var ListServiceDependenciesOutput: StaticStructureSchema;
|
|
40
|
+
export declare var ListServiceDependentsInput: StaticStructureSchema;
|
|
41
|
+
export declare var ListServiceDependentsOutput: StaticStructureSchema;
|
|
42
|
+
export declare var ListServiceLevelObjectiveExclusionWindowsInput: StaticStructureSchema;
|
|
43
|
+
export declare var ListServiceLevelObjectiveExclusionWindowsOutput: StaticStructureSchema;
|
|
44
|
+
export declare var ListServiceLevelObjectivesInput: StaticStructureSchema;
|
|
45
|
+
export declare var ListServiceLevelObjectivesOutput: StaticStructureSchema;
|
|
46
|
+
export declare var ListServiceOperationsInput: StaticStructureSchema;
|
|
47
|
+
export declare var ListServiceOperationsOutput: StaticStructureSchema;
|
|
48
|
+
export declare var ListServicesInput: StaticStructureSchema;
|
|
49
|
+
export declare var ListServicesOutput: StaticStructureSchema;
|
|
50
|
+
export declare var ListServiceStatesInput: StaticStructureSchema;
|
|
51
|
+
export declare var ListServiceStatesOutput: StaticStructureSchema;
|
|
52
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
53
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
54
|
+
export declare var Metric: StaticStructureSchema;
|
|
55
|
+
export declare var MetricDataQuery: StaticStructureSchema;
|
|
56
|
+
export declare var MetricGraph: StaticStructureSchema;
|
|
57
|
+
export declare var MetricReference: StaticStructureSchema;
|
|
58
|
+
export declare var MetricStat: StaticStructureSchema;
|
|
59
|
+
export declare var Node: StaticStructureSchema;
|
|
60
|
+
export declare var PutGroupingConfigurationInput: StaticStructureSchema;
|
|
61
|
+
export declare var PutGroupingConfigurationOutput: StaticStructureSchema;
|
|
62
|
+
export declare var RecurrenceRule: StaticStructureSchema;
|
|
63
|
+
export declare var RequestBasedServiceLevelIndicator: StaticStructureSchema;
|
|
64
|
+
export declare var RequestBasedServiceLevelIndicatorConfig: StaticStructureSchema;
|
|
65
|
+
export declare var RequestBasedServiceLevelIndicatorMetric: StaticStructureSchema;
|
|
66
|
+
export declare var RequestBasedServiceLevelIndicatorMetricConfig: StaticStructureSchema;
|
|
67
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
68
|
+
export declare var RollingInterval: StaticStructureSchema;
|
|
69
|
+
export declare var Service: StaticStructureSchema;
|
|
70
|
+
export declare var ServiceDependency: StaticStructureSchema;
|
|
71
|
+
export declare var ServiceDependent: StaticStructureSchema;
|
|
72
|
+
export declare var ServiceEntity: StaticStructureSchema;
|
|
73
|
+
export declare var ServiceGroup: StaticStructureSchema;
|
|
74
|
+
export declare var ServiceLevelIndicator: StaticStructureSchema;
|
|
75
|
+
export declare var ServiceLevelIndicatorConfig: StaticStructureSchema;
|
|
76
|
+
export declare var ServiceLevelIndicatorMetric: StaticStructureSchema;
|
|
77
|
+
export declare var ServiceLevelIndicatorMetricConfig: StaticStructureSchema;
|
|
78
|
+
export declare var ServiceLevelObjective: StaticStructureSchema;
|
|
79
|
+
export declare var ServiceLevelObjectiveBudgetReport: StaticStructureSchema;
|
|
80
|
+
export declare var ServiceLevelObjectiveBudgetReportError: StaticStructureSchema;
|
|
81
|
+
export declare var ServiceLevelObjectiveEntity: StaticStructureSchema;
|
|
82
|
+
export declare var ServiceLevelObjectiveSummary: StaticStructureSchema;
|
|
83
|
+
export declare var ServiceOperation: StaticStructureSchema;
|
|
84
|
+
export declare var ServiceOperationEntity: StaticStructureSchema;
|
|
85
|
+
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
86
|
+
export declare var ServiceState: StaticStructureSchema;
|
|
87
|
+
export declare var ServiceSummary: StaticStructureSchema;
|
|
88
|
+
export declare var StartDiscoveryInput: StaticStructureSchema;
|
|
89
|
+
export declare var StartDiscoveryOutput: StaticStructureSchema;
|
|
90
|
+
export declare var Tag: StaticStructureSchema;
|
|
91
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
92
|
+
export declare var TagResourceResponse: StaticStructureSchema;
|
|
93
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
94
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
95
|
+
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
96
|
+
export declare var UpdateServiceLevelObjectiveInput: StaticStructureSchema;
|
|
97
|
+
export declare var UpdateServiceLevelObjectiveOutput: StaticStructureSchema;
|
|
98
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
99
|
+
export declare var Window: StaticStructureSchema;
|
|
100
|
+
export declare var __Unit: "unit";
|
|
101
|
+
export declare var ApplicationSignalsServiceException: StaticErrorSchema;
|
|
102
|
+
export declare var AttributeFilters: StaticListSchema;
|
|
103
|
+
export declare var AttributeFilterValues: number;
|
|
104
|
+
export declare var AttributeMaps: StaticListSchema;
|
|
105
|
+
export declare var AuditFindings: StaticListSchema;
|
|
106
|
+
export declare var AuditorResults: StaticListSchema;
|
|
107
|
+
export declare var Auditors: number;
|
|
108
|
+
export declare var AuditTargets: StaticListSchema;
|
|
109
|
+
export declare var BatchUpdateExclusionWindowsErrors: StaticListSchema;
|
|
110
|
+
export declare var BurnRateConfigurations: StaticListSchema;
|
|
111
|
+
export declare var Dimensions: StaticListSchema;
|
|
112
|
+
export declare var Edges: StaticListSchema;
|
|
113
|
+
export declare var ExclusionWindows: StaticListSchema;
|
|
114
|
+
export declare var GroupingAttributeDefinitions: StaticListSchema;
|
|
115
|
+
export declare var GroupingSourceKeyStringList: number;
|
|
116
|
+
export declare var LatestChangeEvents: StaticListSchema;
|
|
117
|
+
export declare var LogGroupReferences: StaticListSchema;
|
|
118
|
+
export declare var MetricDataQueries: StaticListSchema;
|
|
119
|
+
export declare var MetricReferences: StaticListSchema;
|
|
120
|
+
export declare var MetricSourceTypes: number;
|
|
121
|
+
export declare var Nodes: StaticListSchema;
|
|
122
|
+
export declare var ServiceDependencies: StaticListSchema;
|
|
123
|
+
export declare var ServiceDependents: StaticListSchema;
|
|
124
|
+
export declare var ServiceGroups: StaticListSchema;
|
|
125
|
+
export declare var ServiceLevelObjectiveBudgetReportErrors: StaticListSchema;
|
|
126
|
+
export declare var ServiceLevelObjectiveBudgetReports: StaticListSchema;
|
|
127
|
+
export declare var ServiceLevelObjectiveIds: number;
|
|
128
|
+
export declare var ServiceLevelObjectiveSummaries: StaticListSchema;
|
|
129
|
+
export declare var ServiceOperations: StaticListSchema;
|
|
130
|
+
export declare var ServiceStates: StaticListSchema;
|
|
131
|
+
export declare var ServiceSummaries: StaticListSchema;
|
|
132
|
+
export declare var TagKeyList: number;
|
|
133
|
+
export declare var TagList: StaticListSchema;
|
|
134
|
+
export declare var AttributeMap: number;
|
|
135
|
+
export declare var Attributes: number;
|
|
136
|
+
export declare var AuditTargetEntity: StaticStructureSchema;
|
|
137
|
+
export declare var Interval: StaticStructureSchema;
|
|
138
|
+
export declare var MonitoredRequestCountMetricDataQueries: StaticStructureSchema;
|
|
139
|
+
export declare var BatchGetServiceLevelObjectiveBudgetReport: StaticOperationSchema;
|
|
140
|
+
export declare var BatchUpdateExclusionWindows: StaticOperationSchema;
|
|
141
|
+
export declare var CreateServiceLevelObjective: StaticOperationSchema;
|
|
142
|
+
export declare var DeleteGroupingConfiguration: StaticOperationSchema;
|
|
143
|
+
export declare var DeleteServiceLevelObjective: StaticOperationSchema;
|
|
144
|
+
export declare var GetService: StaticOperationSchema;
|
|
145
|
+
export declare var GetServiceLevelObjective: StaticOperationSchema;
|
|
146
|
+
export declare var ListAuditFindings: StaticOperationSchema;
|
|
147
|
+
export declare var ListGroupingAttributeDefinitions: StaticOperationSchema;
|
|
148
|
+
export declare var ListServiceDependencies: StaticOperationSchema;
|
|
149
|
+
export declare var ListServiceDependents: StaticOperationSchema;
|
|
150
|
+
export declare var ListServiceLevelObjectiveExclusionWindows: StaticOperationSchema;
|
|
151
|
+
export declare var ListServiceLevelObjectives: StaticOperationSchema;
|
|
152
|
+
export declare var ListServiceOperations: StaticOperationSchema;
|
|
153
|
+
export declare var ListServices: StaticOperationSchema;
|
|
154
|
+
export declare var ListServiceStates: StaticOperationSchema;
|
|
155
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
156
|
+
export declare var PutGroupingConfiguration: StaticOperationSchema;
|
|
157
|
+
export declare var StartDiscovery: StaticOperationSchema;
|
|
158
|
+
export declare var TagResource: StaticOperationSchema;
|
|
159
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
160
|
+
export declare var UpdateServiceLevelObjective: StaticOperationSchema;
|
|
@@ -30,10 +30,13 @@ import {
|
|
|
30
30
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
31
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
32
|
ChecksumConstructor as __ChecksumConstructor,
|
|
33
|
+
ClientProtocol,
|
|
33
34
|
Decoder as __Decoder,
|
|
34
35
|
Encoder as __Encoder,
|
|
35
36
|
HashConstructor as __HashConstructor,
|
|
36
37
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
38
|
+
HttpRequest,
|
|
39
|
+
HttpResponse,
|
|
37
40
|
Logger as __Logger,
|
|
38
41
|
Provider as __Provider,
|
|
39
42
|
Provider,
|
|
@@ -210,6 +213,7 @@ export interface ClientDefaults
|
|
|
210
213
|
retryMode?: string | __Provider<string>;
|
|
211
214
|
logger?: __Logger;
|
|
212
215
|
extensions?: RuntimeExtension[];
|
|
216
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
213
217
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
214
218
|
}
|
|
215
219
|
export type ApplicationSignalsClientConfigType = Partial<
|
|
@@ -39,6 +39,10 @@ export declare const getRuntimeConfig: (
|
|
|
39
39
|
profile?: string;
|
|
40
40
|
logger: import("@smithy/types").Logger;
|
|
41
41
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
42
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
43
|
+
import("@smithy/types").HttpRequest,
|
|
44
|
+
import("@smithy/types").HttpResponse
|
|
45
|
+
>;
|
|
42
46
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
43
47
|
userAgentAppId?:
|
|
44
48
|
| string
|
|
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
|
|
|
40
40
|
profile?: string;
|
|
41
41
|
logger: import("@smithy/types").Logger;
|
|
42
42
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
44
|
+
import("@smithy/types").HttpRequest,
|
|
45
|
+
import("@smithy/types").HttpResponse
|
|
46
|
+
>;
|
|
43
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
44
48
|
retryStrategy?:
|
|
45
49
|
| import("@smithy/types").RetryStrategy
|
|
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (
|
|
|
38
38
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
39
39
|
logger: import("@smithy/types").Logger;
|
|
40
40
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
42
|
+
import("@smithy/types").HttpRequest,
|
|
43
|
+
import("@smithy/types").HttpResponse
|
|
44
|
+
>;
|
|
41
45
|
defaultsMode:
|
|
42
46
|
| import("@smithy/smithy-client").DefaultsMode
|
|
43
47
|
| import("@smithy/types").Provider<
|
|
@@ -16,6 +16,10 @@ export declare const getRuntimeConfig: (
|
|
|
16
16
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ApplicationSignalsHttpAuthSchemeProvider;
|
|
17
17
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
18
18
|
logger: import("@smithy/types").Logger;
|
|
19
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
20
|
+
import("@smithy/types").HttpRequest,
|
|
21
|
+
import("@smithy/types").HttpResponse
|
|
22
|
+
>;
|
|
19
23
|
serviceId: string;
|
|
20
24
|
urlParser: import("@smithy/types").UrlParser;
|
|
21
25
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
import {
|
|
2
|
+
StaticErrorSchema,
|
|
3
|
+
StaticListSchema,
|
|
4
|
+
StaticOperationSchema,
|
|
5
|
+
StaticStructureSchema,
|
|
6
|
+
} from "@smithy/types";
|
|
7
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
8
|
+
export declare var AttributeFilter: StaticStructureSchema;
|
|
9
|
+
export declare var AuditFinding: StaticStructureSchema;
|
|
10
|
+
export declare var AuditorResult: StaticStructureSchema;
|
|
11
|
+
export declare var AuditTarget: StaticStructureSchema;
|
|
12
|
+
export declare var BatchGetServiceLevelObjectiveBudgetReportInput: StaticStructureSchema;
|
|
13
|
+
export declare var BatchGetServiceLevelObjectiveBudgetReportOutput: StaticStructureSchema;
|
|
14
|
+
export declare var BatchUpdateExclusionWindowsError: StaticStructureSchema;
|
|
15
|
+
export declare var BatchUpdateExclusionWindowsInput: StaticStructureSchema;
|
|
16
|
+
export declare var BatchUpdateExclusionWindowsOutput: StaticStructureSchema;
|
|
17
|
+
export declare var BurnRateConfiguration: StaticStructureSchema;
|
|
18
|
+
export declare var CalendarInterval: StaticStructureSchema;
|
|
19
|
+
export declare var CanaryEntity: StaticStructureSchema;
|
|
20
|
+
export declare var ChangeEvent: StaticStructureSchema;
|
|
21
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
22
|
+
export declare var CreateServiceLevelObjectiveInput: StaticStructureSchema;
|
|
23
|
+
export declare var CreateServiceLevelObjectiveOutput: StaticStructureSchema;
|
|
24
|
+
export declare var DeleteGroupingConfigurationOutput: StaticStructureSchema;
|
|
25
|
+
export declare var DeleteServiceLevelObjectiveInput: StaticStructureSchema;
|
|
26
|
+
export declare var DeleteServiceLevelObjectiveOutput: StaticStructureSchema;
|
|
27
|
+
export declare var DependencyConfig: StaticStructureSchema;
|
|
28
|
+
export declare var DependencyGraph: StaticStructureSchema;
|
|
29
|
+
export declare var Dimension: StaticStructureSchema;
|
|
30
|
+
export declare var Edge: StaticStructureSchema;
|
|
31
|
+
export declare var ExclusionWindow: StaticStructureSchema;
|
|
32
|
+
export declare var GetServiceInput: StaticStructureSchema;
|
|
33
|
+
export declare var GetServiceLevelObjectiveInput: StaticStructureSchema;
|
|
34
|
+
export declare var GetServiceLevelObjectiveOutput: StaticStructureSchema;
|
|
35
|
+
export declare var GetServiceOutput: StaticStructureSchema;
|
|
36
|
+
export declare var Goal: StaticStructureSchema;
|
|
37
|
+
export declare var GroupingAttributeDefinition: StaticStructureSchema;
|
|
38
|
+
export declare var GroupingConfiguration: StaticStructureSchema;
|
|
39
|
+
export declare var ListAuditFindingsInput: StaticStructureSchema;
|
|
40
|
+
export declare var ListAuditFindingsOutput: StaticStructureSchema;
|
|
41
|
+
export declare var ListGroupingAttributeDefinitionsInput: StaticStructureSchema;
|
|
42
|
+
export declare var ListGroupingAttributeDefinitionsOutput: StaticStructureSchema;
|
|
43
|
+
export declare var ListServiceDependenciesInput: StaticStructureSchema;
|
|
44
|
+
export declare var ListServiceDependenciesOutput: StaticStructureSchema;
|
|
45
|
+
export declare var ListServiceDependentsInput: StaticStructureSchema;
|
|
46
|
+
export declare var ListServiceDependentsOutput: StaticStructureSchema;
|
|
47
|
+
export declare var ListServiceLevelObjectiveExclusionWindowsInput: StaticStructureSchema;
|
|
48
|
+
export declare var ListServiceLevelObjectiveExclusionWindowsOutput: StaticStructureSchema;
|
|
49
|
+
export declare var ListServiceLevelObjectivesInput: StaticStructureSchema;
|
|
50
|
+
export declare var ListServiceLevelObjectivesOutput: StaticStructureSchema;
|
|
51
|
+
export declare var ListServiceOperationsInput: StaticStructureSchema;
|
|
52
|
+
export declare var ListServiceOperationsOutput: StaticStructureSchema;
|
|
53
|
+
export declare var ListServicesInput: StaticStructureSchema;
|
|
54
|
+
export declare var ListServicesOutput: StaticStructureSchema;
|
|
55
|
+
export declare var ListServiceStatesInput: StaticStructureSchema;
|
|
56
|
+
export declare var ListServiceStatesOutput: StaticStructureSchema;
|
|
57
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
58
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
59
|
+
export declare var Metric: StaticStructureSchema;
|
|
60
|
+
export declare var MetricDataQuery: StaticStructureSchema;
|
|
61
|
+
export declare var MetricGraph: StaticStructureSchema;
|
|
62
|
+
export declare var MetricReference: StaticStructureSchema;
|
|
63
|
+
export declare var MetricStat: StaticStructureSchema;
|
|
64
|
+
export declare var Node: StaticStructureSchema;
|
|
65
|
+
export declare var PutGroupingConfigurationInput: StaticStructureSchema;
|
|
66
|
+
export declare var PutGroupingConfigurationOutput: StaticStructureSchema;
|
|
67
|
+
export declare var RecurrenceRule: StaticStructureSchema;
|
|
68
|
+
export declare var RequestBasedServiceLevelIndicator: StaticStructureSchema;
|
|
69
|
+
export declare var RequestBasedServiceLevelIndicatorConfig: StaticStructureSchema;
|
|
70
|
+
export declare var RequestBasedServiceLevelIndicatorMetric: StaticStructureSchema;
|
|
71
|
+
export declare var RequestBasedServiceLevelIndicatorMetricConfig: StaticStructureSchema;
|
|
72
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
73
|
+
export declare var RollingInterval: StaticStructureSchema;
|
|
74
|
+
export declare var Service: StaticStructureSchema;
|
|
75
|
+
export declare var ServiceDependency: StaticStructureSchema;
|
|
76
|
+
export declare var ServiceDependent: StaticStructureSchema;
|
|
77
|
+
export declare var ServiceEntity: StaticStructureSchema;
|
|
78
|
+
export declare var ServiceGroup: StaticStructureSchema;
|
|
79
|
+
export declare var ServiceLevelIndicator: StaticStructureSchema;
|
|
80
|
+
export declare var ServiceLevelIndicatorConfig: StaticStructureSchema;
|
|
81
|
+
export declare var ServiceLevelIndicatorMetric: StaticStructureSchema;
|
|
82
|
+
export declare var ServiceLevelIndicatorMetricConfig: StaticStructureSchema;
|
|
83
|
+
export declare var ServiceLevelObjective: StaticStructureSchema;
|
|
84
|
+
export declare var ServiceLevelObjectiveBudgetReport: StaticStructureSchema;
|
|
85
|
+
export declare var ServiceLevelObjectiveBudgetReportError: StaticStructureSchema;
|
|
86
|
+
export declare var ServiceLevelObjectiveEntity: StaticStructureSchema;
|
|
87
|
+
export declare var ServiceLevelObjectiveSummary: StaticStructureSchema;
|
|
88
|
+
export declare var ServiceOperation: StaticStructureSchema;
|
|
89
|
+
export declare var ServiceOperationEntity: StaticStructureSchema;
|
|
90
|
+
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
91
|
+
export declare var ServiceState: StaticStructureSchema;
|
|
92
|
+
export declare var ServiceSummary: StaticStructureSchema;
|
|
93
|
+
export declare var StartDiscoveryInput: StaticStructureSchema;
|
|
94
|
+
export declare var StartDiscoveryOutput: StaticStructureSchema;
|
|
95
|
+
export declare var Tag: StaticStructureSchema;
|
|
96
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
97
|
+
export declare var TagResourceResponse: StaticStructureSchema;
|
|
98
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
99
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
100
|
+
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
101
|
+
export declare var UpdateServiceLevelObjectiveInput: StaticStructureSchema;
|
|
102
|
+
export declare var UpdateServiceLevelObjectiveOutput: StaticStructureSchema;
|
|
103
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
104
|
+
export declare var Window: StaticStructureSchema;
|
|
105
|
+
export declare var __Unit: "unit";
|
|
106
|
+
export declare var ApplicationSignalsServiceException: StaticErrorSchema;
|
|
107
|
+
export declare var AttributeFilters: StaticListSchema;
|
|
108
|
+
export declare var AttributeFilterValues: number;
|
|
109
|
+
export declare var AttributeMaps: StaticListSchema;
|
|
110
|
+
export declare var AuditFindings: StaticListSchema;
|
|
111
|
+
export declare var AuditorResults: StaticListSchema;
|
|
112
|
+
export declare var Auditors: number;
|
|
113
|
+
export declare var AuditTargets: StaticListSchema;
|
|
114
|
+
export declare var BatchUpdateExclusionWindowsErrors: StaticListSchema;
|
|
115
|
+
export declare var BurnRateConfigurations: StaticListSchema;
|
|
116
|
+
export declare var Dimensions: StaticListSchema;
|
|
117
|
+
export declare var Edges: StaticListSchema;
|
|
118
|
+
export declare var ExclusionWindows: StaticListSchema;
|
|
119
|
+
export declare var GroupingAttributeDefinitions: StaticListSchema;
|
|
120
|
+
export declare var GroupingSourceKeyStringList: number;
|
|
121
|
+
export declare var LatestChangeEvents: StaticListSchema;
|
|
122
|
+
export declare var LogGroupReferences: StaticListSchema;
|
|
123
|
+
export declare var MetricDataQueries: StaticListSchema;
|
|
124
|
+
export declare var MetricReferences: StaticListSchema;
|
|
125
|
+
export declare var MetricSourceTypes: number;
|
|
126
|
+
export declare var Nodes: StaticListSchema;
|
|
127
|
+
export declare var ServiceDependencies: StaticListSchema;
|
|
128
|
+
export declare var ServiceDependents: StaticListSchema;
|
|
129
|
+
export declare var ServiceGroups: StaticListSchema;
|
|
130
|
+
export declare var ServiceLevelObjectiveBudgetReportErrors: StaticListSchema;
|
|
131
|
+
export declare var ServiceLevelObjectiveBudgetReports: StaticListSchema;
|
|
132
|
+
export declare var ServiceLevelObjectiveIds: number;
|
|
133
|
+
export declare var ServiceLevelObjectiveSummaries: StaticListSchema;
|
|
134
|
+
export declare var ServiceOperations: StaticListSchema;
|
|
135
|
+
export declare var ServiceStates: StaticListSchema;
|
|
136
|
+
export declare var ServiceSummaries: StaticListSchema;
|
|
137
|
+
export declare var TagKeyList: number;
|
|
138
|
+
export declare var TagList: StaticListSchema;
|
|
139
|
+
export declare var AttributeMap: number;
|
|
140
|
+
export declare var Attributes: number;
|
|
141
|
+
export declare var AuditTargetEntity: StaticStructureSchema;
|
|
142
|
+
export declare var Interval: StaticStructureSchema;
|
|
143
|
+
export declare var MonitoredRequestCountMetricDataQueries: StaticStructureSchema;
|
|
144
|
+
export declare var BatchGetServiceLevelObjectiveBudgetReport: StaticOperationSchema;
|
|
145
|
+
export declare var BatchUpdateExclusionWindows: StaticOperationSchema;
|
|
146
|
+
export declare var CreateServiceLevelObjective: StaticOperationSchema;
|
|
147
|
+
export declare var DeleteGroupingConfiguration: StaticOperationSchema;
|
|
148
|
+
export declare var DeleteServiceLevelObjective: StaticOperationSchema;
|
|
149
|
+
export declare var GetService: StaticOperationSchema;
|
|
150
|
+
export declare var GetServiceLevelObjective: StaticOperationSchema;
|
|
151
|
+
export declare var ListAuditFindings: StaticOperationSchema;
|
|
152
|
+
export declare var ListGroupingAttributeDefinitions: StaticOperationSchema;
|
|
153
|
+
export declare var ListServiceDependencies: StaticOperationSchema;
|
|
154
|
+
export declare var ListServiceDependents: StaticOperationSchema;
|
|
155
|
+
export declare var ListServiceLevelObjectiveExclusionWindows: StaticOperationSchema;
|
|
156
|
+
export declare var ListServiceLevelObjectives: StaticOperationSchema;
|
|
157
|
+
export declare var ListServiceOperations: StaticOperationSchema;
|
|
158
|
+
export declare var ListServices: StaticOperationSchema;
|
|
159
|
+
export declare var ListServiceStates: StaticOperationSchema;
|
|
160
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
161
|
+
export declare var PutGroupingConfiguration: StaticOperationSchema;
|
|
162
|
+
export declare var StartDiscovery: StaticOperationSchema;
|
|
163
|
+
export declare var TagResource: StaticOperationSchema;
|
|
164
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
165
|
+
export declare var UpdateServiceLevelObjective: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-application-signals",
|
|
3
3
|
"description": "AWS SDK for JavaScript Application Signals Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.929.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-application-signals",
|
|
@@ -20,17 +20,17 @@
|
|
|
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.
|
|
23
|
+
"@aws-sdk/core": "3.928.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.929.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.922.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.922.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.922.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.928.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.925.0",
|
|
30
30
|
"@aws-sdk/types": "3.922.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.922.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.922.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.928.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.2",
|
|
35
35
|
"@smithy/core": "^3.17.2",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.5",
|