@aws-sdk/client-odb 3.949.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.
- package/dist-cjs/index.js +559 -374
- package/dist-cjs/runtimeConfig.shared.js +6 -6
- package/dist-es/commands/AcceptMarketplaceRegistrationCommand.js +2 -2
- package/dist-es/commands/AssociateIamRoleToResourceCommand.js +2 -2
- package/dist-es/commands/CreateCloudAutonomousVmClusterCommand.js +2 -2
- package/dist-es/commands/CreateCloudExadataInfrastructureCommand.js +2 -2
- package/dist-es/commands/CreateCloudVmClusterCommand.js +2 -2
- package/dist-es/commands/CreateOdbNetworkCommand.js +2 -2
- package/dist-es/commands/CreateOdbPeeringConnectionCommand.js +2 -2
- package/dist-es/commands/DeleteCloudAutonomousVmClusterCommand.js +2 -2
- package/dist-es/commands/DeleteCloudExadataInfrastructureCommand.js +2 -2
- package/dist-es/commands/DeleteCloudVmClusterCommand.js +2 -2
- package/dist-es/commands/DeleteOdbNetworkCommand.js +2 -2
- package/dist-es/commands/DeleteOdbPeeringConnectionCommand.js +2 -2
- package/dist-es/commands/DisassociateIamRoleFromResourceCommand.js +2 -2
- package/dist-es/commands/GetCloudAutonomousVmClusterCommand.js +2 -2
- package/dist-es/commands/GetCloudExadataInfrastructureCommand.js +2 -2
- package/dist-es/commands/GetCloudExadataInfrastructureUnallocatedResourcesCommand.js +2 -2
- package/dist-es/commands/GetCloudVmClusterCommand.js +2 -2
- package/dist-es/commands/GetDbNodeCommand.js +2 -2
- package/dist-es/commands/GetDbServerCommand.js +2 -2
- package/dist-es/commands/GetOciOnboardingStatusCommand.js +2 -2
- package/dist-es/commands/GetOdbNetworkCommand.js +2 -2
- package/dist-es/commands/GetOdbPeeringConnectionCommand.js +2 -2
- package/dist-es/commands/InitializeServiceCommand.js +2 -2
- package/dist-es/commands/ListAutonomousVirtualMachinesCommand.js +2 -2
- package/dist-es/commands/ListCloudAutonomousVmClustersCommand.js +2 -2
- package/dist-es/commands/ListCloudExadataInfrastructuresCommand.js +2 -2
- package/dist-es/commands/ListCloudVmClustersCommand.js +2 -2
- package/dist-es/commands/ListDbNodesCommand.js +2 -2
- package/dist-es/commands/ListDbServersCommand.js +2 -2
- package/dist-es/commands/ListDbSystemShapesCommand.js +2 -2
- package/dist-es/commands/ListGiVersionsCommand.js +2 -2
- package/dist-es/commands/ListOdbNetworksCommand.js +2 -2
- package/dist-es/commands/ListOdbPeeringConnectionsCommand.js +2 -2
- package/dist-es/commands/ListSystemVersionsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/RebootDbNodeCommand.js +2 -2
- package/dist-es/commands/StartDbNodeCommand.js +2 -2
- package/dist-es/commands/StopDbNodeCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateCloudExadataInfrastructureCommand.js +2 -2
- package/dist-es/commands/UpdateOdbNetworkCommand.js +2 -2
- package/dist-es/commands/UpdateOdbPeeringConnectionCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -6
- package/dist-es/schemas/schemas_0.js +328 -320
- package/dist-types/OdbClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +178 -207
- package/dist-types/ts3.4/OdbClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +177 -208
- package/package.json +34 -34
|
@@ -26,12 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsJson1_0Protocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.odb",
|
|
32
|
+
version: "2024-08-20",
|
|
33
|
+
serviceTarget: "Odb",
|
|
34
|
+
},
|
|
35
35
|
serviceId: config?.serviceId ?? "odb",
|
|
36
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
37
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { AcceptMarketplaceRegistration } from "../schemas/schemas_0";
|
|
4
|
+
import { AcceptMarketplaceRegistration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AcceptMarketplaceRegistrationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AcceptMarketplaceRegistrationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Odb", "AcceptMarketplaceRegistration", {})
|
|
13
13
|
.n("OdbClient", "AcceptMarketplaceRegistrationCommand")
|
|
14
|
-
.sc(AcceptMarketplaceRegistration)
|
|
14
|
+
.sc(AcceptMarketplaceRegistration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { AssociateIamRoleToResource } from "../schemas/schemas_0";
|
|
4
|
+
import { AssociateIamRoleToResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AssociateIamRoleToResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AssociateIamRoleToResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Odb", "AssociateIamRoleToResource", {})
|
|
13
13
|
.n("OdbClient", "AssociateIamRoleToResourceCommand")
|
|
14
|
-
.sc(AssociateIamRoleToResource)
|
|
14
|
+
.sc(AssociateIamRoleToResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateCloudAutonomousVmCluster } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateCloudAutonomousVmCluster$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateCloudAutonomousVmClusterCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateCloudAutonomousVmClusterCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Odb", "CreateCloudAutonomousVmCluster", {})
|
|
13
13
|
.n("OdbClient", "CreateCloudAutonomousVmClusterCommand")
|
|
14
|
-
.sc(CreateCloudAutonomousVmCluster)
|
|
14
|
+
.sc(CreateCloudAutonomousVmCluster$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateCloudExadataInfrastructure } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateCloudExadataInfrastructure$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateCloudExadataInfrastructureCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateCloudExadataInfrastructureCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Odb", "CreateCloudExadataInfrastructure", {})
|
|
13
13
|
.n("OdbClient", "CreateCloudExadataInfrastructureCommand")
|
|
14
|
-
.sc(CreateCloudExadataInfrastructure)
|
|
14
|
+
.sc(CreateCloudExadataInfrastructure$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateCloudVmCluster } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateCloudVmCluster$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateCloudVmClusterCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateCloudVmClusterCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Odb", "CreateCloudVmCluster", {})
|
|
13
13
|
.n("OdbClient", "CreateCloudVmClusterCommand")
|
|
14
|
-
.sc(CreateCloudVmCluster)
|
|
14
|
+
.sc(CreateCloudVmCluster$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateOdbNetwork } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateOdbNetwork$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateOdbNetworkCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateOdbNetworkCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Odb", "CreateOdbNetwork", {})
|
|
13
13
|
.n("OdbClient", "CreateOdbNetworkCommand")
|
|
14
|
-
.sc(CreateOdbNetwork)
|
|
14
|
+
.sc(CreateOdbNetwork$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateOdbPeeringConnection } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateOdbPeeringConnection$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateOdbPeeringConnectionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateOdbPeeringConnectionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Odb", "CreateOdbPeeringConnection", {})
|
|
13
13
|
.n("OdbClient", "CreateOdbPeeringConnectionCommand")
|
|
14
|
-
.sc(CreateOdbPeeringConnection)
|
|
14
|
+
.sc(CreateOdbPeeringConnection$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteCloudAutonomousVmCluster } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteCloudAutonomousVmCluster$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteCloudAutonomousVmClusterCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteCloudAutonomousVmClusterCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Odb", "DeleteCloudAutonomousVmCluster", {})
|
|
13
13
|
.n("OdbClient", "DeleteCloudAutonomousVmClusterCommand")
|
|
14
|
-
.sc(DeleteCloudAutonomousVmCluster)
|
|
14
|
+
.sc(DeleteCloudAutonomousVmCluster$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteCloudExadataInfrastructure } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteCloudExadataInfrastructure$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteCloudExadataInfrastructureCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteCloudExadataInfrastructureCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Odb", "DeleteCloudExadataInfrastructure", {})
|
|
13
13
|
.n("OdbClient", "DeleteCloudExadataInfrastructureCommand")
|
|
14
|
-
.sc(DeleteCloudExadataInfrastructure)
|
|
14
|
+
.sc(DeleteCloudExadataInfrastructure$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteCloudVmCluster } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteCloudVmCluster$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteCloudVmClusterCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteCloudVmClusterCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Odb", "DeleteCloudVmCluster", {})
|
|
13
13
|
.n("OdbClient", "DeleteCloudVmClusterCommand")
|
|
14
|
-
.sc(DeleteCloudVmCluster)
|
|
14
|
+
.sc(DeleteCloudVmCluster$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteOdbNetwork } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteOdbNetwork$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteOdbNetworkCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteOdbNetworkCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Odb", "DeleteOdbNetwork", {})
|
|
13
13
|
.n("OdbClient", "DeleteOdbNetworkCommand")
|
|
14
|
-
.sc(DeleteOdbNetwork)
|
|
14
|
+
.sc(DeleteOdbNetwork$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteOdbPeeringConnection } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteOdbPeeringConnection$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteOdbPeeringConnectionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteOdbPeeringConnectionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Odb", "DeleteOdbPeeringConnection", {})
|
|
13
13
|
.n("OdbClient", "DeleteOdbPeeringConnectionCommand")
|
|
14
|
-
.sc(DeleteOdbPeeringConnection)
|
|
14
|
+
.sc(DeleteOdbPeeringConnection$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DisassociateIamRoleFromResource } from "../schemas/schemas_0";
|
|
4
|
+
import { DisassociateIamRoleFromResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DisassociateIamRoleFromResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DisassociateIamRoleFromResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Odb", "DisassociateIamRoleFromResource", {})
|
|
13
13
|
.n("OdbClient", "DisassociateIamRoleFromResourceCommand")
|
|
14
|
-
.sc(DisassociateIamRoleFromResource)
|
|
14
|
+
.sc(DisassociateIamRoleFromResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetCloudAutonomousVmCluster } from "../schemas/schemas_0";
|
|
4
|
+
import { GetCloudAutonomousVmCluster$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetCloudAutonomousVmClusterCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetCloudAutonomousVmClusterCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Odb", "GetCloudAutonomousVmCluster", {})
|
|
13
13
|
.n("OdbClient", "GetCloudAutonomousVmClusterCommand")
|
|
14
|
-
.sc(GetCloudAutonomousVmCluster)
|
|
14
|
+
.sc(GetCloudAutonomousVmCluster$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetCloudExadataInfrastructure } from "../schemas/schemas_0";
|
|
4
|
+
import { GetCloudExadataInfrastructure$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetCloudExadataInfrastructureCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetCloudExadataInfrastructureCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Odb", "GetCloudExadataInfrastructure", {})
|
|
13
13
|
.n("OdbClient", "GetCloudExadataInfrastructureCommand")
|
|
14
|
-
.sc(GetCloudExadataInfrastructure)
|
|
14
|
+
.sc(GetCloudExadataInfrastructure$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetCloudExadataInfrastructureUnallocatedResources } from "../schemas/schemas_0";
|
|
4
|
+
import { GetCloudExadataInfrastructureUnallocatedResources$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetCloudExadataInfrastructureUnallocatedResourcesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetCloudExadataInfrastructureUnallocatedResourcesCommand extends $C
|
|
|
11
11
|
})
|
|
12
12
|
.s("Odb", "GetCloudExadataInfrastructureUnallocatedResources", {})
|
|
13
13
|
.n("OdbClient", "GetCloudExadataInfrastructureUnallocatedResourcesCommand")
|
|
14
|
-
.sc(GetCloudExadataInfrastructureUnallocatedResources)
|
|
14
|
+
.sc(GetCloudExadataInfrastructureUnallocatedResources$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetCloudVmCluster } from "../schemas/schemas_0";
|
|
4
|
+
import { GetCloudVmCluster$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetCloudVmClusterCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetCloudVmClusterCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Odb", "GetCloudVmCluster", {})
|
|
13
13
|
.n("OdbClient", "GetCloudVmClusterCommand")
|
|
14
|
-
.sc(GetCloudVmCluster)
|
|
14
|
+
.sc(GetCloudVmCluster$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetDbNode } from "../schemas/schemas_0";
|
|
4
|
+
import { GetDbNode$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetDbNodeCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetDbNodeCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Odb", "GetDbNode", {})
|
|
13
13
|
.n("OdbClient", "GetDbNodeCommand")
|
|
14
|
-
.sc(GetDbNode)
|
|
14
|
+
.sc(GetDbNode$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetDbServer } from "../schemas/schemas_0";
|
|
4
|
+
import { GetDbServer$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetDbServerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetDbServerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Odb", "GetDbServer", {})
|
|
13
13
|
.n("OdbClient", "GetDbServerCommand")
|
|
14
|
-
.sc(GetDbServer)
|
|
14
|
+
.sc(GetDbServer$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetOciOnboardingStatus } from "../schemas/schemas_0";
|
|
4
|
+
import { GetOciOnboardingStatus$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetOciOnboardingStatusCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetOciOnboardingStatusCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Odb", "GetOciOnboardingStatus", {})
|
|
13
13
|
.n("OdbClient", "GetOciOnboardingStatusCommand")
|
|
14
|
-
.sc(GetOciOnboardingStatus)
|
|
14
|
+
.sc(GetOciOnboardingStatus$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetOdbNetwork } from "../schemas/schemas_0";
|
|
4
|
+
import { GetOdbNetwork$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetOdbNetworkCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetOdbNetworkCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Odb", "GetOdbNetwork", {})
|
|
13
13
|
.n("OdbClient", "GetOdbNetworkCommand")
|
|
14
|
-
.sc(GetOdbNetwork)
|
|
14
|
+
.sc(GetOdbNetwork$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetOdbPeeringConnection } from "../schemas/schemas_0";
|
|
4
|
+
import { GetOdbPeeringConnection$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetOdbPeeringConnectionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetOdbPeeringConnectionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Odb", "GetOdbPeeringConnection", {})
|
|
13
13
|
.n("OdbClient", "GetOdbPeeringConnectionCommand")
|
|
14
|
-
.sc(GetOdbPeeringConnection)
|
|
14
|
+
.sc(GetOdbPeeringConnection$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { InitializeService } from "../schemas/schemas_0";
|
|
4
|
+
import { InitializeService$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class InitializeServiceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class InitializeServiceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Odb", "InitializeService", {})
|
|
13
13
|
.n("OdbClient", "InitializeServiceCommand")
|
|
14
|
-
.sc(InitializeService)
|
|
14
|
+
.sc(InitializeService$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListAutonomousVirtualMachines } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAutonomousVirtualMachines$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAutonomousVirtualMachinesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAutonomousVirtualMachinesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Odb", "ListAutonomousVirtualMachines", {})
|
|
13
13
|
.n("OdbClient", "ListAutonomousVirtualMachinesCommand")
|
|
14
|
-
.sc(ListAutonomousVirtualMachines)
|
|
14
|
+
.sc(ListAutonomousVirtualMachines$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListCloudAutonomousVmClusters } from "../schemas/schemas_0";
|
|
4
|
+
import { ListCloudAutonomousVmClusters$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListCloudAutonomousVmClustersCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListCloudAutonomousVmClustersCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Odb", "ListCloudAutonomousVmClusters", {})
|
|
13
13
|
.n("OdbClient", "ListCloudAutonomousVmClustersCommand")
|
|
14
|
-
.sc(ListCloudAutonomousVmClusters)
|
|
14
|
+
.sc(ListCloudAutonomousVmClusters$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListCloudExadataInfrastructures } from "../schemas/schemas_0";
|
|
4
|
+
import { ListCloudExadataInfrastructures$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListCloudExadataInfrastructuresCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListCloudExadataInfrastructuresCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Odb", "ListCloudExadataInfrastructures", {})
|
|
13
13
|
.n("OdbClient", "ListCloudExadataInfrastructuresCommand")
|
|
14
|
-
.sc(ListCloudExadataInfrastructures)
|
|
14
|
+
.sc(ListCloudExadataInfrastructures$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListCloudVmClusters } from "../schemas/schemas_0";
|
|
4
|
+
import { ListCloudVmClusters$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListCloudVmClustersCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListCloudVmClustersCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Odb", "ListCloudVmClusters", {})
|
|
13
13
|
.n("OdbClient", "ListCloudVmClustersCommand")
|
|
14
|
-
.sc(ListCloudVmClusters)
|
|
14
|
+
.sc(ListCloudVmClusters$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListDbNodes } from "../schemas/schemas_0";
|
|
4
|
+
import { ListDbNodes$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListDbNodesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListDbNodesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Odb", "ListDbNodes", {})
|
|
13
13
|
.n("OdbClient", "ListDbNodesCommand")
|
|
14
|
-
.sc(ListDbNodes)
|
|
14
|
+
.sc(ListDbNodes$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListDbServers } from "../schemas/schemas_0";
|
|
4
|
+
import { ListDbServers$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListDbServersCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListDbServersCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Odb", "ListDbServers", {})
|
|
13
13
|
.n("OdbClient", "ListDbServersCommand")
|
|
14
|
-
.sc(ListDbServers)
|
|
14
|
+
.sc(ListDbServers$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListDbSystemShapes } from "../schemas/schemas_0";
|
|
4
|
+
import { ListDbSystemShapes$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListDbSystemShapesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListDbSystemShapesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Odb", "ListDbSystemShapes", {})
|
|
13
13
|
.n("OdbClient", "ListDbSystemShapesCommand")
|
|
14
|
-
.sc(ListDbSystemShapes)
|
|
14
|
+
.sc(ListDbSystemShapes$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListGiVersions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListGiVersions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListGiVersionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListGiVersionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Odb", "ListGiVersions", {})
|
|
13
13
|
.n("OdbClient", "ListGiVersionsCommand")
|
|
14
|
-
.sc(ListGiVersions)
|
|
14
|
+
.sc(ListGiVersions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListOdbNetworks } from "../schemas/schemas_0";
|
|
4
|
+
import { ListOdbNetworks$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListOdbNetworksCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListOdbNetworksCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Odb", "ListOdbNetworks", {})
|
|
13
13
|
.n("OdbClient", "ListOdbNetworksCommand")
|
|
14
|
-
.sc(ListOdbNetworks)
|
|
14
|
+
.sc(ListOdbNetworks$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListOdbPeeringConnections } from "../schemas/schemas_0";
|
|
4
|
+
import { ListOdbPeeringConnections$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListOdbPeeringConnectionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListOdbPeeringConnectionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Odb", "ListOdbPeeringConnections", {})
|
|
13
13
|
.n("OdbClient", "ListOdbPeeringConnectionsCommand")
|
|
14
|
-
.sc(ListOdbPeeringConnections)
|
|
14
|
+
.sc(ListOdbPeeringConnections$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListSystemVersions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListSystemVersions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListSystemVersionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListSystemVersionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Odb", "ListSystemVersions", {})
|
|
13
13
|
.n("OdbClient", "ListSystemVersionsCommand")
|
|
14
|
-
.sc(ListSystemVersions)
|
|
14
|
+
.sc(ListSystemVersions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Odb", "ListTagsForResource", {})
|
|
13
13
|
.n("OdbClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|