@@ -194,6 +194,11 @@ import {
194
194
DeletePartnerCommandInput ,
195
195
DeletePartnerCommandOutput ,
196
196
} from "./commands/DeletePartnerCommand" ;
197
+ import {
198
+ DeleteResourcePolicyCommand ,
199
+ DeleteResourcePolicyCommandInput ,
200
+ DeleteResourcePolicyCommandOutput ,
201
+ } from "./commands/DeleteResourcePolicyCommand" ;
197
202
import {
198
203
DeleteScheduledActionCommand ,
199
204
DeleteScheduledActionCommandInput ,
@@ -330,6 +335,11 @@ import {
330
335
DescribeHsmConfigurationsCommandInput ,
331
336
DescribeHsmConfigurationsCommandOutput ,
332
337
} from "./commands/DescribeHsmConfigurationsCommand" ;
338
+ import {
339
+ DescribeInboundIntegrationsCommand ,
340
+ DescribeInboundIntegrationsCommandInput ,
341
+ DescribeInboundIntegrationsCommandOutput ,
342
+ } from "./commands/DescribeInboundIntegrationsCommand" ;
333
343
import {
334
344
DescribeLoggingStatusCommand ,
335
345
DescribeLoggingStatusCommandInput ,
@@ -450,6 +460,11 @@ import {
450
460
GetReservedNodeExchangeOfferingsCommandInput ,
451
461
GetReservedNodeExchangeOfferingsCommandOutput ,
452
462
} from "./commands/GetReservedNodeExchangeOfferingsCommand" ;
463
+ import {
464
+ GetResourcePolicyCommand ,
465
+ GetResourcePolicyCommandInput ,
466
+ GetResourcePolicyCommandOutput ,
467
+ } from "./commands/GetResourcePolicyCommand" ;
453
468
import {
454
469
ModifyAquaConfigurationCommand ,
455
470
ModifyAquaConfigurationCommandInput ,
@@ -545,6 +560,11 @@ import {
545
560
PurchaseReservedNodeOfferingCommandInput ,
546
561
PurchaseReservedNodeOfferingCommandOutput ,
547
562
} from "./commands/PurchaseReservedNodeOfferingCommand" ;
563
+ import {
564
+ PutResourcePolicyCommand ,
565
+ PutResourcePolicyCommandInput ,
566
+ PutResourcePolicyCommandOutput ,
567
+ } from "./commands/PutResourcePolicyCommand" ;
548
568
import {
549
569
RebootClusterCommand ,
550
570
RebootClusterCommandInput ,
@@ -648,6 +668,7 @@ const commands = {
648
668
DeleteHsmClientCertificateCommand,
649
669
DeleteHsmConfigurationCommand,
650
670
DeletePartnerCommand,
671
+ DeleteResourcePolicyCommand,
651
672
DeleteScheduledActionCommand,
652
673
DeleteSnapshotCopyGrantCommand,
653
674
DeleteSnapshotScheduleCommand,
@@ -676,6 +697,7 @@ const commands = {
676
697
DescribeEventSubscriptionsCommand,
677
698
DescribeHsmClientCertificatesCommand,
678
699
DescribeHsmConfigurationsCommand,
700
+ DescribeInboundIntegrationsCommand,
679
701
DescribeLoggingStatusCommand,
680
702
DescribeNodeConfigurationOptionsCommand,
681
703
DescribeOrderableClusterOptionsCommand,
@@ -700,6 +722,7 @@ const commands = {
700
722
GetClusterCredentialsWithIAMCommand,
701
723
GetReservedNodeExchangeConfigurationOptionsCommand,
702
724
GetReservedNodeExchangeOfferingsCommand,
725
+ GetResourcePolicyCommand,
703
726
ModifyAquaConfigurationCommand,
704
727
ModifyAuthenticationProfileCommand,
705
728
ModifyClusterCommand,
@@ -719,6 +742,7 @@ const commands = {
719
742
ModifyUsageLimitCommand,
720
743
PauseClusterCommand,
721
744
PurchaseReservedNodeOfferingCommand,
745
+ PutResourcePolicyCommand,
722
746
RebootClusterCommand,
723
747
RejectDataShareCommand,
724
748
ResetClusterParameterGroupCommand,
@@ -1378,6 +1402,23 @@ export interface Redshift {
1378
1402
cb : ( err : any , data ?: DeletePartnerCommandOutput ) => void
1379
1403
) : void ;
1380
1404
1405
+ /**
1406
+ * @see {@link DeleteResourcePolicyCommand }
1407
+ */
1408
+ deleteResourcePolicy (
1409
+ args : DeleteResourcePolicyCommandInput ,
1410
+ options ?: __HttpHandlerOptions
1411
+ ) : Promise < DeleteResourcePolicyCommandOutput > ;
1412
+ deleteResourcePolicy (
1413
+ args : DeleteResourcePolicyCommandInput ,
1414
+ cb : ( err : any , data ?: DeleteResourcePolicyCommandOutput ) => void
1415
+ ) : void ;
1416
+ deleteResourcePolicy (
1417
+ args : DeleteResourcePolicyCommandInput ,
1418
+ options : __HttpHandlerOptions ,
1419
+ cb : ( err : any , data ?: DeleteResourcePolicyCommandOutput ) => void
1420
+ ) : void ;
1421
+
1381
1422
/**
1382
1423
* @see {@link DeleteScheduledActionCommand }
1383
1424
*/
@@ -1845,6 +1886,23 @@ export interface Redshift {
1845
1886
cb : ( err : any , data ?: DescribeHsmConfigurationsCommandOutput ) => void
1846
1887
) : void ;
1847
1888
1889
+ /**
1890
+ * @see {@link DescribeInboundIntegrationsCommand }
1891
+ */
1892
+ describeInboundIntegrations (
1893
+ args : DescribeInboundIntegrationsCommandInput ,
1894
+ options ?: __HttpHandlerOptions
1895
+ ) : Promise < DescribeInboundIntegrationsCommandOutput > ;
1896
+ describeInboundIntegrations (
1897
+ args : DescribeInboundIntegrationsCommandInput ,
1898
+ cb : ( err : any , data ?: DescribeInboundIntegrationsCommandOutput ) => void
1899
+ ) : void ;
1900
+ describeInboundIntegrations (
1901
+ args : DescribeInboundIntegrationsCommandInput ,
1902
+ options : __HttpHandlerOptions ,
1903
+ cb : ( err : any , data ?: DescribeInboundIntegrationsCommandOutput ) => void
1904
+ ) : void ;
1905
+
1848
1906
/**
1849
1907
* @see {@link DescribeLoggingStatusCommand }
1850
1908
*/
@@ -2232,6 +2290,23 @@ export interface Redshift {
2232
2290
cb : ( err : any , data ?: GetReservedNodeExchangeOfferingsCommandOutput ) => void
2233
2291
) : void ;
2234
2292
2293
+ /**
2294
+ * @see {@link GetResourcePolicyCommand }
2295
+ */
2296
+ getResourcePolicy (
2297
+ args : GetResourcePolicyCommandInput ,
2298
+ options ?: __HttpHandlerOptions
2299
+ ) : Promise < GetResourcePolicyCommandOutput > ;
2300
+ getResourcePolicy (
2301
+ args : GetResourcePolicyCommandInput ,
2302
+ cb : ( err : any , data ?: GetResourcePolicyCommandOutput ) => void
2303
+ ) : void ;
2304
+ getResourcePolicy (
2305
+ args : GetResourcePolicyCommandInput ,
2306
+ options : __HttpHandlerOptions ,
2307
+ cb : ( err : any , data ?: GetResourcePolicyCommandOutput ) => void
2308
+ ) : void ;
2309
+
2235
2310
/**
2236
2311
* @see {@link ModifyAquaConfigurationCommand }
2237
2312
*/
@@ -2543,6 +2618,23 @@ export interface Redshift {
2543
2618
cb : ( err : any , data ?: PurchaseReservedNodeOfferingCommandOutput ) => void
2544
2619
) : void ;
2545
2620
2621
+ /**
2622
+ * @see {@link PutResourcePolicyCommand }
2623
+ */
2624
+ putResourcePolicy (
2625
+ args : PutResourcePolicyCommandInput ,
2626
+ options ?: __HttpHandlerOptions
2627
+ ) : Promise < PutResourcePolicyCommandOutput > ;
2628
+ putResourcePolicy (
2629
+ args : PutResourcePolicyCommandInput ,
2630
+ cb : ( err : any , data ?: PutResourcePolicyCommandOutput ) => void
2631
+ ) : void ;
2632
+ putResourcePolicy (
2633
+ args : PutResourcePolicyCommandInput ,
2634
+ options : __HttpHandlerOptions ,
2635
+ cb : ( err : any , data ?: PutResourcePolicyCommandOutput ) => void
2636
+ ) : void ;
2637
+
2546
2638
/**
2547
2639
* @see {@link RebootClusterCommand }
2548
2640
*/
0 commit comments