@aws-sdk/client-observabilityadmin 3.702.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/LICENSE +201 -0
- package/README.md +272 -0
- package/dist-cjs/ObservabilityAdmin.js +27 -0
- package/dist-cjs/ObservabilityAdminClient.js +50 -0
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/commands/GetTelemetryEvaluationStatusCommand.js +26 -0
- package/dist-cjs/commands/GetTelemetryEvaluationStatusForOrganizationCommand.js +26 -0
- package/dist-cjs/commands/ListResourceTelemetryCommand.js +26 -0
- package/dist-cjs/commands/ListResourceTelemetryForOrganizationCommand.js +26 -0
- package/dist-cjs/commands/StartTelemetryEvaluationCommand.js +26 -0
- package/dist-cjs/commands/StartTelemetryEvaluationForOrganizationCommand.js +26 -0
- package/dist-cjs/commands/StopTelemetryEvaluationCommand.js +26 -0
- package/dist-cjs/commands/StopTelemetryEvaluationForOrganizationCommand.js +26 -0
- package/dist-cjs/commands/index.js +11 -0
- package/dist-cjs/endpoint/EndpointParameters.js +18 -0
- package/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/extensionConfiguration.js +2 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/ObservabilityAdminServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +72 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListResourceTelemetryForOrganizationPaginator.js +7 -0
- package/dist-cjs/pagination/ListResourceTelemetryPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +6 -0
- package/dist-cjs/protocols/Aws_restJson1.js +287 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +50 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +34 -0
- package/dist-cjs/runtimeExtensions.js +25 -0
- package/dist-es/ObservabilityAdmin.js +23 -0
- package/dist-es/ObservabilityAdminClient.js +46 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/commands/GetTelemetryEvaluationStatusCommand.js +22 -0
- package/dist-es/commands/GetTelemetryEvaluationStatusForOrganizationCommand.js +22 -0
- package/dist-es/commands/ListResourceTelemetryCommand.js +22 -0
- package/dist-es/commands/ListResourceTelemetryForOrganizationCommand.js +22 -0
- package/dist-es/commands/StartTelemetryEvaluationCommand.js +22 -0
- package/dist-es/commands/StartTelemetryEvaluationForOrganizationCommand.js +22 -0
- package/dist-es/commands/StopTelemetryEvaluationCommand.js +22 -0
- package/dist-es/commands/StopTelemetryEvaluationForOrganizationCommand.js +22 -0
- package/dist-es/commands/index.js +8 -0
- package/dist-es/endpoint/EndpointParameters.js +14 -0
- package/dist-es/endpoint/endpointResolver.js +14 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/ObservabilityAdminServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +66 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListResourceTelemetryForOrganizationPaginator.js +4 -0
- package/dist-es/pagination/ListResourceTelemetryPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +268 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +45 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +30 -0
- package/dist-es/runtimeExtensions.js +21 -0
- package/dist-types/ObservabilityAdmin.d.ts +77 -0
- package/dist-types/ObservabilityAdminClient.d.ts +180 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
- package/dist-types/commands/GetTelemetryEvaluationStatusCommand.d.ts +82 -0
- package/dist-types/commands/GetTelemetryEvaluationStatusForOrganizationCommand.d.ts +87 -0
- package/dist-types/commands/ListResourceTelemetryCommand.d.ts +113 -0
- package/dist-types/commands/ListResourceTelemetryForOrganizationCommand.d.ts +116 -0
- package/dist-types/commands/StartTelemetryEvaluationCommand.d.ts +83 -0
- package/dist-types/commands/StartTelemetryEvaluationForOrganizationCommand.d.ts +83 -0
- package/dist-types/commands/StopTelemetryEvaluationCommand.d.ts +83 -0
- package/dist-types/commands/StopTelemetryEvaluationForOrganizationCommand.d.ts +83 -0
- package/dist-types/commands/index.d.ts +8 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +17 -0
- package/dist-types/models/ObservabilityAdminServiceException.d.ts +14 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +344 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListResourceTelemetryForOrganizationPaginator.d.ts +7 -0
- package/dist-types/pagination/ListResourceTelemetryPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +74 -0
- package/dist-types/runtimeConfig.browser.d.ts +48 -0
- package/dist-types/runtimeConfig.d.ts +48 -0
- package/dist-types/runtimeConfig.native.d.ts +47 -0
- package/dist-types/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/ObservabilityAdmin.d.ts +175 -0
- package/dist-types/ts3.4/ObservabilityAdminClient.d.ts +169 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
- package/dist-types/ts3.4/commands/GetTelemetryEvaluationStatusCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetTelemetryEvaluationStatusForOrganizationCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListResourceTelemetryCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListResourceTelemetryForOrganizationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartTelemetryEvaluationCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/StartTelemetryEvaluationForOrganizationCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/StopTelemetryEvaluationCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/StopTelemetryEvaluationForOrganizationCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/index.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +9 -0
- package/dist-types/ts3.4/models/ObservabilityAdminServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +104 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListResourceTelemetryForOrganizationPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListResourceTelemetryPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +101 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +95 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +96 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +89 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +23 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
- package/package.json +101 -0
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
GetTelemetryEvaluationStatusCommandInput,
|
|
4
|
+
GetTelemetryEvaluationStatusCommandOutput,
|
|
5
|
+
} from "./commands/GetTelemetryEvaluationStatusCommand";
|
|
6
|
+
import {
|
|
7
|
+
GetTelemetryEvaluationStatusForOrganizationCommandInput,
|
|
8
|
+
GetTelemetryEvaluationStatusForOrganizationCommandOutput,
|
|
9
|
+
} from "./commands/GetTelemetryEvaluationStatusForOrganizationCommand";
|
|
10
|
+
import {
|
|
11
|
+
ListResourceTelemetryCommandInput,
|
|
12
|
+
ListResourceTelemetryCommandOutput,
|
|
13
|
+
} from "./commands/ListResourceTelemetryCommand";
|
|
14
|
+
import {
|
|
15
|
+
ListResourceTelemetryForOrganizationCommandInput,
|
|
16
|
+
ListResourceTelemetryForOrganizationCommandOutput,
|
|
17
|
+
} from "./commands/ListResourceTelemetryForOrganizationCommand";
|
|
18
|
+
import {
|
|
19
|
+
StartTelemetryEvaluationCommandInput,
|
|
20
|
+
StartTelemetryEvaluationCommandOutput,
|
|
21
|
+
} from "./commands/StartTelemetryEvaluationCommand";
|
|
22
|
+
import {
|
|
23
|
+
StartTelemetryEvaluationForOrganizationCommandInput,
|
|
24
|
+
StartTelemetryEvaluationForOrganizationCommandOutput,
|
|
25
|
+
} from "./commands/StartTelemetryEvaluationForOrganizationCommand";
|
|
26
|
+
import {
|
|
27
|
+
StopTelemetryEvaluationCommandInput,
|
|
28
|
+
StopTelemetryEvaluationCommandOutput,
|
|
29
|
+
} from "./commands/StopTelemetryEvaluationCommand";
|
|
30
|
+
import {
|
|
31
|
+
StopTelemetryEvaluationForOrganizationCommandInput,
|
|
32
|
+
StopTelemetryEvaluationForOrganizationCommandOutput,
|
|
33
|
+
} from "./commands/StopTelemetryEvaluationForOrganizationCommand";
|
|
34
|
+
import { ObservabilityAdminClient } from "./ObservabilityAdminClient";
|
|
35
|
+
export interface ObservabilityAdmin {
|
|
36
|
+
getTelemetryEvaluationStatus(): Promise<GetTelemetryEvaluationStatusCommandOutput>;
|
|
37
|
+
getTelemetryEvaluationStatus(
|
|
38
|
+
args: GetTelemetryEvaluationStatusCommandInput,
|
|
39
|
+
options?: __HttpHandlerOptions
|
|
40
|
+
): Promise<GetTelemetryEvaluationStatusCommandOutput>;
|
|
41
|
+
getTelemetryEvaluationStatus(
|
|
42
|
+
args: GetTelemetryEvaluationStatusCommandInput,
|
|
43
|
+
cb: (err: any, data?: GetTelemetryEvaluationStatusCommandOutput) => void
|
|
44
|
+
): void;
|
|
45
|
+
getTelemetryEvaluationStatus(
|
|
46
|
+
args: GetTelemetryEvaluationStatusCommandInput,
|
|
47
|
+
options: __HttpHandlerOptions,
|
|
48
|
+
cb: (err: any, data?: GetTelemetryEvaluationStatusCommandOutput) => void
|
|
49
|
+
): void;
|
|
50
|
+
getTelemetryEvaluationStatusForOrganization(): Promise<GetTelemetryEvaluationStatusForOrganizationCommandOutput>;
|
|
51
|
+
getTelemetryEvaluationStatusForOrganization(
|
|
52
|
+
args: GetTelemetryEvaluationStatusForOrganizationCommandInput,
|
|
53
|
+
options?: __HttpHandlerOptions
|
|
54
|
+
): Promise<GetTelemetryEvaluationStatusForOrganizationCommandOutput>;
|
|
55
|
+
getTelemetryEvaluationStatusForOrganization(
|
|
56
|
+
args: GetTelemetryEvaluationStatusForOrganizationCommandInput,
|
|
57
|
+
cb: (
|
|
58
|
+
err: any,
|
|
59
|
+
data?: GetTelemetryEvaluationStatusForOrganizationCommandOutput
|
|
60
|
+
) => void
|
|
61
|
+
): void;
|
|
62
|
+
getTelemetryEvaluationStatusForOrganization(
|
|
63
|
+
args: GetTelemetryEvaluationStatusForOrganizationCommandInput,
|
|
64
|
+
options: __HttpHandlerOptions,
|
|
65
|
+
cb: (
|
|
66
|
+
err: any,
|
|
67
|
+
data?: GetTelemetryEvaluationStatusForOrganizationCommandOutput
|
|
68
|
+
) => void
|
|
69
|
+
): void;
|
|
70
|
+
listResourceTelemetry(): Promise<ListResourceTelemetryCommandOutput>;
|
|
71
|
+
listResourceTelemetry(
|
|
72
|
+
args: ListResourceTelemetryCommandInput,
|
|
73
|
+
options?: __HttpHandlerOptions
|
|
74
|
+
): Promise<ListResourceTelemetryCommandOutput>;
|
|
75
|
+
listResourceTelemetry(
|
|
76
|
+
args: ListResourceTelemetryCommandInput,
|
|
77
|
+
cb: (err: any, data?: ListResourceTelemetryCommandOutput) => void
|
|
78
|
+
): void;
|
|
79
|
+
listResourceTelemetry(
|
|
80
|
+
args: ListResourceTelemetryCommandInput,
|
|
81
|
+
options: __HttpHandlerOptions,
|
|
82
|
+
cb: (err: any, data?: ListResourceTelemetryCommandOutput) => void
|
|
83
|
+
): void;
|
|
84
|
+
listResourceTelemetryForOrganization(): Promise<ListResourceTelemetryForOrganizationCommandOutput>;
|
|
85
|
+
listResourceTelemetryForOrganization(
|
|
86
|
+
args: ListResourceTelemetryForOrganizationCommandInput,
|
|
87
|
+
options?: __HttpHandlerOptions
|
|
88
|
+
): Promise<ListResourceTelemetryForOrganizationCommandOutput>;
|
|
89
|
+
listResourceTelemetryForOrganization(
|
|
90
|
+
args: ListResourceTelemetryForOrganizationCommandInput,
|
|
91
|
+
cb: (
|
|
92
|
+
err: any,
|
|
93
|
+
data?: ListResourceTelemetryForOrganizationCommandOutput
|
|
94
|
+
) => void
|
|
95
|
+
): void;
|
|
96
|
+
listResourceTelemetryForOrganization(
|
|
97
|
+
args: ListResourceTelemetryForOrganizationCommandInput,
|
|
98
|
+
options: __HttpHandlerOptions,
|
|
99
|
+
cb: (
|
|
100
|
+
err: any,
|
|
101
|
+
data?: ListResourceTelemetryForOrganizationCommandOutput
|
|
102
|
+
) => void
|
|
103
|
+
): void;
|
|
104
|
+
startTelemetryEvaluation(): Promise<StartTelemetryEvaluationCommandOutput>;
|
|
105
|
+
startTelemetryEvaluation(
|
|
106
|
+
args: StartTelemetryEvaluationCommandInput,
|
|
107
|
+
options?: __HttpHandlerOptions
|
|
108
|
+
): Promise<StartTelemetryEvaluationCommandOutput>;
|
|
109
|
+
startTelemetryEvaluation(
|
|
110
|
+
args: StartTelemetryEvaluationCommandInput,
|
|
111
|
+
cb: (err: any, data?: StartTelemetryEvaluationCommandOutput) => void
|
|
112
|
+
): void;
|
|
113
|
+
startTelemetryEvaluation(
|
|
114
|
+
args: StartTelemetryEvaluationCommandInput,
|
|
115
|
+
options: __HttpHandlerOptions,
|
|
116
|
+
cb: (err: any, data?: StartTelemetryEvaluationCommandOutput) => void
|
|
117
|
+
): void;
|
|
118
|
+
startTelemetryEvaluationForOrganization(): Promise<StartTelemetryEvaluationForOrganizationCommandOutput>;
|
|
119
|
+
startTelemetryEvaluationForOrganization(
|
|
120
|
+
args: StartTelemetryEvaluationForOrganizationCommandInput,
|
|
121
|
+
options?: __HttpHandlerOptions
|
|
122
|
+
): Promise<StartTelemetryEvaluationForOrganizationCommandOutput>;
|
|
123
|
+
startTelemetryEvaluationForOrganization(
|
|
124
|
+
args: StartTelemetryEvaluationForOrganizationCommandInput,
|
|
125
|
+
cb: (
|
|
126
|
+
err: any,
|
|
127
|
+
data?: StartTelemetryEvaluationForOrganizationCommandOutput
|
|
128
|
+
) => void
|
|
129
|
+
): void;
|
|
130
|
+
startTelemetryEvaluationForOrganization(
|
|
131
|
+
args: StartTelemetryEvaluationForOrganizationCommandInput,
|
|
132
|
+
options: __HttpHandlerOptions,
|
|
133
|
+
cb: (
|
|
134
|
+
err: any,
|
|
135
|
+
data?: StartTelemetryEvaluationForOrganizationCommandOutput
|
|
136
|
+
) => void
|
|
137
|
+
): void;
|
|
138
|
+
stopTelemetryEvaluation(): Promise<StopTelemetryEvaluationCommandOutput>;
|
|
139
|
+
stopTelemetryEvaluation(
|
|
140
|
+
args: StopTelemetryEvaluationCommandInput,
|
|
141
|
+
options?: __HttpHandlerOptions
|
|
142
|
+
): Promise<StopTelemetryEvaluationCommandOutput>;
|
|
143
|
+
stopTelemetryEvaluation(
|
|
144
|
+
args: StopTelemetryEvaluationCommandInput,
|
|
145
|
+
cb: (err: any, data?: StopTelemetryEvaluationCommandOutput) => void
|
|
146
|
+
): void;
|
|
147
|
+
stopTelemetryEvaluation(
|
|
148
|
+
args: StopTelemetryEvaluationCommandInput,
|
|
149
|
+
options: __HttpHandlerOptions,
|
|
150
|
+
cb: (err: any, data?: StopTelemetryEvaluationCommandOutput) => void
|
|
151
|
+
): void;
|
|
152
|
+
stopTelemetryEvaluationForOrganization(): Promise<StopTelemetryEvaluationForOrganizationCommandOutput>;
|
|
153
|
+
stopTelemetryEvaluationForOrganization(
|
|
154
|
+
args: StopTelemetryEvaluationForOrganizationCommandInput,
|
|
155
|
+
options?: __HttpHandlerOptions
|
|
156
|
+
): Promise<StopTelemetryEvaluationForOrganizationCommandOutput>;
|
|
157
|
+
stopTelemetryEvaluationForOrganization(
|
|
158
|
+
args: StopTelemetryEvaluationForOrganizationCommandInput,
|
|
159
|
+
cb: (
|
|
160
|
+
err: any,
|
|
161
|
+
data?: StopTelemetryEvaluationForOrganizationCommandOutput
|
|
162
|
+
) => void
|
|
163
|
+
): void;
|
|
164
|
+
stopTelemetryEvaluationForOrganization(
|
|
165
|
+
args: StopTelemetryEvaluationForOrganizationCommandInput,
|
|
166
|
+
options: __HttpHandlerOptions,
|
|
167
|
+
cb: (
|
|
168
|
+
err: any,
|
|
169
|
+
data?: StopTelemetryEvaluationForOrganizationCommandOutput
|
|
170
|
+
) => void
|
|
171
|
+
): void;
|
|
172
|
+
}
|
|
173
|
+
export declare class ObservabilityAdmin
|
|
174
|
+
extends ObservabilityAdminClient
|
|
175
|
+
implements ObservabilityAdmin {}
|
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HostHeaderInputConfig,
|
|
3
|
+
HostHeaderResolvedConfig,
|
|
4
|
+
} from "@aws-sdk/middleware-host-header";
|
|
5
|
+
import {
|
|
6
|
+
UserAgentInputConfig,
|
|
7
|
+
UserAgentResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
9
|
+
import {
|
|
10
|
+
RegionInputConfig,
|
|
11
|
+
RegionResolvedConfig,
|
|
12
|
+
} from "@smithy/config-resolver";
|
|
13
|
+
import {
|
|
14
|
+
EndpointInputConfig,
|
|
15
|
+
EndpointResolvedConfig,
|
|
16
|
+
} from "@smithy/middleware-endpoint";
|
|
17
|
+
import {
|
|
18
|
+
RetryInputConfig,
|
|
19
|
+
RetryResolvedConfig,
|
|
20
|
+
} from "@smithy/middleware-retry";
|
|
21
|
+
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
22
|
+
import {
|
|
23
|
+
Client as __Client,
|
|
24
|
+
DefaultsMode as __DefaultsMode,
|
|
25
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
26
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
27
|
+
} from "@smithy/smithy-client";
|
|
28
|
+
import {
|
|
29
|
+
AwsCredentialIdentityProvider,
|
|
30
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
|
+
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
|
+
ChecksumConstructor as __ChecksumConstructor,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
Provider,
|
|
40
|
+
StreamCollector as __StreamCollector,
|
|
41
|
+
UrlParser as __UrlParser,
|
|
42
|
+
UserAgent as __UserAgent,
|
|
43
|
+
} from "@smithy/types";
|
|
44
|
+
import {
|
|
45
|
+
HttpAuthSchemeInputConfig,
|
|
46
|
+
HttpAuthSchemeResolvedConfig,
|
|
47
|
+
} from "./auth/httpAuthSchemeProvider";
|
|
48
|
+
import {
|
|
49
|
+
GetTelemetryEvaluationStatusCommandInput,
|
|
50
|
+
GetTelemetryEvaluationStatusCommandOutput,
|
|
51
|
+
} from "./commands/GetTelemetryEvaluationStatusCommand";
|
|
52
|
+
import {
|
|
53
|
+
GetTelemetryEvaluationStatusForOrganizationCommandInput,
|
|
54
|
+
GetTelemetryEvaluationStatusForOrganizationCommandOutput,
|
|
55
|
+
} from "./commands/GetTelemetryEvaluationStatusForOrganizationCommand";
|
|
56
|
+
import {
|
|
57
|
+
ListResourceTelemetryCommandInput,
|
|
58
|
+
ListResourceTelemetryCommandOutput,
|
|
59
|
+
} from "./commands/ListResourceTelemetryCommand";
|
|
60
|
+
import {
|
|
61
|
+
ListResourceTelemetryForOrganizationCommandInput,
|
|
62
|
+
ListResourceTelemetryForOrganizationCommandOutput,
|
|
63
|
+
} from "./commands/ListResourceTelemetryForOrganizationCommand";
|
|
64
|
+
import {
|
|
65
|
+
StartTelemetryEvaluationCommandInput,
|
|
66
|
+
StartTelemetryEvaluationCommandOutput,
|
|
67
|
+
} from "./commands/StartTelemetryEvaluationCommand";
|
|
68
|
+
import {
|
|
69
|
+
StartTelemetryEvaluationForOrganizationCommandInput,
|
|
70
|
+
StartTelemetryEvaluationForOrganizationCommandOutput,
|
|
71
|
+
} from "./commands/StartTelemetryEvaluationForOrganizationCommand";
|
|
72
|
+
import {
|
|
73
|
+
StopTelemetryEvaluationCommandInput,
|
|
74
|
+
StopTelemetryEvaluationCommandOutput,
|
|
75
|
+
} from "./commands/StopTelemetryEvaluationCommand";
|
|
76
|
+
import {
|
|
77
|
+
StopTelemetryEvaluationForOrganizationCommandInput,
|
|
78
|
+
StopTelemetryEvaluationForOrganizationCommandOutput,
|
|
79
|
+
} from "./commands/StopTelemetryEvaluationForOrganizationCommand";
|
|
80
|
+
import {
|
|
81
|
+
ClientInputEndpointParameters,
|
|
82
|
+
ClientResolvedEndpointParameters,
|
|
83
|
+
EndpointParameters,
|
|
84
|
+
} from "./endpoint/EndpointParameters";
|
|
85
|
+
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
86
|
+
export { __Client };
|
|
87
|
+
export type ServiceInputTypes =
|
|
88
|
+
| GetTelemetryEvaluationStatusCommandInput
|
|
89
|
+
| GetTelemetryEvaluationStatusForOrganizationCommandInput
|
|
90
|
+
| ListResourceTelemetryCommandInput
|
|
91
|
+
| ListResourceTelemetryForOrganizationCommandInput
|
|
92
|
+
| StartTelemetryEvaluationCommandInput
|
|
93
|
+
| StartTelemetryEvaluationForOrganizationCommandInput
|
|
94
|
+
| StopTelemetryEvaluationCommandInput
|
|
95
|
+
| StopTelemetryEvaluationForOrganizationCommandInput;
|
|
96
|
+
export type ServiceOutputTypes =
|
|
97
|
+
| GetTelemetryEvaluationStatusCommandOutput
|
|
98
|
+
| GetTelemetryEvaluationStatusForOrganizationCommandOutput
|
|
99
|
+
| ListResourceTelemetryCommandOutput
|
|
100
|
+
| ListResourceTelemetryForOrganizationCommandOutput
|
|
101
|
+
| StartTelemetryEvaluationCommandOutput
|
|
102
|
+
| StartTelemetryEvaluationForOrganizationCommandOutput
|
|
103
|
+
| StopTelemetryEvaluationCommandOutput
|
|
104
|
+
| StopTelemetryEvaluationForOrganizationCommandOutput;
|
|
105
|
+
export interface ClientDefaults
|
|
106
|
+
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
107
|
+
requestHandler?: __HttpHandlerUserInput;
|
|
108
|
+
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
109
|
+
urlParser?: __UrlParser;
|
|
110
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
111
|
+
streamCollector?: __StreamCollector;
|
|
112
|
+
base64Decoder?: __Decoder;
|
|
113
|
+
base64Encoder?: __Encoder;
|
|
114
|
+
utf8Decoder?: __Decoder;
|
|
115
|
+
utf8Encoder?: __Encoder;
|
|
116
|
+
runtime?: string;
|
|
117
|
+
disableHostPrefix?: boolean;
|
|
118
|
+
serviceId?: string;
|
|
119
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
120
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
121
|
+
region?: string | __Provider<string>;
|
|
122
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
123
|
+
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
124
|
+
maxAttempts?: number | __Provider<number>;
|
|
125
|
+
retryMode?: string | __Provider<string>;
|
|
126
|
+
logger?: __Logger;
|
|
127
|
+
extensions?: RuntimeExtension[];
|
|
128
|
+
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
129
|
+
}
|
|
130
|
+
export type ObservabilityAdminClientConfigType = Partial<
|
|
131
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
132
|
+
> &
|
|
133
|
+
ClientDefaults &
|
|
134
|
+
UserAgentInputConfig &
|
|
135
|
+
RetryInputConfig &
|
|
136
|
+
RegionInputConfig &
|
|
137
|
+
HostHeaderInputConfig &
|
|
138
|
+
EndpointInputConfig<EndpointParameters> &
|
|
139
|
+
HttpAuthSchemeInputConfig &
|
|
140
|
+
ClientInputEndpointParameters;
|
|
141
|
+
export interface ObservabilityAdminClientConfig
|
|
142
|
+
extends ObservabilityAdminClientConfigType {}
|
|
143
|
+
export type ObservabilityAdminClientResolvedConfigType =
|
|
144
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
145
|
+
Required<ClientDefaults> &
|
|
146
|
+
RuntimeExtensionsConfig &
|
|
147
|
+
UserAgentResolvedConfig &
|
|
148
|
+
RetryResolvedConfig &
|
|
149
|
+
RegionResolvedConfig &
|
|
150
|
+
HostHeaderResolvedConfig &
|
|
151
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
152
|
+
HttpAuthSchemeResolvedConfig &
|
|
153
|
+
ClientResolvedEndpointParameters;
|
|
154
|
+
export interface ObservabilityAdminClientResolvedConfig
|
|
155
|
+
extends ObservabilityAdminClientResolvedConfigType {}
|
|
156
|
+
export declare class ObservabilityAdminClient extends __Client<
|
|
157
|
+
__HttpHandlerOptions,
|
|
158
|
+
ServiceInputTypes,
|
|
159
|
+
ServiceOutputTypes,
|
|
160
|
+
ObservabilityAdminClientResolvedConfig
|
|
161
|
+
> {
|
|
162
|
+
readonly config: ObservabilityAdminClientResolvedConfig;
|
|
163
|
+
constructor(
|
|
164
|
+
...[
|
|
165
|
+
configuration,
|
|
166
|
+
]: __CheckOptionalClientConfig<ObservabilityAdminClientConfig>
|
|
167
|
+
);
|
|
168
|
+
destroy(): void;
|
|
169
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AwsCredentialIdentity,
|
|
3
|
+
AwsCredentialIdentityProvider,
|
|
4
|
+
HttpAuthScheme,
|
|
5
|
+
} from "@smithy/types";
|
|
6
|
+
import { ObservabilityAdminHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
7
|
+
export interface HttpAuthExtensionConfiguration {
|
|
8
|
+
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
|
+
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
+
setHttpAuthSchemeProvider(
|
|
11
|
+
httpAuthSchemeProvider: ObservabilityAdminHttpAuthSchemeProvider
|
|
12
|
+
): void;
|
|
13
|
+
httpAuthSchemeProvider(): ObservabilityAdminHttpAuthSchemeProvider;
|
|
14
|
+
setCredentials(
|
|
15
|
+
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
|
|
16
|
+
): void;
|
|
17
|
+
credentials():
|
|
18
|
+
| AwsCredentialIdentity
|
|
19
|
+
| AwsCredentialIdentityProvider
|
|
20
|
+
| undefined;
|
|
21
|
+
}
|
|
22
|
+
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
|
+
httpAuthSchemes: HttpAuthScheme[];
|
|
24
|
+
httpAuthSchemeProvider: ObservabilityAdminHttpAuthSchemeProvider;
|
|
25
|
+
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
|
+
}>;
|
|
27
|
+
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
+
runtimeConfig: HttpAuthRuntimeConfig
|
|
29
|
+
) => HttpAuthExtensionConfiguration;
|
|
30
|
+
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
+
config: HttpAuthExtensionConfiguration
|
|
32
|
+
) => HttpAuthRuntimeConfig;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AwsSdkSigV4AuthInputConfig,
|
|
3
|
+
AwsSdkSigV4AuthResolvedConfig,
|
|
4
|
+
AwsSdkSigV4PreviouslyResolved,
|
|
5
|
+
} from "@aws-sdk/core";
|
|
6
|
+
import {
|
|
7
|
+
HandlerExecutionContext,
|
|
8
|
+
HttpAuthScheme,
|
|
9
|
+
HttpAuthSchemeParameters,
|
|
10
|
+
HttpAuthSchemeParametersProvider,
|
|
11
|
+
HttpAuthSchemeProvider,
|
|
12
|
+
} from "@smithy/types";
|
|
13
|
+
import { ObservabilityAdminClientResolvedConfig } from "../ObservabilityAdminClient";
|
|
14
|
+
export interface ObservabilityAdminHttpAuthSchemeParameters
|
|
15
|
+
extends HttpAuthSchemeParameters {
|
|
16
|
+
region?: string;
|
|
17
|
+
}
|
|
18
|
+
export interface ObservabilityAdminHttpAuthSchemeParametersProvider
|
|
19
|
+
extends HttpAuthSchemeParametersProvider<
|
|
20
|
+
ObservabilityAdminClientResolvedConfig,
|
|
21
|
+
HandlerExecutionContext,
|
|
22
|
+
ObservabilityAdminHttpAuthSchemeParameters,
|
|
23
|
+
object
|
|
24
|
+
> {}
|
|
25
|
+
export declare const defaultObservabilityAdminHttpAuthSchemeParametersProvider: (
|
|
26
|
+
config: ObservabilityAdminClientResolvedConfig,
|
|
27
|
+
context: HandlerExecutionContext,
|
|
28
|
+
input: object
|
|
29
|
+
) => Promise<ObservabilityAdminHttpAuthSchemeParameters>;
|
|
30
|
+
export interface ObservabilityAdminHttpAuthSchemeProvider
|
|
31
|
+
extends HttpAuthSchemeProvider<ObservabilityAdminHttpAuthSchemeParameters> {}
|
|
32
|
+
export declare const defaultObservabilityAdminHttpAuthSchemeProvider: ObservabilityAdminHttpAuthSchemeProvider;
|
|
33
|
+
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
34
|
+
httpAuthSchemes?: HttpAuthScheme[];
|
|
35
|
+
httpAuthSchemeProvider?: ObservabilityAdminHttpAuthSchemeProvider;
|
|
36
|
+
}
|
|
37
|
+
export interface HttpAuthSchemeResolvedConfig
|
|
38
|
+
extends AwsSdkSigV4AuthResolvedConfig {
|
|
39
|
+
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
40
|
+
readonly httpAuthSchemeProvider: ObservabilityAdminHttpAuthSchemeProvider;
|
|
41
|
+
}
|
|
42
|
+
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
43
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
44
|
+
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { GetTelemetryEvaluationStatusOutput } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
ObservabilityAdminClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../ObservabilityAdminClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface GetTelemetryEvaluationStatusCommandInput {}
|
|
12
|
+
export interface GetTelemetryEvaluationStatusCommandOutput
|
|
13
|
+
extends GetTelemetryEvaluationStatusOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const GetTelemetryEvaluationStatusCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: GetTelemetryEvaluationStatusCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
GetTelemetryEvaluationStatusCommandInput,
|
|
20
|
+
GetTelemetryEvaluationStatusCommandOutput,
|
|
21
|
+
ObservabilityAdminClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
...[input]: [] | [GetTelemetryEvaluationStatusCommandInput]
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
GetTelemetryEvaluationStatusCommandInput,
|
|
29
|
+
GetTelemetryEvaluationStatusCommandOutput,
|
|
30
|
+
ObservabilityAdminClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class GetTelemetryEvaluationStatusCommand extends GetTelemetryEvaluationStatusCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: {};
|
|
40
|
+
output: GetTelemetryEvaluationStatusOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: GetTelemetryEvaluationStatusCommandInput;
|
|
44
|
+
output: GetTelemetryEvaluationStatusCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { GetTelemetryEvaluationStatusForOrganizationOutput } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
ObservabilityAdminClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../ObservabilityAdminClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface GetTelemetryEvaluationStatusForOrganizationCommandInput {}
|
|
12
|
+
export interface GetTelemetryEvaluationStatusForOrganizationCommandOutput
|
|
13
|
+
extends GetTelemetryEvaluationStatusForOrganizationOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const GetTelemetryEvaluationStatusForOrganizationCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: GetTelemetryEvaluationStatusForOrganizationCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
GetTelemetryEvaluationStatusForOrganizationCommandInput,
|
|
20
|
+
GetTelemetryEvaluationStatusForOrganizationCommandOutput,
|
|
21
|
+
ObservabilityAdminClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
...[input]: [] | [GetTelemetryEvaluationStatusForOrganizationCommandInput]
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
GetTelemetryEvaluationStatusForOrganizationCommandInput,
|
|
29
|
+
GetTelemetryEvaluationStatusForOrganizationCommandOutput,
|
|
30
|
+
ObservabilityAdminClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class GetTelemetryEvaluationStatusForOrganizationCommand extends GetTelemetryEvaluationStatusForOrganizationCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: {};
|
|
40
|
+
output: GetTelemetryEvaluationStatusForOrganizationOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: GetTelemetryEvaluationStatusForOrganizationCommandInput;
|
|
44
|
+
output: GetTelemetryEvaluationStatusForOrganizationCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListResourceTelemetryInput,
|
|
5
|
+
ListResourceTelemetryOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ObservabilityAdminClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../ObservabilityAdminClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListResourceTelemetryCommandInput
|
|
15
|
+
extends ListResourceTelemetryInput {}
|
|
16
|
+
export interface ListResourceTelemetryCommandOutput
|
|
17
|
+
extends ListResourceTelemetryOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListResourceTelemetryCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListResourceTelemetryCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListResourceTelemetryCommandInput,
|
|
24
|
+
ListResourceTelemetryCommandOutput,
|
|
25
|
+
ObservabilityAdminClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListResourceTelemetryCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListResourceTelemetryCommandInput,
|
|
33
|
+
ListResourceTelemetryCommandOutput,
|
|
34
|
+
ObservabilityAdminClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListResourceTelemetryCommand extends ListResourceTelemetryCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListResourceTelemetryInput;
|
|
44
|
+
output: ListResourceTelemetryOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListResourceTelemetryCommandInput;
|
|
48
|
+
output: ListResourceTelemetryCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListResourceTelemetryForOrganizationInput,
|
|
5
|
+
ListResourceTelemetryForOrganizationOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ObservabilityAdminClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../ObservabilityAdminClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListResourceTelemetryForOrganizationCommandInput
|
|
15
|
+
extends ListResourceTelemetryForOrganizationInput {}
|
|
16
|
+
export interface ListResourceTelemetryForOrganizationCommandOutput
|
|
17
|
+
extends ListResourceTelemetryForOrganizationOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListResourceTelemetryForOrganizationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListResourceTelemetryForOrganizationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListResourceTelemetryForOrganizationCommandInput,
|
|
24
|
+
ListResourceTelemetryForOrganizationCommandOutput,
|
|
25
|
+
ObservabilityAdminClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListResourceTelemetryForOrganizationCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListResourceTelemetryForOrganizationCommandInput,
|
|
33
|
+
ListResourceTelemetryForOrganizationCommandOutput,
|
|
34
|
+
ObservabilityAdminClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListResourceTelemetryForOrganizationCommand extends ListResourceTelemetryForOrganizationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListResourceTelemetryForOrganizationInput;
|
|
44
|
+
output: ListResourceTelemetryForOrganizationOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListResourceTelemetryForOrganizationCommandInput;
|
|
48
|
+
output: ListResourceTelemetryForOrganizationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ObservabilityAdminClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ObservabilityAdminClient";
|
|
8
|
+
export { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
export interface StartTelemetryEvaluationCommandInput {}
|
|
11
|
+
export interface StartTelemetryEvaluationCommandOutput
|
|
12
|
+
extends __MetadataBearer {}
|
|
13
|
+
declare const StartTelemetryEvaluationCommand_base: {
|
|
14
|
+
new (
|
|
15
|
+
input: StartTelemetryEvaluationCommandInput
|
|
16
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
17
|
+
StartTelemetryEvaluationCommandInput,
|
|
18
|
+
StartTelemetryEvaluationCommandOutput,
|
|
19
|
+
ObservabilityAdminClientResolvedConfig,
|
|
20
|
+
ServiceInputTypes,
|
|
21
|
+
ServiceOutputTypes
|
|
22
|
+
>;
|
|
23
|
+
new (
|
|
24
|
+
...[input]: [] | [StartTelemetryEvaluationCommandInput]
|
|
25
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
26
|
+
StartTelemetryEvaluationCommandInput,
|
|
27
|
+
StartTelemetryEvaluationCommandOutput,
|
|
28
|
+
ObservabilityAdminClientResolvedConfig,
|
|
29
|
+
ServiceInputTypes,
|
|
30
|
+
ServiceOutputTypes
|
|
31
|
+
>;
|
|
32
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
33
|
+
};
|
|
34
|
+
export declare class StartTelemetryEvaluationCommand extends StartTelemetryEvaluationCommand_base {
|
|
35
|
+
protected static __types: {
|
|
36
|
+
api: {
|
|
37
|
+
input: {};
|
|
38
|
+
output: {};
|
|
39
|
+
};
|
|
40
|
+
sdk: {
|
|
41
|
+
input: StartTelemetryEvaluationCommandInput;
|
|
42
|
+
output: StartTelemetryEvaluationCommandOutput;
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
}
|