@@ -65,11 +65,6 @@ import {
65
65
CopyOptionGroupCommandInput ,
66
66
CopyOptionGroupCommandOutput ,
67
67
} from "./commands/CopyOptionGroupCommand" ;
68
- import {
69
- CreateCustomAvailabilityZoneCommand ,
70
- CreateCustomAvailabilityZoneCommandInput ,
71
- CreateCustomAvailabilityZoneCommandOutput ,
72
- } from "./commands/CreateCustomAvailabilityZoneCommand" ;
73
68
import {
74
69
CreateCustomDBEngineVersionCommand ,
75
70
CreateCustomDBEngineVersionCommandInput ,
@@ -150,11 +145,6 @@ import {
150
145
CreateOptionGroupCommandInput ,
151
146
CreateOptionGroupCommandOutput ,
152
147
} from "./commands/CreateOptionGroupCommand" ;
153
- import {
154
- DeleteCustomAvailabilityZoneCommand ,
155
- DeleteCustomAvailabilityZoneCommandInput ,
156
- DeleteCustomAvailabilityZoneCommandOutput ,
157
- } from "./commands/DeleteCustomAvailabilityZoneCommand" ;
158
148
import {
159
149
DeleteCustomDBEngineVersionCommand ,
160
150
DeleteCustomDBEngineVersionCommandInput ,
@@ -230,11 +220,6 @@ import {
230
220
DeleteGlobalClusterCommandInput ,
231
221
DeleteGlobalClusterCommandOutput ,
232
222
} from "./commands/DeleteGlobalClusterCommand" ;
233
- import {
234
- DeleteInstallationMediaCommand ,
235
- DeleteInstallationMediaCommandInput ,
236
- DeleteInstallationMediaCommandOutput ,
237
- } from "./commands/DeleteInstallationMediaCommand" ;
238
223
import {
239
224
DeleteOptionGroupCommand ,
240
225
DeleteOptionGroupCommandInput ,
@@ -255,11 +240,6 @@ import {
255
240
DescribeCertificatesCommandInput ,
256
241
DescribeCertificatesCommandOutput ,
257
242
} from "./commands/DescribeCertificatesCommand" ;
258
- import {
259
- DescribeCustomAvailabilityZonesCommand ,
260
- DescribeCustomAvailabilityZonesCommandInput ,
261
- DescribeCustomAvailabilityZonesCommandOutput ,
262
- } from "./commands/DescribeCustomAvailabilityZonesCommand" ;
263
243
import {
264
244
DescribeDBClusterBacktracksCommand ,
265
245
DescribeDBClusterBacktracksCommandInput ,
@@ -400,11 +380,6 @@ import {
400
380
DescribeGlobalClustersCommandInput ,
401
381
DescribeGlobalClustersCommandOutput ,
402
382
} from "./commands/DescribeGlobalClustersCommand" ;
403
- import {
404
- DescribeInstallationMediaCommand ,
405
- DescribeInstallationMediaCommandInput ,
406
- DescribeInstallationMediaCommandOutput ,
407
- } from "./commands/DescribeInstallationMediaCommand" ;
408
383
import {
409
384
DescribeOptionGroupOptionsCommand ,
410
385
DescribeOptionGroupOptionsCommandInput ,
@@ -460,11 +435,6 @@ import {
460
435
FailoverGlobalClusterCommandInput ,
461
436
FailoverGlobalClusterCommandOutput ,
462
437
} from "./commands/FailoverGlobalClusterCommand" ;
463
- import {
464
- ImportInstallationMediaCommand ,
465
- ImportInstallationMediaCommandInput ,
466
- ImportInstallationMediaCommandOutput ,
467
- } from "./commands/ImportInstallationMediaCommand" ;
468
438
import {
469
439
ListTagsForResourceCommand ,
470
440
ListTagsForResourceCommandInput ,
@@ -1279,43 +1249,6 @@ export class RDS extends RDSClient {
1279
1249
}
1280
1250
}
1281
1251
1282
- /**
1283
- * <p>Creates a custom Availability Zone (AZ).</p>
1284
- * <p>A custom AZ is an on-premises AZ that is integrated with a VMware vSphere cluster.</p>
1285
- * <p>For more information about RDS on VMware, see the
1286
- * <a href="https://docs.aws.amazon.com/AmazonRDS/latest/RDSonVMwareUserGuide/rds-on-vmware.html">
1287
- * RDS on VMware User Guide.</a>
1288
- * </p>
1289
- */
1290
- public createCustomAvailabilityZone (
1291
- args : CreateCustomAvailabilityZoneCommandInput ,
1292
- options ?: __HttpHandlerOptions
1293
- ) : Promise < CreateCustomAvailabilityZoneCommandOutput > ;
1294
- public createCustomAvailabilityZone (
1295
- args : CreateCustomAvailabilityZoneCommandInput ,
1296
- cb : ( err : any , data ?: CreateCustomAvailabilityZoneCommandOutput ) => void
1297
- ) : void ;
1298
- public createCustomAvailabilityZone (
1299
- args : CreateCustomAvailabilityZoneCommandInput ,
1300
- options : __HttpHandlerOptions ,
1301
- cb : ( err : any , data ?: CreateCustomAvailabilityZoneCommandOutput ) => void
1302
- ) : void ;
1303
- public createCustomAvailabilityZone (
1304
- args : CreateCustomAvailabilityZoneCommandInput ,
1305
- optionsOrCb ?: __HttpHandlerOptions | ( ( err : any , data ?: CreateCustomAvailabilityZoneCommandOutput ) => void ) ,
1306
- cb ?: ( err : any , data ?: CreateCustomAvailabilityZoneCommandOutput ) => void
1307
- ) : Promise < CreateCustomAvailabilityZoneCommandOutput > | void {
1308
- const command = new CreateCustomAvailabilityZoneCommand ( args ) ;
1309
- if ( typeof optionsOrCb === "function" ) {
1310
- this . send ( command , optionsOrCb ) ;
1311
- } else if ( typeof cb === "function" ) {
1312
- if ( typeof optionsOrCb !== "object" ) throw new Error ( `Expect http options but get ${ typeof optionsOrCb } ` ) ;
1313
- this . send ( command , optionsOrCb || { } , cb ) ;
1314
- } else {
1315
- return this . send ( command , optionsOrCb ) ;
1316
- }
1317
- }
1318
-
1319
1252
/**
1320
1253
* <p>Creates a custom DB engine version (CEV). A CEV is a binary volume snapshot of a database engine and specific
1321
1254
* AMI. The supported engines are the following:</p>
@@ -1976,43 +1909,6 @@ export class RDS extends RDSClient {
1976
1909
}
1977
1910
}
1978
1911
1979
- /**
1980
- * <p>Deletes a custom Availability Zone (AZ).</p>
1981
- * <p>A custom AZ is an on-premises AZ that is integrated with a VMware vSphere cluster.</p>
1982
- * <p>For more information about RDS on VMware, see the
1983
- * <a href="https://docs.aws.amazon.com/AmazonRDS/latest/RDSonVMwareUserGuide/rds-on-vmware.html">
1984
- * RDS on VMware User Guide.</a>
1985
- * </p>
1986
- */
1987
- public deleteCustomAvailabilityZone (
1988
- args : DeleteCustomAvailabilityZoneCommandInput ,
1989
- options ?: __HttpHandlerOptions
1990
- ) : Promise < DeleteCustomAvailabilityZoneCommandOutput > ;
1991
- public deleteCustomAvailabilityZone (
1992
- args : DeleteCustomAvailabilityZoneCommandInput ,
1993
- cb : ( err : any , data ?: DeleteCustomAvailabilityZoneCommandOutput ) => void
1994
- ) : void ;
1995
- public deleteCustomAvailabilityZone (
1996
- args : DeleteCustomAvailabilityZoneCommandInput ,
1997
- options : __HttpHandlerOptions ,
1998
- cb : ( err : any , data ?: DeleteCustomAvailabilityZoneCommandOutput ) => void
1999
- ) : void ;
2000
- public deleteCustomAvailabilityZone (
2001
- args : DeleteCustomAvailabilityZoneCommandInput ,
2002
- optionsOrCb ?: __HttpHandlerOptions | ( ( err : any , data ?: DeleteCustomAvailabilityZoneCommandOutput ) => void ) ,
2003
- cb ?: ( err : any , data ?: DeleteCustomAvailabilityZoneCommandOutput ) => void
2004
- ) : Promise < DeleteCustomAvailabilityZoneCommandOutput > | void {
2005
- const command = new DeleteCustomAvailabilityZoneCommand ( args ) ;
2006
- if ( typeof optionsOrCb === "function" ) {
2007
- this . send ( command , optionsOrCb ) ;
2008
- } else if ( typeof cb === "function" ) {
2009
- if ( typeof optionsOrCb !== "object" ) throw new Error ( `Expect http options but get ${ typeof optionsOrCb } ` ) ;
2010
- this . send ( command , optionsOrCb || { } , cb ) ;
2011
- } else {
2012
- return this . send ( command , optionsOrCb ) ;
2013
- }
2014
- }
2015
-
2016
1912
/**
2017
1913
* <p>Deletes a custom engine version. To run this command, make sure you meet the following prerequisites:</p>
2018
1914
* <ul>
@@ -2578,39 +2474,6 @@ export class RDS extends RDSClient {
2578
2474
}
2579
2475
}
2580
2476
2581
- /**
2582
- * <p>Deletes the installation medium for a DB engine that requires an on-premises customer provided license,
2583
- * such as Microsoft SQL Server.</p>
2584
- */
2585
- public deleteInstallationMedia (
2586
- args : DeleteInstallationMediaCommandInput ,
2587
- options ?: __HttpHandlerOptions
2588
- ) : Promise < DeleteInstallationMediaCommandOutput > ;
2589
- public deleteInstallationMedia (
2590
- args : DeleteInstallationMediaCommandInput ,
2591
- cb : ( err : any , data ?: DeleteInstallationMediaCommandOutput ) => void
2592
- ) : void ;
2593
- public deleteInstallationMedia (
2594
- args : DeleteInstallationMediaCommandInput ,
2595
- options : __HttpHandlerOptions ,
2596
- cb : ( err : any , data ?: DeleteInstallationMediaCommandOutput ) => void
2597
- ) : void ;
2598
- public deleteInstallationMedia (
2599
- args : DeleteInstallationMediaCommandInput ,
2600
- optionsOrCb ?: __HttpHandlerOptions | ( ( err : any , data ?: DeleteInstallationMediaCommandOutput ) => void ) ,
2601
- cb ?: ( err : any , data ?: DeleteInstallationMediaCommandOutput ) => void
2602
- ) : Promise < DeleteInstallationMediaCommandOutput > | void {
2603
- const command = new DeleteInstallationMediaCommand ( args ) ;
2604
- if ( typeof optionsOrCb === "function" ) {
2605
- this . send ( command , optionsOrCb ) ;
2606
- } else if ( typeof cb === "function" ) {
2607
- if ( typeof optionsOrCb !== "object" ) throw new Error ( `Expect http options but get ${ typeof optionsOrCb } ` ) ;
2608
- this . send ( command , optionsOrCb || { } , cb ) ;
2609
- } else {
2610
- return this . send ( command , optionsOrCb ) ;
2611
- }
2612
- }
2613
-
2614
2477
/**
2615
2478
* <p>Deletes an existing option group.</p>
2616
2479
*/
@@ -2740,43 +2603,6 @@ export class RDS extends RDSClient {
2740
2603
}
2741
2604
}
2742
2605
2743
- /**
2744
- * <p>Returns information about custom Availability Zones (AZs).</p>
2745
- * <p>A custom AZ is an on-premises AZ that is integrated with a VMware vSphere cluster.</p>
2746
- * <p>For more information about RDS on VMware, see the
2747
- * <a href="https://docs.aws.amazon.com/AmazonRDS/latest/RDSonVMwareUserGuide/rds-on-vmware.html">
2748
- * RDS on VMware User Guide.</a>
2749
- * </p>
2750
- */
2751
- public describeCustomAvailabilityZones (
2752
- args : DescribeCustomAvailabilityZonesCommandInput ,
2753
- options ?: __HttpHandlerOptions
2754
- ) : Promise < DescribeCustomAvailabilityZonesCommandOutput > ;
2755
- public describeCustomAvailabilityZones (
2756
- args : DescribeCustomAvailabilityZonesCommandInput ,
2757
- cb : ( err : any , data ?: DescribeCustomAvailabilityZonesCommandOutput ) => void
2758
- ) : void ;
2759
- public describeCustomAvailabilityZones (
2760
- args : DescribeCustomAvailabilityZonesCommandInput ,
2761
- options : __HttpHandlerOptions ,
2762
- cb : ( err : any , data ?: DescribeCustomAvailabilityZonesCommandOutput ) => void
2763
- ) : void ;
2764
- public describeCustomAvailabilityZones (
2765
- args : DescribeCustomAvailabilityZonesCommandInput ,
2766
- optionsOrCb ?: __HttpHandlerOptions | ( ( err : any , data ?: DescribeCustomAvailabilityZonesCommandOutput ) => void ) ,
2767
- cb ?: ( err : any , data ?: DescribeCustomAvailabilityZonesCommandOutput ) => void
2768
- ) : Promise < DescribeCustomAvailabilityZonesCommandOutput > | void {
2769
- const command = new DescribeCustomAvailabilityZonesCommand ( args ) ;
2770
- if ( typeof optionsOrCb === "function" ) {
2771
- this . send ( command , optionsOrCb ) ;
2772
- } else if ( typeof cb === "function" ) {
2773
- if ( typeof optionsOrCb !== "object" ) throw new Error ( `Expect http options but get ${ typeof optionsOrCb } ` ) ;
2774
- this . send ( command , optionsOrCb || { } , cb ) ;
2775
- } else {
2776
- return this . send ( command , optionsOrCb ) ;
2777
- }
2778
- }
2779
-
2780
2606
/**
2781
2607
* <p>Returns information about backtracks for a DB cluster.</p>
2782
2608
* <p>For more information on Amazon Aurora, see
@@ -3761,39 +3587,6 @@ export class RDS extends RDSClient {
3761
3587
}
3762
3588
}
3763
3589
3764
- /**
3765
- * <p>Describes the available installation media for a DB engine that requires an
3766
- * on-premises customer provided license, such as Microsoft SQL Server.</p>
3767
- */
3768
- public describeInstallationMedia (
3769
- args : DescribeInstallationMediaCommandInput ,
3770
- options ?: __HttpHandlerOptions
3771
- ) : Promise < DescribeInstallationMediaCommandOutput > ;
3772
- public describeInstallationMedia (
3773
- args : DescribeInstallationMediaCommandInput ,
3774
- cb : ( err : any , data ?: DescribeInstallationMediaCommandOutput ) => void
3775
- ) : void ;
3776
- public describeInstallationMedia (
3777
- args : DescribeInstallationMediaCommandInput ,
3778
- options : __HttpHandlerOptions ,
3779
- cb : ( err : any , data ?: DescribeInstallationMediaCommandOutput ) => void
3780
- ) : void ;
3781
- public describeInstallationMedia (
3782
- args : DescribeInstallationMediaCommandInput ,
3783
- optionsOrCb ?: __HttpHandlerOptions | ( ( err : any , data ?: DescribeInstallationMediaCommandOutput ) => void ) ,
3784
- cb ?: ( err : any , data ?: DescribeInstallationMediaCommandOutput ) => void
3785
- ) : Promise < DescribeInstallationMediaCommandOutput > | void {
3786
- const command = new DescribeInstallationMediaCommand ( args ) ;
3787
- if ( typeof optionsOrCb === "function" ) {
3788
- this . send ( command , optionsOrCb ) ;
3789
- } else if ( typeof cb === "function" ) {
3790
- if ( typeof optionsOrCb !== "object" ) throw new Error ( `Expect http options but get ${ typeof optionsOrCb } ` ) ;
3791
- this . send ( command , optionsOrCb || { } , cb ) ;
3792
- } else {
3793
- return this . send ( command , optionsOrCb ) ;
3794
- }
3795
- }
3796
-
3797
3590
/**
3798
3591
* <p>Describes all available options.</p>
3799
3592
*/
@@ -4178,39 +3971,6 @@ export class RDS extends RDSClient {
4178
3971
}
4179
3972
}
4180
3973
4181
- /**
4182
- * <p>Imports the installation media for a DB engine that requires an on-premises
4183
- * customer provided license, such as SQL Server.</p>
4184
- */
4185
- public importInstallationMedia (
4186
- args : ImportInstallationMediaCommandInput ,
4187
- options ?: __HttpHandlerOptions
4188
- ) : Promise < ImportInstallationMediaCommandOutput > ;
4189
- public importInstallationMedia (
4190
- args : ImportInstallationMediaCommandInput ,
4191
- cb : ( err : any , data ?: ImportInstallationMediaCommandOutput ) => void
4192
- ) : void ;
4193
- public importInstallationMedia (
4194
- args : ImportInstallationMediaCommandInput ,
4195
- options : __HttpHandlerOptions ,
4196
- cb : ( err : any , data ?: ImportInstallationMediaCommandOutput ) => void
4197
- ) : void ;
4198
- public importInstallationMedia (
4199
- args : ImportInstallationMediaCommandInput ,
4200
- optionsOrCb ?: __HttpHandlerOptions | ( ( err : any , data ?: ImportInstallationMediaCommandOutput ) => void ) ,
4201
- cb ?: ( err : any , data ?: ImportInstallationMediaCommandOutput ) => void
4202
- ) : Promise < ImportInstallationMediaCommandOutput > | void {
4203
- const command = new ImportInstallationMediaCommand ( args ) ;
4204
- if ( typeof optionsOrCb === "function" ) {
4205
- this . send ( command , optionsOrCb ) ;
4206
- } else if ( typeof cb === "function" ) {
4207
- if ( typeof optionsOrCb !== "object" ) throw new Error ( `Expect http options but get ${ typeof optionsOrCb } ` ) ;
4208
- this . send ( command , optionsOrCb || { } , cb ) ;
4209
- } else {
4210
- return this . send ( command , optionsOrCb ) ;
4211
- }
4212
- }
4213
-
4214
3974
/**
4215
3975
* <p>Lists all tags on an Amazon RDS resource.</p>
4216
3976
* <p>For an overview on tagging an Amazon RDS resource,
@@ -4248,7 +4008,7 @@ export class RDS extends RDSClient {
4248
4008
4249
4009
/**
4250
4010
* <p>Override the system-default Secure Sockets Layer/Transport Layer Security (SSL/TLS)
4251
- * certificate for Amazon RDS for new DB instances temporarily , or remove the override.</p>
4011
+ * certificate for Amazon RDS for new DB instances, or remove the override.</p>
4252
4012
* <p>By using this operation, you can specify an RDS-approved SSL/TLS certificate for new DB
4253
4013
* instances that is different from the default certificate provided by RDS. You can also
4254
4014
* use this operation to remove the override, so that new DB instances use the default
0 commit comments