@aws-sdk/client-observabilityadmin 3.887.0 → 3.889.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 +40 -0
- package/dist-cjs/ObservabilityAdmin.js +10 -0
- package/dist-cjs/commands/CreateCentralizationRuleForOrganizationCommand.js +26 -0
- package/dist-cjs/commands/DeleteCentralizationRuleForOrganizationCommand.js +26 -0
- package/dist-cjs/commands/GetCentralizationRuleForOrganizationCommand.js +26 -0
- package/dist-cjs/commands/ListCentralizationRulesForOrganizationCommand.js +26 -0
- package/dist-cjs/commands/UpdateCentralizationRuleForOrganizationCommand.js +26 -0
- package/dist-cjs/commands/index.js +5 -0
- package/dist-cjs/models/models_0.js +36 -14
- package/dist-cjs/pagination/ListCentralizationRulesForOrganizationPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +158 -1
- package/dist-es/ObservabilityAdmin.js +10 -0
- package/dist-es/commands/CreateCentralizationRuleForOrganizationCommand.js +22 -0
- package/dist-es/commands/DeleteCentralizationRuleForOrganizationCommand.js +22 -0
- package/dist-es/commands/GetCentralizationRuleForOrganizationCommand.js +22 -0
- package/dist-es/commands/ListCentralizationRulesForOrganizationCommand.js +22 -0
- package/dist-es/commands/UpdateCentralizationRuleForOrganizationCommand.js +22 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +35 -13
- package/dist-es/pagination/ListCentralizationRulesForOrganizationPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +146 -0
- package/dist-types/ObservabilityAdmin.d.ts +36 -0
- package/dist-types/ObservabilityAdminClient.d.ts +7 -2
- package/dist-types/commands/CreateCentralizationRuleForOrganizationCommand.d.ts +132 -0
- package/dist-types/commands/DeleteCentralizationRuleForOrganizationCommand.d.ts +95 -0
- package/dist-types/commands/GetCentralizationRuleForOrganizationCommand.d.ts +131 -0
- package/dist-types/commands/ListCentralizationRulesForOrganizationCommand.d.ts +109 -0
- package/dist-types/commands/UpdateCentralizationRuleForOrganizationCommand.d.ts +129 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +488 -78
- package/dist-types/pagination/ListCentralizationRulesForOrganizationPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
- package/dist-types/ts3.4/ObservabilityAdmin.d.ts +116 -0
- package/dist-types/ts3.4/ObservabilityAdminClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateCentralizationRuleForOrganizationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteCentralizationRuleForOrganizationCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetCentralizationRuleForOrganizationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListCentralizationRulesForOrganizationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateCentralizationRuleForOrganizationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +153 -35
- package/dist-types/ts3.4/pagination/ListCentralizationRulesForOrganizationPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
- package/package.json +5 -5
|
@@ -1,11 +1,15 @@
|
|
|
1
|
+
export * from "./CreateCentralizationRuleForOrganizationCommand";
|
|
1
2
|
export * from "./CreateTelemetryRuleCommand";
|
|
2
3
|
export * from "./CreateTelemetryRuleForOrganizationCommand";
|
|
4
|
+
export * from "./DeleteCentralizationRuleForOrganizationCommand";
|
|
3
5
|
export * from "./DeleteTelemetryRuleCommand";
|
|
4
6
|
export * from "./DeleteTelemetryRuleForOrganizationCommand";
|
|
7
|
+
export * from "./GetCentralizationRuleForOrganizationCommand";
|
|
5
8
|
export * from "./GetTelemetryEvaluationStatusCommand";
|
|
6
9
|
export * from "./GetTelemetryEvaluationStatusForOrganizationCommand";
|
|
7
10
|
export * from "./GetTelemetryRuleCommand";
|
|
8
11
|
export * from "./GetTelemetryRuleForOrganizationCommand";
|
|
12
|
+
export * from "./ListCentralizationRulesForOrganizationCommand";
|
|
9
13
|
export * from "./ListResourceTelemetryCommand";
|
|
10
14
|
export * from "./ListResourceTelemetryForOrganizationCommand";
|
|
11
15
|
export * from "./ListTagsForResourceCommand";
|
|
@@ -17,5 +21,6 @@ export * from "./StopTelemetryEvaluationCommand";
|
|
|
17
21
|
export * from "./StopTelemetryEvaluationForOrganizationCommand";
|
|
18
22
|
export * from "./TagResourceCommand";
|
|
19
23
|
export * from "./UntagResourceCommand";
|
|
24
|
+
export * from "./UpdateCentralizationRuleForOrganizationCommand";
|
|
20
25
|
export * from "./UpdateTelemetryRuleCommand";
|
|
21
26
|
export * from "./UpdateTelemetryRuleForOrganizationCommand";
|
|
@@ -9,12 +9,130 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
9
9
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
10
10
|
);
|
|
11
11
|
}
|
|
12
|
+
export declare const CentralizationFailureReason: {
|
|
13
|
+
readonly DESTINATION_ACCOUNT_NOT_IN_ORGANIZATION: "DESTINATION_ACCOUNT_NOT_IN_ORGANIZATION";
|
|
14
|
+
readonly INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR";
|
|
15
|
+
readonly TRUSTED_ACCESS_NOT_ENABLED: "TRUSTED_ACCESS_NOT_ENABLED";
|
|
16
|
+
};
|
|
17
|
+
export type CentralizationFailureReason =
|
|
18
|
+
(typeof CentralizationFailureReason)[keyof typeof CentralizationFailureReason];
|
|
19
|
+
export interface LogsBackupConfiguration {
|
|
20
|
+
Region: string | undefined;
|
|
21
|
+
KmsKeyArn?: string | undefined;
|
|
22
|
+
}
|
|
23
|
+
export declare const EncryptionConflictResolutionStrategy: {
|
|
24
|
+
readonly ALLOW: "ALLOW";
|
|
25
|
+
readonly SKIP: "SKIP";
|
|
26
|
+
};
|
|
27
|
+
export type EncryptionConflictResolutionStrategy =
|
|
28
|
+
(typeof EncryptionConflictResolutionStrategy)[keyof typeof EncryptionConflictResolutionStrategy];
|
|
29
|
+
export declare const EncryptionStrategy: {
|
|
30
|
+
readonly AWS_OWNED: "AWS_OWNED";
|
|
31
|
+
readonly CUSTOMER_MANAGED: "CUSTOMER_MANAGED";
|
|
32
|
+
};
|
|
33
|
+
export type EncryptionStrategy =
|
|
34
|
+
(typeof EncryptionStrategy)[keyof typeof EncryptionStrategy];
|
|
35
|
+
export interface LogsEncryptionConfiguration {
|
|
36
|
+
EncryptionStrategy: EncryptionStrategy | undefined;
|
|
37
|
+
KmsKeyArn?: string | undefined;
|
|
38
|
+
EncryptionConflictResolutionStrategy?:
|
|
39
|
+
| EncryptionConflictResolutionStrategy
|
|
40
|
+
| undefined;
|
|
41
|
+
}
|
|
42
|
+
export interface DestinationLogsConfiguration {
|
|
43
|
+
LogsEncryptionConfiguration?: LogsEncryptionConfiguration | undefined;
|
|
44
|
+
BackupConfiguration?: LogsBackupConfiguration | undefined;
|
|
45
|
+
}
|
|
46
|
+
export interface CentralizationRuleDestination {
|
|
47
|
+
Region: string | undefined;
|
|
48
|
+
Account?: string | undefined;
|
|
49
|
+
DestinationLogsConfiguration?: DestinationLogsConfiguration | undefined;
|
|
50
|
+
}
|
|
51
|
+
export declare const EncryptedLogGroupStrategy: {
|
|
52
|
+
readonly ALLOW: "ALLOW";
|
|
53
|
+
readonly SKIP: "SKIP";
|
|
54
|
+
};
|
|
55
|
+
export type EncryptedLogGroupStrategy =
|
|
56
|
+
(typeof EncryptedLogGroupStrategy)[keyof typeof EncryptedLogGroupStrategy];
|
|
57
|
+
export interface SourceLogsConfiguration {
|
|
58
|
+
LogGroupSelectionCriteria: string | undefined;
|
|
59
|
+
EncryptedLogGroupStrategy: EncryptedLogGroupStrategy | undefined;
|
|
60
|
+
}
|
|
61
|
+
export interface CentralizationRuleSource {
|
|
62
|
+
Regions: string[] | undefined;
|
|
63
|
+
Scope?: string | undefined;
|
|
64
|
+
SourceLogsConfiguration?: SourceLogsConfiguration | undefined;
|
|
65
|
+
}
|
|
66
|
+
export interface CentralizationRule {
|
|
67
|
+
Source: CentralizationRuleSource | undefined;
|
|
68
|
+
Destination: CentralizationRuleDestination | undefined;
|
|
69
|
+
}
|
|
70
|
+
export declare const RuleHealth: {
|
|
71
|
+
readonly HEALTHY: "Healthy";
|
|
72
|
+
readonly PROVISIONING: "Provisioning";
|
|
73
|
+
readonly UNHEALTHY: "Unhealthy";
|
|
74
|
+
};
|
|
75
|
+
export type RuleHealth = (typeof RuleHealth)[keyof typeof RuleHealth];
|
|
76
|
+
export interface CentralizationRuleSummary {
|
|
77
|
+
RuleName?: string | undefined;
|
|
78
|
+
RuleArn?: string | undefined;
|
|
79
|
+
CreatorAccountId?: string | undefined;
|
|
80
|
+
CreatedTimeStamp?: number | undefined;
|
|
81
|
+
CreatedRegion?: string | undefined;
|
|
82
|
+
LastUpdateTimeStamp?: number | undefined;
|
|
83
|
+
RuleHealth?: RuleHealth | undefined;
|
|
84
|
+
FailureReason?: CentralizationFailureReason | undefined;
|
|
85
|
+
DestinationAccountId?: string | undefined;
|
|
86
|
+
DestinationRegion?: string | undefined;
|
|
87
|
+
}
|
|
12
88
|
export declare class ConflictException extends __BaseException {
|
|
13
89
|
readonly name: "ConflictException";
|
|
14
90
|
readonly $fault: "client";
|
|
15
91
|
Message?: string | undefined;
|
|
16
92
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
17
93
|
}
|
|
94
|
+
export interface CreateCentralizationRuleForOrganizationInput {
|
|
95
|
+
RuleName: string | undefined;
|
|
96
|
+
Rule: CentralizationRule | undefined;
|
|
97
|
+
Tags?: Record<string, string> | undefined;
|
|
98
|
+
}
|
|
99
|
+
export interface CreateCentralizationRuleForOrganizationOutput {
|
|
100
|
+
RuleArn?: string | undefined;
|
|
101
|
+
}
|
|
102
|
+
export declare class InternalServerException extends __BaseException {
|
|
103
|
+
readonly name: "InternalServerException";
|
|
104
|
+
readonly $fault: "server";
|
|
105
|
+
Message?: string | undefined;
|
|
106
|
+
amznErrorType?: string | undefined;
|
|
107
|
+
constructor(
|
|
108
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
109
|
+
);
|
|
110
|
+
}
|
|
111
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
112
|
+
readonly name: "ServiceQuotaExceededException";
|
|
113
|
+
readonly $fault: "client";
|
|
114
|
+
Message?: string | undefined;
|
|
115
|
+
amznErrorType?: string | undefined;
|
|
116
|
+
constructor(
|
|
117
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
118
|
+
);
|
|
119
|
+
}
|
|
120
|
+
export declare class TooManyRequestsException extends __BaseException {
|
|
121
|
+
readonly name: "TooManyRequestsException";
|
|
122
|
+
readonly $fault: "client";
|
|
123
|
+
Message?: string | undefined;
|
|
124
|
+
constructor(
|
|
125
|
+
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
126
|
+
);
|
|
127
|
+
}
|
|
128
|
+
export declare class ValidationException extends __BaseException {
|
|
129
|
+
readonly name: "ValidationException";
|
|
130
|
+
readonly $fault: "client";
|
|
131
|
+
Message?: string | undefined;
|
|
132
|
+
constructor(
|
|
133
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
134
|
+
);
|
|
135
|
+
}
|
|
18
136
|
export declare const DestinationType: {
|
|
19
137
|
readonly CLOUDWATCH_LOGS: "cloud-watch-logs";
|
|
20
138
|
};
|
|
@@ -58,40 +176,6 @@ export interface CreateTelemetryRuleInput {
|
|
|
58
176
|
export interface CreateTelemetryRuleOutput {
|
|
59
177
|
RuleArn?: string | undefined;
|
|
60
178
|
}
|
|
61
|
-
export declare class InternalServerException extends __BaseException {
|
|
62
|
-
readonly name: "InternalServerException";
|
|
63
|
-
readonly $fault: "server";
|
|
64
|
-
Message?: string | undefined;
|
|
65
|
-
amznErrorType?: string | undefined;
|
|
66
|
-
constructor(
|
|
67
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
68
|
-
);
|
|
69
|
-
}
|
|
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
|
-
);
|
|
86
|
-
}
|
|
87
|
-
export declare class ValidationException extends __BaseException {
|
|
88
|
-
readonly name: "ValidationException";
|
|
89
|
-
readonly $fault: "client";
|
|
90
|
-
Message?: string | undefined;
|
|
91
|
-
constructor(
|
|
92
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
93
|
-
);
|
|
94
|
-
}
|
|
95
179
|
export interface CreateTelemetryRuleForOrganizationInput {
|
|
96
180
|
RuleName: string | undefined;
|
|
97
181
|
Rule: TelemetryRule | undefined;
|
|
@@ -100,7 +184,7 @@ export interface CreateTelemetryRuleForOrganizationInput {
|
|
|
100
184
|
export interface CreateTelemetryRuleForOrganizationOutput {
|
|
101
185
|
RuleArn?: string | undefined;
|
|
102
186
|
}
|
|
103
|
-
export interface
|
|
187
|
+
export interface DeleteCentralizationRuleForOrganizationInput {
|
|
104
188
|
RuleIdentifier: string | undefined;
|
|
105
189
|
}
|
|
106
190
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -111,9 +195,26 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
111
195
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
112
196
|
);
|
|
113
197
|
}
|
|
198
|
+
export interface DeleteTelemetryRuleInput {
|
|
199
|
+
RuleIdentifier: string | undefined;
|
|
200
|
+
}
|
|
114
201
|
export interface DeleteTelemetryRuleForOrganizationInput {
|
|
115
202
|
RuleIdentifier: string | undefined;
|
|
116
203
|
}
|
|
204
|
+
export interface GetCentralizationRuleForOrganizationInput {
|
|
205
|
+
RuleIdentifier: string | undefined;
|
|
206
|
+
}
|
|
207
|
+
export interface GetCentralizationRuleForOrganizationOutput {
|
|
208
|
+
RuleName?: string | undefined;
|
|
209
|
+
RuleArn?: string | undefined;
|
|
210
|
+
CreatorAccountId?: string | undefined;
|
|
211
|
+
CreatedTimeStamp?: number | undefined;
|
|
212
|
+
CreatedRegion?: string | undefined;
|
|
213
|
+
LastUpdateTimeStamp?: number | undefined;
|
|
214
|
+
RuleHealth?: RuleHealth | undefined;
|
|
215
|
+
FailureReason?: CentralizationFailureReason | undefined;
|
|
216
|
+
CentralizationRule?: CentralizationRule | undefined;
|
|
217
|
+
}
|
|
117
218
|
export declare const Status: {
|
|
118
219
|
readonly FAILED_START: "FAILED_START";
|
|
119
220
|
readonly FAILED_STOP: "FAILED_STOP";
|
|
@@ -152,6 +253,16 @@ export interface GetTelemetryRuleForOrganizationOutput {
|
|
|
152
253
|
LastUpdateTimeStamp?: number | undefined;
|
|
153
254
|
TelemetryRule?: TelemetryRule | undefined;
|
|
154
255
|
}
|
|
256
|
+
export interface ListCentralizationRulesForOrganizationInput {
|
|
257
|
+
RuleNamePrefix?: string | undefined;
|
|
258
|
+
AllRegions?: boolean | undefined;
|
|
259
|
+
MaxResults?: number | undefined;
|
|
260
|
+
NextToken?: string | undefined;
|
|
261
|
+
}
|
|
262
|
+
export interface ListCentralizationRulesForOrganizationOutput {
|
|
263
|
+
CentralizationRuleSummaries?: CentralizationRuleSummary[] | undefined;
|
|
264
|
+
NextToken?: string | undefined;
|
|
265
|
+
}
|
|
155
266
|
export declare const TelemetryState: {
|
|
156
267
|
readonly DISABLED: "Disabled";
|
|
157
268
|
readonly ENABLED: "Enabled";
|
|
@@ -240,6 +351,13 @@ export interface UntagResourceInput {
|
|
|
240
351
|
ResourceARN: string | undefined;
|
|
241
352
|
TagKeys: string[] | undefined;
|
|
242
353
|
}
|
|
354
|
+
export interface UpdateCentralizationRuleForOrganizationInput {
|
|
355
|
+
RuleIdentifier: string | undefined;
|
|
356
|
+
Rule: CentralizationRule | undefined;
|
|
357
|
+
}
|
|
358
|
+
export interface UpdateCentralizationRuleForOrganizationOutput {
|
|
359
|
+
RuleArn?: string | undefined;
|
|
360
|
+
}
|
|
243
361
|
export interface UpdateTelemetryRuleInput {
|
|
244
362
|
RuleIdentifier: string | undefined;
|
|
245
363
|
Rule: TelemetryRule | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListCentralizationRulesForOrganizationCommandInput,
|
|
4
|
+
ListCentralizationRulesForOrganizationCommandOutput,
|
|
5
|
+
} from "../commands/ListCentralizationRulesForOrganizationCommand";
|
|
6
|
+
import { ObservabilityAdminPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListCentralizationRulesForOrganization: (
|
|
8
|
+
config: ObservabilityAdminPaginationConfiguration,
|
|
9
|
+
input: ListCentralizationRulesForOrganizationCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListCentralizationRulesForOrganizationCommandOutput>;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListCentralizationRulesForOrganizationPaginator";
|
|
2
3
|
export * from "./ListResourceTelemetryForOrganizationPaginator";
|
|
3
4
|
export * from "./ListResourceTelemetryPaginator";
|
|
4
5
|
export * from "./ListTelemetryRulesForOrganizationPaginator";
|
|
@@ -3,6 +3,10 @@ import {
|
|
|
3
3
|
HttpResponse as __HttpResponse,
|
|
4
4
|
} from "@smithy/protocol-http";
|
|
5
5
|
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
+
import {
|
|
7
|
+
CreateCentralizationRuleForOrganizationCommandInput,
|
|
8
|
+
CreateCentralizationRuleForOrganizationCommandOutput,
|
|
9
|
+
} from "../commands/CreateCentralizationRuleForOrganizationCommand";
|
|
6
10
|
import {
|
|
7
11
|
CreateTelemetryRuleCommandInput,
|
|
8
12
|
CreateTelemetryRuleCommandOutput,
|
|
@@ -11,6 +15,10 @@ import {
|
|
|
11
15
|
CreateTelemetryRuleForOrganizationCommandInput,
|
|
12
16
|
CreateTelemetryRuleForOrganizationCommandOutput,
|
|
13
17
|
} from "../commands/CreateTelemetryRuleForOrganizationCommand";
|
|
18
|
+
import {
|
|
19
|
+
DeleteCentralizationRuleForOrganizationCommandInput,
|
|
20
|
+
DeleteCentralizationRuleForOrganizationCommandOutput,
|
|
21
|
+
} from "../commands/DeleteCentralizationRuleForOrganizationCommand";
|
|
14
22
|
import {
|
|
15
23
|
DeleteTelemetryRuleCommandInput,
|
|
16
24
|
DeleteTelemetryRuleCommandOutput,
|
|
@@ -19,6 +27,10 @@ import {
|
|
|
19
27
|
DeleteTelemetryRuleForOrganizationCommandInput,
|
|
20
28
|
DeleteTelemetryRuleForOrganizationCommandOutput,
|
|
21
29
|
} from "../commands/DeleteTelemetryRuleForOrganizationCommand";
|
|
30
|
+
import {
|
|
31
|
+
GetCentralizationRuleForOrganizationCommandInput,
|
|
32
|
+
GetCentralizationRuleForOrganizationCommandOutput,
|
|
33
|
+
} from "../commands/GetCentralizationRuleForOrganizationCommand";
|
|
22
34
|
import {
|
|
23
35
|
GetTelemetryEvaluationStatusCommandInput,
|
|
24
36
|
GetTelemetryEvaluationStatusCommandOutput,
|
|
@@ -35,6 +47,10 @@ import {
|
|
|
35
47
|
GetTelemetryRuleForOrganizationCommandInput,
|
|
36
48
|
GetTelemetryRuleForOrganizationCommandOutput,
|
|
37
49
|
} from "../commands/GetTelemetryRuleForOrganizationCommand";
|
|
50
|
+
import {
|
|
51
|
+
ListCentralizationRulesForOrganizationCommandInput,
|
|
52
|
+
ListCentralizationRulesForOrganizationCommandOutput,
|
|
53
|
+
} from "../commands/ListCentralizationRulesForOrganizationCommand";
|
|
38
54
|
import {
|
|
39
55
|
ListResourceTelemetryCommandInput,
|
|
40
56
|
ListResourceTelemetryCommandOutput,
|
|
@@ -79,6 +95,10 @@ import {
|
|
|
79
95
|
UntagResourceCommandInput,
|
|
80
96
|
UntagResourceCommandOutput,
|
|
81
97
|
} from "../commands/UntagResourceCommand";
|
|
98
|
+
import {
|
|
99
|
+
UpdateCentralizationRuleForOrganizationCommandInput,
|
|
100
|
+
UpdateCentralizationRuleForOrganizationCommandOutput,
|
|
101
|
+
} from "../commands/UpdateCentralizationRuleForOrganizationCommand";
|
|
82
102
|
import {
|
|
83
103
|
UpdateTelemetryRuleCommandInput,
|
|
84
104
|
UpdateTelemetryRuleCommandOutput,
|
|
@@ -87,6 +107,10 @@ import {
|
|
|
87
107
|
UpdateTelemetryRuleForOrganizationCommandInput,
|
|
88
108
|
UpdateTelemetryRuleForOrganizationCommandOutput,
|
|
89
109
|
} from "../commands/UpdateTelemetryRuleForOrganizationCommand";
|
|
110
|
+
export declare const se_CreateCentralizationRuleForOrganizationCommand: (
|
|
111
|
+
input: CreateCentralizationRuleForOrganizationCommandInput,
|
|
112
|
+
context: __SerdeContext
|
|
113
|
+
) => Promise<__HttpRequest>;
|
|
90
114
|
export declare const se_CreateTelemetryRuleCommand: (
|
|
91
115
|
input: CreateTelemetryRuleCommandInput,
|
|
92
116
|
context: __SerdeContext
|
|
@@ -95,6 +119,10 @@ export declare const se_CreateTelemetryRuleForOrganizationCommand: (
|
|
|
95
119
|
input: CreateTelemetryRuleForOrganizationCommandInput,
|
|
96
120
|
context: __SerdeContext
|
|
97
121
|
) => Promise<__HttpRequest>;
|
|
122
|
+
export declare const se_DeleteCentralizationRuleForOrganizationCommand: (
|
|
123
|
+
input: DeleteCentralizationRuleForOrganizationCommandInput,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<__HttpRequest>;
|
|
98
126
|
export declare const se_DeleteTelemetryRuleCommand: (
|
|
99
127
|
input: DeleteTelemetryRuleCommandInput,
|
|
100
128
|
context: __SerdeContext
|
|
@@ -103,6 +131,10 @@ export declare const se_DeleteTelemetryRuleForOrganizationCommand: (
|
|
|
103
131
|
input: DeleteTelemetryRuleForOrganizationCommandInput,
|
|
104
132
|
context: __SerdeContext
|
|
105
133
|
) => Promise<__HttpRequest>;
|
|
134
|
+
export declare const se_GetCentralizationRuleForOrganizationCommand: (
|
|
135
|
+
input: GetCentralizationRuleForOrganizationCommandInput,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<__HttpRequest>;
|
|
106
138
|
export declare const se_GetTelemetryEvaluationStatusCommand: (
|
|
107
139
|
input: GetTelemetryEvaluationStatusCommandInput,
|
|
108
140
|
context: __SerdeContext
|
|
@@ -119,6 +151,10 @@ export declare const se_GetTelemetryRuleForOrganizationCommand: (
|
|
|
119
151
|
input: GetTelemetryRuleForOrganizationCommandInput,
|
|
120
152
|
context: __SerdeContext
|
|
121
153
|
) => Promise<__HttpRequest>;
|
|
154
|
+
export declare const se_ListCentralizationRulesForOrganizationCommand: (
|
|
155
|
+
input: ListCentralizationRulesForOrganizationCommandInput,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<__HttpRequest>;
|
|
122
158
|
export declare const se_ListResourceTelemetryCommand: (
|
|
123
159
|
input: ListResourceTelemetryCommandInput,
|
|
124
160
|
context: __SerdeContext
|
|
@@ -163,6 +199,10 @@ export declare const se_UntagResourceCommand: (
|
|
|
163
199
|
input: UntagResourceCommandInput,
|
|
164
200
|
context: __SerdeContext
|
|
165
201
|
) => Promise<__HttpRequest>;
|
|
202
|
+
export declare const se_UpdateCentralizationRuleForOrganizationCommand: (
|
|
203
|
+
input: UpdateCentralizationRuleForOrganizationCommandInput,
|
|
204
|
+
context: __SerdeContext
|
|
205
|
+
) => Promise<__HttpRequest>;
|
|
166
206
|
export declare const se_UpdateTelemetryRuleCommand: (
|
|
167
207
|
input: UpdateTelemetryRuleCommandInput,
|
|
168
208
|
context: __SerdeContext
|
|
@@ -171,6 +211,10 @@ export declare const se_UpdateTelemetryRuleForOrganizationCommand: (
|
|
|
171
211
|
input: UpdateTelemetryRuleForOrganizationCommandInput,
|
|
172
212
|
context: __SerdeContext
|
|
173
213
|
) => Promise<__HttpRequest>;
|
|
214
|
+
export declare const de_CreateCentralizationRuleForOrganizationCommand: (
|
|
215
|
+
output: __HttpResponse,
|
|
216
|
+
context: __SerdeContext
|
|
217
|
+
) => Promise<CreateCentralizationRuleForOrganizationCommandOutput>;
|
|
174
218
|
export declare const de_CreateTelemetryRuleCommand: (
|
|
175
219
|
output: __HttpResponse,
|
|
176
220
|
context: __SerdeContext
|
|
@@ -179,6 +223,10 @@ export declare const de_CreateTelemetryRuleForOrganizationCommand: (
|
|
|
179
223
|
output: __HttpResponse,
|
|
180
224
|
context: __SerdeContext
|
|
181
225
|
) => Promise<CreateTelemetryRuleForOrganizationCommandOutput>;
|
|
226
|
+
export declare const de_DeleteCentralizationRuleForOrganizationCommand: (
|
|
227
|
+
output: __HttpResponse,
|
|
228
|
+
context: __SerdeContext
|
|
229
|
+
) => Promise<DeleteCentralizationRuleForOrganizationCommandOutput>;
|
|
182
230
|
export declare const de_DeleteTelemetryRuleCommand: (
|
|
183
231
|
output: __HttpResponse,
|
|
184
232
|
context: __SerdeContext
|
|
@@ -187,6 +235,10 @@ export declare const de_DeleteTelemetryRuleForOrganizationCommand: (
|
|
|
187
235
|
output: __HttpResponse,
|
|
188
236
|
context: __SerdeContext
|
|
189
237
|
) => Promise<DeleteTelemetryRuleForOrganizationCommandOutput>;
|
|
238
|
+
export declare const de_GetCentralizationRuleForOrganizationCommand: (
|
|
239
|
+
output: __HttpResponse,
|
|
240
|
+
context: __SerdeContext
|
|
241
|
+
) => Promise<GetCentralizationRuleForOrganizationCommandOutput>;
|
|
190
242
|
export declare const de_GetTelemetryEvaluationStatusCommand: (
|
|
191
243
|
output: __HttpResponse,
|
|
192
244
|
context: __SerdeContext
|
|
@@ -203,6 +255,10 @@ export declare const de_GetTelemetryRuleForOrganizationCommand: (
|
|
|
203
255
|
output: __HttpResponse,
|
|
204
256
|
context: __SerdeContext
|
|
205
257
|
) => Promise<GetTelemetryRuleForOrganizationCommandOutput>;
|
|
258
|
+
export declare const de_ListCentralizationRulesForOrganizationCommand: (
|
|
259
|
+
output: __HttpResponse,
|
|
260
|
+
context: __SerdeContext
|
|
261
|
+
) => Promise<ListCentralizationRulesForOrganizationCommandOutput>;
|
|
206
262
|
export declare const de_ListResourceTelemetryCommand: (
|
|
207
263
|
output: __HttpResponse,
|
|
208
264
|
context: __SerdeContext
|
|
@@ -247,6 +303,10 @@ export declare const de_UntagResourceCommand: (
|
|
|
247
303
|
output: __HttpResponse,
|
|
248
304
|
context: __SerdeContext
|
|
249
305
|
) => Promise<UntagResourceCommandOutput>;
|
|
306
|
+
export declare const de_UpdateCentralizationRuleForOrganizationCommand: (
|
|
307
|
+
output: __HttpResponse,
|
|
308
|
+
context: __SerdeContext
|
|
309
|
+
) => Promise<UpdateCentralizationRuleForOrganizationCommandOutput>;
|
|
250
310
|
export declare const de_UpdateTelemetryRuleCommand: (
|
|
251
311
|
output: __HttpResponse,
|
|
252
312
|
context: __SerdeContext
|
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.889.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,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.888.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.888.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.887.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.887.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.887.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.888.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.887.0",
|
|
30
30
|
"@aws-sdk/types": "3.887.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.887.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.887.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.888.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.2.1",
|
|
35
35
|
"@smithy/core": "^3.11.0",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.2.1",
|