@aws-sdk/client-odb 3.975.0 → 3.978.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 +36 -23
- package/dist-es/Odb.js +25 -1
- package/dist-types/Odb.d.ts +78 -1
- package/dist-types/ts3.4/Odb.d.ts +82 -1
- package/package.json +17 -17
package/dist-cjs/index.js
CHANGED
|
@@ -2082,6 +2082,28 @@ class UpdateOdbPeeringConnectionCommand extends smithyClient.Command
|
|
|
2082
2082
|
.build() {
|
|
2083
2083
|
}
|
|
2084
2084
|
|
|
2085
|
+
const paginateListAutonomousVirtualMachines = core.createPaginator(OdbClient, ListAutonomousVirtualMachinesCommand, "nextToken", "nextToken", "maxResults");
|
|
2086
|
+
|
|
2087
|
+
const paginateListCloudAutonomousVmClusters = core.createPaginator(OdbClient, ListCloudAutonomousVmClustersCommand, "nextToken", "nextToken", "maxResults");
|
|
2088
|
+
|
|
2089
|
+
const paginateListCloudExadataInfrastructures = core.createPaginator(OdbClient, ListCloudExadataInfrastructuresCommand, "nextToken", "nextToken", "maxResults");
|
|
2090
|
+
|
|
2091
|
+
const paginateListCloudVmClusters = core.createPaginator(OdbClient, ListCloudVmClustersCommand, "nextToken", "nextToken", "maxResults");
|
|
2092
|
+
|
|
2093
|
+
const paginateListDbNodes = core.createPaginator(OdbClient, ListDbNodesCommand, "nextToken", "nextToken", "maxResults");
|
|
2094
|
+
|
|
2095
|
+
const paginateListDbServers = core.createPaginator(OdbClient, ListDbServersCommand, "nextToken", "nextToken", "maxResults");
|
|
2096
|
+
|
|
2097
|
+
const paginateListDbSystemShapes = core.createPaginator(OdbClient, ListDbSystemShapesCommand, "nextToken", "nextToken", "maxResults");
|
|
2098
|
+
|
|
2099
|
+
const paginateListGiVersions = core.createPaginator(OdbClient, ListGiVersionsCommand, "nextToken", "nextToken", "maxResults");
|
|
2100
|
+
|
|
2101
|
+
const paginateListOdbNetworks = core.createPaginator(OdbClient, ListOdbNetworksCommand, "nextToken", "nextToken", "maxResults");
|
|
2102
|
+
|
|
2103
|
+
const paginateListOdbPeeringConnections = core.createPaginator(OdbClient, ListOdbPeeringConnectionsCommand, "nextToken", "nextToken", "maxResults");
|
|
2104
|
+
|
|
2105
|
+
const paginateListSystemVersions = core.createPaginator(OdbClient, ListSystemVersionsCommand, "nextToken", "nextToken", "maxResults");
|
|
2106
|
+
|
|
2085
2107
|
const commands = {
|
|
2086
2108
|
AcceptMarketplaceRegistrationCommand,
|
|
2087
2109
|
AssociateIamRoleToResourceCommand,
|
|
@@ -2127,31 +2149,22 @@ const commands = {
|
|
|
2127
2149
|
UpdateOdbNetworkCommand,
|
|
2128
2150
|
UpdateOdbPeeringConnectionCommand,
|
|
2129
2151
|
};
|
|
2152
|
+
const paginators = {
|
|
2153
|
+
paginateListAutonomousVirtualMachines,
|
|
2154
|
+
paginateListCloudAutonomousVmClusters,
|
|
2155
|
+
paginateListCloudExadataInfrastructures,
|
|
2156
|
+
paginateListCloudVmClusters,
|
|
2157
|
+
paginateListDbNodes,
|
|
2158
|
+
paginateListDbServers,
|
|
2159
|
+
paginateListDbSystemShapes,
|
|
2160
|
+
paginateListGiVersions,
|
|
2161
|
+
paginateListOdbNetworks,
|
|
2162
|
+
paginateListOdbPeeringConnections,
|
|
2163
|
+
paginateListSystemVersions,
|
|
2164
|
+
};
|
|
2130
2165
|
class Odb extends OdbClient {
|
|
2131
2166
|
}
|
|
2132
|
-
smithyClient.createAggregatedClient(commands, Odb);
|
|
2133
|
-
|
|
2134
|
-
const paginateListAutonomousVirtualMachines = core.createPaginator(OdbClient, ListAutonomousVirtualMachinesCommand, "nextToken", "nextToken", "maxResults");
|
|
2135
|
-
|
|
2136
|
-
const paginateListCloudAutonomousVmClusters = core.createPaginator(OdbClient, ListCloudAutonomousVmClustersCommand, "nextToken", "nextToken", "maxResults");
|
|
2137
|
-
|
|
2138
|
-
const paginateListCloudExadataInfrastructures = core.createPaginator(OdbClient, ListCloudExadataInfrastructuresCommand, "nextToken", "nextToken", "maxResults");
|
|
2139
|
-
|
|
2140
|
-
const paginateListCloudVmClusters = core.createPaginator(OdbClient, ListCloudVmClustersCommand, "nextToken", "nextToken", "maxResults");
|
|
2141
|
-
|
|
2142
|
-
const paginateListDbNodes = core.createPaginator(OdbClient, ListDbNodesCommand, "nextToken", "nextToken", "maxResults");
|
|
2143
|
-
|
|
2144
|
-
const paginateListDbServers = core.createPaginator(OdbClient, ListDbServersCommand, "nextToken", "nextToken", "maxResults");
|
|
2145
|
-
|
|
2146
|
-
const paginateListDbSystemShapes = core.createPaginator(OdbClient, ListDbSystemShapesCommand, "nextToken", "nextToken", "maxResults");
|
|
2147
|
-
|
|
2148
|
-
const paginateListGiVersions = core.createPaginator(OdbClient, ListGiVersionsCommand, "nextToken", "nextToken", "maxResults");
|
|
2149
|
-
|
|
2150
|
-
const paginateListOdbNetworks = core.createPaginator(OdbClient, ListOdbNetworksCommand, "nextToken", "nextToken", "maxResults");
|
|
2151
|
-
|
|
2152
|
-
const paginateListOdbPeeringConnections = core.createPaginator(OdbClient, ListOdbPeeringConnectionsCommand, "nextToken", "nextToken", "maxResults");
|
|
2153
|
-
|
|
2154
|
-
const paginateListSystemVersions = core.createPaginator(OdbClient, ListSystemVersionsCommand, "nextToken", "nextToken", "maxResults");
|
|
2167
|
+
smithyClient.createAggregatedClient(commands, Odb, { paginators });
|
|
2155
2168
|
|
|
2156
2169
|
const ValidationExceptionReason = {
|
|
2157
2170
|
CANNOT_PARSE: "cannotParse",
|
package/dist-es/Odb.js
CHANGED
|
@@ -43,6 +43,17 @@ import { UpdateCloudExadataInfrastructureCommand, } from "./commands/UpdateCloud
|
|
|
43
43
|
import { UpdateOdbNetworkCommand, } from "./commands/UpdateOdbNetworkCommand";
|
|
44
44
|
import { UpdateOdbPeeringConnectionCommand, } from "./commands/UpdateOdbPeeringConnectionCommand";
|
|
45
45
|
import { OdbClient } from "./OdbClient";
|
|
46
|
+
import { paginateListAutonomousVirtualMachines } from "./pagination/ListAutonomousVirtualMachinesPaginator";
|
|
47
|
+
import { paginateListCloudAutonomousVmClusters } from "./pagination/ListCloudAutonomousVmClustersPaginator";
|
|
48
|
+
import { paginateListCloudExadataInfrastructures } from "./pagination/ListCloudExadataInfrastructuresPaginator";
|
|
49
|
+
import { paginateListCloudVmClusters } from "./pagination/ListCloudVmClustersPaginator";
|
|
50
|
+
import { paginateListDbNodes } from "./pagination/ListDbNodesPaginator";
|
|
51
|
+
import { paginateListDbServers } from "./pagination/ListDbServersPaginator";
|
|
52
|
+
import { paginateListDbSystemShapes } from "./pagination/ListDbSystemShapesPaginator";
|
|
53
|
+
import { paginateListGiVersions } from "./pagination/ListGiVersionsPaginator";
|
|
54
|
+
import { paginateListOdbNetworks } from "./pagination/ListOdbNetworksPaginator";
|
|
55
|
+
import { paginateListOdbPeeringConnections } from "./pagination/ListOdbPeeringConnectionsPaginator";
|
|
56
|
+
import { paginateListSystemVersions } from "./pagination/ListSystemVersionsPaginator";
|
|
46
57
|
const commands = {
|
|
47
58
|
AcceptMarketplaceRegistrationCommand,
|
|
48
59
|
AssociateIamRoleToResourceCommand,
|
|
@@ -88,6 +99,19 @@ const commands = {
|
|
|
88
99
|
UpdateOdbNetworkCommand,
|
|
89
100
|
UpdateOdbPeeringConnectionCommand,
|
|
90
101
|
};
|
|
102
|
+
const paginators = {
|
|
103
|
+
paginateListAutonomousVirtualMachines,
|
|
104
|
+
paginateListCloudAutonomousVmClusters,
|
|
105
|
+
paginateListCloudExadataInfrastructures,
|
|
106
|
+
paginateListCloudVmClusters,
|
|
107
|
+
paginateListDbNodes,
|
|
108
|
+
paginateListDbServers,
|
|
109
|
+
paginateListDbSystemShapes,
|
|
110
|
+
paginateListGiVersions,
|
|
111
|
+
paginateListOdbNetworks,
|
|
112
|
+
paginateListOdbPeeringConnections,
|
|
113
|
+
paginateListSystemVersions,
|
|
114
|
+
};
|
|
91
115
|
export class Odb extends OdbClient {
|
|
92
116
|
}
|
|
93
|
-
createAggregatedClient(commands, Odb);
|
|
117
|
+
createAggregatedClient(commands, Odb, { paginators });
|
package/dist-types/Odb.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
2
|
import { AcceptMarketplaceRegistrationCommandInput, AcceptMarketplaceRegistrationCommandOutput } from "./commands/AcceptMarketplaceRegistrationCommand";
|
|
3
3
|
import { AssociateIamRoleToResourceCommandInput, AssociateIamRoleToResourceCommandOutput } from "./commands/AssociateIamRoleToResourceCommand";
|
|
4
4
|
import { CreateCloudAutonomousVmClusterCommandInput, CreateCloudAutonomousVmClusterCommandOutput } from "./commands/CreateCloudAutonomousVmClusterCommand";
|
|
@@ -311,6 +311,83 @@ export interface Odb {
|
|
|
311
311
|
updateOdbPeeringConnection(args: UpdateOdbPeeringConnectionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateOdbPeeringConnectionCommandOutput>;
|
|
312
312
|
updateOdbPeeringConnection(args: UpdateOdbPeeringConnectionCommandInput, cb: (err: any, data?: UpdateOdbPeeringConnectionCommandOutput) => void): void;
|
|
313
313
|
updateOdbPeeringConnection(args: UpdateOdbPeeringConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateOdbPeeringConnectionCommandOutput) => void): void;
|
|
314
|
+
/**
|
|
315
|
+
* @see {@link ListAutonomousVirtualMachinesCommand}
|
|
316
|
+
* @param args - command input.
|
|
317
|
+
* @param paginationConfig - optional pagination config.
|
|
318
|
+
* @returns AsyncIterable of {@link ListAutonomousVirtualMachinesCommandOutput}.
|
|
319
|
+
*/
|
|
320
|
+
paginateListAutonomousVirtualMachines(args: ListAutonomousVirtualMachinesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAutonomousVirtualMachinesCommandOutput>;
|
|
321
|
+
/**
|
|
322
|
+
* @see {@link ListCloudAutonomousVmClustersCommand}
|
|
323
|
+
* @param args - command input.
|
|
324
|
+
* @param paginationConfig - optional pagination config.
|
|
325
|
+
* @returns AsyncIterable of {@link ListCloudAutonomousVmClustersCommandOutput}.
|
|
326
|
+
*/
|
|
327
|
+
paginateListCloudAutonomousVmClusters(args?: ListCloudAutonomousVmClustersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListCloudAutonomousVmClustersCommandOutput>;
|
|
328
|
+
/**
|
|
329
|
+
* @see {@link ListCloudExadataInfrastructuresCommand}
|
|
330
|
+
* @param args - command input.
|
|
331
|
+
* @param paginationConfig - optional pagination config.
|
|
332
|
+
* @returns AsyncIterable of {@link ListCloudExadataInfrastructuresCommandOutput}.
|
|
333
|
+
*/
|
|
334
|
+
paginateListCloudExadataInfrastructures(args?: ListCloudExadataInfrastructuresCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListCloudExadataInfrastructuresCommandOutput>;
|
|
335
|
+
/**
|
|
336
|
+
* @see {@link ListCloudVmClustersCommand}
|
|
337
|
+
* @param args - command input.
|
|
338
|
+
* @param paginationConfig - optional pagination config.
|
|
339
|
+
* @returns AsyncIterable of {@link ListCloudVmClustersCommandOutput}.
|
|
340
|
+
*/
|
|
341
|
+
paginateListCloudVmClusters(args?: ListCloudVmClustersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListCloudVmClustersCommandOutput>;
|
|
342
|
+
/**
|
|
343
|
+
* @see {@link ListDbNodesCommand}
|
|
344
|
+
* @param args - command input.
|
|
345
|
+
* @param paginationConfig - optional pagination config.
|
|
346
|
+
* @returns AsyncIterable of {@link ListDbNodesCommandOutput}.
|
|
347
|
+
*/
|
|
348
|
+
paginateListDbNodes(args: ListDbNodesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListDbNodesCommandOutput>;
|
|
349
|
+
/**
|
|
350
|
+
* @see {@link ListDbServersCommand}
|
|
351
|
+
* @param args - command input.
|
|
352
|
+
* @param paginationConfig - optional pagination config.
|
|
353
|
+
* @returns AsyncIterable of {@link ListDbServersCommandOutput}.
|
|
354
|
+
*/
|
|
355
|
+
paginateListDbServers(args: ListDbServersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListDbServersCommandOutput>;
|
|
356
|
+
/**
|
|
357
|
+
* @see {@link ListDbSystemShapesCommand}
|
|
358
|
+
* @param args - command input.
|
|
359
|
+
* @param paginationConfig - optional pagination config.
|
|
360
|
+
* @returns AsyncIterable of {@link ListDbSystemShapesCommandOutput}.
|
|
361
|
+
*/
|
|
362
|
+
paginateListDbSystemShapes(args?: ListDbSystemShapesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListDbSystemShapesCommandOutput>;
|
|
363
|
+
/**
|
|
364
|
+
* @see {@link ListGiVersionsCommand}
|
|
365
|
+
* @param args - command input.
|
|
366
|
+
* @param paginationConfig - optional pagination config.
|
|
367
|
+
* @returns AsyncIterable of {@link ListGiVersionsCommandOutput}.
|
|
368
|
+
*/
|
|
369
|
+
paginateListGiVersions(args?: ListGiVersionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListGiVersionsCommandOutput>;
|
|
370
|
+
/**
|
|
371
|
+
* @see {@link ListOdbNetworksCommand}
|
|
372
|
+
* @param args - command input.
|
|
373
|
+
* @param paginationConfig - optional pagination config.
|
|
374
|
+
* @returns AsyncIterable of {@link ListOdbNetworksCommandOutput}.
|
|
375
|
+
*/
|
|
376
|
+
paginateListOdbNetworks(args?: ListOdbNetworksCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListOdbNetworksCommandOutput>;
|
|
377
|
+
/**
|
|
378
|
+
* @see {@link ListOdbPeeringConnectionsCommand}
|
|
379
|
+
* @param args - command input.
|
|
380
|
+
* @param paginationConfig - optional pagination config.
|
|
381
|
+
* @returns AsyncIterable of {@link ListOdbPeeringConnectionsCommandOutput}.
|
|
382
|
+
*/
|
|
383
|
+
paginateListOdbPeeringConnections(args?: ListOdbPeeringConnectionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListOdbPeeringConnectionsCommandOutput>;
|
|
384
|
+
/**
|
|
385
|
+
* @see {@link ListSystemVersionsCommand}
|
|
386
|
+
* @param args - command input.
|
|
387
|
+
* @param paginationConfig - optional pagination config.
|
|
388
|
+
* @returns AsyncIterable of {@link ListSystemVersionsCommandOutput}.
|
|
389
|
+
*/
|
|
390
|
+
paginateListSystemVersions(args: ListSystemVersionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListSystemVersionsCommandOutput>;
|
|
314
391
|
}
|
|
315
392
|
/**
|
|
316
393
|
* <p>Oracle Database@Amazon Web Services is an offering that enables you to access Oracle Exadata infrastructure managed by Oracle Cloud Infrastructure (OCI) inside Amazon Web Services data centers. You can migrate your Oracle Exadata workloads, establish low-latency connectivity with applications running on Amazon Web Services, and integrate with Amazon Web Services services. For example, you can run application servers in a Virtual Private Cloud (VPC) and access an Oracle Exadata system running in Oracle Database@Amazon Web Services. You can get started with Oracle Database@Amazon Web Services by using the familiar Amazon Web Services Management Console, APIs, or CLI.</p> <p>This interface reference for Oracle Database@Amazon Web Services contains documentation for a programming or command line interface that you can use to manage Oracle Database@Amazon Web Services. Oracle Database@Amazon Web Services is asynchronous, which means that some interfaces might require techniques such as polling or callback functions to determine when a command has been applied. The reference structure is as follows.</p> <p> <b>Oracle Database@Amazon Web Services API Reference</b> </p> <ul> <li> <p>For the alphabetical list of API actions, see <a href="https://docs.aws.amazon.com/odb/latest/APIReference/API_Operations.html">API Actions</a>.</p> </li> <li> <p>For the alphabetical list of data types, see <a href="https://docs.aws.amazon.com/odb/latest/APIReference/API_Types.html">Data Types</a>.</p> </li> <li> <p>For a list of common query parameters, see <a href="https://docs.aws.amazon.com/odb/latest/APIReference/CommonParameters.html">Common Parameters</a>.</p> </li> <li> <p>For descriptions of the error codes, see <a href="https://docs.aws.amazon.com/odb/latest/APIReference/CommonErrors.html">Common Errors</a>.</p> </li> </ul>
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
} from "@smithy/types";
|
|
2
6
|
import {
|
|
3
7
|
AcceptMarketplaceRegistrationCommandInput,
|
|
4
8
|
AcceptMarketplaceRegistrationCommandOutput,
|
|
@@ -747,5 +751,82 @@ export interface Odb {
|
|
|
747
751
|
options: __HttpHandlerOptions,
|
|
748
752
|
cb: (err: any, data?: UpdateOdbPeeringConnectionCommandOutput) => void
|
|
749
753
|
): void;
|
|
754
|
+
paginateListAutonomousVirtualMachines(
|
|
755
|
+
args: ListAutonomousVirtualMachinesCommandInput,
|
|
756
|
+
paginationConfig?: Pick<
|
|
757
|
+
PaginationConfiguration,
|
|
758
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
759
|
+
>
|
|
760
|
+
): Paginator<ListAutonomousVirtualMachinesCommandOutput>;
|
|
761
|
+
paginateListCloudAutonomousVmClusters(
|
|
762
|
+
args?: ListCloudAutonomousVmClustersCommandInput,
|
|
763
|
+
paginationConfig?: Pick<
|
|
764
|
+
PaginationConfiguration,
|
|
765
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
766
|
+
>
|
|
767
|
+
): Paginator<ListCloudAutonomousVmClustersCommandOutput>;
|
|
768
|
+
paginateListCloudExadataInfrastructures(
|
|
769
|
+
args?: ListCloudExadataInfrastructuresCommandInput,
|
|
770
|
+
paginationConfig?: Pick<
|
|
771
|
+
PaginationConfiguration,
|
|
772
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
773
|
+
>
|
|
774
|
+
): Paginator<ListCloudExadataInfrastructuresCommandOutput>;
|
|
775
|
+
paginateListCloudVmClusters(
|
|
776
|
+
args?: ListCloudVmClustersCommandInput,
|
|
777
|
+
paginationConfig?: Pick<
|
|
778
|
+
PaginationConfiguration,
|
|
779
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
780
|
+
>
|
|
781
|
+
): Paginator<ListCloudVmClustersCommandOutput>;
|
|
782
|
+
paginateListDbNodes(
|
|
783
|
+
args: ListDbNodesCommandInput,
|
|
784
|
+
paginationConfig?: Pick<
|
|
785
|
+
PaginationConfiguration,
|
|
786
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
787
|
+
>
|
|
788
|
+
): Paginator<ListDbNodesCommandOutput>;
|
|
789
|
+
paginateListDbServers(
|
|
790
|
+
args: ListDbServersCommandInput,
|
|
791
|
+
paginationConfig?: Pick<
|
|
792
|
+
PaginationConfiguration,
|
|
793
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
794
|
+
>
|
|
795
|
+
): Paginator<ListDbServersCommandOutput>;
|
|
796
|
+
paginateListDbSystemShapes(
|
|
797
|
+
args?: ListDbSystemShapesCommandInput,
|
|
798
|
+
paginationConfig?: Pick<
|
|
799
|
+
PaginationConfiguration,
|
|
800
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
801
|
+
>
|
|
802
|
+
): Paginator<ListDbSystemShapesCommandOutput>;
|
|
803
|
+
paginateListGiVersions(
|
|
804
|
+
args?: ListGiVersionsCommandInput,
|
|
805
|
+
paginationConfig?: Pick<
|
|
806
|
+
PaginationConfiguration,
|
|
807
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
808
|
+
>
|
|
809
|
+
): Paginator<ListGiVersionsCommandOutput>;
|
|
810
|
+
paginateListOdbNetworks(
|
|
811
|
+
args?: ListOdbNetworksCommandInput,
|
|
812
|
+
paginationConfig?: Pick<
|
|
813
|
+
PaginationConfiguration,
|
|
814
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
815
|
+
>
|
|
816
|
+
): Paginator<ListOdbNetworksCommandOutput>;
|
|
817
|
+
paginateListOdbPeeringConnections(
|
|
818
|
+
args?: ListOdbPeeringConnectionsCommandInput,
|
|
819
|
+
paginationConfig?: Pick<
|
|
820
|
+
PaginationConfiguration,
|
|
821
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
822
|
+
>
|
|
823
|
+
): Paginator<ListOdbPeeringConnectionsCommandOutput>;
|
|
824
|
+
paginateListSystemVersions(
|
|
825
|
+
args: ListSystemVersionsCommandInput,
|
|
826
|
+
paginationConfig?: Pick<
|
|
827
|
+
PaginationConfiguration,
|
|
828
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
829
|
+
>
|
|
830
|
+
): Paginator<ListSystemVersionsCommandOutput>;
|
|
750
831
|
}
|
|
751
832
|
export declare class Odb extends OdbClient implements Odb {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-odb",
|
|
3
3
|
"description": "AWS SDK for JavaScript Odb Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.978.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-odb",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
27
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
-
"@aws-sdk/types": "^3.973.
|
|
24
|
+
"@aws-sdk/core": "^3.973.4",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.2",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.2",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.2",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.2",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.4",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.2",
|
|
31
|
+
"@aws-sdk/types": "^3.973.1",
|
|
32
32
|
"@aws-sdk/util-endpoints": "3.972.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.2",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.2",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.22.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.29",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
46
|
"@smithy/node-http-handler": "^4.4.8",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.1",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.28",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.31",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|