@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
|
@@ -94,6 +94,25 @@ declare const GetOdbNetworkCommand_base: {
|
|
|
94
94
|
* // domainName: "STRING_VALUE",
|
|
95
95
|
* // s3PolicyDocument: "STRING_VALUE",
|
|
96
96
|
* // },
|
|
97
|
+
* // stsAccess: { // StsAccess
|
|
98
|
+
* // status: "ENABLED" || "ENABLING" || "DISABLED" || "DISABLING",
|
|
99
|
+
* // ipv4Addresses: "<StringList>",
|
|
100
|
+
* // domainName: "STRING_VALUE",
|
|
101
|
+
* // stsPolicyDocument: "STRING_VALUE",
|
|
102
|
+
* // },
|
|
103
|
+
* // kmsAccess: { // KmsAccess
|
|
104
|
+
* // status: "ENABLED" || "ENABLING" || "DISABLED" || "DISABLING",
|
|
105
|
+
* // ipv4Addresses: "<StringList>",
|
|
106
|
+
* // domainName: "STRING_VALUE",
|
|
107
|
+
* // kmsPolicyDocument: "STRING_VALUE",
|
|
108
|
+
* // },
|
|
109
|
+
* // crossRegionS3RestoreSourcesAccess: [ // CrossRegionS3RestoreSourcesAccessList
|
|
110
|
+
* // { // CrossRegionS3RestoreSourcesAccess
|
|
111
|
+
* // region: "STRING_VALUE",
|
|
112
|
+
* // ipv4Addresses: "<StringList>",
|
|
113
|
+
* // status: "ENABLED" || "ENABLING" || "DISABLED" || "DISABLING",
|
|
114
|
+
* // },
|
|
115
|
+
* // ],
|
|
97
116
|
* // },
|
|
98
117
|
* // },
|
|
99
118
|
* // };
|
|
@@ -36,7 +36,9 @@ declare const InitializeServiceCommand_base: {
|
|
|
36
36
|
* // import type { OdbClientConfig } from "@aws-sdk/client-odb";
|
|
37
37
|
* const config = {}; // type is OdbClientConfig
|
|
38
38
|
* const client = new OdbClient(config);
|
|
39
|
-
* const input = {
|
|
39
|
+
* const input = { // InitializeServiceInput
|
|
40
|
+
* ociIdentityDomain: true || false,
|
|
41
|
+
* };
|
|
40
42
|
* const command = new InitializeServiceCommand(input);
|
|
41
43
|
* const response = await client.send(command);
|
|
42
44
|
* // {};
|
|
@@ -71,7 +73,7 @@ export declare class InitializeServiceCommand extends InitializeServiceCommand_b
|
|
|
71
73
|
/** @internal type navigation helper, not in runtime. */
|
|
72
74
|
protected static __types: {
|
|
73
75
|
api: {
|
|
74
|
-
input:
|
|
76
|
+
input: InitializeServiceInput;
|
|
75
77
|
output: {};
|
|
76
78
|
};
|
|
77
79
|
sdk: {
|
|
@@ -110,6 +110,14 @@ declare const ListCloudVmClustersCommand_base: {
|
|
|
110
110
|
* // odbNetworkId: "STRING_VALUE",
|
|
111
111
|
* // percentProgress: Number("float"),
|
|
112
112
|
* // computeModel: "ECPU" || "OCPU",
|
|
113
|
+
* // iamRoles: [ // IamRoleList
|
|
114
|
+
* // { // IamRole
|
|
115
|
+
* // iamRoleArn: "STRING_VALUE",
|
|
116
|
+
* // status: "ASSOCIATING" || "DISASSOCIATING" || "FAILED" || "CONNECTED" || "DISCONNECTED" || "PARTIALLY_CONNECTED" || "UNKNOWN",
|
|
117
|
+
* // statusReason: "STRING_VALUE",
|
|
118
|
+
* // awsIntegration: "KmsTde",
|
|
119
|
+
* // },
|
|
120
|
+
* // ],
|
|
113
121
|
* // },
|
|
114
122
|
* // ],
|
|
115
123
|
* // };
|
|
@@ -97,6 +97,25 @@ declare const ListOdbNetworksCommand_base: {
|
|
|
97
97
|
* // domainName: "STRING_VALUE",
|
|
98
98
|
* // s3PolicyDocument: "STRING_VALUE",
|
|
99
99
|
* // },
|
|
100
|
+
* // stsAccess: { // StsAccess
|
|
101
|
+
* // status: "ENABLED" || "ENABLING" || "DISABLED" || "DISABLING",
|
|
102
|
+
* // ipv4Addresses: "<StringList>",
|
|
103
|
+
* // domainName: "STRING_VALUE",
|
|
104
|
+
* // stsPolicyDocument: "STRING_VALUE",
|
|
105
|
+
* // },
|
|
106
|
+
* // kmsAccess: { // KmsAccess
|
|
107
|
+
* // status: "ENABLED" || "ENABLING" || "DISABLED" || "DISABLING",
|
|
108
|
+
* // ipv4Addresses: "<StringList>",
|
|
109
|
+
* // domainName: "STRING_VALUE",
|
|
110
|
+
* // kmsPolicyDocument: "STRING_VALUE",
|
|
111
|
+
* // },
|
|
112
|
+
* // crossRegionS3RestoreSourcesAccess: [ // CrossRegionS3RestoreSourcesAccessList
|
|
113
|
+
* // { // CrossRegionS3RestoreSourcesAccess
|
|
114
|
+
* // region: "STRING_VALUE",
|
|
115
|
+
* // ipv4Addresses: "<StringList>",
|
|
116
|
+
* // status: "ENABLED" || "ENABLING" || "DISABLED" || "DISABLING",
|
|
117
|
+
* // },
|
|
118
|
+
* // ],
|
|
100
119
|
* // },
|
|
101
120
|
* // },
|
|
102
121
|
* // ],
|
|
@@ -47,7 +47,17 @@ declare const UpdateOdbNetworkCommand_base: {
|
|
|
47
47
|
* ],
|
|
48
48
|
* s3Access: "ENABLED" || "DISABLED",
|
|
49
49
|
* zeroEtlAccess: "ENABLED" || "DISABLED",
|
|
50
|
+
* stsAccess: "ENABLED" || "DISABLED",
|
|
51
|
+
* kmsAccess: "ENABLED" || "DISABLED",
|
|
50
52
|
* s3PolicyDocument: "STRING_VALUE",
|
|
53
|
+
* stsPolicyDocument: "STRING_VALUE",
|
|
54
|
+
* kmsPolicyDocument: "STRING_VALUE",
|
|
55
|
+
* crossRegionS3RestoreSourcesToEnable: [
|
|
56
|
+
* "STRING_VALUE",
|
|
57
|
+
* ],
|
|
58
|
+
* crossRegionS3RestoreSourcesToDisable: [
|
|
59
|
+
* "STRING_VALUE",
|
|
60
|
+
* ],
|
|
51
61
|
* };
|
|
52
62
|
* const command = new UpdateOdbNetworkCommand(input);
|
|
53
63
|
* const response = await client.send(command);
|
|
@@ -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";
|
|
@@ -24,6 +24,17 @@ export declare const Access: {
|
|
|
24
24
|
* @public
|
|
25
25
|
*/
|
|
26
26
|
export type Access = (typeof Access)[keyof typeof Access];
|
|
27
|
+
/**
|
|
28
|
+
* @public
|
|
29
|
+
* @enum
|
|
30
|
+
*/
|
|
31
|
+
export declare const SupportedAwsIntegration: {
|
|
32
|
+
readonly KmsTde: "KmsTde";
|
|
33
|
+
};
|
|
34
|
+
/**
|
|
35
|
+
* @public
|
|
36
|
+
*/
|
|
37
|
+
export type SupportedAwsIntegration = (typeof SupportedAwsIntegration)[keyof typeof SupportedAwsIntegration];
|
|
27
38
|
/**
|
|
28
39
|
* @public
|
|
29
40
|
* @enum
|
|
@@ -154,6 +165,23 @@ export declare const DiskRedundancy: {
|
|
|
154
165
|
* @public
|
|
155
166
|
*/
|
|
156
167
|
export type DiskRedundancy = (typeof DiskRedundancy)[keyof typeof DiskRedundancy];
|
|
168
|
+
/**
|
|
169
|
+
* @public
|
|
170
|
+
* @enum
|
|
171
|
+
*/
|
|
172
|
+
export declare const IamRoleStatus: {
|
|
173
|
+
readonly ASSOCIATING: "ASSOCIATING";
|
|
174
|
+
readonly CONNECTED: "CONNECTED";
|
|
175
|
+
readonly DISASSOCIATING: "DISASSOCIATING";
|
|
176
|
+
readonly DISCONNECTED: "DISCONNECTED";
|
|
177
|
+
readonly FAILED: "FAILED";
|
|
178
|
+
readonly PARTIALLY_CONNECTED: "PARTIALLY_CONNECTED";
|
|
179
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
180
|
+
};
|
|
181
|
+
/**
|
|
182
|
+
* @public
|
|
183
|
+
*/
|
|
184
|
+
export type IamRoleStatus = (typeof IamRoleStatus)[keyof typeof IamRoleStatus];
|
|
157
185
|
/**
|
|
158
186
|
* @public
|
|
159
187
|
* @enum
|
|
@@ -184,6 +212,20 @@ export declare const Objective: {
|
|
|
184
212
|
* @public
|
|
185
213
|
*/
|
|
186
214
|
export type Objective = (typeof Objective)[keyof typeof Objective];
|
|
215
|
+
/**
|
|
216
|
+
* @public
|
|
217
|
+
* @enum
|
|
218
|
+
*/
|
|
219
|
+
export declare const ManagedResourceStatus: {
|
|
220
|
+
readonly DISABLED: "DISABLED";
|
|
221
|
+
readonly DISABLING: "DISABLING";
|
|
222
|
+
readonly ENABLED: "ENABLED";
|
|
223
|
+
readonly ENABLING: "ENABLING";
|
|
224
|
+
};
|
|
225
|
+
/**
|
|
226
|
+
* @public
|
|
227
|
+
*/
|
|
228
|
+
export type ManagedResourceStatus = (typeof ManagedResourceStatus)[keyof typeof ManagedResourceStatus];
|
|
187
229
|
/**
|
|
188
230
|
* @public
|
|
189
231
|
* @enum
|
|
@@ -250,20 +292,6 @@ export declare const OciOnboardingStatus: {
|
|
|
250
292
|
* @public
|
|
251
293
|
*/
|
|
252
294
|
export type OciOnboardingStatus = (typeof OciOnboardingStatus)[keyof typeof OciOnboardingStatus];
|
|
253
|
-
/**
|
|
254
|
-
* @public
|
|
255
|
-
* @enum
|
|
256
|
-
*/
|
|
257
|
-
export declare const ManagedResourceStatus: {
|
|
258
|
-
readonly DISABLED: "DISABLED";
|
|
259
|
-
readonly DISABLING: "DISABLING";
|
|
260
|
-
readonly ENABLED: "ENABLED";
|
|
261
|
-
readonly ENABLING: "ENABLING";
|
|
262
|
-
};
|
|
263
|
-
/**
|
|
264
|
-
* @public
|
|
265
|
-
*/
|
|
266
|
-
export type ManagedResourceStatus = (typeof ManagedResourceStatus)[keyof typeof ManagedResourceStatus];
|
|
267
295
|
/**
|
|
268
296
|
* @public
|
|
269
297
|
* @enum
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Access, ComputeModel, DayOfWeekName, DbNodeMaintenanceType, DbNodeResourceStatus, DbServerPatchingStatus, DiskRedundancy, IormLifecycleState, LicenseModel, ManagedResourceStatus, MonthName, Objective, OciOnboardingStatus, PatchingModeType, PreferenceType, ResourceStatus, ShapeType, VpcEndpointType } from "./enums";
|
|
1
|
+
import { Access, ComputeModel, DayOfWeekName, DbNodeMaintenanceType, DbNodeResourceStatus, DbServerPatchingStatus, DiskRedundancy, IamRoleStatus, IormLifecycleState, LicenseModel, ManagedResourceStatus, MonthName, Objective, OciOnboardingStatus, PatchingModeType, PreferenceType, ResourceStatus, ShapeType, SupportedAwsIntegration, VpcEndpointType } from "./enums";
|
|
2
2
|
/**
|
|
3
3
|
* @public
|
|
4
4
|
*/
|
|
@@ -30,6 +30,31 @@ export interface ValidationExceptionField {
|
|
|
30
30
|
*/
|
|
31
31
|
message: string | undefined;
|
|
32
32
|
}
|
|
33
|
+
/**
|
|
34
|
+
* @public
|
|
35
|
+
*/
|
|
36
|
+
export interface AssociateIamRoleToResourceInput {
|
|
37
|
+
/**
|
|
38
|
+
* <p>The Amazon Resource Name (ARN) of the IAM service role to associate with the resource.</p>
|
|
39
|
+
* @public
|
|
40
|
+
*/
|
|
41
|
+
iamRoleArn: string | undefined;
|
|
42
|
+
/**
|
|
43
|
+
* <p>The Amazon Web Services integration configuration settings for the IAM service role association.</p>
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
46
|
+
awsIntegration: SupportedAwsIntegration | undefined;
|
|
47
|
+
/**
|
|
48
|
+
* <p>The Amazon Resource Name (ARN) of the target resource to associate with the IAM service role.</p>
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
51
|
+
resourceArn: string | undefined;
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
56
|
+
export interface AssociateIamRoleToResourceOutput {
|
|
57
|
+
}
|
|
33
58
|
/**
|
|
34
59
|
* <p>A summary of an Autonomous Virtual Machine (VM) within an Autonomous VM cluster.</p>
|
|
35
60
|
* @public
|
|
@@ -1900,6 +1925,32 @@ export interface DataCollectionOptions {
|
|
|
1900
1925
|
*/
|
|
1901
1926
|
isIncidentLogsEnabled?: boolean | undefined;
|
|
1902
1927
|
}
|
|
1928
|
+
/**
|
|
1929
|
+
* <p>Information about an Amazon Web Services Identity and Access Management (IAM) service role associated with a resource.</p>
|
|
1930
|
+
* @public
|
|
1931
|
+
*/
|
|
1932
|
+
export interface IamRole {
|
|
1933
|
+
/**
|
|
1934
|
+
* <p>The Amazon Resource Name (ARN) of the IAM service role.</p>
|
|
1935
|
+
* @public
|
|
1936
|
+
*/
|
|
1937
|
+
iamRoleArn?: string | undefined;
|
|
1938
|
+
/**
|
|
1939
|
+
* <p>The current status of the IAM service role.</p>
|
|
1940
|
+
* @public
|
|
1941
|
+
*/
|
|
1942
|
+
status?: IamRoleStatus | undefined;
|
|
1943
|
+
/**
|
|
1944
|
+
* <p>Additional information about the current status of the IAM service role, if applicable.</p>
|
|
1945
|
+
* @public
|
|
1946
|
+
*/
|
|
1947
|
+
statusReason?: string | undefined;
|
|
1948
|
+
/**
|
|
1949
|
+
* <p>The Amazon Web Services integration configuration settings for the IAM service role.</p>
|
|
1950
|
+
* @public
|
|
1951
|
+
*/
|
|
1952
|
+
awsIntegration?: SupportedAwsIntegration | undefined;
|
|
1953
|
+
}
|
|
1903
1954
|
/**
|
|
1904
1955
|
* <p>The IORM configuration settings for the database.</p>
|
|
1905
1956
|
* @public
|
|
@@ -2152,6 +2203,11 @@ export interface CloudVmCluster {
|
|
|
2152
2203
|
* @public
|
|
2153
2204
|
*/
|
|
2154
2205
|
computeModel?: ComputeModel | undefined;
|
|
2206
|
+
/**
|
|
2207
|
+
* <p>The Amazon Web Services Identity and Access Management (IAM) service roles associated with the VM cluster.</p>
|
|
2208
|
+
* @public
|
|
2209
|
+
*/
|
|
2210
|
+
iamRoles?: IamRole[] | undefined;
|
|
2155
2211
|
}
|
|
2156
2212
|
/**
|
|
2157
2213
|
* <p>Information about a VM cluster.</p>
|
|
@@ -2358,6 +2414,11 @@ export interface CloudVmClusterSummary {
|
|
|
2358
2414
|
* @public
|
|
2359
2415
|
*/
|
|
2360
2416
|
computeModel?: ComputeModel | undefined;
|
|
2417
|
+
/**
|
|
2418
|
+
* <p>The Amazon Web Services Identity and Access Management (IAM) service roles associated with the VM cluster in the summary information.</p>
|
|
2419
|
+
* @public
|
|
2420
|
+
*/
|
|
2421
|
+
iamRoles?: IamRole[] | undefined;
|
|
2361
2422
|
}
|
|
2362
2423
|
/**
|
|
2363
2424
|
* @public
|
|
@@ -2618,11 +2679,36 @@ export interface CreateOdbNetworkInput {
|
|
|
2618
2679
|
* @public
|
|
2619
2680
|
*/
|
|
2620
2681
|
zeroEtlAccess?: Access | undefined;
|
|
2682
|
+
/**
|
|
2683
|
+
* <p>The Amazon Web Services Security Token Service (STS) access configuration for the ODB network.</p>
|
|
2684
|
+
* @public
|
|
2685
|
+
*/
|
|
2686
|
+
stsAccess?: Access | undefined;
|
|
2687
|
+
/**
|
|
2688
|
+
* <p>The Amazon Web Services Key Management Service (KMS) access configuration for the ODB network.</p>
|
|
2689
|
+
* @public
|
|
2690
|
+
*/
|
|
2691
|
+
kmsAccess?: Access | undefined;
|
|
2621
2692
|
/**
|
|
2622
2693
|
* <p>Specifies the endpoint policy for Amazon S3 access from the ODB network.</p>
|
|
2623
2694
|
* @public
|
|
2624
2695
|
*/
|
|
2625
2696
|
s3PolicyDocument?: string | undefined;
|
|
2697
|
+
/**
|
|
2698
|
+
* <p>The STS policy document that defines permissions for token service usage within the ODB network.</p>
|
|
2699
|
+
* @public
|
|
2700
|
+
*/
|
|
2701
|
+
stsPolicyDocument?: string | undefined;
|
|
2702
|
+
/**
|
|
2703
|
+
* <p>The KMS policy document that defines permissions for key usage within the ODB network.</p>
|
|
2704
|
+
* @public
|
|
2705
|
+
*/
|
|
2706
|
+
kmsPolicyDocument?: string | undefined;
|
|
2707
|
+
/**
|
|
2708
|
+
* <p>The cross-Region Amazon S3 restore sources to enable for the ODB network.</p>
|
|
2709
|
+
* @public
|
|
2710
|
+
*/
|
|
2711
|
+
crossRegionS3RestoreSourcesToEnable?: string[] | undefined;
|
|
2626
2712
|
/**
|
|
2627
2713
|
* <p>The list of resource tags to apply to the ODB network.</p>
|
|
2628
2714
|
* @public
|
|
@@ -2714,6 +2800,27 @@ export interface CreateOdbPeeringConnectionOutput {
|
|
|
2714
2800
|
*/
|
|
2715
2801
|
odbPeeringConnectionId: string | undefined;
|
|
2716
2802
|
}
|
|
2803
|
+
/**
|
|
2804
|
+
* <p>The configuration access for the cross-Region Amazon S3 database restore source for the ODB network.</p>
|
|
2805
|
+
* @public
|
|
2806
|
+
*/
|
|
2807
|
+
export interface CrossRegionS3RestoreSourcesAccess {
|
|
2808
|
+
/**
|
|
2809
|
+
* <p>The Amazon Web Services Region for cross-Region S3 restore access.</p>
|
|
2810
|
+
* @public
|
|
2811
|
+
*/
|
|
2812
|
+
region?: string | undefined;
|
|
2813
|
+
/**
|
|
2814
|
+
* <p>The IPv4 addresses allowed for cross-Region S3 restore access.</p>
|
|
2815
|
+
* @public
|
|
2816
|
+
*/
|
|
2817
|
+
ipv4Addresses?: string[] | undefined;
|
|
2818
|
+
/**
|
|
2819
|
+
* <p>The current status of the cross-Region S3 restore access configuration.</p>
|
|
2820
|
+
* @public
|
|
2821
|
+
*/
|
|
2822
|
+
status?: ManagedResourceStatus | undefined;
|
|
2823
|
+
}
|
|
2717
2824
|
/**
|
|
2718
2825
|
* <p>Information about a DB node.</p>
|
|
2719
2826
|
* @public
|
|
@@ -3322,11 +3429,72 @@ export interface DeleteOdbPeeringConnectionInput {
|
|
|
3322
3429
|
*/
|
|
3323
3430
|
export interface DeleteOdbPeeringConnectionOutput {
|
|
3324
3431
|
}
|
|
3432
|
+
/**
|
|
3433
|
+
* @public
|
|
3434
|
+
*/
|
|
3435
|
+
export interface DisassociateIamRoleFromResourceInput {
|
|
3436
|
+
/**
|
|
3437
|
+
* <p>The Amazon Resource Name (ARN) of the IAM service role to disassociate from the resource.</p>
|
|
3438
|
+
* @public
|
|
3439
|
+
*/
|
|
3440
|
+
iamRoleArn: string | undefined;
|
|
3441
|
+
/**
|
|
3442
|
+
* <p>The Amazon Web Services integration configuration settings for the IAM service role disassociation.</p>
|
|
3443
|
+
* @public
|
|
3444
|
+
*/
|
|
3445
|
+
awsIntegration: SupportedAwsIntegration | undefined;
|
|
3446
|
+
/**
|
|
3447
|
+
* <p>The Amazon Resource Name (ARN) of the target resource to disassociate from the IAM service role.</p>
|
|
3448
|
+
* @public
|
|
3449
|
+
*/
|
|
3450
|
+
resourceArn: string | undefined;
|
|
3451
|
+
}
|
|
3452
|
+
/**
|
|
3453
|
+
* @public
|
|
3454
|
+
*/
|
|
3455
|
+
export interface DisassociateIamRoleFromResourceOutput {
|
|
3456
|
+
}
|
|
3325
3457
|
/**
|
|
3326
3458
|
* @public
|
|
3327
3459
|
*/
|
|
3328
3460
|
export interface GetOciOnboardingStatusInput {
|
|
3329
3461
|
}
|
|
3462
|
+
/**
|
|
3463
|
+
* <p>Information about an Oracle Cloud Infrastructure (OCI) identity domain configuration.</p>
|
|
3464
|
+
* @public
|
|
3465
|
+
*/
|
|
3466
|
+
export interface OciIdentityDomain {
|
|
3467
|
+
/**
|
|
3468
|
+
* <p>The unique identifier of the OCI identity domain.</p>
|
|
3469
|
+
* @public
|
|
3470
|
+
*/
|
|
3471
|
+
ociIdentityDomainId?: string | undefined;
|
|
3472
|
+
/**
|
|
3473
|
+
* <p>The resource URL for accessing the OCI identity domain.</p>
|
|
3474
|
+
* @public
|
|
3475
|
+
*/
|
|
3476
|
+
ociIdentityDomainResourceUrl?: string | undefined;
|
|
3477
|
+
/**
|
|
3478
|
+
* <p>The URL of the OCI identity domain.</p>
|
|
3479
|
+
* @public
|
|
3480
|
+
*/
|
|
3481
|
+
ociIdentityDomainUrl?: string | undefined;
|
|
3482
|
+
/**
|
|
3483
|
+
* <p>The current status of the OCI identity domain.</p>
|
|
3484
|
+
* @public
|
|
3485
|
+
*/
|
|
3486
|
+
status?: ResourceStatus | undefined;
|
|
3487
|
+
/**
|
|
3488
|
+
* <p>Additional information about the current status of the OCI identity domain, if applicable.</p>
|
|
3489
|
+
* @public
|
|
3490
|
+
*/
|
|
3491
|
+
statusReason?: string | undefined;
|
|
3492
|
+
/**
|
|
3493
|
+
* <p>The Amazon Web Services CloudFormation URL for setting up the account integration with the OCI identity domain.</p>
|
|
3494
|
+
* @public
|
|
3495
|
+
*/
|
|
3496
|
+
accountSetupCloudFormationUrl?: string | undefined;
|
|
3497
|
+
}
|
|
3330
3498
|
/**
|
|
3331
3499
|
* @public
|
|
3332
3500
|
*/
|
|
@@ -3346,6 +3514,11 @@ export interface GetOciOnboardingStatusOutput {
|
|
|
3346
3514
|
* @public
|
|
3347
3515
|
*/
|
|
3348
3516
|
newTenancyActivationLink?: string | undefined;
|
|
3517
|
+
/**
|
|
3518
|
+
* <p>The Oracle Cloud Infrastructure (OCI) identity domain information in the onboarding status response.</p>
|
|
3519
|
+
* @public
|
|
3520
|
+
*/
|
|
3521
|
+
ociIdentityDomain?: OciIdentityDomain | undefined;
|
|
3349
3522
|
}
|
|
3350
3523
|
/**
|
|
3351
3524
|
* @public
|
|
@@ -3357,6 +3530,32 @@ export interface GetOdbNetworkInput {
|
|
|
3357
3530
|
*/
|
|
3358
3531
|
odbNetworkId: string | undefined;
|
|
3359
3532
|
}
|
|
3533
|
+
/**
|
|
3534
|
+
* <p>Configuration for Amazon Web Services Key Management Service (KMS) access from the ODB network.</p>
|
|
3535
|
+
* @public
|
|
3536
|
+
*/
|
|
3537
|
+
export interface KmsAccess {
|
|
3538
|
+
/**
|
|
3539
|
+
* <p>The current status of the KMS access configuration.</p>
|
|
3540
|
+
* @public
|
|
3541
|
+
*/
|
|
3542
|
+
status?: ManagedResourceStatus | undefined;
|
|
3543
|
+
/**
|
|
3544
|
+
* <p>The IPv4 addresses allowed for KMS access.</p>
|
|
3545
|
+
* @public
|
|
3546
|
+
*/
|
|
3547
|
+
ipv4Addresses?: string[] | undefined;
|
|
3548
|
+
/**
|
|
3549
|
+
* <p>The domain name for KMS access configuration.</p>
|
|
3550
|
+
* @public
|
|
3551
|
+
*/
|
|
3552
|
+
domainName?: string | undefined;
|
|
3553
|
+
/**
|
|
3554
|
+
* <p>The KMS policy document that defines permissions for key usage.</p>
|
|
3555
|
+
* @public
|
|
3556
|
+
*/
|
|
3557
|
+
kmsPolicyDocument?: string | undefined;
|
|
3558
|
+
}
|
|
3360
3559
|
/**
|
|
3361
3560
|
* <p>The configuration for managed Amazon S3 backup access from the ODB network.</p>
|
|
3362
3561
|
* @public
|
|
@@ -3415,6 +3614,32 @@ export interface ServiceNetworkEndpoint {
|
|
|
3415
3614
|
*/
|
|
3416
3615
|
vpcEndpointType?: VpcEndpointType | undefined;
|
|
3417
3616
|
}
|
|
3617
|
+
/**
|
|
3618
|
+
* <p>Configuration for Amazon Web Services Security Token Service (STS) access from the ODB network.</p>
|
|
3619
|
+
* @public
|
|
3620
|
+
*/
|
|
3621
|
+
export interface StsAccess {
|
|
3622
|
+
/**
|
|
3623
|
+
* <p>The current status of the STS access configuration.</p>
|
|
3624
|
+
* @public
|
|
3625
|
+
*/
|
|
3626
|
+
status?: ManagedResourceStatus | undefined;
|
|
3627
|
+
/**
|
|
3628
|
+
* <p>The IPv4 addresses allowed for STS access.</p>
|
|
3629
|
+
* @public
|
|
3630
|
+
*/
|
|
3631
|
+
ipv4Addresses?: string[] | undefined;
|
|
3632
|
+
/**
|
|
3633
|
+
* <p>The domain name for STS access configuration.</p>
|
|
3634
|
+
* @public
|
|
3635
|
+
*/
|
|
3636
|
+
domainName?: string | undefined;
|
|
3637
|
+
/**
|
|
3638
|
+
* <p>The STS policy document that defines permissions for token service usage.</p>
|
|
3639
|
+
* @public
|
|
3640
|
+
*/
|
|
3641
|
+
stsPolicyDocument?: string | undefined;
|
|
3642
|
+
}
|
|
3418
3643
|
/**
|
|
3419
3644
|
* <p>The configuration for Zero-ETL access from the ODB network.</p>
|
|
3420
3645
|
* @public
|
|
@@ -3471,6 +3696,21 @@ export interface ManagedServices {
|
|
|
3471
3696
|
* @public
|
|
3472
3697
|
*/
|
|
3473
3698
|
s3Access?: S3Access | undefined;
|
|
3699
|
+
/**
|
|
3700
|
+
* <p>The Amazon Web Services Security Token Service (STS) access configuration for managed services.</p>
|
|
3701
|
+
* @public
|
|
3702
|
+
*/
|
|
3703
|
+
stsAccess?: StsAccess | undefined;
|
|
3704
|
+
/**
|
|
3705
|
+
* <p>The Amazon Web Services Key Management Service (KMS) access configuration for managed services.</p>
|
|
3706
|
+
* @public
|
|
3707
|
+
*/
|
|
3708
|
+
kmsAccess?: KmsAccess | undefined;
|
|
3709
|
+
/**
|
|
3710
|
+
* <p>The access configuration for the cross-Region Amazon S3 database restore source.</p>
|
|
3711
|
+
* @public
|
|
3712
|
+
*/
|
|
3713
|
+
crossRegionS3RestoreSourcesAccess?: CrossRegionS3RestoreSourcesAccess[] | undefined;
|
|
3474
3714
|
}
|
|
3475
3715
|
/**
|
|
3476
3716
|
* <p>DNS configuration to forward DNS resolver endpoints to your OCI Private Zone.</p>
|
|
@@ -3705,6 +3945,11 @@ export interface GiVersionSummary {
|
|
|
3705
3945
|
* @public
|
|
3706
3946
|
*/
|
|
3707
3947
|
export interface InitializeServiceInput {
|
|
3948
|
+
/**
|
|
3949
|
+
* <p>The Oracle Cloud Infrastructure (OCI) identity domain configuration for service initialization.</p>
|
|
3950
|
+
* @public
|
|
3951
|
+
*/
|
|
3952
|
+
ociIdentityDomain?: boolean | undefined;
|
|
3708
3953
|
}
|
|
3709
3954
|
/**
|
|
3710
3955
|
* @public
|
|
@@ -4138,11 +4383,41 @@ export interface UpdateOdbNetworkInput {
|
|
|
4138
4383
|
* @public
|
|
4139
4384
|
*/
|
|
4140
4385
|
zeroEtlAccess?: Access | undefined;
|
|
4386
|
+
/**
|
|
4387
|
+
* <p>The Amazon Web Services Security Token Service (STS) access configuration for the ODB network.</p>
|
|
4388
|
+
* @public
|
|
4389
|
+
*/
|
|
4390
|
+
stsAccess?: Access | undefined;
|
|
4391
|
+
/**
|
|
4392
|
+
* <p>The Amazon Web Services Key Management Service (KMS) access configuration for the ODB network.</p>
|
|
4393
|
+
* @public
|
|
4394
|
+
*/
|
|
4395
|
+
kmsAccess?: Access | undefined;
|
|
4141
4396
|
/**
|
|
4142
4397
|
* <p>Specifies the updated endpoint policy for Amazon S3 access from the ODB network.</p>
|
|
4143
4398
|
* @public
|
|
4144
4399
|
*/
|
|
4145
4400
|
s3PolicyDocument?: string | undefined;
|
|
4401
|
+
/**
|
|
4402
|
+
* <p>The STS policy document that defines permissions for token service usage within the ODB network.</p>
|
|
4403
|
+
* @public
|
|
4404
|
+
*/
|
|
4405
|
+
stsPolicyDocument?: string | undefined;
|
|
4406
|
+
/**
|
|
4407
|
+
* <p>The KMS policy document that defines permissions for key usage within the ODB network.</p>
|
|
4408
|
+
* @public
|
|
4409
|
+
*/
|
|
4410
|
+
kmsPolicyDocument?: string | undefined;
|
|
4411
|
+
/**
|
|
4412
|
+
* <p>The cross-Region Amazon S3 restore sources to enable for the ODB network.</p>
|
|
4413
|
+
* @public
|
|
4414
|
+
*/
|
|
4415
|
+
crossRegionS3RestoreSourcesToEnable?: string[] | undefined;
|
|
4416
|
+
/**
|
|
4417
|
+
* <p>The cross-Region Amazon S3 restore sources to disable for the ODB network.</p>
|
|
4418
|
+
* @public
|
|
4419
|
+
*/
|
|
4420
|
+
crossRegionS3RestoreSourcesToDisable?: string[] | undefined;
|
|
4146
4421
|
}
|
|
4147
4422
|
/**
|
|
4148
4423
|
* @public
|
|
@@ -3,6 +3,8 @@ export declare var SensitiveString: StaticSimpleSchema;
|
|
|
3
3
|
export declare var AcceptMarketplaceRegistrationInput: StaticStructureSchema;
|
|
4
4
|
export declare var AcceptMarketplaceRegistrationOutput: StaticStructureSchema;
|
|
5
5
|
export declare var AccessDeniedException: StaticErrorSchema;
|
|
6
|
+
export declare var AssociateIamRoleToResourceInput: StaticStructureSchema;
|
|
7
|
+
export declare var AssociateIamRoleToResourceOutput: StaticStructureSchema;
|
|
6
8
|
export declare var AutonomousVirtualMachineSummary: StaticStructureSchema;
|
|
7
9
|
export declare var CloudAutonomousVmCluster: StaticStructureSchema;
|
|
8
10
|
export declare var CloudAutonomousVmClusterResourceDetails: StaticStructureSchema;
|
|
@@ -23,6 +25,7 @@ export declare var CreateOdbNetworkInput: StaticStructureSchema;
|
|
|
23
25
|
export declare var CreateOdbNetworkOutput: StaticStructureSchema;
|
|
24
26
|
export declare var CreateOdbPeeringConnectionInput: StaticStructureSchema;
|
|
25
27
|
export declare var CreateOdbPeeringConnectionOutput: StaticStructureSchema;
|
|
28
|
+
export declare var CrossRegionS3RestoreSourcesAccess: StaticStructureSchema;
|
|
26
29
|
export declare var CustomerContact: StaticStructureSchema;
|
|
27
30
|
export declare var DataCollectionOptions: StaticStructureSchema;
|
|
28
31
|
export declare var DayOfWeek: StaticStructureSchema;
|
|
@@ -43,6 +46,8 @@ export declare var DeleteOdbNetworkInput: StaticStructureSchema;
|
|
|
43
46
|
export declare var DeleteOdbNetworkOutput: StaticStructureSchema;
|
|
44
47
|
export declare var DeleteOdbPeeringConnectionInput: StaticStructureSchema;
|
|
45
48
|
export declare var DeleteOdbPeeringConnectionOutput: StaticStructureSchema;
|
|
49
|
+
export declare var DisassociateIamRoleFromResourceInput: StaticStructureSchema;
|
|
50
|
+
export declare var DisassociateIamRoleFromResourceOutput: StaticStructureSchema;
|
|
46
51
|
export declare var ExadataIormConfig: StaticStructureSchema;
|
|
47
52
|
export declare var GetCloudAutonomousVmClusterInput: StaticStructureSchema;
|
|
48
53
|
export declare var GetCloudAutonomousVmClusterOutput: StaticStructureSchema;
|
|
@@ -63,9 +68,11 @@ export declare var GetOdbNetworkOutput: StaticStructureSchema;
|
|
|
63
68
|
export declare var GetOdbPeeringConnectionInput: StaticStructureSchema;
|
|
64
69
|
export declare var GetOdbPeeringConnectionOutput: StaticStructureSchema;
|
|
65
70
|
export declare var GiVersionSummary: StaticStructureSchema;
|
|
71
|
+
export declare var IamRole: StaticStructureSchema;
|
|
66
72
|
export declare var InitializeServiceInput: StaticStructureSchema;
|
|
67
73
|
export declare var InitializeServiceOutput: StaticStructureSchema;
|
|
68
74
|
export declare var InternalServerException: StaticErrorSchema;
|
|
75
|
+
export declare var KmsAccess: StaticStructureSchema;
|
|
69
76
|
export declare var ListAutonomousVirtualMachinesInput: StaticStructureSchema;
|
|
70
77
|
export declare var ListAutonomousVirtualMachinesOutput: StaticStructureSchema;
|
|
71
78
|
export declare var ListCloudAutonomousVmClustersInput: StaticStructureSchema;
|
|
@@ -95,6 +102,7 @@ export declare var ManagedS3BackupAccess: StaticStructureSchema;
|
|
|
95
102
|
export declare var ManagedServices: StaticStructureSchema;
|
|
96
103
|
export declare var Month: StaticStructureSchema;
|
|
97
104
|
export declare var OciDnsForwardingConfig: StaticStructureSchema;
|
|
105
|
+
export declare var OciIdentityDomain: StaticStructureSchema;
|
|
98
106
|
export declare var OdbNetwork: StaticStructureSchema;
|
|
99
107
|
export declare var OdbNetworkSummary: StaticStructureSchema;
|
|
100
108
|
export declare var OdbPeeringConnection: StaticStructureSchema;
|
|
@@ -109,6 +117,7 @@ export declare var StartDbNodeInput: StaticStructureSchema;
|
|
|
109
117
|
export declare var StartDbNodeOutput: StaticStructureSchema;
|
|
110
118
|
export declare var StopDbNodeInput: StaticStructureSchema;
|
|
111
119
|
export declare var StopDbNodeOutput: StaticStructureSchema;
|
|
120
|
+
export declare var StsAccess: StaticStructureSchema;
|
|
112
121
|
export declare var SystemVersionSummary: StaticStructureSchema;
|
|
113
122
|
export declare var TagResourceRequest: StaticStructureSchema;
|
|
114
123
|
export declare var TagResourceResponse: StaticStructureSchema;
|
|
@@ -131,6 +140,7 @@ export declare var CloudAutonomousVmClusterList: StaticListSchema;
|
|
|
131
140
|
export declare var CloudAutonomousVmClusterResourceDetailsList: StaticListSchema;
|
|
132
141
|
export declare var CloudExadataInfrastructureList: StaticListSchema;
|
|
133
142
|
export declare var CloudVmClusterList: StaticListSchema;
|
|
143
|
+
export declare var CrossRegionS3RestoreSourcesAccessList: StaticListSchema;
|
|
134
144
|
export declare var CustomerContacts: StaticListSchema;
|
|
135
145
|
export declare var DaysOfWeek: StaticListSchema;
|
|
136
146
|
export declare var DbIormConfigList: StaticListSchema;
|
|
@@ -139,6 +149,7 @@ export declare var DbServerList: StaticListSchema;
|
|
|
139
149
|
export declare var DbSystemShapeList: StaticListSchema;
|
|
140
150
|
export declare var GiVersionList: StaticListSchema;
|
|
141
151
|
export declare var HoursOfDay: number;
|
|
152
|
+
export declare var IamRoleList: StaticListSchema;
|
|
142
153
|
export declare var Months: StaticListSchema;
|
|
143
154
|
export declare var OciDnsForwardingConfigList: StaticListSchema;
|
|
144
155
|
export declare var OdbNetworkList: StaticListSchema;
|
|
@@ -153,6 +164,7 @@ export declare var WeeksOfMonth: number;
|
|
|
153
164
|
export declare var RequestTagMap: number;
|
|
154
165
|
export declare var ResponseTagMap: number;
|
|
155
166
|
export declare var AcceptMarketplaceRegistration: StaticOperationSchema;
|
|
167
|
+
export declare var AssociateIamRoleToResource: StaticOperationSchema;
|
|
156
168
|
export declare var CreateCloudAutonomousVmCluster: StaticOperationSchema;
|
|
157
169
|
export declare var CreateCloudExadataInfrastructure: StaticOperationSchema;
|
|
158
170
|
export declare var CreateCloudVmCluster: StaticOperationSchema;
|
|
@@ -163,6 +175,7 @@ export declare var DeleteCloudExadataInfrastructure: StaticOperationSchema;
|
|
|
163
175
|
export declare var DeleteCloudVmCluster: StaticOperationSchema;
|
|
164
176
|
export declare var DeleteOdbNetwork: StaticOperationSchema;
|
|
165
177
|
export declare var DeleteOdbPeeringConnection: StaticOperationSchema;
|
|
178
|
+
export declare var DisassociateIamRoleFromResource: StaticOperationSchema;
|
|
166
179
|
export declare var GetCloudAutonomousVmCluster: StaticOperationSchema;
|
|
167
180
|
export declare var GetCloudExadataInfrastructure: StaticOperationSchema;
|
|
168
181
|
export declare var GetCloudExadataInfrastructureUnallocatedResources: StaticOperationSchema;
|