@aws-sdk/client-odb 3.952.0 → 3.953.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.
Files changed (63) hide show
  1. package/dist-cjs/index.js +559 -374
  2. package/dist-cjs/runtimeConfig.shared.js +6 -6
  3. package/dist-es/commands/AcceptMarketplaceRegistrationCommand.js +2 -2
  4. package/dist-es/commands/AssociateIamRoleToResourceCommand.js +2 -2
  5. package/dist-es/commands/CreateCloudAutonomousVmClusterCommand.js +2 -2
  6. package/dist-es/commands/CreateCloudExadataInfrastructureCommand.js +2 -2
  7. package/dist-es/commands/CreateCloudVmClusterCommand.js +2 -2
  8. package/dist-es/commands/CreateOdbNetworkCommand.js +2 -2
  9. package/dist-es/commands/CreateOdbPeeringConnectionCommand.js +2 -2
  10. package/dist-es/commands/DeleteCloudAutonomousVmClusterCommand.js +2 -2
  11. package/dist-es/commands/DeleteCloudExadataInfrastructureCommand.js +2 -2
  12. package/dist-es/commands/DeleteCloudVmClusterCommand.js +2 -2
  13. package/dist-es/commands/DeleteOdbNetworkCommand.js +2 -2
  14. package/dist-es/commands/DeleteOdbPeeringConnectionCommand.js +2 -2
  15. package/dist-es/commands/DisassociateIamRoleFromResourceCommand.js +2 -2
  16. package/dist-es/commands/GetCloudAutonomousVmClusterCommand.js +2 -2
  17. package/dist-es/commands/GetCloudExadataInfrastructureCommand.js +2 -2
  18. package/dist-es/commands/GetCloudExadataInfrastructureUnallocatedResourcesCommand.js +2 -2
  19. package/dist-es/commands/GetCloudVmClusterCommand.js +2 -2
  20. package/dist-es/commands/GetDbNodeCommand.js +2 -2
  21. package/dist-es/commands/GetDbServerCommand.js +2 -2
  22. package/dist-es/commands/GetOciOnboardingStatusCommand.js +2 -2
  23. package/dist-es/commands/GetOdbNetworkCommand.js +2 -2
  24. package/dist-es/commands/GetOdbPeeringConnectionCommand.js +2 -2
  25. package/dist-es/commands/InitializeServiceCommand.js +2 -2
  26. package/dist-es/commands/ListAutonomousVirtualMachinesCommand.js +2 -2
  27. package/dist-es/commands/ListCloudAutonomousVmClustersCommand.js +2 -2
  28. package/dist-es/commands/ListCloudExadataInfrastructuresCommand.js +2 -2
  29. package/dist-es/commands/ListCloudVmClustersCommand.js +2 -2
  30. package/dist-es/commands/ListDbNodesCommand.js +2 -2
  31. package/dist-es/commands/ListDbServersCommand.js +2 -2
  32. package/dist-es/commands/ListDbSystemShapesCommand.js +2 -2
  33. package/dist-es/commands/ListGiVersionsCommand.js +2 -2
  34. package/dist-es/commands/ListOdbNetworksCommand.js +2 -2
  35. package/dist-es/commands/ListOdbPeeringConnectionsCommand.js +2 -2
  36. package/dist-es/commands/ListSystemVersionsCommand.js +2 -2
  37. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  38. package/dist-es/commands/RebootDbNodeCommand.js +2 -2
  39. package/dist-es/commands/StartDbNodeCommand.js +2 -2
  40. package/dist-es/commands/StopDbNodeCommand.js +2 -2
  41. package/dist-es/commands/TagResourceCommand.js +2 -2
  42. package/dist-es/commands/UntagResourceCommand.js +2 -2
  43. package/dist-es/commands/UpdateCloudExadataInfrastructureCommand.js +2 -2
  44. package/dist-es/commands/UpdateOdbNetworkCommand.js +2 -2
  45. package/dist-es/commands/UpdateOdbPeeringConnectionCommand.js +2 -2
  46. package/dist-es/index.js +1 -0
  47. package/dist-es/runtimeConfig.shared.js +6 -6
  48. package/dist-es/schemas/schemas_0.js +328 -320
  49. package/dist-types/OdbClient.d.ts +1 -10
  50. package/dist-types/index.d.ts +1 -0
  51. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  52. package/dist-types/runtimeConfig.d.ts +6 -2
  53. package/dist-types/runtimeConfig.native.d.ts +6 -2
  54. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  55. package/dist-types/schemas/schemas_0.d.ts +178 -207
  56. package/dist-types/ts3.4/OdbClient.d.ts +0 -4
  57. package/dist-types/ts3.4/index.d.ts +1 -0
  58. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  59. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  60. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  61. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  62. package/dist-types/ts3.4/schemas/schemas_0.d.ts +177 -208
  63. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -110,14 +110,14 @@ class OdbClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- let OdbServiceException$1 = class OdbServiceException extends smithyClient.ServiceException {
113
+ class OdbServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, OdbServiceException.prototype);
117
117
  }
118
- };
118
+ }
119
119
 
120
- let AccessDeniedException$1 = class AccessDeniedException extends OdbServiceException$1 {
120
+ class AccessDeniedException extends OdbServiceException {
121
121
  name = "AccessDeniedException";
122
122
  $fault = "client";
123
123
  constructor(opts) {
@@ -128,8 +128,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends OdbServiceExce
128
128
  });
129
129
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
130
130
  }
131
- };
132
- let ConflictException$1 = class ConflictException extends OdbServiceException$1 {
131
+ }
132
+ class ConflictException extends OdbServiceException {
133
133
  name = "ConflictException";
134
134
  $fault = "client";
135
135
  resourceId;
@@ -144,8 +144,8 @@ let ConflictException$1 = class ConflictException extends OdbServiceException$1
144
144
  this.resourceId = opts.resourceId;
145
145
  this.resourceType = opts.resourceType;
146
146
  }
147
- };
148
- let InternalServerException$1 = class InternalServerException extends OdbServiceException$1 {
147
+ }
148
+ class InternalServerException extends OdbServiceException {
149
149
  name = "InternalServerException";
150
150
  $fault = "server";
151
151
  $retryable = {};
@@ -159,8 +159,8 @@ let InternalServerException$1 = class InternalServerException extends OdbService
159
159
  Object.setPrototypeOf(this, InternalServerException.prototype);
160
160
  this.retryAfterSeconds = opts.retryAfterSeconds;
161
161
  }
162
- };
163
- let ThrottlingException$1 = class ThrottlingException extends OdbServiceException$1 {
162
+ }
163
+ class ThrottlingException extends OdbServiceException {
164
164
  name = "ThrottlingException";
165
165
  $fault = "client";
166
166
  retryAfterSeconds;
@@ -173,8 +173,8 @@ let ThrottlingException$1 = class ThrottlingException extends OdbServiceExceptio
173
173
  Object.setPrototypeOf(this, ThrottlingException.prototype);
174
174
  this.retryAfterSeconds = opts.retryAfterSeconds;
175
175
  }
176
- };
177
- let ValidationException$1 = class ValidationException extends OdbServiceException$1 {
176
+ }
177
+ class ValidationException extends OdbServiceException {
178
178
  name = "ValidationException";
179
179
  $fault = "client";
180
180
  reason;
@@ -189,8 +189,8 @@ let ValidationException$1 = class ValidationException extends OdbServiceExceptio
189
189
  this.reason = opts.reason;
190
190
  this.fieldList = opts.fieldList;
191
191
  }
192
- };
193
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends OdbServiceException$1 {
192
+ }
193
+ class ResourceNotFoundException extends OdbServiceException {
194
194
  name = "ResourceNotFoundException";
195
195
  $fault = "client";
196
196
  resourceId;
@@ -205,8 +205,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends OdbSer
205
205
  this.resourceId = opts.resourceId;
206
206
  this.resourceType = opts.resourceType;
207
207
  }
208
- };
209
- let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends OdbServiceException$1 {
208
+ }
209
+ class ServiceQuotaExceededException extends OdbServiceException {
210
210
  name = "ServiceQuotaExceededException";
211
211
  $fault = "client";
212
212
  resourceId;
@@ -223,7 +223,7 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
223
223
  this.resourceType = opts.resourceType;
224
224
  this.quotaCode = opts.quotaCode;
225
225
  }
226
- };
226
+ }
227
227
 
228
228
  const _ADE = "AccessDeniedException";
229
229
  const _AIRTR = "AssociateIamRoleToResource";
@@ -695,13 +695,13 @@ const _wOM = "weeksOfMonth";
695
695
  const _zEA = "zeroEtlAccess";
696
696
  const n0 = "com.amazonaws.odb";
697
697
  var SensitiveString = [0, n0, _SS, 8, 0];
