@aws-sdk/client-observabilityadmin 3.952.0 → 3.953.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 +488 -332
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/CreateCentralizationRuleForOrganizationCommand.js +2 -2
- package/dist-es/commands/CreateS3TableIntegrationCommand.js +2 -2
- package/dist-es/commands/CreateTelemetryPipelineCommand.js +2 -2
- package/dist-es/commands/CreateTelemetryRuleCommand.js +2 -2
- package/dist-es/commands/CreateTelemetryRuleForOrganizationCommand.js +2 -2
- package/dist-es/commands/DeleteCentralizationRuleForOrganizationCommand.js +2 -2
- package/dist-es/commands/DeleteS3TableIntegrationCommand.js +2 -2
- package/dist-es/commands/DeleteTelemetryPipelineCommand.js +2 -2
- package/dist-es/commands/DeleteTelemetryRuleCommand.js +2 -2
- package/dist-es/commands/DeleteTelemetryRuleForOrganizationCommand.js +2 -2
- package/dist-es/commands/GetCentralizationRuleForOrganizationCommand.js +2 -2
- package/dist-es/commands/GetS3TableIntegrationCommand.js +2 -2
- package/dist-es/commands/GetTelemetryEnrichmentStatusCommand.js +2 -2
- package/dist-es/commands/GetTelemetryEvaluationStatusCommand.js +2 -2
- package/dist-es/commands/GetTelemetryEvaluationStatusForOrganizationCommand.js +2 -2
- package/dist-es/commands/GetTelemetryPipelineCommand.js +2 -2
- package/dist-es/commands/GetTelemetryRuleCommand.js +2 -2
- package/dist-es/commands/GetTelemetryRuleForOrganizationCommand.js +2 -2
- package/dist-es/commands/ListCentralizationRulesForOrganizationCommand.js +2 -2
- package/dist-es/commands/ListResourceTelemetryCommand.js +2 -2
- package/dist-es/commands/ListResourceTelemetryForOrganizationCommand.js +2 -2
- package/dist-es/commands/ListS3TableIntegrationsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/ListTelemetryPipelinesCommand.js +2 -2
- package/dist-es/commands/ListTelemetryRulesCommand.js +2 -2
- package/dist-es/commands/ListTelemetryRulesForOrganizationCommand.js +2 -2
- package/dist-es/commands/StartTelemetryEnrichmentCommand.js +2 -2
- package/dist-es/commands/StartTelemetryEvaluationCommand.js +2 -2
- package/dist-es/commands/StartTelemetryEvaluationForOrganizationCommand.js +2 -2
- package/dist-es/commands/StopTelemetryEnrichmentCommand.js +2 -2
- package/dist-es/commands/StopTelemetryEvaluationCommand.js +2 -2
- package/dist-es/commands/StopTelemetryEvaluationForOrganizationCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/TestTelemetryPipelineCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateCentralizationRuleForOrganizationCommand.js +2 -2
- package/dist-es/commands/UpdateTelemetryPipelineCommand.js +2 -2
- package/dist-es/commands/UpdateTelemetryRuleCommand.js +2 -2
- package/dist-es/commands/UpdateTelemetryRuleForOrganizationCommand.js +2 -2
- package/dist-es/commands/ValidateTelemetryPipelineConfigurationCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +289 -282
- package/dist-types/ObservabilityAdminClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +150 -180
- package/dist-types/ts3.4/ObservabilityAdminClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +149 -180
- package/package.json +34 -34
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateCentralizationRuleForOrganization } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateCentralizationRuleForOrganization$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateCentralizationRuleForOrganizationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateCentralizationRuleForOrganizationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ObservabilityAdmin", "UpdateCentralizationRuleForOrganization", {})
|
|
13
13
|
.n("ObservabilityAdminClient", "UpdateCentralizationRuleForOrganizationCommand")
|
|
14
|
-
.sc(UpdateCentralizationRuleForOrganization)
|
|
14
|
+
.sc(UpdateCentralizationRuleForOrganization$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateTelemetryPipeline } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateTelemetryPipeline$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateTelemetryPipelineCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateTelemetryPipelineCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ObservabilityAdmin", "UpdateTelemetryPipeline", {})
|
|
13
13
|
.n("ObservabilityAdminClient", "UpdateTelemetryPipelineCommand")
|
|
14
|
-
.sc(UpdateTelemetryPipeline)
|
|
14
|
+
.sc(UpdateTelemetryPipeline$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateTelemetryRule } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateTelemetryRule$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateTelemetryRuleCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateTelemetryRuleCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ObservabilityAdmin", "UpdateTelemetryRule", {})
|
|
13
13
|
.n("ObservabilityAdminClient", "UpdateTelemetryRuleCommand")
|
|
14
|
-
.sc(UpdateTelemetryRule)
|
|
14
|
+
.sc(UpdateTelemetryRule$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateTelemetryRuleForOrganization } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateTelemetryRuleForOrganization$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateTelemetryRuleForOrganizationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateTelemetryRuleForOrganizationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ObservabilityAdmin", "UpdateTelemetryRuleForOrganization", {})
|
|
13
13
|
.n("ObservabilityAdminClient", "UpdateTelemetryRuleForOrganizationCommand")
|
|
14
|
-
.sc(UpdateTelemetryRuleForOrganization)
|
|
14
|
+
.sc(UpdateTelemetryRuleForOrganization$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ValidateTelemetryPipelineConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { ValidateTelemetryPipelineConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ValidateTelemetryPipelineConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ValidateTelemetryPipelineConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ObservabilityAdmin", "ValidateTelemetryPipelineConfiguration", {})
|
|
13
13
|
.n("ObservabilityAdminClient", "ValidateTelemetryPipelineConfigurationCommand")
|
|
14
|
-
.sc(ValidateTelemetryPipelineConfiguration)
|
|
14
|
+
.sc(ValidateTelemetryPipelineConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,7 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
26
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.observabilityadmin",
|
|
29
|
+
version: "2018-05-10",
|
|
30
|
+
serviceTarget: "ObservabilityAdmin",
|
|
31
|
+
},
|
|
27
32
|
serviceId: config?.serviceId ?? "ObservabilityAdmin",
|
|
28
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
29
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|