@aws-sdk/client-odb 3.936.0 → 3.938.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 +16 -0
- package/dist-cjs/index.js +163 -16
- package/dist-es/Odb.js +4 -0
- package/dist-es/commands/AssociateIamRoleToResourceCommand.js +16 -0
- package/dist-es/commands/DisassociateIamRoleFromResourceCommand.js +16 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/enums.js +18 -6
- package/dist-es/schemas/schemas_0.js +115 -10
- package/dist-types/Odb.d.ts +14 -0
- package/dist-types/OdbClient.d.ts +4 -2
- package/dist-types/commands/AssociateIamRoleToResourceCommand.d.ts +92 -0
- package/dist-types/commands/CreateOdbNetworkCommand.d.ts +7 -0
- package/dist-types/commands/DisassociateIamRoleFromResourceCommand.d.ts +92 -0
- package/dist-types/commands/GetCloudVmClusterCommand.d.ts +8 -0
- package/dist-types/commands/GetOciOnboardingStatusCommand.d.ts +8 -0
- package/dist-types/commands/GetOdbNetworkCommand.d.ts +19 -0
- package/dist-types/commands/InitializeServiceCommand.d.ts +4 -2
- package/dist-types/commands/ListCloudVmClustersCommand.d.ts +8 -0
- package/dist-types/commands/ListOdbNetworksCommand.d.ts +19 -0
- package/dist-types/commands/UpdateOdbNetworkCommand.d.ts +10 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/enums.d.ts +42 -14
- package/dist-types/models/models_0.d.ts +276 -1
- package/dist-types/schemas/schemas_0.d.ts +13 -0
- package/dist-types/ts3.4/Odb.d.ts +34 -0
- package/dist-types/ts3.4/OdbClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/AssociateIamRoleToResourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DisassociateIamRoleFromResourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/InitializeServiceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/enums.d.ts +23 -8
- package/dist-types/ts3.4/models/models_0.d.ts +67 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +13 -0
- package/package.json +1 -1
|
@@ -3,6 +3,10 @@ import {
|
|
|
3
3
|
AcceptMarketplaceRegistrationCommandInput,
|
|
4
4
|
AcceptMarketplaceRegistrationCommandOutput,
|
|
5
5
|
} from "./commands/AcceptMarketplaceRegistrationCommand";
|
|
6
|
+
import {
|
|
7
|
+
AssociateIamRoleToResourceCommandInput,
|
|
8
|
+
AssociateIamRoleToResourceCommandOutput,
|
|
9
|
+
} from "./commands/AssociateIamRoleToResourceCommand";
|
|
6
10
|
import {
|
|
7
11
|
CreateCloudAutonomousVmClusterCommandInput,
|
|
8
12
|
CreateCloudAutonomousVmClusterCommandOutput,
|
|
@@ -43,6 +47,10 @@ import {
|
|
|
43
47
|
DeleteOdbPeeringConnectionCommandInput,
|
|
44
48
|
DeleteOdbPeeringConnectionCommandOutput,
|
|
45
49
|
} from "./commands/DeleteOdbPeeringConnectionCommand";
|
|
50
|
+
import {
|
|
51
|
+
DisassociateIamRoleFromResourceCommandInput,
|
|
52
|
+
DisassociateIamRoleFromResourceCommandOutput,
|
|
53
|
+
} from "./commands/DisassociateIamRoleFromResourceCommand";
|
|
46
54
|
import {
|
|
47
55
|
GetCloudAutonomousVmClusterCommandInput,
|
|
48
56
|
GetCloudAutonomousVmClusterCommandOutput,
|
|
@@ -178,6 +186,19 @@ export interface Odb {
|
|
|
178
186
|
options: __HttpHandlerOptions,
|
|
179
187
|
cb: (err: any, data?: AcceptMarketplaceRegistrationCommandOutput) => void
|
|
180
188
|
): void;
|
|
189
|
+
associateIamRoleToResource(
|
|
190
|
+
args: AssociateIamRoleToResourceCommandInput,
|
|
191
|
+
options?: __HttpHandlerOptions
|
|
192
|
+
): Promise<AssociateIamRoleToResourceCommandOutput>;
|
|
193
|
+
associateIamRoleToResource(
|
|
194
|
+
args: AssociateIamRoleToResourceCommandInput,
|
|
195
|
+
cb: (err: any, data?: AssociateIamRoleToResourceCommandOutput) => void
|
|
196
|
+
): void;
|
|
197
|
+
associateIamRoleToResource(
|
|
198
|
+
args: AssociateIamRoleToResourceCommandInput,
|
|
199
|
+
options: __HttpHandlerOptions,
|
|
200
|
+
cb: (err: any, data?: AssociateIamRoleToResourceCommandOutput) => void
|
|
201
|
+
): void;
|
|
181
202
|
createCloudAutonomousVmCluster(
|
|
182
203
|
args: CreateCloudAutonomousVmClusterCommandInput,
|
|
183
204
|
options?: __HttpHandlerOptions
|
|
@@ -308,6 +329,19 @@ export interface Odb {
|
|
|
308
329
|
options: __HttpHandlerOptions,
|
|
309
330
|
cb: (err: any, data?: DeleteOdbPeeringConnectionCommandOutput) => void
|
|
310
331
|
): void;
|
|
332
|
+
disassociateIamRoleFromResource(
|
|
333
|
+
args: DisassociateIamRoleFromResourceCommandInput,
|
|
334
|
+
options?: __HttpHandlerOptions
|
|
335
|
+
): Promise<DisassociateIamRoleFromResourceCommandOutput>;
|
|
336
|
+
disassociateIamRoleFromResource(
|
|
337
|
+
args: DisassociateIamRoleFromResourceCommandInput,
|
|
338
|
+
cb: (err: any, data?: DisassociateIamRoleFromResourceCommandOutput) => void
|
|
339
|
+
): void;
|
|
340
|
+
disassociateIamRoleFromResource(
|
|
341
|
+
args: DisassociateIamRoleFromResourceCommandInput,
|
|
342
|
+
options: __HttpHandlerOptions,
|
|
343
|
+
cb: (err: any, data?: DisassociateIamRoleFromResourceCommandOutput) => void
|
|
344
|
+
): void;
|
|
311
345
|
getCloudAutonomousVmCluster(
|
|
312
346
|
args: GetCloudAutonomousVmClusterCommandInput,
|
|
313
347
|
options?: __HttpHandlerOptions
|
|
@@ -52,6 +52,10 @@ import {
|
|
|
52
52
|
AcceptMarketplaceRegistrationCommandInput,
|
|
53
53
|
AcceptMarketplaceRegistrationCommandOutput,
|
|
54
54
|
} from "./commands/AcceptMarketplaceRegistrationCommand";
|
|
55
|
+
import {
|
|
56
|
+
AssociateIamRoleToResourceCommandInput,
|
|
57
|
+
AssociateIamRoleToResourceCommandOutput,
|
|
58
|
+
} from "./commands/AssociateIamRoleToResourceCommand";
|
|
55
59
|
import {
|
|
56
60
|
CreateCloudAutonomousVmClusterCommandInput,
|
|
57
61
|
CreateCloudAutonomousVmClusterCommandOutput,
|
|
@@ -92,6 +96,10 @@ import {
|
|
|
92
96
|
DeleteOdbPeeringConnectionCommandInput,
|
|
93
97
|
DeleteOdbPeeringConnectionCommandOutput,
|
|
94
98
|
} from "./commands/DeleteOdbPeeringConnectionCommand";
|
|
99
|
+
import {
|
|
100
|
+
DisassociateIamRoleFromResourceCommandInput,
|
|
101
|
+
DisassociateIamRoleFromResourceCommandOutput,
|
|
102
|
+
} from "./commands/DisassociateIamRoleFromResourceCommand";
|
|
95
103
|
import {
|
|
96
104
|
GetCloudAutonomousVmClusterCommandInput,
|
|
97
105
|
GetCloudAutonomousVmClusterCommandOutput,
|
|
@@ -221,6 +229,7 @@ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
|
221
229
|
export { __Client };
|
|
222
230
|
export type ServiceInputTypes =
|
|
223
231
|
| AcceptMarketplaceRegistrationCommandInput
|
|
232
|
+
| AssociateIamRoleToResourceCommandInput
|
|
224
233
|
| CreateCloudAutonomousVmClusterCommandInput
|
|
225
234
|
| CreateCloudExadataInfrastructureCommandInput
|
|
226
235
|
| CreateCloudVmClusterCommandInput
|
|
@@ -231,6 +240,7 @@ export type ServiceInputTypes =
|
|
|
231
240
|
| DeleteCloudVmClusterCommandInput
|
|
232
241
|
| DeleteOdbNetworkCommandInput
|
|
233
242
|
| DeleteOdbPeeringConnectionCommandInput
|
|
243
|
+
| DisassociateIamRoleFromResourceCommandInput
|
|
234
244
|
| GetCloudAutonomousVmClusterCommandInput
|
|
235
245
|
| GetCloudExadataInfrastructureCommandInput
|
|
236
246
|
| GetCloudExadataInfrastructureUnallocatedResourcesCommandInput
|
|
@@ -263,6 +273,7 @@ export type ServiceInputTypes =
|
|
|
263
273
|
| UpdateOdbPeeringConnectionCommandInput;
|
|
264
274
|
export type ServiceOutputTypes =
|
|
265
275
|
| AcceptMarketplaceRegistrationCommandOutput
|
|
276
|
+
| AssociateIamRoleToResourceCommandOutput
|
|
266
277
|
| CreateCloudAutonomousVmClusterCommandOutput
|
|
267
278
|
| CreateCloudExadataInfrastructureCommandOutput
|
|
268
279
|
| CreateCloudVmClusterCommandOutput
|
|
@@ -273,6 +284,7 @@ export type ServiceOutputTypes =
|
|
|
273
284
|
| DeleteCloudVmClusterCommandOutput
|
|
274
285
|
| DeleteOdbNetworkCommandOutput
|
|
275
286
|
| DeleteOdbPeeringConnectionCommandOutput
|
|
287
|
+
| DisassociateIamRoleFromResourceCommandOutput
|
|
276
288
|
| GetCloudAutonomousVmClusterCommandOutput
|
|
277
289
|
| GetCloudExadataInfrastructureCommandOutput
|
|
278
290
|
| GetCloudExadataInfrastructureUnallocatedResourcesCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
AssociateIamRoleToResourceInput,
|
|
5
|
+
AssociateIamRoleToResourceOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
OdbClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../OdbClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface AssociateIamRoleToResourceCommandInput
|
|
15
|
+
extends AssociateIamRoleToResourceInput {}
|
|
16
|
+
export interface AssociateIamRoleToResourceCommandOutput
|
|
17
|
+
extends AssociateIamRoleToResourceOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const AssociateIamRoleToResourceCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: AssociateIamRoleToResourceCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
AssociateIamRoleToResourceCommandInput,
|
|
24
|
+
AssociateIamRoleToResourceCommandOutput,
|
|
25
|
+
OdbClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: AssociateIamRoleToResourceCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
AssociateIamRoleToResourceCommandInput,
|
|
33
|
+
AssociateIamRoleToResourceCommandOutput,
|
|
34
|
+
OdbClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class AssociateIamRoleToResourceCommand extends AssociateIamRoleToResourceCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: AssociateIamRoleToResourceInput;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: AssociateIamRoleToResourceCommandInput;
|
|
48
|
+
output: AssociateIamRoleToResourceCommandOutput;
|
|
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
|
+
DisassociateIamRoleFromResourceInput,
|
|
5
|
+
DisassociateIamRoleFromResourceOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
OdbClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../OdbClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DisassociateIamRoleFromResourceCommandInput
|
|
15
|
+
extends DisassociateIamRoleFromResourceInput {}
|
|
16
|
+
export interface DisassociateIamRoleFromResourceCommandOutput
|
|
17
|
+
extends DisassociateIamRoleFromResourceOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DisassociateIamRoleFromResourceCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DisassociateIamRoleFromResourceCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DisassociateIamRoleFromResourceCommandInput,
|
|
24
|
+
DisassociateIamRoleFromResourceCommandOutput,
|
|
25
|
+
OdbClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DisassociateIamRoleFromResourceCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DisassociateIamRoleFromResourceCommandInput,
|
|
33
|
+
DisassociateIamRoleFromResourceCommandOutput,
|
|
34
|
+
OdbClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DisassociateIamRoleFromResourceCommand extends DisassociateIamRoleFromResourceCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DisassociateIamRoleFromResourceInput;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DisassociateIamRoleFromResourceCommandInput;
|
|
48
|
+
output: DisassociateIamRoleFromResourceCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * from "./AcceptMarketplaceRegistrationCommand";
|
|
2
|
+
export * from "./AssociateIamRoleToResourceCommand";
|
|
2
3
|
export * from "./CreateCloudAutonomousVmClusterCommand";
|
|
3
4
|
export * from "./CreateCloudExadataInfrastructureCommand";
|
|
4
5
|
export * from "./CreateCloudVmClusterCommand";
|
|
@@ -9,6 +10,7 @@ export * from "./DeleteCloudExadataInfrastructureCommand";
|
|
|
9
10
|
export * from "./DeleteCloudVmClusterCommand";
|
|
10
11
|
export * from "./DeleteOdbNetworkCommand";
|
|
11
12
|
export * from "./DeleteOdbPeeringConnectionCommand";
|
|
13
|
+
export * from "./DisassociateIamRoleFromResourceCommand";
|
|
12
14
|
export * from "./GetCloudAutonomousVmClusterCommand";
|
|
13
15
|
export * from "./GetCloudExadataInfrastructureCommand";
|
|
14
16
|
export * from "./GetCloudExadataInfrastructureUnallocatedResourcesCommand";
|
|
@@ -11,6 +11,11 @@ export declare const Access: {
|
|
|
11
11
|
readonly ENABLED: "ENABLED";
|
|
12
12
|
};
|
|
13
13
|
export type Access = (typeof Access)[keyof typeof Access];
|
|
14
|
+
export declare const SupportedAwsIntegration: {
|
|
15
|
+
readonly KmsTde: "KmsTde";
|
|
16
|
+
};
|
|
17
|
+
export type SupportedAwsIntegration =
|
|
18
|
+
(typeof SupportedAwsIntegration)[keyof typeof SupportedAwsIntegration];
|
|
14
19
|
export declare const ResourceStatus: {
|
|
15
20
|
readonly AVAILABLE: "AVAILABLE";
|
|
16
21
|
readonly FAILED: "FAILED";
|
|
@@ -83,6 +88,16 @@ export declare const DiskRedundancy: {
|
|
|
83
88
|
};
|
|
84
89
|
export type DiskRedundancy =
|
|
85
90
|
(typeof DiskRedundancy)[keyof typeof DiskRedundancy];
|
|
91
|
+
export declare const IamRoleStatus: {
|
|
92
|
+
readonly ASSOCIATING: "ASSOCIATING";
|
|
93
|
+
readonly CONNECTED: "CONNECTED";
|
|
94
|
+
readonly DISASSOCIATING: "DISASSOCIATING";
|
|
95
|
+
readonly DISCONNECTED: "DISCONNECTED";
|
|
96
|
+
readonly FAILED: "FAILED";
|
|
97
|
+
readonly PARTIALLY_CONNECTED: "PARTIALLY_CONNECTED";
|
|
98
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
99
|
+
};
|
|
100
|
+
export type IamRoleStatus = (typeof IamRoleStatus)[keyof typeof IamRoleStatus];
|
|
86
101
|
export declare const IormLifecycleState: {
|
|
87
102
|
readonly BOOTSTRAPPING: "BOOTSTRAPPING";
|
|
88
103
|
readonly DISABLED: "DISABLED";
|
|
@@ -100,6 +115,14 @@ export declare const Objective: {
|
|
|
100
115
|
readonly LOW_LATENCY: "LOW_LATENCY";
|
|
101
116
|
};
|
|
102
117
|
export type Objective = (typeof Objective)[keyof typeof Objective];
|
|
118
|
+
export declare const ManagedResourceStatus: {
|
|
119
|
+
readonly DISABLED: "DISABLED";
|
|
120
|
+
readonly DISABLING: "DISABLING";
|
|
121
|
+
readonly ENABLED: "ENABLED";
|
|
122
|
+
readonly ENABLING: "ENABLING";
|
|
123
|
+
};
|
|
124
|
+
export type ManagedResourceStatus =
|
|
125
|
+
(typeof ManagedResourceStatus)[keyof typeof ManagedResourceStatus];
|
|
103
126
|
export declare const DbNodeMaintenanceType: {
|
|
104
127
|
readonly VMDB_REBOOT_MIGRATION: "VMDB_REBOOT_MIGRATION";
|
|
105
128
|
};
|
|
@@ -141,14 +164,6 @@ export declare const OciOnboardingStatus: {
|
|
|
141
164
|
};
|
|
142
165
|
export type OciOnboardingStatus =
|
|
143
166
|
(typeof OciOnboardingStatus)[keyof typeof OciOnboardingStatus];
|
|
144
|
-
export declare const ManagedResourceStatus: {
|
|
145
|
-
readonly DISABLED: "DISABLED";
|
|
146
|
-
readonly DISABLING: "DISABLING";
|
|
147
|
-
readonly ENABLED: "ENABLED";
|
|
148
|
-
readonly ENABLING: "ENABLING";
|
|
149
|
-
};
|
|
150
|
-
export type ManagedResourceStatus =
|
|
151
|
-
(typeof ManagedResourceStatus)[keyof typeof ManagedResourceStatus];
|
|
152
167
|
export declare const VpcEndpointType: {
|
|
153
168
|
readonly SERVICENETWORK: "SERVICENETWORK";
|
|
154
169
|
};
|
|
@@ -6,6 +6,7 @@ import {
|
|
|
6
6
|
DbNodeResourceStatus,
|
|
7
7
|
DbServerPatchingStatus,
|
|
8
8
|
DiskRedundancy,
|
|
9
|
+
IamRoleStatus,
|
|
9
10
|
IormLifecycleState,
|
|
10
11
|
LicenseModel,
|
|
11
12
|
ManagedResourceStatus,
|
|
@@ -16,6 +17,7 @@ import {
|
|
|
16
17
|
PreferenceType,
|
|
17
18
|
ResourceStatus,
|
|
18
19
|
ShapeType,
|
|
20
|
+
SupportedAwsIntegration,
|
|
19
21
|
VpcEndpointType,
|
|
20
22
|
} from "./enums";
|
|
21
23
|
export interface AcceptMarketplaceRegistrationInput {
|
|
@@ -26,6 +28,12 @@ export interface ValidationExceptionField {
|
|
|
26
28
|
name: string | undefined;
|
|
27
29
|
message: string | undefined;
|
|
28
30
|
}
|
|
31
|
+
export interface AssociateIamRoleToResourceInput {
|
|
32
|
+
iamRoleArn: string | undefined;
|
|
33
|
+
awsIntegration: SupportedAwsIntegration | undefined;
|
|
34
|
+
resourceArn: string | undefined;
|
|
35
|
+
}
|
|
36
|
+
export interface AssociateIamRoleToResourceOutput {}
|
|
29
37
|
export interface AutonomousVirtualMachineSummary {
|
|
30
38
|
autonomousVirtualMachineId?: string | undefined;
|
|
31
39
|
status?: ResourceStatus | undefined;
|
|
@@ -440,6 +448,12 @@ export interface DataCollectionOptions {
|
|
|
440
448
|
isHealthMonitoringEnabled?: boolean | undefined;
|
|
441
449
|
isIncidentLogsEnabled?: boolean | undefined;
|
|
442
450
|
}
|
|
451
|
+
export interface IamRole {
|
|
452
|
+
iamRoleArn?: string | undefined;
|
|
453
|
+
status?: IamRoleStatus | undefined;
|
|
454
|
+
statusReason?: string | undefined;
|
|
455
|
+
awsIntegration?: SupportedAwsIntegration | undefined;
|
|
456
|
+
}
|
|
443
457
|
export interface DbIormConfig {
|
|
444
458
|
dbName?: string | undefined;
|
|
445
459
|
flashCacheLimit?: string | undefined;
|
|
@@ -492,6 +506,7 @@ export interface CloudVmCluster {
|
|
|
492
506
|
odbNetworkId?: string | undefined;
|
|
493
507
|
percentProgress?: number | undefined;
|
|
494
508
|
computeModel?: ComputeModel | undefined;
|
|
509
|
+
iamRoles?: IamRole[] | undefined;
|
|
495
510
|
}
|
|
496
511
|
export interface CloudVmClusterSummary {
|
|
497
512
|
cloudVmClusterId: string | undefined;
|
|
@@ -534,6 +549,7 @@ export interface CloudVmClusterSummary {
|
|
|
534
549
|
odbNetworkId?: string | undefined;
|
|
535
550
|
percentProgress?: number | undefined;
|
|
536
551
|
computeModel?: ComputeModel | undefined;
|
|
552
|
+
iamRoles?: IamRole[] | undefined;
|
|
537
553
|
}
|
|
538
554
|
export interface CreateCloudVmClusterInput {
|
|
539
555
|
cloudExadataInfrastructureId: string | undefined;
|
|
@@ -594,7 +610,12 @@ export interface CreateOdbNetworkInput {
|
|
|
594
610
|
clientToken?: string | undefined;
|
|
595
611
|
s3Access?: Access | undefined;
|
|
596
612
|
zeroEtlAccess?: Access | undefined;
|
|
613
|
+
stsAccess?: Access | undefined;
|
|
614
|
+
kmsAccess?: Access | undefined;
|
|
597
615
|
s3PolicyDocument?: string | undefined;
|
|
616
|
+
stsPolicyDocument?: string | undefined;
|
|
617
|
+
kmsPolicyDocument?: string | undefined;
|
|
618
|
+
crossRegionS3RestoreSourcesToEnable?: string[] | undefined;
|
|
598
619
|
tags?: Record<string, string> | undefined;
|
|
599
620
|
}
|
|
600
621
|
export interface CreateOdbNetworkOutput {
|
|
@@ -617,6 +638,11 @@ export interface CreateOdbPeeringConnectionOutput {
|
|
|
617
638
|
statusReason?: string | undefined;
|
|
618
639
|
odbPeeringConnectionId: string | undefined;
|
|
619
640
|
}
|
|
641
|
+
export interface CrossRegionS3RestoreSourcesAccess {
|
|
642
|
+
region?: string | undefined;
|
|
643
|
+
ipv4Addresses?: string[] | undefined;
|
|
644
|
+
status?: ManagedResourceStatus | undefined;
|
|
645
|
+
}
|
|
620
646
|
export interface DbNode {
|
|
621
647
|
dbNodeId?: string | undefined;
|
|
622
648
|
dbNodeArn?: string | undefined;
|
|
@@ -753,15 +779,36 @@ export interface DeleteOdbPeeringConnectionInput {
|
|
|
753
779
|
odbPeeringConnectionId: string | undefined;
|
|
754
780
|
}
|
|
755
781
|
export interface DeleteOdbPeeringConnectionOutput {}
|
|
782
|
+
export interface DisassociateIamRoleFromResourceInput {
|
|
783
|
+
iamRoleArn: string | undefined;
|
|
784
|
+
awsIntegration: SupportedAwsIntegration | undefined;
|
|
785
|
+
resourceArn: string | undefined;
|
|
786
|
+
}
|
|
787
|
+
export interface DisassociateIamRoleFromResourceOutput {}
|
|
756
788
|
export interface GetOciOnboardingStatusInput {}
|
|
789
|
+
export interface OciIdentityDomain {
|
|
790
|
+
ociIdentityDomainId?: string | undefined;
|
|
791
|
+
ociIdentityDomainResourceUrl?: string | undefined;
|
|
792
|
+
ociIdentityDomainUrl?: string | undefined;
|
|
793
|
+
status?: ResourceStatus | undefined;
|
|
794
|
+
statusReason?: string | undefined;
|
|
795
|
+
accountSetupCloudFormationUrl?: string | undefined;
|
|
796
|
+
}
|
|
757
797
|
export interface GetOciOnboardingStatusOutput {
|
|
758
798
|
status?: OciOnboardingStatus | undefined;
|
|
759
799
|
existingTenancyActivationLink?: string | undefined;
|
|
760
800
|
newTenancyActivationLink?: string | undefined;
|
|
801
|
+
ociIdentityDomain?: OciIdentityDomain | undefined;
|
|
761
802
|
}
|
|
762
803
|
export interface GetOdbNetworkInput {
|
|
763
804
|
odbNetworkId: string | undefined;
|
|
764
805
|
}
|
|
806
|
+
export interface KmsAccess {
|
|
807
|
+
status?: ManagedResourceStatus | undefined;
|
|
808
|
+
ipv4Addresses?: string[] | undefined;
|
|
809
|
+
domainName?: string | undefined;
|
|
810
|
+
kmsPolicyDocument?: string | undefined;
|
|
811
|
+
}
|
|
765
812
|
export interface ManagedS3BackupAccess {
|
|
766
813
|
status?: ManagedResourceStatus | undefined;
|
|
767
814
|
ipv4Addresses?: string[] | undefined;
|
|
@@ -776,6 +823,12 @@ export interface ServiceNetworkEndpoint {
|
|
|
776
823
|
vpcEndpointId?: string | undefined;
|
|
777
824
|
vpcEndpointType?: VpcEndpointType | undefined;
|
|
778
825
|
}
|
|
826
|
+
export interface StsAccess {
|
|
827
|
+
status?: ManagedResourceStatus | undefined;
|
|
828
|
+
ipv4Addresses?: string[] | undefined;
|
|
829
|
+
domainName?: string | undefined;
|
|
830
|
+
stsPolicyDocument?: string | undefined;
|
|
831
|
+
}
|
|
779
832
|
export interface ZeroEtlAccess {
|
|
780
833
|
status?: ManagedResourceStatus | undefined;
|
|
781
834
|
cidr?: string | undefined;
|
|
@@ -788,6 +841,11 @@ export interface ManagedServices {
|
|
|
788
841
|
managedS3BackupAccess?: ManagedS3BackupAccess | undefined;
|
|
789
842
|
zeroEtlAccess?: ZeroEtlAccess | undefined;
|
|
790
843
|
s3Access?: S3Access | undefined;
|
|
844
|
+
stsAccess?: StsAccess | undefined;
|
|
845
|
+
kmsAccess?: KmsAccess | undefined;
|
|
846
|
+
crossRegionS3RestoreSourcesAccess?:
|
|
847
|
+
| CrossRegionS3RestoreSourcesAccess[]
|
|
848
|
+
| undefined;
|
|
791
849
|
}
|
|
792
850
|
export interface OciDnsForwardingConfig {
|
|
793
851
|
domainName?: string | undefined;
|
|
@@ -841,7 +899,9 @@ export interface GetOdbPeeringConnectionOutput {
|
|
|
841
899
|
export interface GiVersionSummary {
|
|
842
900
|
version?: string | undefined;
|
|
843
901
|
}
|
|
844
|
-
export interface InitializeServiceInput {
|
|
902
|
+
export interface InitializeServiceInput {
|
|
903
|
+
ociIdentityDomain?: boolean | undefined;
|
|
904
|
+
}
|
|
845
905
|
export interface InitializeServiceOutput {}
|
|
846
906
|
export interface ListDbSystemShapesInput {
|
|
847
907
|
maxResults?: number | undefined;
|
|
@@ -943,7 +1003,13 @@ export interface UpdateOdbNetworkInput {
|
|
|
943
1003
|
peeredCidrsToBeRemoved?: string[] | undefined;
|
|
944
1004
|
s3Access?: Access | undefined;
|
|
945
1005
|
zeroEtlAccess?: Access | undefined;
|
|
1006
|
+
stsAccess?: Access | undefined;
|
|
1007
|
+
kmsAccess?: Access | undefined;
|
|
946
1008
|
s3PolicyDocument?: string | undefined;
|
|
1009
|
+
stsPolicyDocument?: string | undefined;
|
|
1010
|
+
kmsPolicyDocument?: string | undefined;
|
|
1011
|
+
crossRegionS3RestoreSourcesToEnable?: string[] | undefined;
|
|
1012
|
+
crossRegionS3RestoreSourcesToDisable?: string[] | undefined;
|
|
947
1013
|
}
|
|
948
1014
|
export interface UpdateOdbNetworkOutput {
|
|
949
1015
|
displayName?: string | undefined;
|
|
@@ -9,6 +9,8 @@ export declare var SensitiveString: StaticSimpleSchema;
|
|
|
9
9
|
export declare var AcceptMarketplaceRegistrationInput: StaticStructureSchema;
|
|
10
10
|
export declare var AcceptMarketplaceRegistrationOutput: StaticStructureSchema;
|
|
11
11
|
export declare var AccessDeniedException: StaticErrorSchema;
|
|
12
|
+
export declare var AssociateIamRoleToResourceInput: StaticStructureSchema;
|
|
13
|
+
export declare var AssociateIamRoleToResourceOutput: StaticStructureSchema;
|
|
12
14
|
export declare var AutonomousVirtualMachineSummary: StaticStructureSchema;
|
|
13
15
|
export declare var CloudAutonomousVmCluster: StaticStructureSchema;
|
|
14
16
|
export declare var CloudAutonomousVmClusterResourceDetails: StaticStructureSchema;
|
|
@@ -29,6 +31,7 @@ export declare var CreateOdbNetworkInput: StaticStructureSchema;
|
|
|
29
31
|
export declare var CreateOdbNetworkOutput: StaticStructureSchema;
|
|
30
32
|
export declare var CreateOdbPeeringConnectionInput: StaticStructureSchema;
|
|
31
33
|
export declare var CreateOdbPeeringConnectionOutput: StaticStructureSchema;
|
|
34
|
+
export declare var CrossRegionS3RestoreSourcesAccess: StaticStructureSchema;
|
|
32
35
|
export declare var CustomerContact: StaticStructureSchema;
|
|
33
36
|
export declare var DataCollectionOptions: StaticStructureSchema;
|
|
34
37
|
export declare var DayOfWeek: StaticStructureSchema;
|
|
@@ -49,6 +52,8 @@ export declare var DeleteOdbNetworkInput: StaticStructureSchema;
|
|
|
49
52
|
export declare var DeleteOdbNetworkOutput: StaticStructureSchema;
|
|
50
53
|
export declare var DeleteOdbPeeringConnectionInput: StaticStructureSchema;
|
|
51
54
|
export declare var DeleteOdbPeeringConnectionOutput: StaticStructureSchema;
|
|
55
|
+
export declare var DisassociateIamRoleFromResourceInput: StaticStructureSchema;
|
|
56
|
+
export declare var DisassociateIamRoleFromResourceOutput: StaticStructureSchema;
|
|
52
57
|
export declare var ExadataIormConfig: StaticStructureSchema;
|
|
53
58
|
export declare var GetCloudAutonomousVmClusterInput: StaticStructureSchema;
|
|
54
59
|
export declare var GetCloudAutonomousVmClusterOutput: StaticStructureSchema;
|
|
@@ -69,9 +74,11 @@ export declare var GetOdbNetworkOutput: StaticStructureSchema;
|
|
|
69
74
|
export declare var GetOdbPeeringConnectionInput: StaticStructureSchema;
|
|
70
75
|
export declare var GetOdbPeeringConnectionOutput: StaticStructureSchema;
|
|
71
76
|
export declare var GiVersionSummary: StaticStructureSchema;
|
|
77
|
+
export declare var IamRole: StaticStructureSchema;
|
|
72
78
|
export declare var InitializeServiceInput: StaticStructureSchema;
|
|
73
79
|
export declare var InitializeServiceOutput: StaticStructureSchema;
|
|
74
80
|
export declare var InternalServerException: StaticErrorSchema;
|
|
81
|
+
export declare var KmsAccess: StaticStructureSchema;
|
|
75
82
|
export declare var ListAutonomousVirtualMachinesInput: StaticStructureSchema;
|
|
76
83
|
export declare var ListAutonomousVirtualMachinesOutput: StaticStructureSchema;
|
|
77
84
|
export declare var ListCloudAutonomousVmClustersInput: StaticStructureSchema;
|
|
@@ -101,6 +108,7 @@ export declare var ManagedS3BackupAccess: StaticStructureSchema;
|
|
|
101
108
|
export declare var ManagedServices: StaticStructureSchema;
|
|
102
109
|
export declare var Month: StaticStructureSchema;
|
|
103
110
|
export declare var OciDnsForwardingConfig: StaticStructureSchema;
|
|
111
|
+
export declare var OciIdentityDomain: StaticStructureSchema;
|
|
104
112
|
export declare var OdbNetwork: StaticStructureSchema;
|
|
105
113
|
export declare var OdbNetworkSummary: StaticStructureSchema;
|
|
106
114
|
export declare var OdbPeeringConnection: StaticStructureSchema;
|
|
@@ -115,6 +123,7 @@ export declare var StartDbNodeInput: StaticStructureSchema;
|
|
|
115
123
|
export declare var StartDbNodeOutput: StaticStructureSchema;
|
|
116
124
|
export declare var StopDbNodeInput: StaticStructureSchema;
|
|
117
125
|
export declare var StopDbNodeOutput: StaticStructureSchema;
|
|
126
|
+
export declare var StsAccess: StaticStructureSchema;
|
|
118
127
|
export declare var SystemVersionSummary: StaticStructureSchema;
|
|
119
128
|
export declare var TagResourceRequest: StaticStructureSchema;
|
|
120
129
|
export declare var TagResourceResponse: StaticStructureSchema;
|
|
@@ -137,6 +146,7 @@ export declare var CloudAutonomousVmClusterList: StaticListSchema;
|
|
|
137
146
|
export declare var CloudAutonomousVmClusterResourceDetailsList: StaticListSchema;
|
|
138
147
|
export declare var CloudExadataInfrastructureList: StaticListSchema;
|
|
139
148
|
export declare var CloudVmClusterList: StaticListSchema;
|
|
149
|
+
export declare var CrossRegionS3RestoreSourcesAccessList: StaticListSchema;
|
|
140
150
|
export declare var CustomerContacts: StaticListSchema;
|
|
141
151
|
export declare var DaysOfWeek: StaticListSchema;
|
|
142
152
|
export declare var DbIormConfigList: StaticListSchema;
|
|
@@ -145,6 +155,7 @@ export declare var DbServerList: StaticListSchema;
|
|
|
145
155
|
export declare var DbSystemShapeList: StaticListSchema;
|
|
146
156
|
export declare var GiVersionList: StaticListSchema;
|
|
147
157
|
export declare var HoursOfDay: number;
|
|
158
|
+
export declare var IamRoleList: StaticListSchema;
|
|
148
159
|
export declare var Months: StaticListSchema;
|
|
149
160
|
export declare var OciDnsForwardingConfigList: StaticListSchema;
|
|
150
161
|
export declare var OdbNetworkList: StaticListSchema;
|
|
@@ -159,6 +170,7 @@ export declare var WeeksOfMonth: number;
|
|
|
159
170
|
export declare var RequestTagMap: number;
|
|
160
171
|
export declare var ResponseTagMap: number;
|
|
161
172
|
export declare var AcceptMarketplaceRegistration: StaticOperationSchema;
|
|
173
|
+
export declare var AssociateIamRoleToResource: StaticOperationSchema;
|
|
162
174
|
export declare var CreateCloudAutonomousVmCluster: StaticOperationSchema;
|
|
163
175
|
export declare var CreateCloudExadataInfrastructure: StaticOperationSchema;
|
|
164
176
|
export declare var CreateCloudVmCluster: StaticOperationSchema;
|
|
@@ -169,6 +181,7 @@ export declare var DeleteCloudExadataInfrastructure: StaticOperationSchema;
|
|
|
169
181
|
export declare var DeleteCloudVmCluster: StaticOperationSchema;
|
|
170
182
|
export declare var DeleteOdbNetwork: StaticOperationSchema;
|
|
171
183
|
export declare var DeleteOdbPeeringConnection: StaticOperationSchema;
|
|
184
|
+
export declare var DisassociateIamRoleFromResource: StaticOperationSchema;
|
|
172
185
|
export declare var GetCloudAutonomousVmCluster: StaticOperationSchema;
|
|
173
186
|
export declare var GetCloudExadataInfrastructure: StaticOperationSchema;
|
|
174
187
|
export declare var GetCloudExadataInfrastructureUnallocatedResources: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-odb",
|
|
3
3
|
"description": "AWS SDK for JavaScript Odb Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.938.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-odb",
|