698
- var AcceptMarketplaceRegistrationInput = [3, n0, _AMRI, 0, [_mRT], [0]];
699
- var AcceptMarketplaceRegistrationOutput = [3, n0, _AMRO, 0, [], []];
700
- var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
701
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
702
- var AssociateIamRoleToResourceInput = [3, n0, _AIRTRI, 0, [_iRA, _aI, _rA], [0, 0, 0]];
703
- var AssociateIamRoleToResourceOutput = [3, n0, _AIRTRO, 0, [], []];
704
- var AutonomousVirtualMachineSummary = [
698
+ var AcceptMarketplaceRegistrationInput$ = [3, n0, _AMRI, 0, [_mRT], [0]];
699
+ var AcceptMarketplaceRegistrationOutput$ = [3, n0, _AMRO, 0, [], []];
700
+ var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
701
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
702
+ var AssociateIamRoleToResourceInput$ = [3, n0, _AIRTRI, 0, [_iRA, _aI, _rA], [0, 0, 0]];
703
+ var AssociateIamRoleToResourceOutput$ = [3, n0, _AIRTRO, 0, [], []];
704
+ var AutonomousVirtualMachineSummary$ = [
705
705
  3,
706
706
  n0,
707
707
  _AVMS,
@@ -709,7 +709,7 @@ var AutonomousVirtualMachineSummary = [
709
709
  [_aVMI, _s, _sR, _vN, _dSI, _dSDN, _cCC, _mSIGB, _dNSSIGB, _cIA, _cAVCI, _o, _oRAN],
710
710
  [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0],
711
711
  ];
712
- var CloudAutonomousVmCluster = [
712
+ var CloudAutonomousVmCluster$ = [
713
713
  3,
714
714
  n0,
715
715
  _CAVC,
@@ -800,7 +800,7 @@ var CloudAutonomousVmCluster = [
800
800
  0,
801
801
  2,
802
802
  0,
803
- () => MaintenanceWindow,
803
+ () => MaintenanceWindow$,
804
804
  1,
805
805
  1,
806
806
  1,
@@ -821,7 +821,7 @@ var CloudAutonomousVmCluster = [
821
821
  1,
822
822
  ],
823
823
  ];
824
- var CloudAutonomousVmClusterResourceDetails = [
824
+ var CloudAutonomousVmClusterResourceDetails$ = [
825
825
  3,
826
826
  n0,
827
827
  _CAVCRD,
@@ -829,7 +829,7 @@ var CloudAutonomousVmClusterResourceDetails = [
829
829
  [_cAVCI, _uASITB],
830
830
  [0, 1],
831
831
  ];
832
- var CloudAutonomousVmClusterSummary = [
832
+ var CloudAutonomousVmClusterSummary$ = [
833
833
  3,
834
834
  n0,
835
835
  _CAVCS,
@@ -920,7 +920,7 @@ var CloudAutonomousVmClusterSummary = [
920
920
  0,
921
921
  2,
922
922
  0,
923
- () => MaintenanceWindow,
923
+ () => MaintenanceWindow$,
924
924
  1,
925
925
  1,
926
926
  1,
@@ -941,7 +941,7 @@ var CloudAutonomousVmClusterSummary = [
941
941
  1,
942
942
  ],
943
943
  ];
944
- var CloudExadataInfrastructure = [
944
+ var CloudExadataInfrastructure$ = [
945
945
  3,
946
946
  n0,
947
947
  _CEI,
@@ -1004,7 +1004,7 @@ var CloudExadataInfrastructure = [
1004
1004
  1,
1005
1005
  0,
1006
1006
  0,
1007
- () => MaintenanceWindow,
1007
+ () => MaintenanceWindow$,
1008
1008
  1,
1009
1009
  1,
1010
1010
  1,
@@ -1027,7 +1027,7 @@ var CloudExadataInfrastructure = [
1027
1027
  0,
1028
1028
  ],
1029
1029
  ];
1030
- var CloudExadataInfrastructureSummary = [
1030
+ var CloudExadataInfrastructureSummary$ = [
1031
1031
  3,
1032
1032
  n0,
1033
1033
  _CEIS,
@@ -1090,7 +1090,7 @@ var CloudExadataInfrastructureSummary = [
1090
1090
  1,
1091
1091
  0,
1092
1092
  0,
1093
- () => MaintenanceWindow,
1093
+ () => MaintenanceWindow$,
1094
1094
  1,
1095
1095
  1,
1096
1096
  1,
@@ -1113,7 +1113,7 @@ var CloudExadataInfrastructureSummary = [
1113
1113
  0,
1114
1114
  ],
1115
1115
  ];
1116
- var CloudExadataInfrastructureUnallocatedResources = [
1116
+ var CloudExadataInfrastructureUnallocatedResources$ = [
1117
1117
  3,
1118
1118
  n0,
1119
1119
  _CEIUR,
@@ -1121,7 +1121,7 @@ var CloudExadataInfrastructureUnallocatedResources = [
1121
1121
  [_cAVC, _cEIDN, _eSITB, _cEII, _lSIGB, _mIGB, _oc],
1122
1122
  [() => CloudAutonomousVmClusterResourceDetailsList, 0, 1, 0, 1, 1, 1],
1123
1123
  ];
1124
- var CloudVmCluster = [
1124
+ var CloudVmCluster$ = [
1125
1125
  3,
1126
1126
  n0,
1127
1127
  _CVC,
@@ -1181,14 +1181,14 @@ var CloudVmCluster = [
1181
1181
  0,
1182
1182
  0,
1183
1183
  1,
1184
- () => DataCollectionOptions,
1184
+ () => DataCollectionOptions$,
1185
1185
  1,
1186
1186
  1,
1187
1187
  64 | 0,
1188
1188
  0,
1189
1189
  0,
1190
1190
  0,
1191
- () => ExadataIormConfig,
1191
+ () => ExadataIormConfig$,
1192
1192
  2,
1193
1193
  2,
1194
1194
  0,
@@ -1217,7 +1217,7 @@ var CloudVmCluster = [
1217
1217
  () => IamRoleList,
1218
1218
  ],
1219
1219
  ];
1220
- var CloudVmClusterSummary = [
1220
+ var CloudVmClusterSummary$ = [
1221
1221
  3,
1222
1222
  n0,
1223
1223
  _CVCS,
@@ -1277,14 +1277,14 @@ var CloudVmClusterSummary = [
1277
1277
  0,
1278
1278
  0,
1279
1279
  1,
1280
- () => DataCollectionOptions,
1280
+ () => DataCollectionOptions$,
1281
1281
  1,
1282
1282
  1,
1283
1283
  64 | 0,
1284
1284
  0,
1285
1285
  0,
1286
1286
  0,
1287
- () => ExadataIormConfig,
1287
+ () => ExadataIormConfig$,
1288
1288
  2,
1289
1289
  2,
1290
1290
  0,
@@ -1313,17 +1313,17 @@ var CloudVmClusterSummary = [
1313
1313
  () => IamRoleList,
1314
1314
  ],
1315
1315
  ];
1316
- var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m, _rI, _rT], [0, 0, 0]];
1317
- schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
1318
- var CreateCloudAutonomousVmClusterInput = [
1316
+ var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m, _rI, _rT], [0, 0, 0]];
1317
+ schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
1318
+ var CreateCloudAutonomousVmClusterInput$ = [
1319
1319
  3,
1320
1320
  n0,
1321
1321
  _CCAVCI,
1322
1322
  0,
1323
1323
  [_cEII, _oNI, _dN, _cT, _aDSSITB, _cCCPN, _dS, _d, _iMEVC, _lM, _mW, _mPOCUIGB, _sLPNT, _sLPT, _t, _tZ, _tCD],
1324
- [0, 0, 0, [0, 4], 1, 1, 64 | 0, 0, 2, 0, () => MaintenanceWindow, 1, 1, 1, 128 | 0, 0, 1],
1324
+ [0, 0, 0, [0, 4], 1, 1, 64 | 0, 0, 2, 0, () => MaintenanceWindow$, 1, 1, 1, 128 | 0, 0, 1],
1325
1325
  ];
1326
- var CreateCloudAutonomousVmClusterOutput = [
1326
+ var CreateCloudAutonomousVmClusterOutput$ = [
1327
1327
  3,
1328
1328
  n0,
1329
1329
  _CCAVCO,
@@ -1331,15 +1331,15 @@ var CreateCloudAutonomousVmClusterOutput = [
1331
1331
  [_dN, _s, _sR, _cAVCI],
1332
1332
  [0, 0, 0, 0],
1333
1333
  ];
1334
- var CreateCloudExadataInfrastructureInput = [
1334
+ var CreateCloudExadataInfrastructureInput$ = [
1335
1335
  3,
1336
1336
  n0,
1337
1337
  _CCEII,
1338
1338
  0,
1339
1339
  [_dN, _sh, _aZ, _aZI, _t, _cC, _cCTSTOCI, _mW, _sC, _cT, _dST, _sST],
1340
- [0, 0, 0, 0, 128 | 0, 1, [() => CustomerContacts, 0], () => MaintenanceWindow, 1, [0, 4], 0, 0],
1340
+ [0, 0, 0, 0, 128 | 0, 1, [() => CustomerContacts, 0], () => MaintenanceWindow$, 1, [0, 4], 0, 0],
1341
1341
  ];
1342
- var CreateCloudExadataInfrastructureOutput = [
1342
+ var CreateCloudExadataInfrastructureOutput$ = [
1343
1343
  3,
1344
1344
  n0,
1345
1345
  _CCEIO,
@@ -1347,7 +1347,7 @@ var CreateCloudExadataInfrastructureOutput = [
1347
1347
  [_dN, _s, _sR, _cEII],
1348
1348
  [0, 0, 0, 0],
1349
1349
  ];
1350
- var CreateCloudVmClusterInput = [
1350
+ var CreateCloudVmClusterInput$ = [
1351
1351
  3,
1352
1352
  n0,
1353
1353
  _CCVCI,
@@ -1375,10 +1375,10 @@ var CreateCloudVmClusterInput = [
1375
1375
  _cT,
1376
1376
  _sLPTc,
1377
1377
  ],
1378
- [0, 1, 0, 0, 0, 64 | 0, 0, 0, () => DataCollectionOptions, 1, 1, 64 | 0, 128 | 0, 2, 2, 0, 1, 0, 0, [0, 4], 1],
1378
+ [0, 1, 0, 0, 0, 64 | 0, 0, 0, () => DataCollectionOptions$, 1, 1, 64 | 0, 128 | 0, 2, 2, 0, 1, 0, 0, [0, 4], 1],
1379
1379
  ];
1380
- var CreateCloudVmClusterOutput = [3, n0, _CCVCO, 0, [_dN, _s, _sR, _cVCI], [0, 0, 0, 0]];
1381
- var CreateOdbNetworkInput = [
1380
+ var CreateCloudVmClusterOutput$ = [3, n0, _CCVCO, 0, [_dN, _s, _sR, _cVCI], [0, 0, 0, 0]];
1381
+ var CreateOdbNetworkInput$ = [
1382
1382
  3,
1383
1383
  n0,
1384
1384
  _CONI,
@@ -1386,8 +1386,8 @@ var CreateOdbNetworkInput = [
1386
1386
  [_dN, _aZ, _aZI, _cSC, _bSC, _cDN, _dDP, _cT, _sA, _zEA, _sAt, _kA, _sPD, _sPDt, _kPD, _cRSRSTE, _t],
1387
1387
  [0, 0, 0, 0, 0, 0, 0, [0, 4], 0, 0, 0, 0, 0, 0, 0, 64 | 0, 128 | 0],
1388
1388
  ];
1389
- var CreateOdbNetworkOutput = [3, n0, _CONO, 0, [_dN, _s, _sR, _oNI], [0, 0, 0, 0]];
1390
- var CreateOdbPeeringConnectionInput = [
1389
+ var CreateOdbNetworkOutput$ = [3, n0, _CONO, 0, [_dN, _s, _sR, _oNI], [0, 0, 0, 0]];
1390
+ var CreateOdbPeeringConnectionInput$ = [
1391
1391
  3,
1392
1392
  n0,
1393
1393
  _COPCI,
@@ -1395,7 +1395,7 @@ var CreateOdbPeeringConnectionInput = [
1395
1395
  [_oNI, _pNI, _dN, _pNCTBA, _cT, _t],
1396
1396
  [0, 0, 0, 64 | 0, [0, 4], 128 | 0],
1397
1397
  ];
1398
- var CreateOdbPeeringConnectionOutput = [
1398
+ var CreateOdbPeeringConnectionOutput$ = [
1399
1399
  3,
1400
1400
  n0,
1401
1401
  _COPCO,
@@ -1403,7 +1403,7 @@ var CreateOdbPeeringConnectionOutput = [
1403
1403
  [_dN, _s, _sR, _oPCI],
1404
1404
  [0, 0, 0, 0],
1405
1405
  ];
1406
- var CrossRegionS3RestoreSourcesAccess = [
1406
+ var CrossRegionS3RestoreSourcesAccess$ = [
1407
1407
  3,
1408
1408
  n0,
1409
1409
  _CRSRSA,
@@ -1411,11 +1411,11 @@ var CrossRegionS3RestoreSourcesAccess = [
1411
1411
  [_r, _iA, _s],
1412
1412
  [0, 64 | 0, 0],
1413
1413
  ];
1414
- var CustomerContact = [3, n0, _CC, 0, [_em], [[() => SensitiveString, 0]]];
1415
- var DataCollectionOptions = [3, n0, _DCO, 0, [_iDEE, _iHME, _iILE], [2, 2, 2]];
1416
- var DayOfWeek = [3, n0, _DOW, 0, [_n], [0]];
1417
- var DbIormConfig = [3, n0, _DIC, 0, [_dNb, _fCL, _sha], [0, 0, 1]];
1418
- var DbNode = [
1414
+ var CustomerContact$ = [3, n0, _CC, 0, [_em], [[() => SensitiveString, 0]]];
1415
+ var DataCollectionOptions$ = [3, n0, _DCO, 0, [_iDEE, _iHME, _iILE], [2, 2, 2]];
1416
+ var DayOfWeek$ = [3, n0, _DOW, 0, [_n], [0]];
1417
+ var DbIormConfig$ = [3, n0, _DIC, 0, [_dNb, _fCL, _sha], [0, 0, 1]];
1418
+ var DbNode$ = [
1419
1419
  3,
1420
1420
  n0,
1421
1421
  _DN,
@@ -1452,7 +1452,7 @@ var DbNode = [
1452
1452
  ],
1453
1453
  [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 5, 0, 0, 1, 0, 0, 0, 0],
1454
1454
  ];
1455
- var DbNodeSummary = [
1455
+ var DbNodeSummary$ = [
1456
1456
  3,
1457
1457
  n0,
1458
1458
  _DNS,
@@ -1487,7 +1487,7 @@ var DbNodeSummary = [
1487
1487
  ],
1488
1488
  [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 5, 0, 0, 1, 0, 0],
1489
1489
  ];
1490
- var DbServer = [
1490
+ var DbServer$ = [
1491
1491
  3,
1492
1492
  n0,
1493
1493
  _DS,
@@ -1514,10 +1514,10 @@ var DbServer = [
1514
1514
  _aVCI,
1515
1515
  _aVMIu,
1516
1516
  ],
1517
- [0, 0, 0, 1, 1, () => DbServerPatchingDetails, 0, 0, 0, 0, 1, 1, 1, 1, 0, 5, 64 | 0, 0, 64 | 0, 64 | 0],
1517
+ [0, 0, 0, 1, 1, () => DbServerPatchingDetails$, 0, 0, 0, 0, 1, 1, 1, 1, 0, 5, 64 | 0, 0, 64 | 0, 64 | 0],
1518
1518
  ];
1519
- var DbServerPatchingDetails = [3, n0, _DSPD, 0, [_ePD, _pS, _tPE, _tPS], [1, 0, 0, 0]];
1520
- var DbServerSummary = [
1519
+ var DbServerPatchingDetails$ = [3, n0, _DSPD, 0, [_ePD, _pS, _tPE, _tPS], [1, 0, 0, 0]];
1520
+ var DbServerSummary$ = [
1521
1521
  3,
1522
1522
  n0,
1523
1523
  _DSS,
@@ -1544,9 +1544,9 @@ var DbServerSummary = [
1544
1544
  _aVCI,
1545
1545
  _aVMIu,
1546
1546
  ],
1547
- [0, 0, 0, 1, 1, () => DbServerPatchingDetails, 0, 0, 0, 0, 1, 1, 1, 1, 0, 5, 64 | 0, 0, 64 | 0, 64 | 0],
1547
+ [0, 0, 0, 1, 1, () => DbServerPatchingDetails$, 0, 0, 0, 0, 1, 1, 1, 1, 0, 5, 64 | 0, 0, 64 | 0, 64 | 0],
1548
1548
  ];
1549
- var DbSystemShapeSummary = [
1549
+ var DbSystemShapeSummary$ = [
1550
1550
  3,
1551
1551
  n0,
1552
1552
  _DSSS,
@@ -1579,17 +1579,17 @@ var DbSystemShapeSummary = [
1579
1579
  ],
1580
1580
  [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 2],
1581
1581
  ];
1582
- var DeleteCloudAutonomousVmClusterInput = [3, n0, _DCAVCI, 0, [_cAVCI], [[0, 1]]];
1583
- var DeleteCloudAutonomousVmClusterOutput = [3, n0, _DCAVCO, 0, [], []];
1584
- var DeleteCloudExadataInfrastructureInput = [3, n0, _DCEII, 0, [_cEII], [[0, 1]]];
1585
- var DeleteCloudExadataInfrastructureOutput = [3, n0, _DCEIO, 0, [], []];
1586
- var DeleteCloudVmClusterInput = [3, n0, _DCVCI, 0, [_cVCI], [[0, 1]]];
1587
- var DeleteCloudVmClusterOutput = [3, n0, _DCVCO, 0, [], []];
1588
- var DeleteOdbNetworkInput = [3, n0, _DONI, 0, [_oNI, _dAR], [[0, 1], 2]];
1589
- var DeleteOdbNetworkOutput = [3, n0, _DONO, 0, [], []];
1590
- var DeleteOdbPeeringConnectionInput = [3, n0, _DOPCI, 0, [_oPCI], [[0, 1]]];
1591
- var DeleteOdbPeeringConnectionOutput = [3, n0, _DOPCO, 0, [], []];
1592
- var DisassociateIamRoleFromResourceInput = [
1582
+ var DeleteCloudAutonomousVmClusterInput$ = [3, n0, _DCAVCI, 0, [_cAVCI], [[0, 1]]];
1583
+ var DeleteCloudAutonomousVmClusterOutput$ = [3, n0, _DCAVCO, 0, [], []];
1584
+ var DeleteCloudExadataInfrastructureInput$ = [3, n0, _DCEII, 0, [_cEII], [[0, 1]]];
1585
+ var DeleteCloudExadataInfrastructureOutput$ = [3, n0, _DCEIO, 0, [], []];
1586
+ var DeleteCloudVmClusterInput$ = [3, n0, _DCVCI, 0, [_cVCI], [[0, 1]]];
1587
+ var DeleteCloudVmClusterOutput$ = [3, n0, _DCVCO, 0, [], []];
1588
+ var DeleteOdbNetworkInput$ = [3, n0, _DONI, 0, [_oNI, _dAR], [[0, 1], 2]];
1589
+ var DeleteOdbNetworkOutput$ = [3, n0, _DONO, 0, [], []];
1590
+ var DeleteOdbPeeringConnectionInput$ = [3, n0, _DOPCI, 0, [_oPCI], [[0, 1]]];
1591
+ var DeleteOdbPeeringConnectionOutput$ = [3, n0, _DOPCO, 0, [], []];
1592
+ var DisassociateIamRoleFromResourceInput$ = [
1593
1593
  3,
1594
1594
  n0,
1595
1595
  _DIRFRI,
@@ -1597,8 +1597,8 @@ var DisassociateIamRoleFromResourceInput = [
1597
1597
  [_iRA, _aI, _rA],
1598
1598
  [0, 0, 0],
1599
1599
  ];
1600
- var DisassociateIamRoleFromResourceOutput = [3, n0, _DIRFRO, 0, [], []];
1601
- var ExadataIormConfig = [
1600
+ var DisassociateIamRoleFromResourceOutput$ = [3, n0, _DIRFRO, 0, [], []];
1601
+ var ExadataIormConfig$ = [
1602
1602
  3,
1603
1603
  n0,
1604
1604
  _EIC,
@@ -1606,25 +1606,25 @@ var ExadataIormConfig = [
1606
1606
  [_dP, _lD, _lS, _ob],
1607
1607
  [() => DbIormConfigList, 0, 0, 0],
1608
1608
  ];
1609
- var GetCloudAutonomousVmClusterInput = [3, n0, _GCAVCI, 0, [_cAVCI], [[0, 1]]];
1610
- var GetCloudAutonomousVmClusterOutput = [
1609
+ var GetCloudAutonomousVmClusterInput$ = [3, n0, _GCAVCI, 0, [_cAVCI], [[0, 1]]];
1610
+ var GetCloudAutonomousVmClusterOutput$ = [
1611
1611
  3,
1612
1612
  n0,
1613
1613
  _GCAVCO,
1614
1614
  0,
1615
1615
  [_cAVCl],
1616
- [() => CloudAutonomousVmCluster],
1616
+ [() => CloudAutonomousVmCluster$],
1617
1617
  ];
1618
- var GetCloudExadataInfrastructureInput = [3, n0, _GCEII, 0, [_cEII], [[0, 1]]];
1619
- var GetCloudExadataInfrastructureOutput = [
1618
+ var GetCloudExadataInfrastructureInput$ = [3, n0, _GCEII, 0, [_cEII], [[0, 1]]];
1619
+ var GetCloudExadataInfrastructureOutput$ = [
1620
1620
  3,
1621
1621
  n0,
1622
1622
  _GCEIO,
1623
1623
  0,
1624
1624
  [_cEI],
1625
- [[() => CloudExadataInfrastructure, 0]],
1625
+ [[() => CloudExadataInfrastructure$, 0]],
1626
1626
  ];
1627
- var GetCloudExadataInfrastructureUnallocatedResourcesInput = [
1627
+ var GetCloudExadataInfrastructureUnallocatedResourcesInput$ = [
1628
1628
  3,
1629
1629
  n0,
1630
1630
  _GCEIURI,
@@ -1632,17 +1632,17 @@ var GetCloudExadataInfrastructureUnallocatedResourcesInput = [
1632
1632
  [_cEII, _dS],
1633
1633
  [[0, 1], 64 | 0],
1634
1634
  ];
1635
- var GetCloudExadataInfrastructureUnallocatedResourcesOutput = [
1635
+ var GetCloudExadataInfrastructureUnallocatedResourcesOutput$ = [
1636
1636
  3,
1637
1637
  n0,
1638
1638
  _GCEIURO,
1639
1639
  0,
1640
1640
  [_cEIUR],
1641
- [() => CloudExadataInfrastructureUnallocatedResources],
1641
+ [() => CloudExadataInfrastructureUnallocatedResources$],
1642
1642
  ];
1643
- var GetCloudVmClusterInput = [3, n0, _GCVCI, 0, [_cVCI], [[0, 1]]];
1644
- var GetCloudVmClusterOutput = [3, n0, _GCVCO, 0, [_cVC], [[() => CloudVmCluster, 0]]];
1645
- var GetDbNodeInput = [
1643
+ var GetCloudVmClusterInput$ = [3, n0, _GCVCI, 0, [_cVCI], [[0, 1]]];
1644
+ var GetCloudVmClusterOutput$ = [3, n0, _GCVCO, 0, [_cVC], [[() => CloudVmCluster$, 0]]];
1645
+ var GetDbNodeInput$ = [
1646
1646
  3,
1647
1647
  n0,
1648
1648
  _GDNI,
@@ -1653,8 +1653,8 @@ var GetDbNodeInput = [
1653
1653
  [0, 1],
1654
1654
  ],
1655
1655
  ];
1656
- var GetDbNodeOutput = [3, n0, _GDNO, 0, [_dNbo], [() => DbNode]];
1657
- var GetDbServerInput = [
1656
+ var GetDbNodeOutput$ = [3, n0, _GDNO, 0, [_dNbo], [() => DbNode$]];
1657
+ var GetDbServerInput$ = [
1658
1658
  3,
1659
1659
  n0,
1660
1660
  _GDSI,
@@ -1665,32 +1665,32 @@ var GetDbServerInput = [
1665
1665
  [0, 1],
1666
1666
  ],
1667
1667
  ];
1668
- var GetDbServerOutput = [3, n0, _GDSO, 0, [_dSb], [() => DbServer]];
1669
- var GetOciOnboardingStatusInput = [3, n0, _GOOSI, 0, [], []];
1670
- var GetOciOnboardingStatusOutput = [
1668
+ var GetDbServerOutput$ = [3, n0, _GDSO, 0, [_dSb], [() => DbServer$]];
1669
+ var GetOciOnboardingStatusInput$ = [3, n0, _GOOSI, 0, [], []];
1670
+ var GetOciOnboardingStatusOutput$ = [
1671
1671
  3,
1672
1672
  n0,
1673
1673
  _GOOSO,
1674
1674
  0,
1675
1675
  [_s, _eTAL, _nTAL, _oID],
1676
- [0, 0, 0, () => OciIdentityDomain],
1676
+ [0, 0, 0, () => OciIdentityDomain$],
1677
1677
  ];
1678
- var GetOdbNetworkInput = [3, n0, _GONI, 0, [_oNI], [[0, 1]]];
1679
- var GetOdbNetworkOutput = [3, n0, _GONO, 0, [_oN], [() => OdbNetwork]];
1680
- var GetOdbPeeringConnectionInput = [3, n0, _GOPCI, 0, [_oPCI], [[0, 1]]];
1681
- var GetOdbPeeringConnectionOutput = [
1678
+ var GetOdbNetworkInput$ = [3, n0, _GONI, 0, [_oNI], [[0, 1]]];
1679
+ var GetOdbNetworkOutput$ = [3, n0, _GONO, 0, [_oN], [() => OdbNetwork$]];
1680
+ var GetOdbPeeringConnectionInput$ = [3, n0, _GOPCI, 0, [_oPCI], [[0, 1]]];
1681
+ var GetOdbPeeringConnectionOutput$ = [
1682
1682
  3,
1683
1683
  n0,
1684
1684
  _GOPCO,
1685
1685
  0,
1686
1686
  [_oPC],
1687
- [() => OdbPeeringConnection],
1687
+ [() => OdbPeeringConnection$],
1688
1688
  ];
1689
- var GiVersionSummary = [3, n0, _GVS, 0, [_v], [0]];
1690
- var IamRole = [3, n0, _IR, 0, [_iRA, _s, _sR, _aI], [0, 0, 0, 0]];
1691
- var InitializeServiceInput = [3, n0, _ISI, 0, [_oID], [2]];
1692
- var InitializeServiceOutput = [3, n0, _ISO, 0, [], []];
1693
- var InternalServerException = [
1689
+ var GiVersionSummary$ = [3, n0, _GVS, 0, [_v], [0]];
1690
+ var IamRole$ = [3, n0, _IR, 0, [_iRA, _s, _sR, _aI], [0, 0, 0, 0]];
1691
+ var InitializeServiceInput$ = [3, n0, _ISI, 0, [_oID], [2]];
1692
+ var InitializeServiceOutput$ = [3, n0, _ISO, 0, [], []];
1693
+ var InternalServerException$ = [
1694
1694
  -3,
1695
1695
  n0,
1696
1696
  _ISE,
@@ -1698,9 +1698,9 @@ var InternalServerException = [
1698
1698
  [_m, _rAS],
1699
1699
  [0, [1, { [_hH]: _RA }]],
1700
1700
  ];
1701
- schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
1702
- var KmsAccess = [3, n0, _KA, 0, [_s, _iA, _dNo, _kPD], [0, 64 | 0, 0, 0]];
1703
- var ListAutonomousVirtualMachinesInput = [
1701
+ schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
1702
+ var KmsAccess$ = [3, n0, _KA, 0, [_s, _iA, _dNo, _kPD], [0, 64 | 0, 0, 0]];
1703
+ var ListAutonomousVirtualMachinesInput$ = [
1704
1704
  3,
1705
1705
  n0,
1706
1706
  _LAVMI,
@@ -1712,7 +1712,7 @@ var ListAutonomousVirtualMachinesInput = [
1712
1712
  [0, 1],
1713
1713
  ],
1714
1714
  ];
1715
- var ListAutonomousVirtualMachinesOutput = [
1715
+ var ListAutonomousVirtualMachinesOutput$ = [
1716
1716
  3,
1717
1717
  n0,
1718
1718
  _LAVMO,
@@ -1720,7 +1720,7 @@ var ListAutonomousVirtualMachinesOutput = [
1720
1720
  [_nT, _aVM],
1721
1721
  [0, () => AutonomousVirtualMachineList],
1722
1722
  ];
1723
- var ListCloudAutonomousVmClustersInput = [
1723
+ var ListCloudAutonomousVmClustersInput$ = [
1724
1724
  3,
1725
1725
  n0,
1726
1726
  _LCAVCI,
@@ -1728,7 +1728,7 @@ var ListCloudAutonomousVmClustersInput = [
1728
1728
  [_mR, _nT, _cEII],
1729
1729
  [[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], 0],
1730
1730
  ];
1731
- var ListCloudAutonomousVmClustersOutput = [
1731
+ var ListCloudAutonomousVmClustersOutput$ = [
1732
1732
  3,
1733
1733
  n0,
1734
1734
  _LCAVCO,
@@ -1736,7 +1736,7 @@ var ListCloudAutonomousVmClustersOutput = [
1736
1736
  [_nT, _cAVC],
1737
1737
  [0, () => CloudAutonomousVmClusterList],
1738
1738
  ];
1739
- var ListCloudExadataInfrastructuresInput = [
1739
+ var ListCloudExadataInfrastructuresInput$ = [
1740
1740
  3,
1741
1741
  n0,
1742
1742
  _LCEII,
@@ -1747,7 +1747,7 @@ var ListCloudExadataInfrastructuresInput = [
1747
1747
  [0, { [_hQ]: _nT }],
1748
1748
  ],
1749
1749
  ];
1750
- var ListCloudExadataInfrastructuresOutput = [
1750
+ var ListCloudExadataInfrastructuresOutput$ = [
1751
1751
  3,
1752
1752
  n0,
1753
1753
  _LCEIO,
@@ -1755,7 +1755,7 @@ var ListCloudExadataInfrastructuresOutput = [
1755
1755
  [_nT, _cEIl],
1756
1756
  [0, [() => CloudExadataInfrastructureList, 0]],
1757
1757
  ];
1758
- var ListCloudVmClustersInput = [
1758
+ var ListCloudVmClustersInput$ = [
1759
1759
  3,
1760
1760
  n0,
1761
1761
  _LCVCI,
@@ -1763,7 +1763,7 @@ var ListCloudVmClustersInput = [
1763
1763
  [_mR, _nT, _cEII],
1764
1764
  [[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], 0],
1765
1765
  ];
1766
- var ListCloudVmClustersOutput = [
1766
+ var ListCloudVmClustersOutput$ = [
1767
1767
  3,
1768
1768
  n0,
1769
1769
  _LCVCO,
@@ -1771,7 +1771,7 @@ var ListCloudVmClustersOutput = [
1771
1771
  [_nT, _cVCl],
1772
1772
  [0, [() => CloudVmClusterList, 0]],
1773
1773
  ];
1774
- var ListDbNodesInput = [
1774
+ var ListDbNodesInput$ = [
1775
1775
  3,
1776
1776
  n0,
1777
1777
  _LDNI,
@@ -1783,8 +1783,8 @@ var ListDbNodesInput = [
1783
1783
  [0, 1],
1784
1784
  ],
1785
1785
  ];
1786
- var ListDbNodesOutput = [3, n0, _LDNO, 0, [_nT, _dNbod], [0, () => DbNodeList]];
1787
- var ListDbServersInput = [
1786
+ var ListDbNodesOutput$ = [3, n0, _LDNO, 0, [_nT, _dNbod], [0, () => DbNodeList]];
1787
+ var ListDbServersInput$ = [
1788
1788
  3,
1789
1789
  n0,
1790
1790
  _LDSI,
@@ -1796,8 +1796,8 @@ var ListDbServersInput = [
1796
1796
  [0, { [_hQ]: _nT }],
1797
1797
  ],
1798
1798
  ];
1799
- var ListDbServersOutput = [3, n0, _LDSO, 0, [_nT, _dS], [0, () => DbServerList]];
1800
- var ListDbSystemShapesInput = [
1799
+ var ListDbServersOutput$ = [3, n0, _LDSO, 0, [_nT, _dS], [0, () => DbServerList]];
1800
+ var ListDbSystemShapesInput$ = [
1801
1801
  3,
1802
1802
  n0,
1803
1803
  _LDSSI,
@@ -1805,7 +1805,7 @@ var ListDbSystemShapesInput = [
1805
1805
  [_mR, _nT, _aZ, _aZI],
1806
1806
  [[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], 0, 0],
1807
1807
  ];
1808
- var ListDbSystemShapesOutput = [
1808
+ var ListDbSystemShapesOutput$ = [
1809
1809
  3,
1810
1810
  n0,
1811
1811
  _LDSSO,
@@ -1813,7 +1813,7 @@ var ListDbSystemShapesOutput = [
1813
1813
  [_nT, _dSS],
1814
1814
  [0, () => DbSystemShapeList],
1815
1815
  ];
1816
- var ListGiVersionsInput = [
1816
+ var ListGiVersionsInput$ = [
1817
1817
  3,
1818
1818
  n0,
1819
1819
  _LGVI,
@@ -1821,8 +1821,8 @@ var ListGiVersionsInput = [
1821
1821
  [_mR, _nT, _sh],
1822
1822
  [[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], 0],
1823
1823
  ];
1824
- var ListGiVersionsOutput = [3, n0, _LGVO, 0, [_nT, _gVi], [0, () => GiVersionList]];
1825
- var ListOdbNetworksInput = [
1824
+ var ListGiVersionsOutput$ = [3, n0, _LGVO, 0, [_nT, _gVi], [0, () => GiVersionList]];
1825
+ var ListOdbNetworksInput$ = [
1826
1826
  3,
1827
1827
  n0,
1828
1828
  _LONI,
@@ -1833,8 +1833,8 @@ var ListOdbNetworksInput = [
1833
1833
  [0, { [_hQ]: _nT }],
1834
1834
  ],
1835
1835
  ];
1836
- var ListOdbNetworksOutput = [3, n0, _LONO, 0, [_nT, _oNd], [0, () => OdbNetworkList]];
1837
- var ListOdbPeeringConnectionsInput = [
1836
+ var ListOdbNetworksOutput$ = [3, n0, _LONO, 0, [_nT, _oNd], [0, () => OdbNetworkList]];
1837
+ var ListOdbPeeringConnectionsInput$ = [
1838
1838
  3,
1839
1839
  n0,
1840
1840
  _LOPCI,
@@ -1842,7 +1842,7 @@ var ListOdbPeeringConnectionsInput = [
1842
1842
  [_mR, _nT, _oNI],
1843
1843
  [[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], 0],
1844
1844
  ];
1845
- var ListOdbPeeringConnectionsOutput = [
1845
+ var ListOdbPeeringConnectionsOutput$ = [
1846
1846
  3,
1847
1847
  n0,
1848
1848
  _LOPCO,
@@ -1850,7 +1850,7 @@ var ListOdbPeeringConnectionsOutput = [
1850
1850
  [_nT, _oPCd],
1851
1851
  [0, () => OdbPeeringConnectionList],
1852
1852
  ];
1853
- var ListSystemVersionsInput = [
1853
+ var ListSystemVersionsInput$ = [
1854
1854
  3,
1855
1855
  n0,
1856
1856
  _LSVI,
@@ -1858,7 +1858,7 @@ var ListSystemVersionsInput = [
1858
1858
  [_mR, _nT, _gV, _sh],
1859
1859
  [[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], 0, 0],
1860
1860
  ];
1861
- var ListSystemVersionsOutput = [
1861
+ var ListSystemVersionsOutput$ = [
1862
1862
  3,
1863
1863
  n0,
1864
1864
  _LSVO,
@@ -1866,9 +1866,9 @@ var ListSystemVersionsOutput = [
1866
1866
  [_nT, _sVy],
1867
1867
  [0, () => SystemVersionList],
1868
1868
  ];
1869
- var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [0]];
1870
- var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [128 | 0]];
1871
- var MaintenanceWindow = [
1869
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_rA], [0]];
1870
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_t], [128 | 0]];
1871
+ var MaintenanceWindow$ = [
1872
1872
  3,
1873
1873
  n0,
1874
1874
  _MW,
@@ -1876,8 +1876,8 @@ var MaintenanceWindow = [
1876
1876
  [_cATIM, _dOW, _hOD, _iCATE, _lTIW, _mo, _pM, _p, _sRk, _wOM],
1877
1877
  [1, () => DaysOfWeek, 64 | 1, 2, 1, () => Months, 0, 0, 2, 64 | 1],
1878
1878
  ];
1879
- var ManagedS3BackupAccess = [3, n0, _MSBA, 0, [_s, _iA], [0, 64 | 0]];
1880
- var ManagedServices = [
1879
+ var ManagedS3BackupAccess$ = [3, n0, _MSBA, 0, [_s, _iA], [0, 64 | 0]];
1880
+ var ManagedServices$ = [
1881
1881
  3,
1882
1882
  n0,
1883
1883
  _MS,
@@ -1887,18 +1887,18 @@ var ManagedServices = [
1887
1887
  0,
1888
1888
  0,
1889
1889
  64 | 0,
1890
- () => ServiceNetworkEndpoint,
1891
- () => ManagedS3BackupAccess,
1892
- () => ZeroEtlAccess,
1893
- () => S3Access,
1894
- () => StsAccess,
1895
- () => KmsAccess,
1890
+ () => ServiceNetworkEndpoint$,
1891
+ () => ManagedS3BackupAccess$,
1892
+ () => ZeroEtlAccess$,
1893
+ () => S3Access$,
1894
+ () => StsAccess$,
1895
+ () => KmsAccess$,
1896
1896
  () => CrossRegionS3RestoreSourcesAccessList,
1897
1897
  ],
1898
1898
  ];
1899
- var Month = [3, n0, _M, 0, [_n], [0]];
1900
- var OciDnsForwardingConfig = [3, n0, _ODFC, 0, [_dNo, _oDLI], [0, 0]];
1901
- var OciIdentityDomain = [
1899
+ var Month$ = [3, n0, _M, 0, [_n], [0]];
1900
+ var OciDnsForwardingConfig$ = [3, n0, _ODFC, 0, [_dNo, _oDLI], [0, 0]];
1901
+ var OciIdentityDomain$ = [
1902
1902
  3,
1903
1903
  n0,
1904
1904
  _OID,
@@ -1906,7 +1906,7 @@ var OciIdentityDomain = [
1906
1906
  [_oIDI, _oIDRU, _oIDU, _s, _sR, _aSCFU],
1907
1907
  [0, 0, 0, 0, 0, 0],
1908
1908
  ];
1909
- var OdbNetwork = [
1909
+ var OdbNetwork$ = [
1910
1910
  3,
1911
1911
  n0,
1912
1912
  _ON,
@@ -1955,10 +1955,10 @@ var OdbNetwork = [
1955
1955
  () => OciDnsForwardingConfigList,
1956
1956
  5,
1957
1957
  1,
1958
- () => ManagedServices,
1958
+ () => ManagedServices$,
1959
1959
  ],
1960
1960
  ];
1961
- var OdbNetworkSummary = [
1961
+ var OdbNetworkSummary$ = [
1962
1962
  3,
1963
1963
  n0,
1964
1964
  _ONS,
@@ -2007,10 +2007,10 @@ var OdbNetworkSummary = [
2007
2007
  () => OciDnsForwardingConfigList,
2008
2008
  5,
2009
2009
  1,
2010
- () => ManagedServices,
2010
+ () => ManagedServices$,
2011
2011
  ],
2012
2012
  ];
2013
- var OdbPeeringConnection = [
2013
+ var OdbPeeringConnection$ = [
2014
2014
  3,
2015
2015
  n0,
2016
2016
  _OPC,
@@ -2018,7 +2018,7 @@ var OdbPeeringConnection = [
2018
2018
  [_oPCI, _dN, _s, _sR, _oPCA, _oNA, _pNA, _oPCT, _pNC, _cA, _pP],
2019
2019
  [0, 0, 0, 0, 0, 0, 0, 0, 64 | 0, 5, 1],
2020
2020
  ];
2021
- var OdbPeeringConnectionSummary = [
2021
+ var OdbPeeringConnectionSummary$ = [
2022
2022
  3,
2023
2023
  n0,
2024
2024
  _OPCS,
@@ -2026,7 +2026,7 @@ var OdbPeeringConnectionSummary = [
2026
2026
  [_oPCI, _dN, _s, _sR, _oPCA, _oNA, _pNA, _oPCT, _pNC, _cA, _pP],
2027
2027
  [0, 0, 0, 0, 0, 0, 0, 0, 64 | 0, 5, 1],
2028
2028
  ];
2029
- var RebootDbNodeInput = [
2029
+ var RebootDbNodeInput$ = [
2030
2030
  3,
2031
2031
  n0,
2032
2032
  _RDNI,
@@ -2037,8 +2037,8 @@ var RebootDbNodeInput = [
2037
2037
  [0, 1],
2038
2038
  ],
2039
2039
  ];
2040
- var RebootDbNodeOutput = [3, n0, _RDNO, 0, [_dNI, _s, _sR], [0, 0, 0]];
2041
- var ResourceNotFoundException = [
2040
+ var RebootDbNodeOutput$ = [3, n0, _RDNO, 0, [_dNI, _s, _sR], [0, 0, 0]];
2041
+ var ResourceNotFoundException$ = [
2042
2042
  -3,
2043
2043
  n0,
2044
2044
  _RNFE,
@@ -2046,10 +2046,10 @@ var ResourceNotFoundException = [
2046
2046
  [_m, _rI, _rT],
2047
2047
  [0, 0, 0],
2048
2048
  ];
2049
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
2050
- var S3Access = [3, n0, _SA, 0, [_s, _iA, _dNo, _sPD], [0, 64 | 0, 0, 0]];
2051
- var ServiceNetworkEndpoint = [3, n0, _SNE, 0, [_vEI, _vET], [0, 0]];
2052
- var ServiceQuotaExceededException = [
2049
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
2050
+ var S3Access$ = [3, n0, _SA, 0, [_s, _iA, _dNo, _sPD], [0, 64 | 0, 0, 0]];
2051
+ var ServiceNetworkEndpoint$ = [3, n0, _SNE, 0, [_vEI, _vET], [0, 0]];
2052
+ var ServiceQuotaExceededException$ = [
2053
2053
  -3,
2054
2054
  n0,
2055
2055
  _SQEE,
@@ -2057,8 +2057,8 @@ var ServiceQuotaExceededException = [
2057
2057
  [_m, _rI, _rT, _qC],
2058
2058
  [0, 0, 0, 0],
2059
2059
  ];
2060
- schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
2061
- var StartDbNodeInput = [
2060
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
2061
+ var StartDbNodeInput$ = [
2062
2062
  3,
2063
2063
  n0,
2064
2064
  _SDNI,
@@ -2069,8 +2069,8 @@ var StartDbNodeInput = [
2069
2069
  [0, 1],
2070
2070
  ],
2071
2071
  ];
2072
- var StartDbNodeOutput = [3, n0, _SDNO, 0, [_dNI, _s, _sR], [0, 0, 0]];
2073
- var StopDbNodeInput = [
2072
+ var StartDbNodeOutput$ = [3, n0, _SDNO, 0, [_dNI, _s, _sR], [0, 0, 0]];
2073
+ var StopDbNodeInput$ = [
2074
2074
  3,
2075
2075
  n0,
2076
2076
  _SDNIt,
@@ -2081,12 +2081,12 @@ var StopDbNodeInput = [
2081
2081
  [0, 1],
2082
2082
  ],
2083
2083
  ];
2084
- var StopDbNodeOutput = [3, n0, _SDNOt, 0, [_dNI, _s, _sR], [0, 0, 0]];
2085
- var StsAccess = [3, n0, _SAt, 0, [_s, _iA, _dNo, _sPDt], [0, 64 | 0, 0, 0]];
2086
- var SystemVersionSummary = [3, n0, _SVS, 0, [_gV, _sh, _sVy], [0, 0, 64 | 0]];
2087
- var TagResourceRequest = [3, n0, _TRR, 0, [_rA, _t], [0, 128 | 0]];
2088
- var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
2089
- var ThrottlingException = [
2084
+ var StopDbNodeOutput$ = [3, n0, _SDNOt, 0, [_dNI, _s, _sR], [0, 0, 0]];
2085
+ var StsAccess$ = [3, n0, _SAt, 0, [_s, _iA, _dNo, _sPDt], [0, 64 | 0, 0, 0]];
2086
+ var SystemVersionSummary$ = [3, n0, _SVS, 0, [_gV, _sh, _sVy], [0, 0, 64 | 0]];
2087
+ var TagResourceRequest$ = [3, n0, _TRR, 0, [_rA, _t], [0, 128 | 0]];
2088
+ var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
2089
+ var ThrottlingException$ = [
2090
2090
  -3,
2091
2091
  n0,
2092
2092
  _TE,
@@ -2094,18 +2094,18 @@ var ThrottlingException = [
2094
2094
  [_m, _rAS],
2095
2095
  [0, [1, { [_hH]: _RA }]],
2096
2096
  ];
2097
- schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
2098
- var UntagResourceRequest = [3, n0, _URR, 0, [_rA, _tK], [[0, 1], 64 | 0]];
2099
- var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
2100
- var UpdateCloudExadataInfrastructureInput = [
2097
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
2098
+ var UntagResourceRequest$ = [3, n0, _URR, 0, [_rA, _tK], [[0, 1], 64 | 0]];
2099
+ var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
2100
+ var UpdateCloudExadataInfrastructureInput$ = [
2101
2101
  3,
2102
2102
  n0,
2103
2103
  _UCEII,
2104
2104
  0,
2105
2105
  [_cEII, _mW],
2106
- [[0, 1], () => MaintenanceWindow],
2106
+ [[0, 1], () => MaintenanceWindow$],
2107
2107
  ];
2108
- var UpdateCloudExadataInfrastructureOutput = [
2108
+ var UpdateCloudExadataInfrastructureOutput$ = [
2109
2109
  3,
2110
2110
  n0,
2111
2111
  _UCEIO,
@@ -2113,7 +2113,7 @@ var UpdateCloudExadataInfrastructureOutput = [
2113
2113
  [_dN, _s, _sR, _cEII],
2114
2114
  [0, 0, 0, 0],
2115
2115
  ];
2116
- var UpdateOdbNetworkInput = [
2116
+ var UpdateOdbNetworkInput$ = [
2117
2117
  3,
2118
2118
  n0,
2119
2119
  _UONI,
@@ -2121,8 +2121,8 @@ var UpdateOdbNetworkInput = [
2121
2121
  [_oNI, _dN, _pCTBA, _pCTBR, _sA, _zEA, _sAt, _kA, _sPD, _sPDt, _kPD, _cRSRSTE, _cRSRSTD],
2122
2122
  [[0, 1], 0, 64 | 0, 64 | 0, 0, 0, 0, 0, 0, 0, 0, 64 | 0, 64 | 0],
2123
2123
  ];
2124
- var UpdateOdbNetworkOutput = [3, n0, _UONO, 0, [_dN, _s, _sR, _oNI], [0, 0, 0, 0]];
2125
- var UpdateOdbPeeringConnectionInput = [
2124
+ var UpdateOdbNetworkOutput$ = [3, n0, _UONO, 0, [_dN, _s, _sR, _oNI], [0, 0, 0, 0]];
2125
+ var UpdateOdbPeeringConnectionInput$ = [
2126
2126
  3,
2127
2127
  n0,
2128
2128
  _UOPCI,
@@ -2130,7 +2130,7 @@ var UpdateOdbPeeringConnectionInput = [
2130
2130
  [_oPCI, _dN, _pNCTBA, _pNCTBR],
2131
2131
  [[0, 1], 0, 64 | 0, 64 | 0],
2132
2132
  ];
2133
- var UpdateOdbPeeringConnectionOutput = [
2133
+ var UpdateOdbPeeringConnectionOutput$ = [
2134
2134
  3,
2135
2135
  n0,
2136
2136
  _UOPCO,
@@ -2138,7 +2138,7 @@ var UpdateOdbPeeringConnectionOutput = [
2138
2138
  [_dN, _s, _sR, _oPCI],
2139
2139
  [0, 0, 0, 0],
2140
2140
  ];
2141
- var ValidationException = [
2141
+ var ValidationException$ = [
2142
2142
  -3,
2143
2143
  n0,
2144
2144
  _VE,
@@ -2146,330 +2146,338 @@ var ValidationException = [
2146
2146
  [_m, _re, _fL],
2147
2147
  [0, 0, () => ValidationExceptionFieldList],
2148
2148
  ];
2149
- schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
2150
- var ValidationExceptionField = [3, n0, _VEF, 0, [_n, _m], [0, 0]];
2151
- var ZeroEtlAccess = [3, n0, _ZEA, 0, [_s, _ci], [0, 0]];
2152
- var OdbServiceException = [-3, _sm, "OdbServiceException", 0, [], []];
2153
- schema.TypeRegistry.for(_sm).registerError(OdbServiceException, OdbServiceException$1);
2154
- var AutonomousVirtualMachineList = [1, n0, _AVML, 0, () => AutonomousVirtualMachineSummary];
2155
- var CloudAutonomousVmClusterList = [1, n0, _CAVCL, 0, () => CloudAutonomousVmClusterSummary];
2149
+ schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
2150
+ var ValidationExceptionField$ = [3, n0, _VEF, 0, [_n, _m], [0, 0]];
2151
+ var ZeroEtlAccess$ = [3, n0, _ZEA, 0, [_s, _ci], [0, 0]];
2152
+ var OdbServiceException$ = [-3, _sm, "OdbServiceException", 0, [], []];
2153
+ schema.TypeRegistry.for(_sm).registerError(OdbServiceException$, OdbServiceException);
2154
+ var AutonomousVirtualMachineList = [1, n0, _AVML, 0, () => AutonomousVirtualMachineSummary$];
2155
+ var CloudAutonomousVmClusterList = [1, n0, _CAVCL, 0, () => CloudAutonomousVmClusterSummary$];
2156
2156
  var CloudAutonomousVmClusterResourceDetailsList = [
2157
2157
  1,
2158
2158
  n0,
2159
2159
  _CAVCRDL,
2160
2160
  0,
2161
- () => CloudAutonomousVmClusterResourceDetails,
2161
+ () => CloudAutonomousVmClusterResourceDetails$,
2162
2162
  ];
2163
- var CloudExadataInfrastructureList = [
2164
- 1,
2165
- n0,
2166
- _CEIL,
2167
- 0,
2168
- [() => CloudExadataInfrastructureSummary, 0],
2169
- ];
2170
- var CloudVmClusterList = [1, n0, _CVCL, 0, [() => CloudVmClusterSummary, 0]];
2163
+ var CloudExadataInfrastructureList = [1, n0, _CEIL, 0, [() => CloudExadataInfrastructureSummary$, 0]];
2164
+ var CloudVmClusterList = [1, n0, _CVCL, 0, [() => CloudVmClusterSummary$, 0]];
2171
2165
  var CrossRegionS3RestoreSourcesAccessList = [
2172
2166
  1,
2173
2167
  n0,
2174
2168
  _CRSRSAL,
2175
2169
  0,
2176
- () => CrossRegionS3RestoreSourcesAccess,
2177
- ];
2178
- var CustomerContacts = [1, n0, _CCu, 0, [() => CustomerContact, 0]];
2179
- var DaysOfWeek = [1, n0, _DOWa, 0, () => DayOfWeek];
2180
- var DbIormConfigList = [1, n0, _DICL, 0, () => DbIormConfig];
2181
- var DbNodeList = [1, n0, _DNL, 0, () => DbNodeSummary];
2182
- var DbServerList = [1, n0, _DSL, 0, () => DbServerSummary];
2183
- var DbSystemShapeList = [1, n0, _DSSL, 0, () => DbSystemShapeSummary];
2184
- var GiVersionList = [1, n0, _GVL, 0, () => GiVersionSummary];
2185
- var IamRoleList = [1, n0, _IRL, 0, () => IamRole];
2186
- var Months = [1, n0, _Mo, 0, () => Month];
2187
- var OciDnsForwardingConfigList = [1, n0, _ODFCL, 0, () => OciDnsForwardingConfig];
2188
- var OdbNetworkList = [1, n0, _ONL, 0, () => OdbNetworkSummary];
2189
- var OdbPeeringConnectionList = [1, n0, _OPCL, 0, () => OdbPeeringConnectionSummary];
2170
+ () => CrossRegionS3RestoreSourcesAccess$,
2171
+ ];
2172
+ var CustomerContacts = [1, n0, _CCu, 0, [() => CustomerContact$, 0]];
2173
+ var DaysOfWeek = [1, n0, _DOWa, 0, () => DayOfWeek$];
2174
+ var DbIormConfigList = [1, n0, _DICL, 0, () => DbIormConfig$];
2175
+ var DbNodeList = [1, n0, _DNL, 0, () => DbNodeSummary$];
2176
+ var DbServerList = [1, n0, _DSL, 0, () => DbServerSummary$];
2177
+ var DbSystemShapeList = [1, n0, _DSSL, 0, () => DbSystemShapeSummary$];
2178
+ var GiVersionList = [1, n0, _GVL, 0, () => GiVersionSummary$];
2179
+ var IamRoleList = [1, n0, _IRL, 0, () => IamRole$];
2180
+ var Months = [1, n0, _Mo, 0, () => Month$];
2181
+ var OciDnsForwardingConfigList = [1, n0, _ODFCL, 0, () => OciDnsForwardingConfig$];
2182
+ var OdbNetworkList = [1, n0, _ONL, 0, () => OdbNetworkSummary$];
2183
+ var OdbPeeringConnectionList = [1, n0, _OPCL, 0, () => OdbPeeringConnectionSummary$];
2190
2184
  var SensitiveStringList = [1, n0, _SSL, 0, [() => SensitiveString, 0]];
2191
- var SystemVersionList = [1, n0, _SVL, 0, () => SystemVersionSummary];
2192
- var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField];
2193
- var AcceptMarketplaceRegistration = [
2185
+ var SystemVersionList = [1, n0, _SVL, 0, () => SystemVersionSummary$];
2186
+ var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField$];
2187
+ var AcceptMarketplaceRegistration$ = [
2194
2188
  9,
2195
2189
  n0,
2196
2190
  _AMR,
2197
2191
  2,
2198
- () => AcceptMarketplaceRegistrationInput,
2199
- () => AcceptMarketplaceRegistrationOutput,
2192
+ () => AcceptMarketplaceRegistrationInput$,
2193
+ () => AcceptMarketplaceRegistrationOutput$,
2200
2194
  ];
2201
- var AssociateIamRoleToResource = [
2195
+ var AssociateIamRoleToResource$ = [
2202
2196
  9,
2203
2197
  n0,
2204
2198
  _AIRTR,
2205
2199
  0,
2206
- () => AssociateIamRoleToResourceInput,
2207
- () => AssociateIamRoleToResourceOutput,
2200
+ () => AssociateIamRoleToResourceInput$,
2201
+ () => AssociateIamRoleToResourceOutput$,
2208
2202
  ];
2209
- var CreateCloudAutonomousVmCluster = [
2203
+ var CreateCloudAutonomousVmCluster$ = [
2210
2204
  9,
2211
2205
  n0,
2212
2206
  _CCAVC,
2213
2207
  2,
2214
- () => CreateCloudAutonomousVmClusterInput,
2215
- () => CreateCloudAutonomousVmClusterOutput,
2208
+ () => CreateCloudAutonomousVmClusterInput$,
2209
+ () => CreateCloudAutonomousVmClusterOutput$,
2216
2210
  ];
2217
- var CreateCloudExadataInfrastructure = [
2211
+ var CreateCloudExadataInfrastructure$ = [
2218
2212
  9,
2219
2213
  n0,
2220
2214
  _CCEI,
2221
2215
  2,
2222
- () => CreateCloudExadataInfrastructureInput,
2223
- () => CreateCloudExadataInfrastructureOutput,
2216
+ () => CreateCloudExadataInfrastructureInput$,
2217
+ () => CreateCloudExadataInfrastructureOutput$,
2224
2218
  ];
2225
- var CreateCloudVmCluster = [
2219
+ var CreateCloudVmCluster$ = [
2226
2220
  9,
2227
2221
  n0,
2228
2222
  _CCVC,
2229
2223
  2,
2230
- () => CreateCloudVmClusterInput,
2231
- () => CreateCloudVmClusterOutput,
2224
+ () => CreateCloudVmClusterInput$,
2225
+ () => CreateCloudVmClusterOutput$,
2232
2226
  ];
2233
- var CreateOdbNetwork = [
2227
+ var CreateOdbNetwork$ = [
2234
2228
  9,
2235
2229
  n0,
2236
2230
  _CON,
2237
2231
  2,
2238
- () => CreateOdbNetworkInput,
2239
- () => CreateOdbNetworkOutput,
2232
+ () => CreateOdbNetworkInput$,
2233
+ () => CreateOdbNetworkOutput$,
2240
2234
  ];
2241
- var CreateOdbPeeringConnection = [
2235
+ var CreateOdbPeeringConnection$ = [
2242
2236
  9,
2243
2237
  n0,
2244
2238
  _COPC,
2245
2239
  2,
2246
- () => CreateOdbPeeringConnectionInput,
2247
- () => CreateOdbPeeringConnectionOutput,
2240
+ () => CreateOdbPeeringConnectionInput$,
2241
+ () => CreateOdbPeeringConnectionOutput$,
2248
2242
  ];
2249
- var DeleteCloudAutonomousVmCluster = [
2243
+ var DeleteCloudAutonomousVmCluster$ = [
2250
2244
  9,
2251
2245
  n0,
2252
2246
  _DCAVC,
2253
2247
  2,
2254
- () => DeleteCloudAutonomousVmClusterInput,
2255
- () => DeleteCloudAutonomousVmClusterOutput,
2248
+ () => DeleteCloudAutonomousVmClusterInput$,
2249
+ () => DeleteCloudAutonomousVmClusterOutput$,
2256
2250
  ];
2257
- var DeleteCloudExadataInfrastructure = [
2251
+ var DeleteCloudExadataInfrastructure$ = [
2258
2252
  9,
2259
2253
  n0,
2260
2254
  _DCEI,
2261
2255
  2,
2262
- () => DeleteCloudExadataInfrastructureInput,
2263
- () => DeleteCloudExadataInfrastructureOutput,
2256
+ () => DeleteCloudExadataInfrastructureInput$,
2257
+ () => DeleteCloudExadataInfrastructureOutput$,
2264
2258
  ];
2265
- var DeleteCloudVmCluster = [
2259
+ var DeleteCloudVmCluster$ = [
2266
2260
  9,
2267
2261
  n0,
2268
2262
  _DCVC,
2269
2263
  2,
2270
- () => DeleteCloudVmClusterInput,
2271
- () => DeleteCloudVmClusterOutput,
2264
+ () => DeleteCloudVmClusterInput$,
2265
+ () => DeleteCloudVmClusterOutput$,
2272
2266
  ];
2273
- var DeleteOdbNetwork = [
2267
+ var DeleteOdbNetwork$ = [
2274
2268
  9,
2275
2269
  n0,
2276
2270
  _DON,
2277
2271
  2,
2278
- () => DeleteOdbNetworkInput,
2279
- () => DeleteOdbNetworkOutput,
2272
+ () => DeleteOdbNetworkInput$,
2273
+ () => DeleteOdbNetworkOutput$,
2280
2274
  ];
2281
- var DeleteOdbPeeringConnection = [
2275
+ var DeleteOdbPeeringConnection$ = [
2282
2276
  9,
2283
2277
  n0,
2284
2278
  _DOPC,
2285
2279
  2,
2286
- () => DeleteOdbPeeringConnectionInput,
2287
- () => DeleteOdbPeeringConnectionOutput,
2280
+ () => DeleteOdbPeeringConnectionInput$,
2281
+ () => DeleteOdbPeeringConnectionOutput$,
2288
2282
  ];
2289
- var DisassociateIamRoleFromResource = [
2283
+ var DisassociateIamRoleFromResource$ = [
2290
2284
  9,
2291
2285
  n0,
2292
2286
  _DIRFR,
2293
2287
  0,
2294
- () => DisassociateIamRoleFromResourceInput,
2295
- () => DisassociateIamRoleFromResourceOutput,
2288
+ () => DisassociateIamRoleFromResourceInput$,
2289
+ () => DisassociateIamRoleFromResourceOutput$,
2296
2290
  ];
2297
- var GetCloudAutonomousVmCluster = [
2291
+ var GetCloudAutonomousVmCluster$ = [
2298
2292
  9,
2299
2293
  n0,
2300
2294
  _GCAVC,
2301
2295
  0,
2302
- () => GetCloudAutonomousVmClusterInput,
2303
- () => GetCloudAutonomousVmClusterOutput,
2296
+ () => GetCloudAutonomousVmClusterInput$,
2297
+ () => GetCloudAutonomousVmClusterOutput$,
2304
2298
  ];
2305
- var GetCloudExadataInfrastructure = [
2299
+ var GetCloudExadataInfrastructure$ = [
2306
2300
  9,
2307
2301
  n0,
2308
2302
  _GCEI,
2309
2303
  0,
2310
- () => GetCloudExadataInfrastructureInput,
2311
- () => GetCloudExadataInfrastructureOutput,
2304
+ () => GetCloudExadataInfrastructureInput$,
2305
+ () => GetCloudExadataInfrastructureOutput$,
2312
2306
  ];
2313
- var GetCloudExadataInfrastructureUnallocatedResources = [
2307
+ var GetCloudExadataInfrastructureUnallocatedResources$ = [
2314
2308
  9,
2315
2309
  n0,
2316
2310
  _GCEIUR,
2317
2311
  0,
2318
- () => GetCloudExadataInfrastructureUnallocatedResourcesInput,
2319
- () => GetCloudExadataInfrastructureUnallocatedResourcesOutput,
2312
+ () => GetCloudExadataInfrastructureUnallocatedResourcesInput$,
2313
+ () => GetCloudExadataInfrastructureUnallocatedResourcesOutput$,
2320
2314
  ];
2321
- var GetCloudVmCluster = [
2315
+ var GetCloudVmCluster$ = [
2322
2316
  9,
2323
2317
  n0,
2324
2318
  _GCVC,
2325
2319
  0,
2326
- () => GetCloudVmClusterInput,
2327
- () => GetCloudVmClusterOutput,
2320
+ () => GetCloudVmClusterInput$,
2321
+ () => GetCloudVmClusterOutput$,
2328
2322
  ];
2329
- var GetDbNode = [9, n0, _GDN, 0, () => GetDbNodeInput, () => GetDbNodeOutput];
2330
- var GetDbServer = [9, n0, _GDS, 0, () => GetDbServerInput, () => GetDbServerOutput];
2331
- var GetOciOnboardingStatus = [
2323
+ var GetDbNode$ = [9, n0, _GDN, 0, () => GetDbNodeInput$, () => GetDbNodeOutput$];
2324
+ var GetDbServer$ = [9, n0, _GDS, 0, () => GetDbServerInput$, () => GetDbServerOutput$];
2325
+ var GetOciOnboardingStatus$ = [
2332
2326
  9,
2333
2327
  n0,
2334
2328
  _GOOS,
2335
2329
  0,
2336
- () => GetOciOnboardingStatusInput,
2337
- () => GetOciOnboardingStatusOutput,
2330
+ () => GetOciOnboardingStatusInput$,
2331
+ () => GetOciOnboardingStatusOutput$,
2332
+ ];
2333
+ var GetOdbNetwork$ = [
2334
+ 9,
2335
+ n0,
2336
+ _GON,
2337
+ 0,
2338
+ () => GetOdbNetworkInput$,
2339
+ () => GetOdbNetworkOutput$,
2338
2340
  ];
2339
- var GetOdbNetwork = [9, n0, _GON, 0, () => GetOdbNetworkInput, () => GetOdbNetworkOutput];
2340
- var GetOdbPeeringConnection = [
2341
+ var GetOdbPeeringConnection$ = [
2341
2342
  9,
2342
2343
  n0,
2343
2344
  _GOPC,
2344
2345
  0,
2345
- () => GetOdbPeeringConnectionInput,
2346
- () => GetOdbPeeringConnectionOutput,
2346
+ () => GetOdbPeeringConnectionInput$,
2347
+ () => GetOdbPeeringConnectionOutput$,
2347
2348
  ];
2348
- var InitializeService = [
2349
+ var InitializeService$ = [
2349
2350
  9,
2350
2351
  n0,
2351
2352
  _IS,
2352
2353
  2,
2353
- () => InitializeServiceInput,
2354
- () => InitializeServiceOutput,
2354
+ () => InitializeServiceInput$,
2355
+ () => InitializeServiceOutput$,
2355
2356
  ];
2356
- var ListAutonomousVirtualMachines = [
2357
+ var ListAutonomousVirtualMachines$ = [
2357
2358
  9,
2358
2359
  n0,
2359
2360
  _LAVM,
2360
2361
  0,
2361
- () => ListAutonomousVirtualMachinesInput,
2362
- () => ListAutonomousVirtualMachinesOutput,
2362
+ () => ListAutonomousVirtualMachinesInput$,
2363
+ () => ListAutonomousVirtualMachinesOutput$,
2363
2364
  ];
2364
- var ListCloudAutonomousVmClusters = [
2365
+ var ListCloudAutonomousVmClusters$ = [
2365
2366
  9,
2366
2367
  n0,
2367
2368
  _LCAVC,
2368
2369
  0,
2369
- () => ListCloudAutonomousVmClustersInput,
2370
- () => ListCloudAutonomousVmClustersOutput,
2370
+ () => ListCloudAutonomousVmClustersInput$,
2371
+ () => ListCloudAutonomousVmClustersOutput$,
2371
2372
  ];
2372
- var ListCloudExadataInfrastructures = [
2373
+ var ListCloudExadataInfrastructures$ = [
2373
2374
  9,
2374
2375
  n0,
2375
2376
  _LCEI,
2376
2377
  0,
2377
- () => ListCloudExadataInfrastructuresInput,
2378
- () => ListCloudExadataInfrastructuresOutput,
2378
+ () => ListCloudExadataInfrastructuresInput$,
2379
+ () => ListCloudExadataInfrastructuresOutput$,
2379
2380
  ];
2380
- var ListCloudVmClusters = [
2381
+ var ListCloudVmClusters$ = [
2381
2382
  9,
2382
2383
  n0,
2383
2384
  _LCVC,
2384
2385
  0,
2385
- () => ListCloudVmClustersInput,
2386
- () => ListCloudVmClustersOutput,
2386
+ () => ListCloudVmClustersInput$,
2387
+ () => ListCloudVmClustersOutput$,
2388
+ ];
2389
+ var ListDbNodes$ = [9, n0, _LDN, 0, () => ListDbNodesInput$, () => ListDbNodesOutput$];
2390
+ var ListDbServers$ = [
2391
+ 9,
2392
+ n0,
2393
+ _LDS,
2394
+ 0,
2395
+ () => ListDbServersInput$,
2396
+ () => ListDbServersOutput$,
2387
2397
  ];
2388
- var ListDbNodes = [9, n0, _LDN, 0, () => ListDbNodesInput, () => ListDbNodesOutput];
2389
- var ListDbServers = [9, n0, _LDS, 0, () => ListDbServersInput, () => ListDbServersOutput];
2390
- var ListDbSystemShapes = [
2398
+ var ListDbSystemShapes$ = [
2391
2399
  9,
2392
2400
  n0,
2393
2401
  _LDSS,
2394
2402
  0,
2395
- () => ListDbSystemShapesInput,
2396
- () => ListDbSystemShapesOutput,
2403
+ () => ListDbSystemShapesInput$,
2404
+ () => ListDbSystemShapesOutput$,
2397
2405
  ];
2398
- var ListGiVersions = [
2406
+ var ListGiVersions$ = [
2399
2407
  9,
2400
2408
  n0,
2401
2409
  _LGV,
2402
2410
  0,
2403
- () => ListGiVersionsInput,
2404
- () => ListGiVersionsOutput,
2411
+ () => ListGiVersionsInput$,
2412
+ () => ListGiVersionsOutput$,
2405
2413
  ];
2406
- var ListOdbNetworks = [
2414
+ var ListOdbNetworks$ = [
2407
2415
  9,
2408
2416
  n0,
2409
2417
  _LON,
2410
2418
  0,
2411
- () => ListOdbNetworksInput,
2412
- () => ListOdbNetworksOutput,
2419
+ () => ListOdbNetworksInput$,
2420
+ () => ListOdbNetworksOutput$,
2413
2421
  ];
2414
- var ListOdbPeeringConnections = [
2422
+ var ListOdbPeeringConnections$ = [
2415
2423
  9,
2416
2424
  n0,
2417
2425
  _LOPC,
2418
2426
  0,
2419
- () => ListOdbPeeringConnectionsInput,
2420
- () => ListOdbPeeringConnectionsOutput,
2427
+ () => ListOdbPeeringConnectionsInput$,
2428
+ () => ListOdbPeeringConnectionsOutput$,
2421
2429
  ];
2422
- var ListSystemVersions = [
2430
+ var ListSystemVersions$ = [
2423
2431
  9,
2424
2432
  n0,
2425
2433
  _LSV,
2426
2434
  0,
2427
- () => ListSystemVersionsInput,
2428
- () => ListSystemVersionsOutput,
2435
+ () => ListSystemVersionsInput$,
2436
+ () => ListSystemVersionsOutput$,
2429
2437
  ];
2430
- var ListTagsForResource = [
2438
+ var ListTagsForResource$ = [
2431
2439
  9,
2432
2440
  n0,
2433
2441
  _LTFR,
2434
2442
  0,
2435
- () => ListTagsForResourceRequest,
2436
- () => ListTagsForResourceResponse,
2443
+ () => ListTagsForResourceRequest$,
2444
+ () => ListTagsForResourceResponse$,
2437
2445
  ];
2438
- var RebootDbNode = [9, n0, _RDN, 0, () => RebootDbNodeInput, () => RebootDbNodeOutput];
2439
- var StartDbNode = [9, n0, _SDN, 0, () => StartDbNodeInput, () => StartDbNodeOutput];
2440
- var StopDbNode = [9, n0, _SDNt, 0, () => StopDbNodeInput, () => StopDbNodeOutput];
2441
- var TagResource = [9, n0, _TR, 2, () => TagResourceRequest, () => TagResourceResponse];
2442
- var UntagResource = [
2446
+ var RebootDbNode$ = [9, n0, _RDN, 0, () => RebootDbNodeInput$, () => RebootDbNodeOutput$];
2447
+ var StartDbNode$ = [9, n0, _SDN, 0, () => StartDbNodeInput$, () => StartDbNodeOutput$];
2448
+ var StopDbNode$ = [9, n0, _SDNt, 0, () => StopDbNodeInput$, () => StopDbNodeOutput$];
2449
+ var TagResource$ = [9, n0, _TR, 2, () => TagResourceRequest$, () => TagResourceResponse$];
2450
+ var UntagResource$ = [
2443
2451
  9,
2444
2452
  n0,
2445
2453
  _UR,
2446
2454
  2,
2447
- () => UntagResourceRequest,
2448
- () => UntagResourceResponse,
2455
+ () => UntagResourceRequest$,
2456
+ () => UntagResourceResponse$,
2449
2457
  ];
2450
- var UpdateCloudExadataInfrastructure = [
2458
+ var UpdateCloudExadataInfrastructure$ = [
2451
2459
  9,
2452
2460
  n0,
2453
2461
  _UCEI,
2454
2462
  0,
2455
- () => UpdateCloudExadataInfrastructureInput,
2456
- () => UpdateCloudExadataInfrastructureOutput,
2463
+ () => UpdateCloudExadataInfrastructureInput$,
2464
+ () => UpdateCloudExadataInfrastructureOutput$,
2457
2465
  ];
2458
- var UpdateOdbNetwork = [
2466
+ var UpdateOdbNetwork$ = [
2459
2467
  9,
2460
2468
  n0,
2461
2469
  _UON,
2462
2470
  0,
2463
- () => UpdateOdbNetworkInput,
2464
- () => UpdateOdbNetworkOutput,
2471
+ () => UpdateOdbNetworkInput$,
2472
+ () => UpdateOdbNetworkOutput$,
2465
2473
  ];
2466
- var UpdateOdbPeeringConnection = [
2474
+ var UpdateOdbPeeringConnection$ = [
2467
2475
  9,
2468
2476
  n0,
2469
2477
  _UOPC,
2470
2478
  0,
2471
- () => UpdateOdbPeeringConnectionInput,
2472
- () => UpdateOdbPeeringConnectionOutput,
2479
+ () => UpdateOdbPeeringConnectionInput$,
2480
+ () => UpdateOdbPeeringConnectionOutput$,
2473
2481
  ];
2474
2482
 
2475
2483
  class AcceptMarketplaceRegistrationCommand extends smithyClient.Command
@@ -2480,7 +2488,7 @@ class AcceptMarketplaceRegistrationCommand extends smithyClient.Command
2480
2488
  })
2481
2489
  .s("Odb", "AcceptMarketplaceRegistration", {})
2482
2490
  .n("OdbClient", "AcceptMarketplaceRegistrationCommand")
2483
- .sc(AcceptMarketplaceRegistration)
2491
+ .sc(AcceptMarketplaceRegistration$)
2484
2492
  .build() {
2485
2493
  }
2486
2494
 
@@ -2492,7 +2500,7 @@ class AssociateIamRoleToResourceCommand extends smithyClient.Command
2492
2500
  })
2493
2501
  .s("Odb", "AssociateIamRoleToResource", {})
2494
2502
  .n("OdbClient", "AssociateIamRoleToResourceCommand")
2495
- .sc(AssociateIamRoleToResource)
2503
+ .sc(AssociateIamRoleToResource$)
2496
2504
  .build() {
2497
2505
  }
2498
2506
 
@@ -2504,7 +2512,7 @@ class CreateCloudAutonomousVmClusterCommand extends smithyClient.Command
2504
2512
  })
2505
2513
  .s("Odb", "CreateCloudAutonomousVmCluster", {})
2506
2514
  .n("OdbClient", "CreateCloudAutonomousVmClusterCommand")
2507
- .sc(CreateCloudAutonomousVmCluster)
2515
+ .sc(CreateCloudAutonomousVmCluster$)
2508
2516
  .build() {
2509
2517
  }
2510
2518
 
@@ -2516,7 +2524,7 @@ class CreateCloudExadataInfrastructureCommand extends smithyClient.Command
2516
2524
  })
2517
2525
  .s("Odb", "CreateCloudExadataInfrastructure", {})
2518
2526
  .n("OdbClient", "CreateCloudExadataInfrastructureCommand")
2519
- .sc(CreateCloudExadataInfrastructure)
2527
+ .sc(CreateCloudExadataInfrastructure$)
2520
2528
  .build() {
2521
2529
  }
2522
2530
 
@@ -2528,7 +2536,7 @@ class CreateCloudVmClusterCommand extends smithyClient.Command
2528
2536
  })
2529
2537
  .s("Odb", "CreateCloudVmCluster", {})
2530
2538
  .n("OdbClient", "CreateCloudVmClusterCommand")
2531
- .sc(CreateCloudVmCluster)
2539
+ .sc(CreateCloudVmCluster$)
2532
2540
  .build() {
2533
2541
  }
2534
2542
 
@@ -2540,7 +2548,7 @@ class CreateOdbNetworkCommand extends smithyClient.Command
2540
2548
  })
2541
2549
  .s("Odb", "CreateOdbNetwork", {})
2542
2550
  .n("OdbClient", "CreateOdbNetworkCommand")
2543
- .sc(CreateOdbNetwork)
2551
+ .sc(CreateOdbNetwork$)
2544
2552
  .build() {
2545
2553
  }
2546
2554
 
@@ -2552,7 +2560,7 @@ class CreateOdbPeeringConnectionCommand extends smithyClient.Command
2552
2560
  })
2553
2561
  .s("Odb", "CreateOdbPeeringConnection", {})
2554
2562
  .n("OdbClient", "CreateOdbPeeringConnectionCommand")
2555
- .sc(CreateOdbPeeringConnection)
2563
+ .sc(CreateOdbPeeringConnection$)
2556
2564
  .build() {
2557
2565
  }
2558
2566
 
@@ -2564,7 +2572,7 @@ class DeleteCloudAutonomousVmClusterCommand extends smithyClient.Command
2564
2572
  })
2565
2573
  .s("Odb", "DeleteCloudAutonomousVmCluster", {})
2566
2574
  .n("OdbClient", "DeleteCloudAutonomousVmClusterCommand")
2567
- .sc(DeleteCloudAutonomousVmCluster)
2575
+ .sc(DeleteCloudAutonomousVmCluster$)
2568
2576
  .build() {
2569
2577
  }
2570
2578
 
@@ -2576,7 +2584,7 @@ class DeleteCloudExadataInfrastructureCommand extends smithyClient.Command
2576
2584
  })
2577
2585
  .s("Odb", "DeleteCloudExadataInfrastructure", {})
2578
2586
  .n("OdbClient", "DeleteCloudExadataInfrastructureCommand")
2579
- .sc(DeleteCloudExadataInfrastructure)
2587
+ .sc(DeleteCloudExadataInfrastructure$)
2580
2588
  .build() {
2581
2589
  }
2582
2590
 
@@ -2588,7 +2596,7 @@ class DeleteCloudVmClusterCommand extends smithyClient.Command
2588
2596
  })
2589
2597
  .s("Odb", "DeleteCloudVmCluster", {})
2590
2598
  .n("OdbClient", "DeleteCloudVmClusterCommand")
2591
- .sc(DeleteCloudVmCluster)
2599
+ .sc(DeleteCloudVmCluster$)
2592
2600
  .build() {
2593
2601
  }
2594
2602
 
@@ -2600,7 +2608,7 @@ class DeleteOdbNetworkCommand extends smithyClient.Command
2600
2608
  })
2601
2609
  .s("Odb", "DeleteOdbNetwork", {})
2602
2610
  .n("OdbClient", "DeleteOdbNetworkCommand")
2603
- .sc(DeleteOdbNetwork)
2611
+ .sc(DeleteOdbNetwork$)
2604
2612
  .build() {
2605
2613
  }
2606
2614
 
@@ -2612,7 +2620,7 @@ class DeleteOdbPeeringConnectionCommand extends smithyClient.Command
2612
2620
  })
2613
2621
  .s("Odb", "DeleteOdbPeeringConnection", {})
2614
2622
  .n("OdbClient", "DeleteOdbPeeringConnectionCommand")
2615
- .sc(DeleteOdbPeeringConnection)
2623
+ .sc(DeleteOdbPeeringConnection$)
2616
2624
  .build() {
2617
2625
  }
2618
2626
 
@@ -2624,7 +2632,7 @@ class DisassociateIamRoleFromResourceCommand extends smithyClient.Command
2624
2632
  })
2625
2633
  .s("Odb", "DisassociateIamRoleFromResource", {})
2626
2634
  .n("OdbClient", "DisassociateIamRoleFromResourceCommand")
2627
- .sc(DisassociateIamRoleFromResource)
2635
+ .sc(DisassociateIamRoleFromResource$)
2628
2636
  .build() {
2629
2637
  }
2630
2638
 
@@ -2636,7 +2644,7 @@ class GetCloudAutonomousVmClusterCommand extends smithyClient.Command
2636
2644
  })
2637
2645
  .s("Odb", "GetCloudAutonomousVmCluster", {})
2638
2646
  .n("OdbClient", "GetCloudAutonomousVmClusterCommand")
2639
- .sc(GetCloudAutonomousVmCluster)
2647
+ .sc(GetCloudAutonomousVmCluster$)
2640
2648
  .build() {
2641
2649
  }
2642
2650
 
@@ -2648,7 +2656,7 @@ class GetCloudExadataInfrastructureCommand extends smithyClient.Command
2648
2656
  })
2649
2657
  .s("Odb", "GetCloudExadataInfrastructure", {})
2650
2658
  .n("OdbClient", "GetCloudExadataInfrastructureCommand")
2651
- .sc(GetCloudExadataInfrastructure)
2659
+ .sc(GetCloudExadataInfrastructure$)
2652
2660
  .build() {
2653
2661
  }
2654
2662
 
@@ -2660,7 +2668,7 @@ class GetCloudExadataInfrastructureUnallocatedResourcesCommand extends smithyCli
2660
2668
  })
2661
2669
  .s("Odb", "GetCloudExadataInfrastructureUnallocatedResources", {})
2662
2670
  .n("OdbClient", "GetCloudExadataInfrastructureUnallocatedResourcesCommand")
2663
- .sc(GetCloudExadataInfrastructureUnallocatedResources)
2671
+ .sc(GetCloudExadataInfrastructureUnallocatedResources$)
2664
2672
  .build() {
2665
2673
  }
2666
2674
 
@@ -2672,7 +2680,7 @@ class GetCloudVmClusterCommand extends smithyClient.Command
2672
2680
  })
2673
2681
  .s("Odb", "GetCloudVmCluster", {})
2674
2682
  .n("OdbClient", "GetCloudVmClusterCommand")
2675
- .sc(GetCloudVmCluster)
2683
+ .sc(GetCloudVmCluster$)
2676
2684
  .build() {
2677
2685
  }
2678
2686
 
@@ -2684,7 +2692,7 @@ class GetDbNodeCommand extends smithyClient.Command
2684
2692
  })
2685
2693
  .s("Odb", "GetDbNode", {})
2686
2694
  .n("OdbClient", "GetDbNodeCommand")
2687
- .sc(GetDbNode)
2695
+ .sc(GetDbNode$)
2688
2696
  .build() {
2689
2697
  }
2690
2698
 
@@ -2696,7 +2704,7 @@ class GetDbServerCommand extends smithyClient.Command
2696
2704
  })
2697
2705
  .s("Odb", "GetDbServer", {})
2698
2706
  .n("OdbClient", "GetDbServerCommand")
2699
- .sc(GetDbServer)
2707
+ .sc(GetDbServer$)
2700
2708
  .build() {
2701
2709
  }
2702
2710
 
@@ -2708,7 +2716,7 @@ class GetOciOnboardingStatusCommand extends smithyClient.Command
2708
2716
  })
2709
2717
  .s("Odb", "GetOciOnboardingStatus", {})
2710
2718
  .n("OdbClient", "GetOciOnboardingStatusCommand")
2711
- .sc(GetOciOnboardingStatus)
2719
+ .sc(GetOciOnboardingStatus$)
2712
2720
  .build() {
2713
2721
  }
2714
2722
 
@@ -2720,7 +2728,7 @@ class GetOdbNetworkCommand extends smithyClient.Command
2720
2728
  })
2721
2729
  .s("Odb", "GetOdbNetwork", {})
2722
2730
  .n("OdbClient", "GetOdbNetworkCommand")
2723
- .sc(GetOdbNetwork)
2731
+ .sc(GetOdbNetwork$)
2724
2732
  .build() {
2725
2733
  }
2726
2734
 
@@ -2732,7 +2740,7 @@ class GetOdbPeeringConnectionCommand extends smithyClient.Command
2732
2740
  })
2733
2741
  .s("Odb", "GetOdbPeeringConnection", {})
2734
2742
  .n("OdbClient", "GetOdbPeeringConnectionCommand")
2735
- .sc(GetOdbPeeringConnection)
2743
+ .sc(GetOdbPeeringConnection$)
2736
2744
  .build() {
2737
2745
  }
2738
2746
 
@@ -2744,7 +2752,7 @@ class InitializeServiceCommand extends smithyClient.Command
2744
2752
  })
2745
2753
  .s("Odb", "InitializeService", {})
2746
2754
  .n("OdbClient", "InitializeServiceCommand")
2747
- .sc(InitializeService)
2755
+ .sc(InitializeService$)
2748
2756
  .build() {
2749
2757
  }
2750
2758
 
@@ -2756,7 +2764,7 @@ class ListAutonomousVirtualMachinesCommand extends smithyClient.Command
2756
2764
  })
2757
2765
  .s("Odb", "ListAutonomousVirtualMachines", {})
2758
2766
  .n("OdbClient", "ListAutonomousVirtualMachinesCommand")
2759
- .sc(ListAutonomousVirtualMachines)
2767
+ .sc(ListAutonomousVirtualMachines$)
2760
2768
  .build() {
2761
2769
  }
2762
2770
 
@@ -2768,7 +2776,7 @@ class ListCloudAutonomousVmClustersCommand extends smithyClient.Command
2768
2776
  })
2769
2777
  .s("Odb", "ListCloudAutonomousVmClusters", {})
2770
2778
  .n("OdbClient", "ListCloudAutonomousVmClustersCommand")
2771
- .sc(ListCloudAutonomousVmClusters)
2779
+ .sc(ListCloudAutonomousVmClusters$)
2772
2780
  .build() {
2773
2781
  }
2774
2782
 
@@ -2780,7 +2788,7 @@ class ListCloudExadataInfrastructuresCommand extends smithyClient.Command
2780
2788
  })
2781
2789
  .s("Odb", "ListCloudExadataInfrastructures", {})
2782
2790
  .n("OdbClient", "ListCloudExadataInfrastructuresCommand")
2783
- .sc(ListCloudExadataInfrastructures)
2791
+ .sc(ListCloudExadataInfrastructures$)
2784
2792
  .build() {
2785
2793
  }
2786
2794
 
@@ -2792,7 +2800,7 @@ class ListCloudVmClustersCommand extends smithyClient.Command
2792
2800
  })
2793
2801
  .s("Odb", "ListCloudVmClusters", {})
2794
2802
  .n("OdbClient", "ListCloudVmClustersCommand")
2795
- .sc(ListCloudVmClusters)
2803
+ .sc(ListCloudVmClusters$)
2796
2804
  .build() {
2797
2805
  }
2798
2806
 
@@ -2804,7 +2812,7 @@ class ListDbNodesCommand extends smithyClient.Command
2804
2812
  })
2805
2813
  .s("Odb", "ListDbNodes", {})
2806
2814
  .n("OdbClient", "ListDbNodesCommand")
2807
- .sc(ListDbNodes)
2815
+ .sc(ListDbNodes$)
2808
2816
  .build() {
2809
2817
  }
2810
2818
 
@@ -2816,7 +2824,7 @@ class ListDbServersCommand extends smithyClient.Command
2816
2824
  })
2817
2825
  .s("Odb", "ListDbServers", {})
2818
2826
  .n("OdbClient", "ListDbServersCommand")
2819
- .sc(ListDbServers)
2827
+ .sc(ListDbServers$)
2820
2828
  .build() {
2821
2829
  }
2822
2830
 
@@ -2828,7 +2836,7 @@ class ListDbSystemShapesCommand extends smithyClient.Command
2828
2836
  })
2829
2837
  .s("Odb", "ListDbSystemShapes", {})
2830
2838
  .n("OdbClient", "ListDbSystemShapesCommand")
2831
- .sc(ListDbSystemShapes)
2839
+ .sc(ListDbSystemShapes$)
2832
2840
  .build() {
2833
2841
  }
2834
2842
 
@@ -2840,7 +2848,7 @@ class ListGiVersionsCommand extends smithyClient.Command
2840
2848
  })
2841
2849
  .s("Odb", "ListGiVersions", {})
2842
2850
  .n("OdbClient", "ListGiVersionsCommand")
2843
- .sc(ListGiVersions)
2851
+ .sc(ListGiVersions$)
2844
2852
  .build() {
2845
2853
  }
2846
2854
 
@@ -2852,7 +2860,7 @@ class ListOdbNetworksCommand extends smithyClient.Command
2852
2860
  })
2853
2861
  .s("Odb", "ListOdbNetworks", {})
2854
2862
  .n("OdbClient", "ListOdbNetworksCommand")
2855
- .sc(ListOdbNetworks)
2863
+ .sc(ListOdbNetworks$)
2856
2864
  .build() {
2857
2865
  }
2858
2866
 
@@ -2864,7 +2872,7 @@ class ListOdbPeeringConnectionsCommand extends smithyClient.Command
2864
2872
  })
2865
2873
  .s("Odb", "ListOdbPeeringConnections", {})
2866
2874
  .n("OdbClient", "ListOdbPeeringConnectionsCommand")
2867
- .sc(ListOdbPeeringConnections)
2875
+ .sc(ListOdbPeeringConnections$)
2868
2876
  .build() {
2869
2877
  }
2870
2878
 
@@ -2876,7 +2884,7 @@ class ListSystemVersionsCommand extends smithyClient.Command
2876
2884
  })
2877
2885
  .s("Odb", "ListSystemVersions", {})
2878
2886
  .n("OdbClient", "ListSystemVersionsCommand")
2879
- .sc(ListSystemVersions)
2887
+ .sc(ListSystemVersions$)
2880
2888
  .build() {
2881
2889
  }
2882
2890
 
@@ -2888,7 +2896,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
2888
2896
  })
2889
2897
  .s("Odb", "ListTagsForResource", {})
2890
2898
  .n("OdbClient", "ListTagsForResourceCommand")
2891
- .sc(ListTagsForResource)
2899
+ .sc(ListTagsForResource$)
2892
2900
  .build() {
2893
2901
  }
2894
2902
 
@@ -2900,7 +2908,7 @@ class RebootDbNodeCommand extends smithyClient.Command
2900
2908
  })
2901
2909
  .s("Odb", "RebootDbNode", {})
2902
2910
  .n("OdbClient", "RebootDbNodeCommand")
2903
- .sc(RebootDbNode)
2911
+ .sc(RebootDbNode$)
2904
2912
  .build() {
2905
2913
  }
2906
2914
 
@@ -2912,7 +2920,7 @@ class StartDbNodeCommand extends smithyClient.Command
2912
2920
  })
2913
2921
  .s("Odb", "StartDbNode", {})
2914
2922
  .n("OdbClient", "StartDbNodeCommand")
2915
- .sc(StartDbNode)
2923
+ .sc(StartDbNode$)
2916
2924
  .build() {
2917
2925
  }
2918
2926
 
@@ -2924,7 +2932,7 @@ class StopDbNodeCommand extends smithyClient.Command
2924
2932
  })
2925
2933
  .s("Odb", "StopDbNode", {})
2926
2934
  .n("OdbClient", "StopDbNodeCommand")
2927
- .sc(StopDbNode)
2935
+ .sc(StopDbNode$)
2928
2936
  .build() {
2929
2937
  }
2930
2938
 
@@ -2936,7 +2944,7 @@ class TagResourceCommand extends smithyClient.Command
2936
2944
  })
2937
2945
  .s("Odb", "TagResource", {})
2938
2946
  .n("OdbClient", "TagResourceCommand")
2939
- .sc(TagResource)
2947
+ .sc(TagResource$)
2940
2948
  .build() {
2941
2949
  }
2942
2950
 
@@ -2948,7 +2956,7 @@ class UntagResourceCommand extends smithyClient.Command
2948
2956
  })
2949
2957
  .s("Odb", "UntagResource", {})
2950
2958
  .n("OdbClient", "UntagResourceCommand")
2951
- .sc(UntagResource)
2959
+ .sc(UntagResource$)
2952
2960
  .build() {
2953
2961
  }
2954
2962
 
@@ -2960,7 +2968,7 @@ class UpdateCloudExadataInfrastructureCommand extends smithyClient.Command
2960
2968
  })
2961
2969
  .s("Odb", "UpdateCloudExadataInfrastructure", {})
2962
2970
  .n("OdbClient", "UpdateCloudExadataInfrastructureCommand")
2963
- .sc(UpdateCloudExadataInfrastructure)
2971
+ .sc(UpdateCloudExadataInfrastructure$)
2964
2972
  .build() {
2965
2973
  }
2966
2974
 
@@ -2972,7 +2980,7 @@ class UpdateOdbNetworkCommand extends smithyClient.Command
2972
2980
  })
2973
2981
  .s("Odb", "UpdateOdbNetwork", {})
2974
2982
  .n("OdbClient", "UpdateOdbNetworkCommand")
2975
- .sc(UpdateOdbNetwork)
2983
+ .sc(UpdateOdbNetwork$)
2976
2984
  .build() {
2977
2985
  }
2978
2986
 
@@ -2984,7 +2992,7 @@ class UpdateOdbPeeringConnectionCommand extends smithyClient.Command
2984
2992
  })
2985
2993
  .s("Odb", "UpdateOdbPeeringConnection", {})
2986
2994
  .n("OdbClient", "UpdateOdbPeeringConnectionCommand")
2987
- .sc(UpdateOdbPeeringConnection)
2995
+ .sc(UpdateOdbPeeringConnection$)
2988
2996
  .build() {
2989
2997
  }
2990
2998
 
@@ -3205,80 +3213,257 @@ Object.defineProperty(exports, "__Client", {
3205
3213
  enumerable: true,
3206
3214
  get: function () { return smithyClient.Client; }
3207
3215
  });
3216
+ exports.AcceptMarketplaceRegistration$ = AcceptMarketplaceRegistration$;
3208
3217
  exports.AcceptMarketplaceRegistrationCommand = AcceptMarketplaceRegistrationCommand;
3218
+ exports.AcceptMarketplaceRegistrationInput$ = AcceptMarketplaceRegistrationInput$;
3219
+ exports.AcceptMarketplaceRegistrationOutput$ = AcceptMarketplaceRegistrationOutput$;
3209
3220
  exports.Access = Access;
3210
- exports.AccessDeniedException = AccessDeniedException$1;
3221
+ exports.AccessDeniedException = AccessDeniedException;
3222
+ exports.AccessDeniedException$ = AccessDeniedException$;
3223
+ exports.AssociateIamRoleToResource$ = AssociateIamRoleToResource$;
3211
3224
  exports.AssociateIamRoleToResourceCommand = AssociateIamRoleToResourceCommand;
3225
+ exports.AssociateIamRoleToResourceInput$ = AssociateIamRoleToResourceInput$;
3226
+ exports.AssociateIamRoleToResourceOutput$ = AssociateIamRoleToResourceOutput$;
3227
+ exports.AutonomousVirtualMachineSummary$ = AutonomousVirtualMachineSummary$;
3228
+ exports.CloudAutonomousVmCluster$ = CloudAutonomousVmCluster$;
3229
+ exports.CloudAutonomousVmClusterResourceDetails$ = CloudAutonomousVmClusterResourceDetails$;
3230
+ exports.CloudAutonomousVmClusterSummary$ = CloudAutonomousVmClusterSummary$;
3231
+ exports.CloudExadataInfrastructure$ = CloudExadataInfrastructure$;
3232
+ exports.CloudExadataInfrastructureSummary$ = CloudExadataInfrastructureSummary$;
3233
+ exports.CloudExadataInfrastructureUnallocatedResources$ = CloudExadataInfrastructureUnallocatedResources$;
3234
+ exports.CloudVmCluster$ = CloudVmCluster$;
3235
+ exports.CloudVmClusterSummary$ = CloudVmClusterSummary$;
3212
3236
  exports.ComputeModel = ComputeModel;
3213
- exports.ConflictException = ConflictException$1;
3237
+ exports.ConflictException = ConflictException;
3238
+ exports.ConflictException$ = ConflictException$;
3239
+ exports.CreateCloudAutonomousVmCluster$ = CreateCloudAutonomousVmCluster$;
3214
3240
  exports.CreateCloudAutonomousVmClusterCommand = CreateCloudAutonomousVmClusterCommand;
3241
+ exports.CreateCloudAutonomousVmClusterInput$ = CreateCloudAutonomousVmClusterInput$;
3242
+ exports.CreateCloudAutonomousVmClusterOutput$ = CreateCloudAutonomousVmClusterOutput$;
3243
+ exports.CreateCloudExadataInfrastructure$ = CreateCloudExadataInfrastructure$;
3215
3244
  exports.CreateCloudExadataInfrastructureCommand = CreateCloudExadataInfrastructureCommand;
3245
+ exports.CreateCloudExadataInfrastructureInput$ = CreateCloudExadataInfrastructureInput$;
3246
+ exports.CreateCloudExadataInfrastructureOutput$ = CreateCloudExadataInfrastructureOutput$;
3247
+ exports.CreateCloudVmCluster$ = CreateCloudVmCluster$;
3216
3248
  exports.CreateCloudVmClusterCommand = CreateCloudVmClusterCommand;
3249
+ exports.CreateCloudVmClusterInput$ = CreateCloudVmClusterInput$;
3250
+ exports.CreateCloudVmClusterOutput$ = CreateCloudVmClusterOutput$;
3251
+ exports.CreateOdbNetwork$ = CreateOdbNetwork$;
3217
3252
  exports.CreateOdbNetworkCommand = CreateOdbNetworkCommand;
3253
+ exports.CreateOdbNetworkInput$ = CreateOdbNetworkInput$;
3254
+ exports.CreateOdbNetworkOutput$ = CreateOdbNetworkOutput$;
3255
+ exports.CreateOdbPeeringConnection$ = CreateOdbPeeringConnection$;
3218
3256
  exports.CreateOdbPeeringConnectionCommand = CreateOdbPeeringConnectionCommand;
3257
+ exports.CreateOdbPeeringConnectionInput$ = CreateOdbPeeringConnectionInput$;
3258
+ exports.CreateOdbPeeringConnectionOutput$ = CreateOdbPeeringConnectionOutput$;
3259
+ exports.CrossRegionS3RestoreSourcesAccess$ = CrossRegionS3RestoreSourcesAccess$;
3260
+ exports.CustomerContact$ = CustomerContact$;
3261
+ exports.DataCollectionOptions$ = DataCollectionOptions$;
3262
+ exports.DayOfWeek$ = DayOfWeek$;
3219
3263
  exports.DayOfWeekName = DayOfWeekName;
3264
+ exports.DbIormConfig$ = DbIormConfig$;
3265
+ exports.DbNode$ = DbNode$;
3220
3266
  exports.DbNodeMaintenanceType = DbNodeMaintenanceType;
3221
3267
  exports.DbNodeResourceStatus = DbNodeResourceStatus;
3268
+ exports.DbNodeSummary$ = DbNodeSummary$;
3269
+ exports.DbServer$ = DbServer$;
3270
+ exports.DbServerPatchingDetails$ = DbServerPatchingDetails$;
3222
3271
  exports.DbServerPatchingStatus = DbServerPatchingStatus;
3272
+ exports.DbServerSummary$ = DbServerSummary$;
3273
+ exports.DbSystemShapeSummary$ = DbSystemShapeSummary$;
3274
+ exports.DeleteCloudAutonomousVmCluster$ = DeleteCloudAutonomousVmCluster$;
3223
3275
  exports.DeleteCloudAutonomousVmClusterCommand = DeleteCloudAutonomousVmClusterCommand;
3276
+ exports.DeleteCloudAutonomousVmClusterInput$ = DeleteCloudAutonomousVmClusterInput$;
3277
+ exports.DeleteCloudAutonomousVmClusterOutput$ = DeleteCloudAutonomousVmClusterOutput$;
3278
+ exports.DeleteCloudExadataInfrastructure$ = DeleteCloudExadataInfrastructure$;
3224
3279
  exports.DeleteCloudExadataInfrastructureCommand = DeleteCloudExadataInfrastructureCommand;
3280
+ exports.DeleteCloudExadataInfrastructureInput$ = DeleteCloudExadataInfrastructureInput$;
3281
+ exports.DeleteCloudExadataInfrastructureOutput$ = DeleteCloudExadataInfrastructureOutput$;
3282
+ exports.DeleteCloudVmCluster$ = DeleteCloudVmCluster$;
3225
3283
  exports.DeleteCloudVmClusterCommand = DeleteCloudVmClusterCommand;
3284
+ exports.DeleteCloudVmClusterInput$ = DeleteCloudVmClusterInput$;
3285
+ exports.DeleteCloudVmClusterOutput$ = DeleteCloudVmClusterOutput$;
3286
+ exports.DeleteOdbNetwork$ = DeleteOdbNetwork$;
3226
3287
  exports.DeleteOdbNetworkCommand = DeleteOdbNetworkCommand;
3288
+ exports.DeleteOdbNetworkInput$ = DeleteOdbNetworkInput$;
3289
+ exports.DeleteOdbNetworkOutput$ = DeleteOdbNetworkOutput$;
3290
+ exports.DeleteOdbPeeringConnection$ = DeleteOdbPeeringConnection$;
3227
3291
  exports.DeleteOdbPeeringConnectionCommand = DeleteOdbPeeringConnectionCommand;
3292
+ exports.DeleteOdbPeeringConnectionInput$ = DeleteOdbPeeringConnectionInput$;
3293
+ exports.DeleteOdbPeeringConnectionOutput$ = DeleteOdbPeeringConnectionOutput$;
3294
+ exports.DisassociateIamRoleFromResource$ = DisassociateIamRoleFromResource$;
3228
3295
  exports.DisassociateIamRoleFromResourceCommand = DisassociateIamRoleFromResourceCommand;
3296
+ exports.DisassociateIamRoleFromResourceInput$ = DisassociateIamRoleFromResourceInput$;
3297
+ exports.DisassociateIamRoleFromResourceOutput$ = DisassociateIamRoleFromResourceOutput$;
3229
3298
  exports.DiskRedundancy = DiskRedundancy;
3299
+ exports.ExadataIormConfig$ = ExadataIormConfig$;
3300
+ exports.GetCloudAutonomousVmCluster$ = GetCloudAutonomousVmCluster$;
3230
3301
  exports.GetCloudAutonomousVmClusterCommand = GetCloudAutonomousVmClusterCommand;
3302
+ exports.GetCloudAutonomousVmClusterInput$ = GetCloudAutonomousVmClusterInput$;
3303
+ exports.GetCloudAutonomousVmClusterOutput$ = GetCloudAutonomousVmClusterOutput$;
3304
+ exports.GetCloudExadataInfrastructure$ = GetCloudExadataInfrastructure$;
3231
3305
  exports.GetCloudExadataInfrastructureCommand = GetCloudExadataInfrastructureCommand;
3306
+ exports.GetCloudExadataInfrastructureInput$ = GetCloudExadataInfrastructureInput$;
3307
+ exports.GetCloudExadataInfrastructureOutput$ = GetCloudExadataInfrastructureOutput$;
3308
+ exports.GetCloudExadataInfrastructureUnallocatedResources$ = GetCloudExadataInfrastructureUnallocatedResources$;
3232
3309
  exports.GetCloudExadataInfrastructureUnallocatedResourcesCommand = GetCloudExadataInfrastructureUnallocatedResourcesCommand;
3310
+ exports.GetCloudExadataInfrastructureUnallocatedResourcesInput$ = GetCloudExadataInfrastructureUnallocatedResourcesInput$;
3311
+ exports.GetCloudExadataInfrastructureUnallocatedResourcesOutput$ = GetCloudExadataInfrastructureUnallocatedResourcesOutput$;
3312
+ exports.GetCloudVmCluster$ = GetCloudVmCluster$;
3233
3313
  exports.GetCloudVmClusterCommand = GetCloudVmClusterCommand;
3314
+ exports.GetCloudVmClusterInput$ = GetCloudVmClusterInput$;
3315
+ exports.GetCloudVmClusterOutput$ = GetCloudVmClusterOutput$;
3316
+ exports.GetDbNode$ = GetDbNode$;
3234
3317
  exports.GetDbNodeCommand = GetDbNodeCommand;
3318
+ exports.GetDbNodeInput$ = GetDbNodeInput$;
3319
+ exports.GetDbNodeOutput$ = GetDbNodeOutput$;
3320
+ exports.GetDbServer$ = GetDbServer$;
3235
3321
  exports.GetDbServerCommand = GetDbServerCommand;
3322
+ exports.GetDbServerInput$ = GetDbServerInput$;
3323
+ exports.GetDbServerOutput$ = GetDbServerOutput$;
3324
+ exports.GetOciOnboardingStatus$ = GetOciOnboardingStatus$;
3236
3325
  exports.GetOciOnboardingStatusCommand = GetOciOnboardingStatusCommand;
3326
+ exports.GetOciOnboardingStatusInput$ = GetOciOnboardingStatusInput$;
3327
+ exports.GetOciOnboardingStatusOutput$ = GetOciOnboardingStatusOutput$;
3328
+ exports.GetOdbNetwork$ = GetOdbNetwork$;
3237
3329
  exports.GetOdbNetworkCommand = GetOdbNetworkCommand;
3330
+ exports.GetOdbNetworkInput$ = GetOdbNetworkInput$;
3331
+ exports.GetOdbNetworkOutput$ = GetOdbNetworkOutput$;
3332
+ exports.GetOdbPeeringConnection$ = GetOdbPeeringConnection$;
3238
3333
  exports.GetOdbPeeringConnectionCommand = GetOdbPeeringConnectionCommand;
3334
+ exports.GetOdbPeeringConnectionInput$ = GetOdbPeeringConnectionInput$;
3335
+ exports.GetOdbPeeringConnectionOutput$ = GetOdbPeeringConnectionOutput$;
3336
+ exports.GiVersionSummary$ = GiVersionSummary$;
3337
+ exports.IamRole$ = IamRole$;
3239
3338
  exports.IamRoleStatus = IamRoleStatus;
3339
+ exports.InitializeService$ = InitializeService$;
3240
3340
  exports.InitializeServiceCommand = InitializeServiceCommand;
3241
- exports.InternalServerException = InternalServerException$1;
3341
+ exports.InitializeServiceInput$ = InitializeServiceInput$;
3342
+ exports.InitializeServiceOutput$ = InitializeServiceOutput$;
3343
+ exports.InternalServerException = InternalServerException;
3344
+ exports.InternalServerException$ = InternalServerException$;
3242
3345
  exports.IormLifecycleState = IormLifecycleState;
3346
+ exports.KmsAccess$ = KmsAccess$;
3243
3347
  exports.LicenseModel = LicenseModel;
3348
+ exports.ListAutonomousVirtualMachines$ = ListAutonomousVirtualMachines$;
3244
3349
  exports.ListAutonomousVirtualMachinesCommand = ListAutonomousVirtualMachinesCommand;
3350
+ exports.ListAutonomousVirtualMachinesInput$ = ListAutonomousVirtualMachinesInput$;
3351
+ exports.ListAutonomousVirtualMachinesOutput$ = ListAutonomousVirtualMachinesOutput$;
3352
+ exports.ListCloudAutonomousVmClusters$ = ListCloudAutonomousVmClusters$;
3245
3353
  exports.ListCloudAutonomousVmClustersCommand = ListCloudAutonomousVmClustersCommand;
3354
+ exports.ListCloudAutonomousVmClustersInput$ = ListCloudAutonomousVmClustersInput$;
3355
+ exports.ListCloudAutonomousVmClustersOutput$ = ListCloudAutonomousVmClustersOutput$;
3356
+ exports.ListCloudExadataInfrastructures$ = ListCloudExadataInfrastructures$;
3246
3357
  exports.ListCloudExadataInfrastructuresCommand = ListCloudExadataInfrastructuresCommand;
3358
+ exports.ListCloudExadataInfrastructuresInput$ = ListCloudExadataInfrastructuresInput$;
3359
+ exports.ListCloudExadataInfrastructuresOutput$ = ListCloudExadataInfrastructuresOutput$;
3360
+ exports.ListCloudVmClusters$ = ListCloudVmClusters$;
3247
3361
  exports.ListCloudVmClustersCommand = ListCloudVmClustersCommand;
3362
+ exports.ListCloudVmClustersInput$ = ListCloudVmClustersInput$;
3363
+ exports.ListCloudVmClustersOutput$ = ListCloudVmClustersOutput$;
3364
+ exports.ListDbNodes$ = ListDbNodes$;
3248
3365
  exports.ListDbNodesCommand = ListDbNodesCommand;
3366
+ exports.ListDbNodesInput$ = ListDbNodesInput$;
3367
+ exports.ListDbNodesOutput$ = ListDbNodesOutput$;
3368
+ exports.ListDbServers$ = ListDbServers$;
3249
3369
  exports.ListDbServersCommand = ListDbServersCommand;
3370
+ exports.ListDbServersInput$ = ListDbServersInput$;
3371
+ exports.ListDbServersOutput$ = ListDbServersOutput$;
3372
+ exports.ListDbSystemShapes$ = ListDbSystemShapes$;
3250
3373
  exports.ListDbSystemShapesCommand = ListDbSystemShapesCommand;
3374
+ exports.ListDbSystemShapesInput$ = ListDbSystemShapesInput$;
3375
+ exports.ListDbSystemShapesOutput$ = ListDbSystemShapesOutput$;
3376
+ exports.ListGiVersions$ = ListGiVersions$;
3251
3377
  exports.ListGiVersionsCommand = ListGiVersionsCommand;
3378
+ exports.ListGiVersionsInput$ = ListGiVersionsInput$;
3379
+ exports.ListGiVersionsOutput$ = ListGiVersionsOutput$;
3380
+ exports.ListOdbNetworks$ = ListOdbNetworks$;
3252
3381
  exports.ListOdbNetworksCommand = ListOdbNetworksCommand;
3382
+ exports.ListOdbNetworksInput$ = ListOdbNetworksInput$;
3383
+ exports.ListOdbNetworksOutput$ = ListOdbNetworksOutput$;
3384
+ exports.ListOdbPeeringConnections$ = ListOdbPeeringConnections$;
3253
3385
  exports.ListOdbPeeringConnectionsCommand = ListOdbPeeringConnectionsCommand;
3386
+ exports.ListOdbPeeringConnectionsInput$ = ListOdbPeeringConnectionsInput$;
3387
+ exports.ListOdbPeeringConnectionsOutput$ = ListOdbPeeringConnectionsOutput$;
3388
+ exports.ListSystemVersions$ = ListSystemVersions$;
3254
3389
  exports.ListSystemVersionsCommand = ListSystemVersionsCommand;
3390
+ exports.ListSystemVersionsInput$ = ListSystemVersionsInput$;
3391
+ exports.ListSystemVersionsOutput$ = ListSystemVersionsOutput$;
3392
+ exports.ListTagsForResource$ = ListTagsForResource$;
3255
3393
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
3394
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
3395
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
3396
+ exports.MaintenanceWindow$ = MaintenanceWindow$;
3256
3397
  exports.ManagedResourceStatus = ManagedResourceStatus;
3398
+ exports.ManagedS3BackupAccess$ = ManagedS3BackupAccess$;
3399
+ exports.ManagedServices$ = ManagedServices$;
3400
+ exports.Month$ = Month$;
3257
3401
  exports.MonthName = MonthName;
3258
3402
  exports.Objective = Objective;
3403
+ exports.OciDnsForwardingConfig$ = OciDnsForwardingConfig$;
3404
+ exports.OciIdentityDomain$ = OciIdentityDomain$;
3259
3405
  exports.OciOnboardingStatus = OciOnboardingStatus;
3260
3406
  exports.Odb = Odb;
3261
3407
  exports.OdbClient = OdbClient;
3262
- exports.OdbServiceException = OdbServiceException$1;
3408
+ exports.OdbNetwork$ = OdbNetwork$;
3409
+ exports.OdbNetworkSummary$ = OdbNetworkSummary$;
3410
+ exports.OdbPeeringConnection$ = OdbPeeringConnection$;
3411
+ exports.OdbPeeringConnectionSummary$ = OdbPeeringConnectionSummary$;
3412
+ exports.OdbServiceException = OdbServiceException;
3413
+ exports.OdbServiceException$ = OdbServiceException$;
3263
3414
  exports.PatchingModeType = PatchingModeType;
3264
3415
  exports.PreferenceType = PreferenceType;
3416
+ exports.RebootDbNode$ = RebootDbNode$;
3265
3417
  exports.RebootDbNodeCommand = RebootDbNodeCommand;
3266
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
3418
+ exports.RebootDbNodeInput$ = RebootDbNodeInput$;
3419
+ exports.RebootDbNodeOutput$ = RebootDbNodeOutput$;
3420
+ exports.ResourceNotFoundException = ResourceNotFoundException;
3421
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
3267
3422
  exports.ResourceStatus = ResourceStatus;
3268
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
3423
+ exports.S3Access$ = S3Access$;
3424
+ exports.ServiceNetworkEndpoint$ = ServiceNetworkEndpoint$;
3425
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
3426
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
3269
3427
  exports.ShapeType = ShapeType;
3428
+ exports.StartDbNode$ = StartDbNode$;
3270
3429
  exports.StartDbNodeCommand = StartDbNodeCommand;
3430
+ exports.StartDbNodeInput$ = StartDbNodeInput$;
3431
+ exports.StartDbNodeOutput$ = StartDbNodeOutput$;
3432
+ exports.StopDbNode$ = StopDbNode$;
3271
3433
  exports.StopDbNodeCommand = StopDbNodeCommand;
3434
+ exports.StopDbNodeInput$ = StopDbNodeInput$;
3435
+ exports.StopDbNodeOutput$ = StopDbNodeOutput$;
3436
+ exports.StsAccess$ = StsAccess$;
3272
3437
  exports.SupportedAwsIntegration = SupportedAwsIntegration;
3438
+ exports.SystemVersionSummary$ = SystemVersionSummary$;
3439
+ exports.TagResource$ = TagResource$;
3273
3440
  exports.TagResourceCommand = TagResourceCommand;
3274
- exports.ThrottlingException = ThrottlingException$1;
3441
+ exports.TagResourceRequest$ = TagResourceRequest$;
3442
+ exports.TagResourceResponse$ = TagResourceResponse$;
3443
+ exports.ThrottlingException = ThrottlingException;
3444
+ exports.ThrottlingException$ = ThrottlingException$;
3445
+ exports.UntagResource$ = UntagResource$;
3275
3446
  exports.UntagResourceCommand = UntagResourceCommand;
3447
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
3448
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
3449
+ exports.UpdateCloudExadataInfrastructure$ = UpdateCloudExadataInfrastructure$;
3276
3450
  exports.UpdateCloudExadataInfrastructureCommand = UpdateCloudExadataInfrastructureCommand;
3451
+ exports.UpdateCloudExadataInfrastructureInput$ = UpdateCloudExadataInfrastructureInput$;
3452
+ exports.UpdateCloudExadataInfrastructureOutput$ = UpdateCloudExadataInfrastructureOutput$;
3453
+ exports.UpdateOdbNetwork$ = UpdateOdbNetwork$;
3277
3454
  exports.UpdateOdbNetworkCommand = UpdateOdbNetworkCommand;
3455
+ exports.UpdateOdbNetworkInput$ = UpdateOdbNetworkInput$;
3456
+ exports.UpdateOdbNetworkOutput$ = UpdateOdbNetworkOutput$;
3457
+ exports.UpdateOdbPeeringConnection$ = UpdateOdbPeeringConnection$;
3278
3458
  exports.UpdateOdbPeeringConnectionCommand = UpdateOdbPeeringConnectionCommand;
3279
- exports.ValidationException = ValidationException$1;
3459
+ exports.UpdateOdbPeeringConnectionInput$ = UpdateOdbPeeringConnectionInput$;
3460
+ exports.UpdateOdbPeeringConnectionOutput$ = UpdateOdbPeeringConnectionOutput$;
3461
+ exports.ValidationException = ValidationException;
3462
+ exports.ValidationException$ = ValidationException$;
3463
+ exports.ValidationExceptionField$ = ValidationExceptionField$;
3280
3464
  exports.ValidationExceptionReason = ValidationExceptionReason;
3281
3465
  exports.VpcEndpointType = VpcEndpointType;
3466
+ exports.ZeroEtlAccess$ = ZeroEtlAccess$;
3282
3467
  exports.paginateListAutonomousVirtualMachines = paginateListAutonomousVirtualMachines;
3283
3468
  exports.paginateListCloudAutonomousVmClusters = paginateListCloudAutonomousVmClusters;
3284
3469
  exports.paginateListCloudExadataInfrastructures = paginateListCloudExadataInfrastructures;