@aws-sdk/client-application-signals 3.1086.0 → 3.1088.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 +1 -1
- package/dist-types/ts3.4/ApplicationSignals.d.ts +102 -156
- package/dist-types/ts3.4/ApplicationSignalsClient.d.ts +7 -23
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/BatchDeleteInstrumentationConfigurationsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/BatchGetServiceLevelObjectiveBudgetReportCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/BatchUpdateExclusionWindowsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateInstrumentationConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateServiceLevelObjectiveCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteGroupingConfigurationCommand.d.ts +2 -3
- package/dist-types/ts3.4/commands/DeleteInstrumentationConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteServiceLevelObjectiveCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetInstrumentationConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetInstrumentationConfigurationStatusCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetServiceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetServiceLevelObjectiveCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListAuditFindingsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListEntityEventsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListGroupingAttributeDefinitionsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListInstrumentationConfigurationsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListServiceDependenciesCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListServiceDependentsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListServiceLevelObjectiveExclusionWindowsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListServiceLevelObjectivesCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListServiceOperationsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListServiceStatesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListServicesCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/PutGroupingConfigurationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ReportInstrumentationConfigurationStatusCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/StartDiscoveryCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateServiceLevelObjectiveCommand.d.ts +4 -6
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +7 -14
- package/dist-types/ts3.4/models/errors.d.ts +5 -15
- package/dist-types/ts3.4/models/models_0.d.ts +4 -12
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/package.json +39 -39
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListServiceDependenciesInput,
|
|
4
|
-
ListServiceDependenciesOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListServiceDependenciesInput, ListServiceDependenciesOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListServiceDependenciesCommandInput
|
|
8
|
-
extends ListServiceDependenciesInput {}
|
|
4
|
+
export interface ListServiceDependenciesCommandInput extends ListServiceDependenciesInput {}
|
|
9
5
|
export interface ListServiceDependenciesCommandOutput
|
|
10
|
-
extends ListServiceDependenciesOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListServiceDependenciesOutput, __MetadataBearer {}
|
|
12
7
|
declare const ListServiceDependenciesCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListServiceDependenciesCommandInput
|
|
9
|
+
input: ListServiceDependenciesCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListServiceDependenciesCommandInput,
|
|
17
12
|
ListServiceDependenciesCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListServiceDependenciesCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListServiceDependenciesCommandInput
|
|
18
|
+
input: ListServiceDependenciesCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListServiceDependenciesCommandInput,
|
|
26
21
|
ListServiceDependenciesCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListServiceDependentsInput,
|
|
4
|
-
ListServiceDependentsOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListServiceDependentsInput, ListServiceDependentsOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListServiceDependentsCommandInput
|
|
8
|
-
extends ListServiceDependentsInput {}
|
|
4
|
+
export interface ListServiceDependentsCommandInput extends ListServiceDependentsInput {}
|
|
9
5
|
export interface ListServiceDependentsCommandOutput
|
|
10
|
-
extends ListServiceDependentsOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListServiceDependentsOutput, __MetadataBearer {}
|
|
12
7
|
declare const ListServiceDependentsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListServiceDependentsCommandInput
|
|
9
|
+
input: ListServiceDependentsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListServiceDependentsCommandInput,
|
|
17
12
|
ListServiceDependentsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListServiceDependentsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListServiceDependentsCommandInput
|
|
18
|
+
input: ListServiceDependentsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListServiceDependentsCommandInput,
|
|
26
21
|
ListServiceDependentsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListServiceLevelObjectiveExclusionWindowsOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListServiceLevelObjectiveExclusionWindowsCommandInput
|
|
8
|
-
extends ListServiceLevelObjectiveExclusionWindowsInput {}
|
|
7
|
+
export interface ListServiceLevelObjectiveExclusionWindowsCommandInput extends ListServiceLevelObjectiveExclusionWindowsInput {}
|
|
9
8
|
export interface ListServiceLevelObjectiveExclusionWindowsCommandOutput
|
|
10
|
-
extends ListServiceLevelObjectiveExclusionWindowsOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListServiceLevelObjectiveExclusionWindowsOutput, __MetadataBearer {}
|
|
12
10
|
declare const ListServiceLevelObjectiveExclusionWindowsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListServiceLevelObjectiveExclusionWindowsCommandInput
|
|
12
|
+
input: ListServiceLevelObjectiveExclusionWindowsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListServiceLevelObjectiveExclusionWindowsCommandInput,
|
|
17
15
|
ListServiceLevelObjectiveExclusionWindowsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ListServiceLevelObjectiveExclusionWindowsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ListServiceLevelObjectiveExclusionWindowsCommandInput
|
|
21
|
+
input: ListServiceLevelObjectiveExclusionWindowsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ListServiceLevelObjectiveExclusionWindowsCommandInput,
|
|
26
24
|
ListServiceLevelObjectiveExclusionWindowsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListServiceLevelObjectivesOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListServiceLevelObjectivesCommandInput
|
|
8
|
-
extends ListServiceLevelObjectivesInput {}
|
|
7
|
+
export interface ListServiceLevelObjectivesCommandInput extends ListServiceLevelObjectivesInput {}
|
|
9
8
|
export interface ListServiceLevelObjectivesCommandOutput
|
|
10
|
-
extends ListServiceLevelObjectivesOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListServiceLevelObjectivesOutput, __MetadataBearer {}
|
|
12
10
|
declare const ListServiceLevelObjectivesCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListServiceLevelObjectivesCommandInput
|
|
12
|
+
input: ListServiceLevelObjectivesCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListServiceLevelObjectivesCommandInput,
|
|
17
15
|
ListServiceLevelObjectivesCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListServiceOperationsInput,
|
|
4
|
-
ListServiceOperationsOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListServiceOperationsInput, ListServiceOperationsOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListServiceOperationsCommandInput
|
|
8
|
-
extends ListServiceOperationsInput {}
|
|
4
|
+
export interface ListServiceOperationsCommandInput extends ListServiceOperationsInput {}
|
|
9
5
|
export interface ListServiceOperationsCommandOutput
|
|
10
|
-
extends ListServiceOperationsOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListServiceOperationsOutput, __MetadataBearer {}
|
|
12
7
|
declare const ListServiceOperationsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListServiceOperationsCommandInput
|
|
9
|
+
input: ListServiceOperationsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListServiceOperationsCommandInput,
|
|
17
12
|
ListServiceOperationsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListServiceOperationsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListServiceOperationsCommandInput
|
|
18
|
+
input: ListServiceOperationsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListServiceOperationsCommandInput,
|
|
26
21
|
ListServiceOperationsCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListServiceStatesInput,
|
|
4
|
-
ListServiceStatesOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListServiceStatesInput, ListServiceStatesOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListServiceStatesCommandInput extends ListServiceStatesInput {}
|
|
8
|
-
export interface ListServiceStatesCommandOutput
|
|
9
|
-
extends ListServiceStatesOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListServiceStatesCommandOutput extends ListServiceStatesOutput, __MetadataBearer {}
|
|
11
6
|
declare const ListServiceStatesCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListServiceStatesCommandInput
|
|
8
|
+
input: ListServiceStatesCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListServiceStatesCommandInput,
|
|
16
11
|
ListServiceStatesCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const ListServiceStatesCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: ListServiceStatesCommandInput
|
|
17
|
+
input: ListServiceStatesCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
ListServiceStatesCommandInput,
|
|
25
20
|
ListServiceStatesCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListServicesInput, ListServicesOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListServicesCommandInput extends ListServicesInput {}
|
|
5
|
-
export interface ListServicesCommandOutput
|
|
6
|
-
extends ListServicesOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListServicesCommandOutput extends ListServicesOutput, __MetadataBearer {}
|
|
8
6
|
declare const ListServicesCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListServicesCommandInput
|
|
8
|
+
input: ListServicesCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListServicesCommandInput,
|
|
13
11
|
ListServicesCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const ListServicesCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: ListServicesCommandInput
|
|
17
|
+
input: ListServicesCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
ListServicesCommandInput,
|
|
22
20
|
ListServicesCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceRequest,
|
|
4
|
-
ListTagsForResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceRequest {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
PutGroupingConfigurationInput,
|
|
4
|
-
PutGroupingConfigurationOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { PutGroupingConfigurationInput, PutGroupingConfigurationOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface PutGroupingConfigurationCommandInput
|
|
8
|
-
extends PutGroupingConfigurationInput {}
|
|
4
|
+
export interface PutGroupingConfigurationCommandInput extends PutGroupingConfigurationInput {}
|
|
9
5
|
export interface PutGroupingConfigurationCommandOutput
|
|
10
|
-
extends PutGroupingConfigurationOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends PutGroupingConfigurationOutput, __MetadataBearer {}
|
|
12
7
|
declare const PutGroupingConfigurationCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: PutGroupingConfigurationCommandInput
|
|
9
|
+
input: PutGroupingConfigurationCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
PutGroupingConfigurationCommandInput,
|
|
17
12
|
PutGroupingConfigurationCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const PutGroupingConfigurationCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: PutGroupingConfigurationCommandInput
|
|
18
|
+
input: PutGroupingConfigurationCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
PutGroupingConfigurationCommandInput,
|
|
26
21
|
PutGroupingConfigurationCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ReportInstrumentationConfigurationStatusResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ReportInstrumentationConfigurationStatusCommandInput
|
|
8
|
-
extends ReportInstrumentationConfigurationStatusRequest {}
|
|
7
|
+
export interface ReportInstrumentationConfigurationStatusCommandInput extends ReportInstrumentationConfigurationStatusRequest {}
|
|
9
8
|
export interface ReportInstrumentationConfigurationStatusCommandOutput
|
|
10
|
-
extends ReportInstrumentationConfigurationStatusResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ReportInstrumentationConfigurationStatusResponse, __MetadataBearer {}
|
|
12
10
|
declare const ReportInstrumentationConfigurationStatusCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ReportInstrumentationConfigurationStatusCommandInput
|
|
12
|
+
input: ReportInstrumentationConfigurationStatusCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ReportInstrumentationConfigurationStatusCommandInput,
|
|
17
15
|
ReportInstrumentationConfigurationStatusCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ReportInstrumentationConfigurationStatusCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ReportInstrumentationConfigurationStatusCommandInput
|
|
21
|
+
input: ReportInstrumentationConfigurationStatusCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ReportInstrumentationConfigurationStatusCommandInput,
|
|
26
24
|
ReportInstrumentationConfigurationStatusCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { StartDiscoveryInput, StartDiscoveryOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface StartDiscoveryCommandInput extends StartDiscoveryInput {}
|
|
5
|
-
export interface StartDiscoveryCommandOutput
|
|
6
|
-
extends StartDiscoveryOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface StartDiscoveryCommandOutput extends StartDiscoveryOutput, __MetadataBearer {}
|
|
8
6
|
declare const StartDiscoveryCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: StartDiscoveryCommandInput
|
|
8
|
+
input: StartDiscoveryCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
StartDiscoveryCommandInput,
|
|
13
11
|
StartDiscoveryCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
5
|
-
export interface TagResourceCommandOutput
|
|
6
|
-
extends TagResourceResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {}
|
|
8
6
|
declare const TagResourceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: TagResourceCommandInput
|
|
8
|
+
input: TagResourceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
TagResourceCommandInput,
|
|
13
11
|
TagResourceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const TagResourceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: TagResourceCommandInput
|
|
17
|
+
input: TagResourceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
TagResourceCommandInput,
|
|
22
20
|
TagResourceCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UntagResourceRequest,
|
|
4
|
-
UntagResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
8
|
-
export interface UntagResourceCommandOutput
|
|
9
|
-
extends UntagResourceResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {}
|
|
11
6
|
declare const UntagResourceCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UntagResourceCommandInput
|
|
8
|
+
input: UntagResourceCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UntagResourceCommandInput,
|
|
16
11
|
UntagResourceCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UntagResourceCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UntagResourceCommandInput
|
|
17
|
+
input: UntagResourceCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UntagResourceCommandInput,
|
|
25
20
|
UntagResourceCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
UpdateServiceLevelObjectiveOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateServiceLevelObjectiveCommandInput
|
|
8
|
-
extends UpdateServiceLevelObjectiveInput {}
|
|
7
|
+
export interface UpdateServiceLevelObjectiveCommandInput extends UpdateServiceLevelObjectiveInput {}
|
|
9
8
|
export interface UpdateServiceLevelObjectiveCommandOutput
|
|
10
|
-
extends UpdateServiceLevelObjectiveOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends UpdateServiceLevelObjectiveOutput, __MetadataBearer {}
|
|
12
10
|
declare const UpdateServiceLevelObjectiveCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: UpdateServiceLevelObjectiveCommandInput
|
|
12
|
+
input: UpdateServiceLevelObjectiveCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
UpdateServiceLevelObjectiveCommandInput,
|
|
17
15
|
UpdateServiceLevelObjectiveCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const UpdateServiceLevelObjectiveCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: UpdateServiceLevelObjectiveCommandInput
|
|
21
|
+
input: UpdateServiceLevelObjectiveCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
UpdateServiceLevelObjectiveCommandInput,
|
|
26
24
|
UpdateServiceLevelObjectiveCommandOutput,
|
|
@@ -22,7 +22,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
22
22
|
defaultSigningName: string;
|
|
23
23
|
};
|
|
24
24
|
export declare const resolveClientEndpointParameters: <T>(
|
|
25
|
-
options: T & ClientInputEndpointParameters
|
|
25
|
+
options: T & ClientInputEndpointParameters,
|
|
26
26
|
) => T & ClientResolvedEndpointParameters;
|
|
27
27
|
export declare const commonParams: {
|
|
28
28
|
readonly UseFIPS: {
|
|
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface ApplicationSignalsExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -2,15 +2,13 @@ export declare const InstrumentationType: {
|
|
|
2
2
|
readonly BREAKPOINT: "BREAKPOINT";
|
|
3
3
|
readonly PROBE: "PROBE";
|
|
4
4
|
};
|
|
5
|
-
export type InstrumentationType =
|
|
6
|
-
(typeof InstrumentationType)[keyof typeof InstrumentationType];
|
|
5
|
+
export type InstrumentationType = (typeof InstrumentationType)[keyof typeof InstrumentationType];
|
|
7
6
|
export declare const BatchDeleteErrorCode: {
|
|
8
7
|
readonly ACCESS_DENIED: "AccessDeniedException";
|
|
9
8
|
readonly INTERNAL_SERVICE_ERROR: "InternalServiceException";
|
|
10
9
|
readonly RESOURCE_NOT_FOUND: "ResourceNotFoundException";
|
|
11
10
|
};
|
|
12
|
-
export type BatchDeleteErrorCode =
|
|
13
|
-
(typeof BatchDeleteErrorCode)[keyof typeof BatchDeleteErrorCode];
|
|
11
|
+
export type BatchDeleteErrorCode = (typeof BatchDeleteErrorCode)[keyof typeof BatchDeleteErrorCode];
|
|
14
12
|
export declare const ServiceLevelObjectiveBudgetStatus: {
|
|
15
13
|
readonly BREACHED: "BREACHED";
|
|
16
14
|
readonly INSUFFICIENT_DATA: "INSUFFICIENT_DATA";
|
|
@@ -23,8 +21,7 @@ export declare const EvaluationType: {
|
|
|
23
21
|
readonly PERIOD_BASED: "PeriodBased";
|
|
24
22
|
readonly REQUEST_BASED: "RequestBased";
|
|
25
23
|
};
|
|
26
|
-
export type EvaluationType =
|
|
27
|
-
(typeof EvaluationType)[keyof typeof EvaluationType];
|
|
24
|
+
export type EvaluationType = (typeof EvaluationType)[keyof typeof EvaluationType];
|
|
28
25
|
export declare const DurationUnit: {
|
|
29
26
|
readonly DAY: "DAY";
|
|
30
27
|
readonly HOUR: "HOUR";
|
|
@@ -87,8 +84,7 @@ export declare const ProgrammingLanguage: {
|
|
|
87
84
|
readonly JAVASCRIPT: "Javascript";
|
|
88
85
|
readonly PYTHON: "Python";
|
|
89
86
|
};
|
|
90
|
-
export type ProgrammingLanguage =
|
|
91
|
-
(typeof ProgrammingLanguage)[keyof typeof ProgrammingLanguage];
|
|
87
|
+
export type ProgrammingLanguage = (typeof ProgrammingLanguage)[keyof typeof ProgrammingLanguage];
|
|
92
88
|
export declare const DynamicInstrumentationSignalType: {
|
|
93
89
|
readonly SNAPSHOT: "SNAPSHOT";
|
|
94
90
|
};
|
|
@@ -134,14 +130,12 @@ export declare const ConnectionType: {
|
|
|
134
130
|
readonly DIRECT: "DIRECT";
|
|
135
131
|
readonly INDIRECT: "INDIRECT";
|
|
136
132
|
};
|
|
137
|
-
export type ConnectionType =
|
|
138
|
-
(typeof ConnectionType)[keyof typeof ConnectionType];
|
|
133
|
+
export type ConnectionType = (typeof ConnectionType)[keyof typeof ConnectionType];
|
|
139
134
|
export declare const ChangeEventType: {
|
|
140
135
|
readonly CONFIGURATION: "CONFIGURATION";
|
|
141
136
|
readonly DEPLOYMENT: "DEPLOYMENT";
|
|
142
137
|
};
|
|
143
|
-
export type ChangeEventType =
|
|
144
|
-
(typeof ChangeEventType)[keyof typeof ChangeEventType];
|
|
138
|
+
export type ChangeEventType = (typeof ChangeEventType)[keyof typeof ChangeEventType];
|
|
145
139
|
export declare const UnprocessedStatusEventFailureReason: {
|
|
146
140
|
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
147
141
|
readonly THROTTLED: "THROTTLED";
|
|
@@ -157,5 +151,4 @@ export declare const MetricSourceType: {
|
|
|
157
151
|
readonly SERVICE_DEPENDENCY: "ServiceDependency";
|
|
158
152
|
readonly SERVICE_OPERATION: "ServiceOperation";
|
|
159
153
|
};
|
|
160
|
-
export type MetricSourceType =
|
|
161
|
-
(typeof MetricSourceType)[keyof typeof MetricSourceType];
|
|
154
|
+
export type MetricSourceType = (typeof MetricSourceType)[keyof typeof MetricSourceType];
|
|
@@ -4,24 +4,18 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
4
4
|
readonly name: "AccessDeniedException";
|
|
5
5
|
readonly $fault: "client";
|
|
6
6
|
Message?: string | undefined;
|
|
7
|
-
constructor(
|
|
8
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
|
-
);
|
|
7
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
10
8
|
}
|
|
11
9
|
export declare class ThrottlingException extends __BaseException {
|
|
12
10
|
readonly name: "ThrottlingException";
|
|
13
11
|
readonly $fault: "client";
|
|
14
12
|
Message: string | undefined;
|
|
15
|
-
constructor(
|
|
16
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
17
|
-
);
|
|
13
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
18
14
|
}
|
|
19
15
|
export declare class ValidationException extends __BaseException {
|
|
20
16
|
readonly name: "ValidationException";
|
|
21
17
|
readonly $fault: "client";
|
|
22
|
-
constructor(
|
|
23
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
24
|
-
);
|
|
18
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
25
19
|
}
|
|
26
20
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
27
21
|
readonly name: "ResourceNotFoundException";
|
|
@@ -29,9 +23,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
29
23
|
ResourceType: string | undefined;
|
|
30
24
|
ResourceId: string | undefined;
|
|
31
25
|
Message: string | undefined;
|
|
32
|
-
constructor(
|
|
33
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
34
|
-
);
|
|
26
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
35
27
|
}
|
|
36
28
|
export declare class ConflictException extends __BaseException {
|
|
37
29
|
readonly name: "ConflictException";
|
|
@@ -43,7 +35,5 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
43
35
|
readonly name: "ServiceQuotaExceededException";
|
|
44
36
|
readonly $fault: "client";
|
|
45
37
|
Message: string | undefined;
|
|
46
|
-
constructor(
|
|
47
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
48
|
-
);
|
|
38
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
49
39
|
}
|
|
@@ -211,9 +211,7 @@ export interface RequestBasedServiceLevelIndicatorMetric {
|
|
|
211
211
|
OperationName?: string | undefined;
|
|
212
212
|
MetricType?: ServiceLevelIndicatorMetricType | undefined;
|
|
213
213
|
TotalRequestCountMetric: MetricDataQuery[] | undefined;
|
|
214
|
-
MonitoredRequestCountMetric:
|
|
215
|
-
| MonitoredRequestCountMetricDataQueries
|
|
216
|
-
| undefined;
|
|
214
|
+
MonitoredRequestCountMetric: MonitoredRequestCountMetricDataQueries | undefined;
|
|
217
215
|
DependencyConfig?: DependencyConfig | undefined;
|
|
218
216
|
MetricSource?: MetricSource | undefined;
|
|
219
217
|
CompositeSliConfig?: CompositeSliConfig | undefined;
|
|
@@ -666,9 +664,7 @@ export interface InstrumentationConfigurationsPage {
|
|
|
666
664
|
Service: string | undefined;
|
|
667
665
|
Environment: string | undefined;
|
|
668
666
|
Changed: boolean | undefined;
|
|
669
|
-
LatestConfigurations?:
|
|
670
|
-
| InstrumentationConfigurationWithoutServiceEnv[]
|
|
671
|
-
| undefined;
|
|
667
|
+
LatestConfigurations?: InstrumentationConfigurationWithoutServiceEnv[] | undefined;
|
|
672
668
|
SyncedAt: Date | undefined;
|
|
673
669
|
SyncInterval: number | undefined;
|
|
674
670
|
NextToken?: string | undefined;
|
|
@@ -839,18 +835,14 @@ export interface RequestBasedServiceLevelIndicatorMetricConfig {
|
|
|
839
835
|
OperationName?: string | undefined;
|
|
840
836
|
MetricType?: ServiceLevelIndicatorMetricType | undefined;
|
|
841
837
|
TotalRequestCountMetric?: MetricDataQuery[] | undefined;
|
|
842
|
-
MonitoredRequestCountMetric?:
|
|
843
|
-
| MonitoredRequestCountMetricDataQueries
|
|
844
|
-
| undefined;
|
|
838
|
+
MonitoredRequestCountMetric?: MonitoredRequestCountMetricDataQueries | undefined;
|
|
845
839
|
DependencyConfig?: DependencyConfig | undefined;
|
|
846
840
|
MetricSource?: MetricSource | undefined;
|
|
847
841
|
MetricName?: string | undefined;
|
|
848
842
|
CompositeSliConfig?: CompositeSliConfig | undefined;
|
|
849
843
|
}
|
|
850
844
|
export interface RequestBasedServiceLevelIndicatorConfig {
|
|
851
|
-
RequestBasedSliMetricConfig:
|
|
852
|
-
| RequestBasedServiceLevelIndicatorMetricConfig
|
|
853
|
-
| undefined;
|
|
845
|
+
RequestBasedSliMetricConfig: RequestBasedServiceLevelIndicatorMetricConfig | undefined;
|
|
854
846
|
MetricThreshold?: number | undefined;
|
|
855
847
|
ComparisonOperator?: ServiceLevelIndicatorComparisonOperator | undefined;
|
|
856
848
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@smithy/types";
|
|
2
2
|
import { ApplicationSignalsClient } from "../ApplicationSignalsClient";
|
|
3
|
-
export interface ApplicationSignalsPaginationConfiguration
|
|
4
|
-
extends PaginationConfiguration {
|
|
3
|
+
export interface ApplicationSignalsPaginationConfiguration extends PaginationConfiguration {
|
|
5
4
|
client: ApplicationSignalsClient;
|
|
6
5
|
}
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
2
|
import { ApplicationSignalsClientConfig } from "./ApplicationSignalsClient";
|
|
3
|
-
export declare const getRuntimeConfig: (
|
|
4
|
-
config: ApplicationSignalsClientConfig
|
|
5
|
-
) => {
|
|
3
|
+
export declare const getRuntimeConfig: (config: ApplicationSignalsClientConfig) => {
|
|
6
4
|
runtime: string;
|
|
7
5
|
defaultsMode: import("@smithy/types").Provider<
|
|
8
6
|
import("@smithy/core/client").ResolvedDefaultsMode
|
|
@@ -10,24 +8,16 @@ export declare const getRuntimeConfig: (
|
|
|
10
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
9
|
credentialDefaultProvider:
|
|
12
10
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
-
| ((
|
|
14
|
-
_: unknown
|
|
15
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
16
12
|
defaultUserAgentProvider: (
|
|
17
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
13
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
18
14
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
19
15
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
20
16
|
region: string | import("@smithy/types").Provider<any>;
|
|
21
|
-
requestHandler:
|
|
22
|
-
| import("@smithy/core/protocols").HttpHandler<any>
|
|
23
|
-
| RequestHandler;
|
|
17
|
+
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
24
18
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
25
19
|
streamCollector: (
|
|
26
|
-
stream:
|
|
27
|
-
| import("stream").Readable
|
|
28
|
-
| import("stream/web").ReadableStream
|
|
29
|
-
| ReadableStream
|
|
30
|
-
| Blob
|
|
20
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
31
21
|
) => Promise<Uint8Array>;
|
|
32
22
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
33
23
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
@@ -55,13 +45,8 @@ export declare const getRuntimeConfig: (
|
|
|
55
45
|
logger: import("@smithy/types").Logger;
|
|
56
46
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
57
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
58
|
-
userAgentAppId?:
|
|
59
|
-
|
|
60
|
-
| undefined
|
|
61
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
62
|
-
retryStrategy?:
|
|
63
|
-
| import("@smithy/types").RetryStrategy
|
|
64
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
48
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
49
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
65
50
|
endpoint?:
|
|
66
51
|
| ((
|
|
67
52
|
| string
|
|
@@ -83,7 +68,7 @@ export declare const getRuntimeConfig: (
|
|
|
83
68
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
84
69
|
context?: {
|
|
85
70
|
logger?: import("@smithy/types").Logger;
|
|
86
|
-
}
|
|
71
|
+
},
|
|
87
72
|
) => import("@smithy/types").EndpointV2;
|
|
88
73
|
tls?: boolean;
|
|
89
74
|
serviceConfiguredEndpoint?: never;
|
|
@@ -96,13 +81,13 @@ export declare const getRuntimeConfig: (
|
|
|
96
81
|
signer?:
|
|
97
82
|
| import("@smithy/types").RequestSigner
|
|
98
83
|
| ((
|
|
99
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
100
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
101
86
|
signingEscapePath?: boolean;
|
|
102
87
|
systemClockOffset?: number;
|
|
103
88
|
signingRegion?: string;
|
|
104
89
|
signerConstructor?: new (
|
|
105
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
106
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
107
92
|
) => import("@smithy/types").RequestSigner;
|
|
108
93
|
};
|