@aws-sdk/client-observabilityadmin 3.858.0 → 3.862.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/README.md +105 -1
- package/dist-cjs/ObservabilityAdmin.js +26 -0
- package/dist-cjs/commands/CreateTelemetryRuleCommand.js +26 -0
- package/dist-cjs/commands/CreateTelemetryRuleForOrganizationCommand.js +26 -0
- package/dist-cjs/commands/DeleteTelemetryRuleCommand.js +26 -0
- package/dist-cjs/commands/DeleteTelemetryRuleForOrganizationCommand.js +26 -0
- package/dist-cjs/commands/GetTelemetryRuleCommand.js +26 -0
- package/dist-cjs/commands/GetTelemetryRuleForOrganizationCommand.js +26 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +26 -0
- package/dist-cjs/commands/ListTelemetryRulesCommand.js +26 -0
- package/dist-cjs/commands/ListTelemetryRulesForOrganizationCommand.js +26 -0
- package/dist-cjs/commands/TagResourceCommand.js +26 -0
- package/dist-cjs/commands/UntagResourceCommand.js +26 -0
- package/dist-cjs/commands/UpdateTelemetryRuleCommand.js +26 -0
- package/dist-cjs/commands/UpdateTelemetryRuleForOrganizationCommand.js +26 -0
- package/dist-cjs/commands/index.js +13 -0
- package/dist-cjs/models/models_0.js +83 -18
- package/dist-cjs/pagination/ListTelemetryRulesForOrganizationPaginator.js +7 -0
- package/dist-cjs/pagination/ListTelemetryRulesPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_restJson1.js +452 -1
- package/dist-es/ObservabilityAdmin.js +26 -0
- package/dist-es/commands/CreateTelemetryRuleCommand.js +22 -0
- package/dist-es/commands/CreateTelemetryRuleForOrganizationCommand.js +22 -0
- package/dist-es/commands/DeleteTelemetryRuleCommand.js +22 -0
- package/dist-es/commands/DeleteTelemetryRuleForOrganizationCommand.js +22 -0
- package/dist-es/commands/GetTelemetryRuleCommand.js +22 -0
- package/dist-es/commands/GetTelemetryRuleForOrganizationCommand.js +22 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +22 -0
- package/dist-es/commands/ListTelemetryRulesCommand.js +22 -0
- package/dist-es/commands/ListTelemetryRulesForOrganizationCommand.js +22 -0
- package/dist-es/commands/TagResourceCommand.js +22 -0
- package/dist-es/commands/UntagResourceCommand.js +22 -0
- package/dist-es/commands/UpdateTelemetryRuleCommand.js +22 -0
- package/dist-es/commands/UpdateTelemetryRuleForOrganizationCommand.js +22 -0
- package/dist-es/commands/index.js +13 -0
- package/dist-es/models/models_0.js +78 -17
- package/dist-es/pagination/ListTelemetryRulesForOrganizationPaginator.js +4 -0
- package/dist-es/pagination/ListTelemetryRulesPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +427 -2
- package/dist-types/ObservabilityAdmin.d.ts +94 -1
- package/dist-types/ObservabilityAdminClient.d.ts +16 -3
- package/dist-types/commands/CreateTelemetryRuleCommand.d.ts +123 -0
- package/dist-types/commands/CreateTelemetryRuleForOrganizationCommand.d.ts +123 -0
- package/dist-types/commands/DeleteTelemetryRuleCommand.d.ts +97 -0
- package/dist-types/commands/DeleteTelemetryRuleForOrganizationCommand.d.ts +97 -0
- package/dist-types/commands/GetTelemetryEvaluationStatusCommand.d.ts +6 -1
- package/dist-types/commands/GetTelemetryEvaluationStatusForOrganizationCommand.d.ts +7 -2
- package/dist-types/commands/GetTelemetryRuleCommand.d.ts +118 -0
- package/dist-types/commands/GetTelemetryRuleForOrganizationCommand.d.ts +118 -0
- package/dist-types/commands/ListResourceTelemetryCommand.d.ts +7 -2
- package/dist-types/commands/ListResourceTelemetryForOrganizationCommand.d.ts +7 -2
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +101 -0
- package/dist-types/commands/ListTelemetryRulesCommand.d.ts +106 -0
- package/dist-types/commands/ListTelemetryRulesForOrganizationCommand.d.ts +112 -0
- package/dist-types/commands/StartTelemetryEvaluationCommand.d.ts +7 -2
- package/dist-types/commands/StartTelemetryEvaluationForOrganizationCommand.d.ts +6 -1
- package/dist-types/commands/StopTelemetryEvaluationCommand.d.ts +7 -2
- package/dist-types/commands/StopTelemetryEvaluationForOrganizationCommand.d.ts +7 -2
- package/dist-types/commands/TagResourceCommand.d.ts +105 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +100 -0
- package/dist-types/commands/UpdateTelemetryRuleCommand.d.ts +120 -0
- package/dist-types/commands/UpdateTelemetryRuleForOrganizationCommand.d.ts +120 -0
- package/dist-types/commands/index.d.ts +13 -0
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +707 -39
- package/dist-types/pagination/ListTelemetryRulesForOrganizationPaginator.d.ts +7 -0
- package/dist-types/pagination/ListTelemetryRulesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +117 -0
- package/dist-types/ts3.4/ObservabilityAdmin.d.ts +247 -0
- package/dist-types/ts3.4/ObservabilityAdminClient.d.ts +80 -2
- package/dist-types/ts3.4/commands/CreateTelemetryRuleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateTelemetryRuleForOrganizationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteTelemetryRuleCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/DeleteTelemetryRuleForOrganizationCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetTelemetryRuleCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetTelemetryRuleForOrganizationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListTelemetryRulesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListTelemetryRulesForOrganizationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/UpdateTelemetryRuleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateTelemetryRuleForOrganizationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +13 -0
- package/dist-types/ts3.4/models/models_0.d.ts +178 -26
- package/dist-types/ts3.4/pagination/ListTelemetryRulesForOrganizationPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListTelemetryRulesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +156 -0
- package/package.json +33 -33
|
@@ -9,19 +9,54 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
9
9
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
10
10
|
);
|
|
11
11
|
}
|
|
12
|
-
export declare
|
|
13
|
-
readonly
|
|
14
|
-
readonly
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
readonly
|
|
12
|
+
export declare class ConflictException extends __BaseException {
|
|
13
|
+
readonly name: "ConflictException";
|
|
14
|
+
readonly $fault: "client";
|
|
15
|
+
Message?: string | undefined;
|
|
16
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
17
|
+
}
|
|
18
|
+
export declare const DestinationType: {
|
|
19
|
+
readonly CLOUDWATCH_LOGS: "cloud-watch-logs";
|
|
20
20
|
};
|
|
21
|
-
export type
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
21
|
+
export type DestinationType =
|
|
22
|
+
(typeof DestinationType)[keyof typeof DestinationType];
|
|
23
|
+
export interface VPCFlowLogParameters {
|
|
24
|
+
LogFormat?: string | undefined;
|
|
25
|
+
TrafficType?: string | undefined;
|
|
26
|
+
MaxAggregationInterval?: number | undefined;
|
|
27
|
+
}
|
|
28
|
+
export interface TelemetryDestinationConfiguration {
|
|
29
|
+
DestinationType?: DestinationType | undefined;
|
|
30
|
+
DestinationPattern?: string | undefined;
|
|
31
|
+
RetentionInDays?: number | undefined;
|
|
32
|
+
VPCFlowLogParameters?: VPCFlowLogParameters | undefined;
|
|
33
|
+
}
|
|
34
|
+
export declare const ResourceType: {
|
|
35
|
+
readonly AWS_EC2_INSTANCE: "AWS::EC2::Instance";
|
|
36
|
+
readonly AWS_EC2_VPC: "AWS::EC2::VPC";
|
|
37
|
+
readonly AWS_LAMDBA_FUNCTION: "AWS::Lambda::Function";
|
|
38
|
+
};
|
|
39
|
+
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
40
|
+
export declare const TelemetryType: {
|
|
41
|
+
readonly LOGS: "Logs";
|
|
42
|
+
readonly METRICS: "Metrics";
|
|
43
|
+
readonly TRACES: "Traces";
|
|
44
|
+
};
|
|
45
|
+
export type TelemetryType = (typeof TelemetryType)[keyof typeof TelemetryType];
|
|
46
|
+
export interface TelemetryRule {
|
|
47
|
+
ResourceType?: ResourceType | undefined;
|
|
48
|
+
TelemetryType: TelemetryType | undefined;
|
|
49
|
+
DestinationConfiguration?: TelemetryDestinationConfiguration | undefined;
|
|
50
|
+
Scope?: string | undefined;
|
|
51
|
+
SelectionCriteria?: string | undefined;
|
|
52
|
+
}
|
|
53
|
+
export interface CreateTelemetryRuleInput {
|
|
54
|
+
RuleName: string | undefined;
|
|
55
|
+
Rule: TelemetryRule | undefined;
|
|
56
|
+
Tags?: Record<string, string> | undefined;
|
|
57
|
+
}
|
|
58
|
+
export interface CreateTelemetryRuleOutput {
|
|
59
|
+
RuleArn?: string | undefined;
|
|
25
60
|
}
|
|
26
61
|
export declare class InternalServerException extends __BaseException {
|
|
27
62
|
readonly name: "InternalServerException";
|
|
@@ -32,9 +67,22 @@ export declare class InternalServerException extends __BaseException {
|
|
|
32
67
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
33
68
|
);
|
|
34
69
|
}
|
|
35
|
-
export
|
|
36
|
-
|
|
37
|
-
|
|
70
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
71
|
+
readonly name: "ServiceQuotaExceededException";
|
|
72
|
+
readonly $fault: "client";
|
|
73
|
+
Message?: string | undefined;
|
|
74
|
+
amznErrorType?: string | undefined;
|
|
75
|
+
constructor(
|
|
76
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
77
|
+
);
|
|
78
|
+
}
|
|
79
|
+
export declare class TooManyRequestsException extends __BaseException {
|
|
80
|
+
readonly name: "TooManyRequestsException";
|
|
81
|
+
readonly $fault: "client";
|
|
82
|
+
Message?: string | undefined;
|
|
83
|
+
constructor(
|
|
84
|
+
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
85
|
+
);
|
|
38
86
|
}
|
|
39
87
|
export declare class ValidationException extends __BaseException {
|
|
40
88
|
readonly name: "ValidationException";
|
|
@@ -44,18 +92,66 @@ export declare class ValidationException extends __BaseException {
|
|
|
44
92
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
45
93
|
);
|
|
46
94
|
}
|
|
47
|
-
export
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
}
|
|
52
|
-
export
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
95
|
+
export interface CreateTelemetryRuleForOrganizationInput {
|
|
96
|
+
RuleName: string | undefined;
|
|
97
|
+
Rule: TelemetryRule | undefined;
|
|
98
|
+
Tags?: Record<string, string> | undefined;
|
|
99
|
+
}
|
|
100
|
+
export interface CreateTelemetryRuleForOrganizationOutput {
|
|
101
|
+
RuleArn?: string | undefined;
|
|
102
|
+
}
|
|
103
|
+
export interface DeleteTelemetryRuleInput {
|
|
104
|
+
RuleIdentifier: string | undefined;
|
|
105
|
+
}
|
|
106
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
107
|
+
readonly name: "ResourceNotFoundException";
|
|
108
|
+
readonly $fault: "client";
|
|
109
|
+
Message?: string | undefined;
|
|
110
|
+
constructor(
|
|
111
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
112
|
+
);
|
|
113
|
+
}
|
|
114
|
+
export interface DeleteTelemetryRuleForOrganizationInput {
|
|
115
|
+
RuleIdentifier: string | undefined;
|
|
116
|
+
}
|
|
117
|
+
export declare const Status: {
|
|
118
|
+
readonly FAILED_START: "FAILED_START";
|
|
119
|
+
readonly FAILED_STOP: "FAILED_STOP";
|
|
120
|
+
readonly NOT_STARTED: "NOT_STARTED";
|
|
121
|
+
readonly RUNNING: "RUNNING";
|
|
122
|
+
readonly STARTING: "STARTING";
|
|
123
|
+
readonly STOPPED: "STOPPED";
|
|
124
|
+
readonly STOPPING: "STOPPING";
|
|
57
125
|
};
|
|
58
|
-
export type
|
|
126
|
+
export type Status = (typeof Status)[keyof typeof Status];
|
|
127
|
+
export interface GetTelemetryEvaluationStatusOutput {
|
|
128
|
+
Status?: Status | undefined;
|
|
129
|
+
FailureReason?: string | undefined;
|
|
130
|
+
}
|
|
131
|
+
export interface GetTelemetryEvaluationStatusForOrganizationOutput {
|
|
132
|
+
Status?: Status | undefined;
|
|
133
|
+
FailureReason?: string | undefined;
|
|
134
|
+
}
|
|
135
|
+
export interface GetTelemetryRuleInput {
|
|
136
|
+
RuleIdentifier: string | undefined;
|
|
137
|
+
}
|
|
138
|
+
export interface GetTelemetryRuleOutput {
|
|
139
|
+
RuleName?: string | undefined;
|
|
140
|
+
RuleArn?: string | undefined;
|
|
141
|
+
CreatedTimeStamp?: number | undefined;
|
|
142
|
+
LastUpdateTimeStamp?: number | undefined;
|
|
143
|
+
TelemetryRule?: TelemetryRule | undefined;
|
|
144
|
+
}
|
|
145
|
+
export interface GetTelemetryRuleForOrganizationInput {
|
|
146
|
+
RuleIdentifier: string | undefined;
|
|
147
|
+
}
|
|
148
|
+
export interface GetTelemetryRuleForOrganizationOutput {
|
|
149
|
+
RuleName?: string | undefined;
|
|
150
|
+
RuleArn?: string | undefined;
|
|
151
|
+
CreatedTimeStamp?: number | undefined;
|
|
152
|
+
LastUpdateTimeStamp?: number | undefined;
|
|
153
|
+
TelemetryRule?: TelemetryRule | undefined;
|
|
154
|
+
}
|
|
59
155
|
export declare const TelemetryState: {
|
|
60
156
|
readonly DISABLED: "Disabled";
|
|
61
157
|
readonly ENABLED: "Enabled";
|
|
@@ -102,3 +198,59 @@ export interface ListResourceTelemetryForOrganizationOutput {
|
|
|
102
198
|
TelemetryConfigurations?: TelemetryConfiguration[] | undefined;
|
|
103
199
|
NextToken?: string | undefined;
|
|
104
200
|
}
|
|
201
|
+
export interface ListTagsForResourceInput {
|
|
202
|
+
ResourceARN: string | undefined;
|
|
203
|
+
}
|
|
204
|
+
export interface ListTagsForResourceOutput {
|
|
205
|
+
Tags: Record<string, string> | undefined;
|
|
206
|
+
}
|
|
207
|
+
export interface ListTelemetryRulesInput {
|
|
208
|
+
RuleNamePrefix?: string | undefined;
|
|
209
|
+
MaxResults?: number | undefined;
|
|
210
|
+
NextToken?: string | undefined;
|
|
211
|
+
}
|
|
212
|
+
export interface TelemetryRuleSummary {
|
|
213
|
+
RuleName?: string | undefined;
|
|
214
|
+
RuleArn?: string | undefined;
|
|
215
|
+
CreatedTimeStamp?: number | undefined;
|
|
216
|
+
LastUpdateTimeStamp?: number | undefined;
|
|
217
|
+
ResourceType?: ResourceType | undefined;
|
|
218
|
+
TelemetryType?: TelemetryType | undefined;
|
|
219
|
+
}
|
|
220
|
+
export interface ListTelemetryRulesOutput {
|
|
221
|
+
TelemetryRuleSummaries?: TelemetryRuleSummary[] | undefined;
|
|
222
|
+
NextToken?: string | undefined;
|
|
223
|
+
}
|
|
224
|
+
export interface ListTelemetryRulesForOrganizationInput {
|
|
225
|
+
RuleNamePrefix?: string | undefined;
|
|
226
|
+
SourceAccountIds?: string[] | undefined;
|
|
227
|
+
SourceOrganizationUnitIds?: string[] | undefined;
|
|
228
|
+
MaxResults?: number | undefined;
|
|
229
|
+
NextToken?: string | undefined;
|
|
230
|
+
}
|
|
231
|
+
export interface ListTelemetryRulesForOrganizationOutput {
|
|
232
|
+
TelemetryRuleSummaries?: TelemetryRuleSummary[] | undefined;
|
|
233
|
+
NextToken?: string | undefined;
|
|
234
|
+
}
|
|
235
|
+
export interface TagResourceInput {
|
|
236
|
+
ResourceARN: string | undefined;
|
|
237
|
+
Tags: Record<string, string> | undefined;
|
|
238
|
+
}
|
|
239
|
+
export interface UntagResourceInput {
|
|
240
|
+
ResourceARN: string | undefined;
|
|
241
|
+
TagKeys: string[] | undefined;
|
|
242
|
+
}
|
|
243
|
+
export interface UpdateTelemetryRuleInput {
|
|
244
|
+
RuleIdentifier: string | undefined;
|
|
245
|
+
Rule: TelemetryRule | undefined;
|
|
246
|
+
}
|
|
247
|
+
export interface UpdateTelemetryRuleOutput {
|
|
248
|
+
RuleArn?: string | undefined;
|
|
249
|
+
}
|
|
250
|
+
export interface UpdateTelemetryRuleForOrganizationInput {
|
|
251
|
+
RuleIdentifier: string | undefined;
|
|
252
|
+
Rule: TelemetryRule | undefined;
|
|
253
|
+
}
|
|
254
|
+
export interface UpdateTelemetryRuleForOrganizationOutput {
|
|
255
|
+
RuleArn?: string | undefined;
|
|
256
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListTelemetryRulesForOrganizationCommandInput,
|
|
4
|
+
ListTelemetryRulesForOrganizationCommandOutput,
|
|
5
|
+
} from "../commands/ListTelemetryRulesForOrganizationCommand";
|
|
6
|
+
import { ObservabilityAdminPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListTelemetryRulesForOrganization: (
|
|
8
|
+
config: ObservabilityAdminPaginationConfiguration,
|
|
9
|
+
input: ListTelemetryRulesForOrganizationCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListTelemetryRulesForOrganizationCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListTelemetryRulesCommandInput,
|
|
4
|
+
ListTelemetryRulesCommandOutput,
|
|
5
|
+
} from "../commands/ListTelemetryRulesCommand";
|
|
6
|
+
import { ObservabilityAdminPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListTelemetryRules: (
|
|
8
|
+
config: ObservabilityAdminPaginationConfiguration,
|
|
9
|
+
input: ListTelemetryRulesCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListTelemetryRulesCommandOutput>;
|
|
@@ -3,6 +3,22 @@ import {
|
|
|
3
3
|
HttpResponse as __HttpResponse,
|
|
4
4
|
} from "@smithy/protocol-http";
|
|
5
5
|
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
+
import {
|
|
7
|
+
CreateTelemetryRuleCommandInput,
|
|
8
|
+
CreateTelemetryRuleCommandOutput,
|
|
9
|
+
} from "../commands/CreateTelemetryRuleCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateTelemetryRuleForOrganizationCommandInput,
|
|
12
|
+
CreateTelemetryRuleForOrganizationCommandOutput,
|
|
13
|
+
} from "../commands/CreateTelemetryRuleForOrganizationCommand";
|
|
14
|
+
import {
|
|
15
|
+
DeleteTelemetryRuleCommandInput,
|
|
16
|
+
DeleteTelemetryRuleCommandOutput,
|
|
17
|
+
} from "../commands/DeleteTelemetryRuleCommand";
|
|
18
|
+
import {
|
|
19
|
+
DeleteTelemetryRuleForOrganizationCommandInput,
|
|
20
|
+
DeleteTelemetryRuleForOrganizationCommandOutput,
|
|
21
|
+
} from "../commands/DeleteTelemetryRuleForOrganizationCommand";
|
|
6
22
|
import {
|
|
7
23
|
GetTelemetryEvaluationStatusCommandInput,
|
|
8
24
|
GetTelemetryEvaluationStatusCommandOutput,
|
|
@@ -11,6 +27,14 @@ import {
|
|
|
11
27
|
GetTelemetryEvaluationStatusForOrganizationCommandInput,
|
|
12
28
|
GetTelemetryEvaluationStatusForOrganizationCommandOutput,
|
|
13
29
|
} from "../commands/GetTelemetryEvaluationStatusForOrganizationCommand";
|
|
30
|
+
import {
|
|
31
|
+
GetTelemetryRuleCommandInput,
|
|
32
|
+
GetTelemetryRuleCommandOutput,
|
|
33
|
+
} from "../commands/GetTelemetryRuleCommand";
|
|
34
|
+
import {
|
|
35
|
+
GetTelemetryRuleForOrganizationCommandInput,
|
|
36
|
+
GetTelemetryRuleForOrganizationCommandOutput,
|
|
37
|
+
} from "../commands/GetTelemetryRuleForOrganizationCommand";
|
|
14
38
|
import {
|
|
15
39
|
ListResourceTelemetryCommandInput,
|
|
16
40
|
ListResourceTelemetryCommandOutput,
|
|
@@ -19,6 +43,18 @@ import {
|
|
|
19
43
|
ListResourceTelemetryForOrganizationCommandInput,
|
|
20
44
|
ListResourceTelemetryForOrganizationCommandOutput,
|
|
21
45
|
} from "../commands/ListResourceTelemetryForOrganizationCommand";
|
|
46
|
+
import {
|
|
47
|
+
ListTagsForResourceCommandInput,
|
|
48
|
+
ListTagsForResourceCommandOutput,
|
|
49
|
+
} from "../commands/ListTagsForResourceCommand";
|
|
50
|
+
import {
|
|
51
|
+
ListTelemetryRulesCommandInput,
|
|
52
|
+
ListTelemetryRulesCommandOutput,
|
|
53
|
+
} from "../commands/ListTelemetryRulesCommand";
|
|
54
|
+
import {
|
|
55
|
+
ListTelemetryRulesForOrganizationCommandInput,
|
|
56
|
+
ListTelemetryRulesForOrganizationCommandOutput,
|
|
57
|
+
} from "../commands/ListTelemetryRulesForOrganizationCommand";
|
|
22
58
|
import {
|
|
23
59
|
StartTelemetryEvaluationCommandInput,
|
|
24
60
|
StartTelemetryEvaluationCommandOutput,
|
|
@@ -35,6 +71,38 @@ import {
|
|
|
35
71
|
StopTelemetryEvaluationForOrganizationCommandInput,
|
|
36
72
|
StopTelemetryEvaluationForOrganizationCommandOutput,
|
|
37
73
|
} from "../commands/StopTelemetryEvaluationForOrganizationCommand";
|
|
74
|
+
import {
|
|
75
|
+
TagResourceCommandInput,
|
|
76
|
+
TagResourceCommandOutput,
|
|
77
|
+
} from "../commands/TagResourceCommand";
|
|
78
|
+
import {
|
|
79
|
+
UntagResourceCommandInput,
|
|
80
|
+
UntagResourceCommandOutput,
|
|
81
|
+
} from "../commands/UntagResourceCommand";
|
|
82
|
+
import {
|
|
83
|
+
UpdateTelemetryRuleCommandInput,
|
|
84
|
+
UpdateTelemetryRuleCommandOutput,
|
|
85
|
+
} from "../commands/UpdateTelemetryRuleCommand";
|
|
86
|
+
import {
|
|
87
|
+
UpdateTelemetryRuleForOrganizationCommandInput,
|
|
88
|
+
UpdateTelemetryRuleForOrganizationCommandOutput,
|
|
89
|
+
} from "../commands/UpdateTelemetryRuleForOrganizationCommand";
|
|
90
|
+
export declare const se_CreateTelemetryRuleCommand: (
|
|
91
|
+
input: CreateTelemetryRuleCommandInput,
|
|
92
|
+
context: __SerdeContext
|
|
93
|
+
) => Promise<__HttpRequest>;
|
|
94
|
+
export declare const se_CreateTelemetryRuleForOrganizationCommand: (
|
|
95
|
+
input: CreateTelemetryRuleForOrganizationCommandInput,
|
|
96
|
+
context: __SerdeContext
|
|
97
|
+
) => Promise<__HttpRequest>;
|
|
98
|
+
export declare const se_DeleteTelemetryRuleCommand: (
|
|
99
|
+
input: DeleteTelemetryRuleCommandInput,
|
|
100
|
+
context: __SerdeContext
|
|
101
|
+
) => Promise<__HttpRequest>;
|
|
102
|
+
export declare const se_DeleteTelemetryRuleForOrganizationCommand: (
|
|
103
|
+
input: DeleteTelemetryRuleForOrganizationCommandInput,
|
|
104
|
+
context: __SerdeContext
|
|
105
|
+
) => Promise<__HttpRequest>;
|
|
38
106
|
export declare const se_GetTelemetryEvaluationStatusCommand: (
|
|
39
107
|
input: GetTelemetryEvaluationStatusCommandInput,
|
|
40
108
|
context: __SerdeContext
|
|
@@ -43,6 +111,14 @@ export declare const se_GetTelemetryEvaluationStatusForOrganizationCommand: (
|
|
|
43
111
|
input: GetTelemetryEvaluationStatusForOrganizationCommandInput,
|
|
44
112
|
context: __SerdeContext
|
|
45
113
|
) => Promise<__HttpRequest>;
|
|
114
|
+
export declare const se_GetTelemetryRuleCommand: (
|
|
115
|
+
input: GetTelemetryRuleCommandInput,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<__HttpRequest>;
|
|
118
|
+
export declare const se_GetTelemetryRuleForOrganizationCommand: (
|
|
119
|
+
input: GetTelemetryRuleForOrganizationCommandInput,
|
|
120
|
+
context: __SerdeContext
|
|
121
|
+
) => Promise<__HttpRequest>;
|
|
46
122
|
export declare const se_ListResourceTelemetryCommand: (
|
|
47
123
|
input: ListResourceTelemetryCommandInput,
|
|
48
124
|
context: __SerdeContext
|
|
@@ -51,6 +127,18 @@ export declare const se_ListResourceTelemetryForOrganizationCommand: (
|
|
|
51
127
|
input: ListResourceTelemetryForOrganizationCommandInput,
|
|
52
128
|
context: __SerdeContext
|
|
53
129
|
) => Promise<__HttpRequest>;
|
|
130
|
+
export declare const se_ListTagsForResourceCommand: (
|
|
131
|
+
input: ListTagsForResourceCommandInput,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<__HttpRequest>;
|
|
134
|
+
export declare const se_ListTelemetryRulesCommand: (
|
|
135
|
+
input: ListTelemetryRulesCommandInput,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<__HttpRequest>;
|
|
138
|
+
export declare const se_ListTelemetryRulesForOrganizationCommand: (
|
|
139
|
+
input: ListTelemetryRulesForOrganizationCommandInput,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<__HttpRequest>;
|
|
54
142
|
export declare const se_StartTelemetryEvaluationCommand: (
|
|
55
143
|
input: StartTelemetryEvaluationCommandInput,
|
|
56
144
|
context: __SerdeContext
|
|
@@ -67,6 +155,38 @@ export declare const se_StopTelemetryEvaluationForOrganizationCommand: (
|
|
|
67
155
|
input: StopTelemetryEvaluationForOrganizationCommandInput,
|
|
68
156
|
context: __SerdeContext
|
|
69
157
|
) => Promise<__HttpRequest>;
|
|
158
|
+
export declare const se_TagResourceCommand: (
|
|
159
|
+
input: TagResourceCommandInput,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<__HttpRequest>;
|
|
162
|
+
export declare const se_UntagResourceCommand: (
|
|
163
|
+
input: UntagResourceCommandInput,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<__HttpRequest>;
|
|
166
|
+
export declare const se_UpdateTelemetryRuleCommand: (
|
|
167
|
+
input: UpdateTelemetryRuleCommandInput,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<__HttpRequest>;
|
|
170
|
+
export declare const se_UpdateTelemetryRuleForOrganizationCommand: (
|
|
171
|
+
input: UpdateTelemetryRuleForOrganizationCommandInput,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<__HttpRequest>;
|
|
174
|
+
export declare const de_CreateTelemetryRuleCommand: (
|
|
175
|
+
output: __HttpResponse,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<CreateTelemetryRuleCommandOutput>;
|
|
178
|
+
export declare const de_CreateTelemetryRuleForOrganizationCommand: (
|
|
179
|
+
output: __HttpResponse,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<CreateTelemetryRuleForOrganizationCommandOutput>;
|
|
182
|
+
export declare const de_DeleteTelemetryRuleCommand: (
|
|
183
|
+
output: __HttpResponse,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<DeleteTelemetryRuleCommandOutput>;
|
|
186
|
+
export declare const de_DeleteTelemetryRuleForOrganizationCommand: (
|
|
187
|
+
output: __HttpResponse,
|
|
188
|
+
context: __SerdeContext
|
|
189
|
+
) => Promise<DeleteTelemetryRuleForOrganizationCommandOutput>;
|
|
70
190
|
export declare const de_GetTelemetryEvaluationStatusCommand: (
|
|
71
191
|
output: __HttpResponse,
|
|
72
192
|
context: __SerdeContext
|
|
@@ -75,6 +195,14 @@ export declare const de_GetTelemetryEvaluationStatusForOrganizationCommand: (
|
|
|
75
195
|
output: __HttpResponse,
|
|
76
196
|
context: __SerdeContext
|
|
77
197
|
) => Promise<GetTelemetryEvaluationStatusForOrganizationCommandOutput>;
|
|
198
|
+
export declare const de_GetTelemetryRuleCommand: (
|
|
199
|
+
output: __HttpResponse,
|
|
200
|
+
context: __SerdeContext
|
|
201
|
+
) => Promise<GetTelemetryRuleCommandOutput>;
|
|
202
|
+
export declare const de_GetTelemetryRuleForOrganizationCommand: (
|
|
203
|
+
output: __HttpResponse,
|
|
204
|
+
context: __SerdeContext
|
|
205
|
+
) => Promise<GetTelemetryRuleForOrganizationCommandOutput>;
|
|
78
206
|
export declare const de_ListResourceTelemetryCommand: (
|
|
79
207
|
output: __HttpResponse,
|
|
80
208
|
context: __SerdeContext
|
|
@@ -83,6 +211,18 @@ export declare const de_ListResourceTelemetryForOrganizationCommand: (
|
|
|
83
211
|
output: __HttpResponse,
|
|
84
212
|
context: __SerdeContext
|
|
85
213
|
) => Promise<ListResourceTelemetryForOrganizationCommandOutput>;
|
|
214
|
+
export declare const de_ListTagsForResourceCommand: (
|
|
215
|
+
output: __HttpResponse,
|
|
216
|
+
context: __SerdeContext
|
|
217
|
+
) => Promise<ListTagsForResourceCommandOutput>;
|
|
218
|
+
export declare const de_ListTelemetryRulesCommand: (
|
|
219
|
+
output: __HttpResponse,
|
|
220
|
+
context: __SerdeContext
|
|
221
|
+
) => Promise<ListTelemetryRulesCommandOutput>;
|
|
222
|
+
export declare const de_ListTelemetryRulesForOrganizationCommand: (
|
|
223
|
+
output: __HttpResponse,
|
|
224
|
+
context: __SerdeContext
|
|
225
|
+
) => Promise<ListTelemetryRulesForOrganizationCommandOutput>;
|
|
86
226
|
export declare const de_StartTelemetryEvaluationCommand: (
|
|
87
227
|
output: __HttpResponse,
|
|
88
228
|
context: __SerdeContext
|
|
@@ -99,3 +239,19 @@ export declare const de_StopTelemetryEvaluationForOrganizationCommand: (
|
|
|
99
239
|
output: __HttpResponse,
|
|
100
240
|
context: __SerdeContext
|
|
101
241
|
) => Promise<StopTelemetryEvaluationForOrganizationCommandOutput>;
|
|
242
|
+
export declare const de_TagResourceCommand: (
|
|
243
|
+
output: __HttpResponse,
|
|
244
|
+
context: __SerdeContext
|
|
245
|
+
) => Promise<TagResourceCommandOutput>;
|
|
246
|
+
export declare const de_UntagResourceCommand: (
|
|
247
|
+
output: __HttpResponse,
|
|
248
|
+
context: __SerdeContext
|
|
249
|
+
) => Promise<UntagResourceCommandOutput>;
|
|
250
|
+
export declare const de_UpdateTelemetryRuleCommand: (
|
|
251
|
+
output: __HttpResponse,
|
|
252
|
+
context: __SerdeContext
|
|
253
|
+
) => Promise<UpdateTelemetryRuleCommandOutput>;
|
|
254
|
+
export declare const de_UpdateTelemetryRuleForOrganizationCommand: (
|
|
255
|
+
output: __HttpResponse,
|
|
256
|
+
context: __SerdeContext
|
|
257
|
+
) => Promise<UpdateTelemetryRuleForOrganizationCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-observabilityadmin",
|
|
3
3
|
"description": "AWS SDK for JavaScript Observabilityadmin Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.862.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,41 +20,41 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
-
"@smithy/config-resolver": "^4.1.
|
|
35
|
-
"@smithy/core": "^3.
|
|
36
|
-
"@smithy/fetch-http-handler": "^5.1.
|
|
37
|
-
"@smithy/hash-node": "^4.0.
|
|
38
|
-
"@smithy/invalid-dependency": "^4.0.
|
|
39
|
-
"@smithy/middleware-content-length": "^4.0.
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.1.
|
|
41
|
-
"@smithy/middleware-retry": "^4.1.
|
|
42
|
-
"@smithy/middleware-serde": "^4.0.
|
|
43
|
-
"@smithy/middleware-stack": "^4.0.
|
|
44
|
-
"@smithy/node-config-provider": "^4.1.
|
|
45
|
-
"@smithy/node-http-handler": "^4.1.
|
|
46
|
-
"@smithy/protocol-http": "^5.1.
|
|
47
|
-
"@smithy/smithy-client": "^4.4.
|
|
48
|
-
"@smithy/types": "^4.3.
|
|
49
|
-
"@smithy/url-parser": "^4.0.
|
|
23
|
+
"@aws-sdk/core": "3.862.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.862.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.862.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.862.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.862.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.862.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.862.0",
|
|
30
|
+
"@aws-sdk/types": "3.862.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.862.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.862.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.862.0",
|
|
34
|
+
"@smithy/config-resolver": "^4.1.5",
|
|
35
|
+
"@smithy/core": "^3.8.0",
|
|
36
|
+
"@smithy/fetch-http-handler": "^5.1.1",
|
|
37
|
+
"@smithy/hash-node": "^4.0.5",
|
|
38
|
+
"@smithy/invalid-dependency": "^4.0.5",
|
|
39
|
+
"@smithy/middleware-content-length": "^4.0.5",
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.1.18",
|
|
41
|
+
"@smithy/middleware-retry": "^4.1.19",
|
|
42
|
+
"@smithy/middleware-serde": "^4.0.9",
|
|
43
|
+
"@smithy/middleware-stack": "^4.0.5",
|
|
44
|
+
"@smithy/node-config-provider": "^4.1.4",
|
|
45
|
+
"@smithy/node-http-handler": "^4.1.1",
|
|
46
|
+
"@smithy/protocol-http": "^5.1.3",
|
|
47
|
+
"@smithy/smithy-client": "^4.4.10",
|
|
48
|
+
"@smithy/types": "^4.3.2",
|
|
49
|
+
"@smithy/url-parser": "^4.0.5",
|
|
50
50
|
"@smithy/util-base64": "^4.0.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
55
|
-
"@smithy/util-endpoints": "^3.0.
|
|
56
|
-
"@smithy/util-middleware": "^4.0.
|
|
57
|
-
"@smithy/util-retry": "^4.0.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.0.26",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.0.26",
|
|
55
|
+
"@smithy/util-endpoints": "^3.0.7",
|
|
56
|
+
"@smithy/util-middleware": "^4.0.5",
|
|
57
|
+
"@smithy/util-retry": "^4.0.7",
|
|
58
58
|
"@smithy/util-utf8": "^4.0.0",
|
|
59
59
|
"tslib": "^2.6.2"
|
|
60
60
|
},
|