localstack-core 4.4.1.dev11__py3-none-any.whl → 4.4.1.dev13__py3-none-any.whl
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.
- localstack/aws/api/acm/__init__.py +19 -19
- localstack/aws/api/apigateway/__init__.py +202 -187
- localstack/aws/api/cloudcontrol/__init__.py +19 -19
- localstack/aws/api/cloudformation/__init__.py +240 -236
- localstack/aws/api/cloudwatch/__init__.py +108 -108
- localstack/aws/api/config/__init__.py +190 -174
- localstack/aws/api/dynamodb/__init__.py +176 -170
- localstack/aws/api/dynamodbstreams/__init__.py +7 -7
- localstack/aws/api/ec2/__init__.py +2415 -2348
- localstack/aws/api/es/__init__.py +81 -73
- localstack/aws/api/events/__init__.py +114 -110
- localstack/aws/api/firehose/__init__.py +43 -36
- localstack/aws/api/iam/__init__.py +189 -185
- localstack/aws/api/kinesis/__init__.py +70 -70
- localstack/aws/api/kms/__init__.py +126 -122
- localstack/aws/api/lambda_/__init__.py +191 -191
- localstack/aws/api/logs/__init__.py +150 -150
- localstack/aws/api/opensearch/__init__.py +138 -130
- localstack/aws/api/pipes/__init__.py +25 -25
- localstack/aws/api/redshift/__init__.py +420 -420
- localstack/aws/api/resource_groups/__init__.py +44 -44
- localstack/aws/api/resourcegroupstaggingapi/__init__.py +17 -17
- localstack/aws/api/route53/__init__.py +86 -82
- localstack/aws/api/route53resolver/__init__.py +103 -103
- localstack/aws/api/s3/__init__.py +489 -489
- localstack/aws/api/s3control/__init__.py +69 -69
- localstack/aws/api/scheduler/__init__.py +36 -32
- localstack/aws/api/secretsmanager/__init__.py +51 -51
- localstack/aws/api/ses/__init__.py +55 -55
- localstack/aws/api/sns/__init__.py +35 -31
- localstack/aws/api/sqs/__init__.py +24 -24
- localstack/aws/api/ssm/__init__.py +439 -439
- localstack/aws/api/stepfunctions/__init__.py +58 -58
- localstack/aws/api/sts/__init__.py +25 -25
- localstack/aws/api/support/__init__.py +29 -29
- localstack/aws/api/swf/__init__.py +88 -84
- localstack/aws/api/transcribe/__init__.py +80 -80
- localstack/aws/scaffold.py +1 -1
- localstack/testing/aws/asf_utils.py +7 -3
- localstack/version.py +2 -2
- {localstack_core-4.4.1.dev11.dist-info → localstack_core-4.4.1.dev13.dist-info}/METADATA +1 -1
- {localstack_core-4.4.1.dev11.dist-info → localstack_core-4.4.1.dev13.dist-info}/RECORD +50 -50
- localstack_core-4.4.1.dev13.dist-info/plux.json +1 -0
- localstack_core-4.4.1.dev11.dist-info/plux.json +0 -1
- {localstack_core-4.4.1.dev11.data → localstack_core-4.4.1.dev13.data}/scripts/localstack +0 -0
- {localstack_core-4.4.1.dev11.data → localstack_core-4.4.1.dev13.data}/scripts/localstack-supervisor +0 -0
- {localstack_core-4.4.1.dev11.data → localstack_core-4.4.1.dev13.data}/scripts/localstack.bat +0 -0
- {localstack_core-4.4.1.dev11.dist-info → localstack_core-4.4.1.dev13.dist-info}/WHEEL +0 -0
- {localstack_core-4.4.1.dev11.dist-info → localstack_core-4.4.1.dev13.dist-info}/entry_points.txt +0 -0
- {localstack_core-4.4.1.dev11.dist-info → localstack_core-4.4.1.dev13.dist-info}/licenses/LICENSE.txt +0 -0
- {localstack_core-4.4.1.dev11.dist-info → localstack_core-4.4.1.dev13.dist-info}/top_level.txt +0 -0
@@ -3630,10 +3630,10 @@ class RedshiftApi:
|
|
3630
3630
|
self,
|
3631
3631
|
context: RequestContext,
|
3632
3632
|
data_share_arn: String,
|
3633
|
-
associate_entire_account: BooleanOptional = None,
|
3634
|
-
consumer_arn: String = None,
|
3635
|
-
consumer_region: String = None,
|
3636
|
-
allow_writes: BooleanOptional = None,
|
3633
|
+
associate_entire_account: BooleanOptional | None = None,
|
3634
|
+
consumer_arn: String | None = None,
|
3635
|
+
consumer_region: String | None = None,
|
3636
|
+
allow_writes: BooleanOptional | None = None,
|
3637
3637
|
**kwargs,
|
3638
3638
|
) -> DataShare:
|
3639
3639
|
raise NotImplementedError
|
@@ -3643,9 +3643,9 @@ class RedshiftApi:
|
|
3643
3643
|
self,
|
3644
3644
|
context: RequestContext,
|
3645
3645
|
cluster_security_group_name: String,
|
3646
|
-
cidrip: String = None,
|
3647
|
-
ec2_security_group_name: String = None,
|
3648
|
-
ec2_security_group_owner_id: String = None,
|
3646
|
+
cidrip: String | None = None,
|
3647
|
+
ec2_security_group_name: String | None = None,
|
3648
|
+
ec2_security_group_owner_id: String | None = None,
|
3649
3649
|
**kwargs,
|
3650
3650
|
) -> AuthorizeClusterSecurityGroupIngressResult:
|
3651
3651
|
raise NotImplementedError
|
@@ -3656,7 +3656,7 @@ class RedshiftApi:
|
|
3656
3656
|
context: RequestContext,
|
3657
3657
|
data_share_arn: String,
|
3658
3658
|
consumer_identifier: String,
|
3659
|
-
allow_writes: BooleanOptional = None,
|
3659
|
+
allow_writes: BooleanOptional | None = None,
|
3660
3660
|
**kwargs,
|
3661
3661
|
) -> DataShare:
|
3662
3662
|
raise NotImplementedError
|
@@ -3666,8 +3666,8 @@ class RedshiftApi:
|
|
3666
3666
|
self,
|
3667
3667
|
context: RequestContext,
|
3668
3668
|
account: String,
|
3669
|
-
cluster_identifier: String = None,
|
3670
|
-
vpc_ids: VpcIdentifierList = None,
|
3669
|
+
cluster_identifier: String | None = None,
|
3670
|
+
vpc_ids: VpcIdentifierList | None = None,
|
3671
3671
|
**kwargs,
|
3672
3672
|
) -> EndpointAuthorization:
|
3673
3673
|
raise NotImplementedError
|
@@ -3677,9 +3677,9 @@ class RedshiftApi:
|
|
3677
3677
|
self,
|
3678
3678
|
context: RequestContext,
|
3679
3679
|
account_with_restore_access: String,
|
3680
|
-
snapshot_identifier: String = None,
|
3681
|
-
snapshot_arn: String = None,
|
3682
|
-
snapshot_cluster_identifier: String = None,
|
3680
|
+
snapshot_identifier: String | None = None,
|
3681
|
+
snapshot_arn: String | None = None,
|
3682
|
+
snapshot_cluster_identifier: String | None = None,
|
3683
3683
|
**kwargs,
|
3684
3684
|
) -> AuthorizeSnapshotAccessResult:
|
3685
3685
|
raise NotImplementedError
|
@@ -3695,8 +3695,8 @@ class RedshiftApi:
|
|
3695
3695
|
self,
|
3696
3696
|
context: RequestContext,
|
3697
3697
|
snapshot_identifier_list: SnapshotIdentifierList,
|
3698
|
-
manual_snapshot_retention_period: IntegerOptional = None,
|
3699
|
-
force: Boolean = None,
|
3698
|
+
manual_snapshot_retention_period: IntegerOptional | None = None,
|
3699
|
+
force: Boolean | None = None,
|
3700
3700
|
**kwargs,
|
3701
3701
|
) -> BatchModifyClusterSnapshotsOutputMessage:
|
3702
3702
|
raise NotImplementedError
|
@@ -3713,8 +3713,8 @@ class RedshiftApi:
|
|
3713
3713
|
context: RequestContext,
|
3714
3714
|
source_snapshot_identifier: String,
|
3715
3715
|
target_snapshot_identifier: String,
|
3716
|
-
source_snapshot_cluster_identifier: String = None,
|
3717
|
-
manual_snapshot_retention_period: IntegerOptional = None,
|
3716
|
+
source_snapshot_cluster_identifier: String | None = None,
|
3717
|
+
manual_snapshot_retention_period: IntegerOptional | None = None,
|
3718
3718
|
**kwargs,
|
3719
3719
|
) -> CopyClusterSnapshotResult:
|
3720
3720
|
raise NotImplementedError
|
@@ -3736,42 +3736,42 @@ class RedshiftApi:
|
|
3736
3736
|
cluster_identifier: String,
|
3737
3737
|
node_type: String,
|
3738
3738
|
master_username: String,
|
3739
|
-
db_name: String = None,
|
3740
|
-
cluster_type: String = None,
|
3741
|
-
master_user_password: SensitiveString = None,
|
3742
|
-
cluster_security_groups: ClusterSecurityGroupNameList = None,
|
3743
|
-
vpc_security_group_ids: VpcSecurityGroupIdList = None,
|
3744
|
-
cluster_subnet_group_name: String = None,
|
3745
|
-
availability_zone: String = None,
|
3746
|
-
preferred_maintenance_window: String = None,
|
3747
|
-
cluster_parameter_group_name: String = None,
|
3748
|
-
automated_snapshot_retention_period: IntegerOptional = None,
|
3749
|
-
manual_snapshot_retention_period: IntegerOptional = None,
|
3750
|
-
port: IntegerOptional = None,
|
3751
|
-
cluster_version: String = None,
|
3752
|
-
allow_version_upgrade: BooleanOptional = None,
|
3753
|
-
number_of_nodes: IntegerOptional = None,
|
3754
|
-
publicly_accessible: BooleanOptional = None,
|
3755
|
-
encrypted: BooleanOptional = None,
|
3756
|
-
hsm_client_certificate_identifier: String = None,
|
3757
|
-
hsm_configuration_identifier: String = None,
|
3758
|
-
elastic_ip: String = None,
|
3759
|
-
tags: TagList = None,
|
3760
|
-
kms_key_id: String = None,
|
3761
|
-
enhanced_vpc_routing: BooleanOptional = None,
|
3762
|
-
additional_info: String = None,
|
3763
|
-
iam_roles: IamRoleArnList = None,
|
3764
|
-
maintenance_track_name: String = None,
|
3765
|
-
snapshot_schedule_identifier: String = None,
|
3766
|
-
availability_zone_relocation: BooleanOptional = None,
|
3767
|
-
aqua_configuration_status: AquaConfigurationStatus = None,
|
3768
|
-
default_iam_role_arn: String = None,
|
3769
|
-
load_sample_data: String = None,
|
3770
|
-
manage_master_password: BooleanOptional = None,
|
3771
|
-
master_password_secret_kms_key_id: String = None,
|
3772
|
-
ip_address_type: String = None,
|
3773
|
-
multi_az: BooleanOptional = None,
|
3774
|
-
redshift_idc_application_arn: String = None,
|
3739
|
+
db_name: String | None = None,
|
3740
|
+
cluster_type: String | None = None,
|
3741
|
+
master_user_password: SensitiveString | None = None,
|
3742
|
+
cluster_security_groups: ClusterSecurityGroupNameList | None = None,
|
3743
|
+
vpc_security_group_ids: VpcSecurityGroupIdList | None = None,
|
3744
|
+
cluster_subnet_group_name: String | None = None,
|
3745
|
+
availability_zone: String | None = None,
|
3746
|
+
preferred_maintenance_window: String | None = None,
|
3747
|
+
cluster_parameter_group_name: String | None = None,
|
3748
|
+
automated_snapshot_retention_period: IntegerOptional | None = None,
|
3749
|
+
manual_snapshot_retention_period: IntegerOptional | None = None,
|
3750
|
+
port: IntegerOptional | None = None,
|
3751
|
+
cluster_version: String | None = None,
|
3752
|
+
allow_version_upgrade: BooleanOptional | None = None,
|
3753
|
+
number_of_nodes: IntegerOptional | None = None,
|
3754
|
+
publicly_accessible: BooleanOptional | None = None,
|
3755
|
+
encrypted: BooleanOptional | None = None,
|
3756
|
+
hsm_client_certificate_identifier: String | None = None,
|
3757
|
+
hsm_configuration_identifier: String | None = None,
|
3758
|
+
elastic_ip: String | None = None,
|
3759
|
+
tags: TagList | None = None,
|
3760
|
+
kms_key_id: String | None = None,
|
3761
|
+
enhanced_vpc_routing: BooleanOptional | None = None,
|
3762
|
+
additional_info: String | None = None,
|
3763
|
+
iam_roles: IamRoleArnList | None = None,
|
3764
|
+
maintenance_track_name: String | None = None,
|
3765
|
+
snapshot_schedule_identifier: String | None = None,
|
3766
|
+
availability_zone_relocation: BooleanOptional | None = None,
|
3767
|
+
aqua_configuration_status: AquaConfigurationStatus | None = None,
|
3768
|
+
default_iam_role_arn: String | None = None,
|
3769
|
+
load_sample_data: String | None = None,
|
3770
|
+
manage_master_password: BooleanOptional | None = None,
|
3771
|
+
master_password_secret_kms_key_id: String | None = None,
|
3772
|
+
ip_address_type: String | None = None,
|
3773
|
+
multi_az: BooleanOptional | None = None,
|
3774
|
+
redshift_idc_application_arn: String | None = None,
|
3775
3775
|
**kwargs,
|
3776
3776
|
) -> CreateClusterResult:
|
3777
3777
|
raise NotImplementedError
|
@@ -3783,7 +3783,7 @@ class RedshiftApi:
|
|
3783
3783
|
parameter_group_name: String,
|
3784
3784
|
parameter_group_family: String,
|
3785
3785
|
description: String,
|
3786
|
-
tags: TagList = None,
|
3786
|
+
tags: TagList | None = None,
|
3787
3787
|
**kwargs,
|
3788
3788
|
) -> CreateClusterParameterGroupResult:
|
3789
3789
|
raise NotImplementedError
|
@@ -3794,7 +3794,7 @@ class RedshiftApi:
|
|
3794
3794
|
context: RequestContext,
|
3795
3795
|
cluster_security_group_name: String,
|
3796
3796
|
description: String,
|
3797
|
-
tags: TagList = None,
|
3797
|
+
tags: TagList | None = None,
|
3798
3798
|
**kwargs,
|
3799
3799
|
) -> CreateClusterSecurityGroupResult:
|
3800
3800
|
raise NotImplementedError
|
@@ -3805,8 +3805,8 @@ class RedshiftApi:
|
|
3805
3805
|
context: RequestContext,
|
3806
3806
|
snapshot_identifier: String,
|
3807
3807
|
cluster_identifier: String,
|
3808
|
-
manual_snapshot_retention_period: IntegerOptional = None,
|
3809
|
-
tags: TagList = None,
|
3808
|
+
manual_snapshot_retention_period: IntegerOptional | None = None,
|
3809
|
+
tags: TagList | None = None,
|
3810
3810
|
**kwargs,
|
3811
3811
|
) -> CreateClusterSnapshotResult:
|
3812
3812
|
raise NotImplementedError
|
@@ -3818,7 +3818,7 @@ class RedshiftApi:
|
|
3818
3818
|
cluster_subnet_group_name: String,
|
3819
3819
|
description: String,
|
3820
3820
|
subnet_ids: SubnetIdentifierList,
|
3821
|
-
tags: TagList = None,
|
3821
|
+
tags: TagList | None = None,
|
3822
3822
|
**kwargs,
|
3823
3823
|
) -> CreateClusterSubnetGroupResult:
|
3824
3824
|
raise NotImplementedError
|
@@ -3840,9 +3840,9 @@ class RedshiftApi:
|
|
3840
3840
|
context: RequestContext,
|
3841
3841
|
endpoint_name: String,
|
3842
3842
|
subnet_group_name: String,
|
3843
|
-
cluster_identifier: String = None,
|
3844
|
-
resource_owner: String = None,
|
3845
|
-
vpc_security_group_ids: VpcSecurityGroupIdList = None,
|
3843
|
+
cluster_identifier: String | None = None,
|
3844
|
+
resource_owner: String | None = None,
|
3845
|
+
vpc_security_group_ids: VpcSecurityGroupIdList | None = None,
|
3846
3846
|
**kwargs,
|
3847
3847
|
) -> EndpointAccess:
|
3848
3848
|
raise NotImplementedError
|
@@ -3853,12 +3853,12 @@ class RedshiftApi:
|
|
3853
3853
|
context: RequestContext,
|
3854
3854
|
subscription_name: String,
|
3855
3855
|
sns_topic_arn: String,
|
3856
|
-
source_type: String = None,
|
3857
|
-
source_ids: SourceIdsList = None,
|
3858
|
-
event_categories: EventCategoriesList = None,
|
3859
|
-
severity: String = None,
|
3860
|
-
enabled: BooleanOptional = None,
|
3861
|
-
tags: TagList = None,
|
3856
|
+
source_type: String | None = None,
|
3857
|
+
source_ids: SourceIdsList | None = None,
|
3858
|
+
event_categories: EventCategoriesList | None = None,
|
3859
|
+
severity: String | None = None,
|
3860
|
+
enabled: BooleanOptional | None = None,
|
3861
|
+
tags: TagList | None = None,
|
3862
3862
|
**kwargs,
|
3863
3863
|
) -> CreateEventSubscriptionResult:
|
3864
3864
|
raise NotImplementedError
|
@@ -3868,7 +3868,7 @@ class RedshiftApi:
|
|
3868
3868
|
self,
|
3869
3869
|
context: RequestContext,
|
3870
3870
|
hsm_client_certificate_identifier: String,
|
3871
|
-
tags: TagList = None,
|
3871
|
+
tags: TagList | None = None,
|
3872
3872
|
**kwargs,
|
3873
3873
|
) -> CreateHsmClientCertificateResult:
|
3874
3874
|
raise NotImplementedError
|
@@ -3883,7 +3883,7 @@ class RedshiftApi:
|
|
3883
3883
|
hsm_partition_name: String,
|
3884
3884
|
hsm_partition_password: String,
|
3885
3885
|
hsm_server_public_certificate: String,
|
3886
|
-
tags: TagList = None,
|
3886
|
+
tags: TagList | None = None,
|
3887
3887
|
**kwargs,
|
3888
3888
|
) -> CreateHsmConfigurationResult:
|
3889
3889
|
raise NotImplementedError
|
@@ -3895,10 +3895,10 @@ class RedshiftApi:
|
|
3895
3895
|
source_arn: SourceArn,
|
3896
3896
|
target_arn: TargetArn,
|
3897
3897
|
integration_name: IntegrationName,
|
3898
|
-
kms_key_id: String = None,
|
3899
|
-
tag_list: TagList = None,
|
3900
|
-
additional_encryption_context: EncryptionContextMap = None,
|
3901
|
-
description: IntegrationDescription = None,
|
3898
|
+
kms_key_id: String | None = None,
|
3899
|
+
tag_list: TagList | None = None,
|
3900
|
+
additional_encryption_context: EncryptionContextMap | None = None,
|
3901
|
+
description: IntegrationDescription | None = None,
|
3902
3902
|
**kwargs,
|
3903
3903
|
) -> Integration:
|
3904
3904
|
raise NotImplementedError
|
@@ -3911,9 +3911,9 @@ class RedshiftApi:
|
|
3911
3911
|
redshift_idc_application_name: RedshiftIdcApplicationName,
|
3912
3912
|
idc_display_name: IdcDisplayNameString,
|
3913
3913
|
iam_role_arn: String,
|
3914
|
-
identity_namespace: IdentityNamespaceString = None,
|
3915
|
-
authorized_token_issuer_list: AuthorizedTokenIssuerList = None,
|
3916
|
-
service_integrations: ServiceIntegrationList = None,
|
3914
|
+
identity_namespace: IdentityNamespaceString | None = None,
|
3915
|
+
authorized_token_issuer_list: AuthorizedTokenIssuerList | None = None,
|
3916
|
+
service_integrations: ServiceIntegrationList | None = None,
|
3917
3917
|
**kwargs,
|
3918
3918
|
) -> CreateRedshiftIdcApplicationResult:
|
3919
3919
|
raise NotImplementedError
|
@@ -3926,10 +3926,10 @@ class RedshiftApi:
|
|
3926
3926
|
target_action: ScheduledActionType,
|
3927
3927
|
schedule: String,
|
3928
3928
|
iam_role: String,
|
3929
|
-
scheduled_action_description: String = None,
|
3930
|
-
start_time: TStamp = None,
|
3931
|
-
end_time: TStamp = None,
|
3932
|
-
enable: BooleanOptional = None,
|
3929
|
+
scheduled_action_description: String | None = None,
|
3930
|
+
start_time: TStamp | None = None,
|
3931
|
+
end_time: TStamp | None = None,
|
3932
|
+
enable: BooleanOptional | None = None,
|
3933
3933
|
**kwargs,
|
3934
3934
|
) -> ScheduledAction:
|
3935
3935
|
raise NotImplementedError
|
@@ -3939,8 +3939,8 @@ class RedshiftApi:
|
|
3939
3939
|
self,
|
3940
3940
|
context: RequestContext,
|
3941
3941
|
snapshot_copy_grant_name: String,
|
3942
|
-
kms_key_id: String = None,
|
3943
|
-
tags: TagList = None,
|
3942
|
+
kms_key_id: String | None = None,
|
3943
|
+
tags: TagList | None = None,
|
3944
3944
|
**kwargs,
|
3945
3945
|
) -> CreateSnapshotCopyGrantResult:
|
3946
3946
|
raise NotImplementedError
|
@@ -3949,12 +3949,12 @@ class RedshiftApi:
|
|
3949
3949
|
def create_snapshot_schedule(
|
3950
3950
|
self,
|
3951
3951
|
context: RequestContext,
|
3952
|
-
schedule_definitions: ScheduleDefinitionList = None,
|
3953
|
-
schedule_identifier: String = None,
|
3954
|
-
schedule_description: String = None,
|
3955
|
-
tags: TagList = None,
|
3956
|
-
dry_run: BooleanOptional = None,
|
3957
|
-
next_invocations: IntegerOptional = None,
|
3952
|
+
schedule_definitions: ScheduleDefinitionList | None = None,
|
3953
|
+
schedule_identifier: String | None = None,
|
3954
|
+
schedule_description: String | None = None,
|
3955
|
+
tags: TagList | None = None,
|
3956
|
+
dry_run: BooleanOptional | None = None,
|
3957
|
+
next_invocations: IntegerOptional | None = None,
|
3958
3958
|
**kwargs,
|
3959
3959
|
) -> SnapshotSchedule:
|
3960
3960
|
raise NotImplementedError
|
@@ -3973,9 +3973,9 @@ class RedshiftApi:
|
|
3973
3973
|
feature_type: UsageLimitFeatureType,
|
3974
3974
|
limit_type: UsageLimitLimitType,
|
3975
3975
|
amount: Long,
|
3976
|
-
period: UsageLimitPeriod = None,
|
3977
|
-
breach_action: UsageLimitBreachAction = None,
|
3978
|
-
tags: TagList = None,
|
3976
|
+
period: UsageLimitPeriod | None = None,
|
3977
|
+
breach_action: UsageLimitBreachAction | None = None,
|
3978
|
+
tags: TagList | None = None,
|
3979
3979
|
**kwargs,
|
3980
3980
|
) -> UsageLimit:
|
3981
3981
|
raise NotImplementedError
|
@@ -4000,9 +4000,9 @@ class RedshiftApi:
|
|
4000
4000
|
self,
|
4001
4001
|
context: RequestContext,
|
4002
4002
|
cluster_identifier: String,
|
4003
|
-
skip_final_cluster_snapshot: Boolean = None,
|
4004
|
-
final_cluster_snapshot_identifier: String = None,
|
4005
|
-
final_cluster_snapshot_retention_period: IntegerOptional = None,
|
4003
|
+
skip_final_cluster_snapshot: Boolean | None = None,
|
4004
|
+
final_cluster_snapshot_identifier: String | None = None,
|
4005
|
+
final_cluster_snapshot_retention_period: IntegerOptional | None = None,
|
4006
4006
|
**kwargs,
|
4007
4007
|
) -> DeleteClusterResult:
|
4008
4008
|
raise NotImplementedError
|
@@ -4024,7 +4024,7 @@ class RedshiftApi:
|
|
4024
4024
|
self,
|
4025
4025
|
context: RequestContext,
|
4026
4026
|
snapshot_identifier: String,
|
4027
|
-
snapshot_cluster_identifier: String = None,
|
4027
|
+
snapshot_cluster_identifier: String | None = None,
|
4028
4028
|
**kwargs,
|
4029
4029
|
) -> DeleteClusterSnapshotResult:
|
4030
4030
|
raise NotImplementedError
|
@@ -4139,7 +4139,7 @@ class RedshiftApi:
|
|
4139
4139
|
|
4140
4140
|
@handler("DescribeAccountAttributes")
|
4141
4141
|
def describe_account_attributes(
|
4142
|
-
self, context: RequestContext, attribute_names: AttributeNameList = None, **kwargs
|
4142
|
+
self, context: RequestContext, attribute_names: AttributeNameList | None = None, **kwargs
|
4143
4143
|
) -> AccountAttributeList:
|
4144
4144
|
raise NotImplementedError
|
4145
4145
|
|
@@ -4147,7 +4147,7 @@ class RedshiftApi:
|
|
4147
4147
|
def describe_authentication_profiles(
|
4148
4148
|
self,
|
4149
4149
|
context: RequestContext,
|
4150
|
-
authentication_profile_name: AuthenticationProfileNameString = None,
|
4150
|
+
authentication_profile_name: AuthenticationProfileNameString | None = None,
|
4151
4151
|
**kwargs,
|
4152
4152
|
) -> DescribeAuthenticationProfilesResult:
|
4153
4153
|
raise NotImplementedError
|
@@ -4156,9 +4156,9 @@ class RedshiftApi:
|
|
4156
4156
|
def describe_cluster_db_revisions(
|
4157
4157
|
self,
|
4158
4158
|
context: RequestContext,
|
4159
|
-
cluster_identifier: String = None,
|
4160
|
-
max_records: IntegerOptional = None,
|
4161
|
-
marker: String = None,
|
4159
|
+
cluster_identifier: String | None = None,
|
4160
|
+
max_records: IntegerOptional | None = None,
|
4161
|
+
marker: String | None = None,
|
4162
4162
|
**kwargs,
|
4163
4163
|
) -> ClusterDbRevisionsMessage:
|
4164
4164
|
raise NotImplementedError
|
@@ -4167,11 +4167,11 @@ class RedshiftApi:
|
|
4167
4167
|
def describe_cluster_parameter_groups(
|
4168
4168
|
self,
|
4169
4169
|
context: RequestContext,
|
4170
|
-
parameter_group_name: String = None,
|
4171
|
-
max_records: IntegerOptional = None,
|
4172
|
-
marker: String = None,
|
4173
|
-
tag_keys: TagKeyList = None,
|
4174
|
-
tag_values: TagValueList = None,
|
4170
|
+
parameter_group_name: String | None = None,
|
4171
|
+
max_records: IntegerOptional | None = None,
|
4172
|
+
marker: String | None = None,
|
4173
|
+
tag_keys: TagKeyList | None = None,
|
4174
|
+
tag_values: TagValueList | None = None,
|
4175
4175
|
**kwargs,
|
4176
4176
|
) -> ClusterParameterGroupsMessage:
|
4177
4177
|
raise NotImplementedError
|
@@ -4181,9 +4181,9 @@ class RedshiftApi:
|
|
4181
4181
|
self,
|
4182
4182
|
context: RequestContext,
|
4183
4183
|
parameter_group_name: String,
|
4184
|
-
source: String = None,
|
4185
|
-
max_records: IntegerOptional = None,
|
4186
|
-
marker: String = None,
|
4184
|
+
source: String | None = None,
|
4185
|
+
max_records: IntegerOptional | None = None,
|
4186
|
+
marker: String | None = None,
|
4187
4187
|
**kwargs,
|
4188
4188
|
) -> ClusterParameterGroupDetails:
|
4189
4189
|
raise NotImplementedError
|
@@ -4192,11 +4192,11 @@ class RedshiftApi:
|
|
4192
4192
|
def describe_cluster_security_groups(
|
4193
4193
|
self,
|
4194
4194
|
context: RequestContext,
|
4195
|
-
cluster_security_group_name: String = None,
|
4196
|
-
max_records: IntegerOptional = None,
|
4197
|
-
marker: String = None,
|
4198
|
-
tag_keys: TagKeyList = None,
|
4199
|
-
tag_values: TagValueList = None,
|
4195
|
+
cluster_security_group_name: String | None = None,
|
4196
|
+
max_records: IntegerOptional | None = None,
|
4197
|
+
marker: String | None = None,
|
4198
|
+
tag_keys: TagKeyList | None = None,
|
4199
|
+
tag_values: TagValueList | None = None,
|
4200
4200
|
**kwargs,
|
4201
4201
|
) -> ClusterSecurityGroupMessage:
|
4202
4202
|
raise NotImplementedError
|
@@ -4205,19 +4205,19 @@ class RedshiftApi:
|
|
4205
4205
|
def describe_cluster_snapshots(
|
4206
4206
|
self,
|
4207
4207
|
context: RequestContext,
|
4208
|
-
cluster_identifier: String = None,
|
4209
|
-
snapshot_identifier: String = None,
|
4210
|
-
snapshot_arn: String = None,
|
4211
|
-
snapshot_type: String = None,
|
4212
|
-
start_time: TStamp = None,
|
4213
|
-
end_time: TStamp = None,
|
4214
|
-
max_records: IntegerOptional = None,
|
4215
|
-
marker: String = None,
|
4216
|
-
owner_account: String = None,
|
4217
|
-
tag_keys: TagKeyList = None,
|
4218
|
-
tag_values: TagValueList = None,
|
4219
|
-
cluster_exists: BooleanOptional = None,
|
4220
|
-
sorting_entities: SnapshotSortingEntityList = None,
|
4208
|
+
cluster_identifier: String | None = None,
|
4209
|
+
snapshot_identifier: String | None = None,
|
4210
|
+
snapshot_arn: String | None = None,
|
4211
|
+
snapshot_type: String | None = None,
|
4212
|
+
start_time: TStamp | None = None,
|
4213
|
+
end_time: TStamp | None = None,
|
4214
|
+
max_records: IntegerOptional | None = None,
|
4215
|
+
marker: String | None = None,
|
4216
|
+
owner_account: String | None = None,
|
4217
|
+
tag_keys: TagKeyList | None = None,
|
4218
|
+
tag_values: TagValueList | None = None,
|
4219
|
+
cluster_exists: BooleanOptional | None = None,
|
4220
|
+
sorting_entities: SnapshotSortingEntityList | None = None,
|
4221
4221
|
**kwargs,
|
4222
4222
|
) -> SnapshotMessage:
|
4223
4223
|
raise NotImplementedError
|
@@ -4226,11 +4226,11 @@ class RedshiftApi:
|
|
4226
4226
|
def describe_cluster_subnet_groups(
|
4227
4227
|
self,
|
4228
4228
|
context: RequestContext,
|
4229
|
-
cluster_subnet_group_name: String = None,
|
4230
|
-
max_records: IntegerOptional = None,
|
4231
|
-
marker: String = None,
|
4232
|
-
tag_keys: TagKeyList = None,
|
4233
|
-
tag_values: TagValueList = None,
|
4229
|
+
cluster_subnet_group_name: String | None = None,
|
4230
|
+
max_records: IntegerOptional | None = None,
|
4231
|
+
marker: String | None = None,
|
4232
|
+
tag_keys: TagKeyList | None = None,
|
4233
|
+
tag_values: TagValueList | None = None,
|
4234
4234
|
**kwargs,
|
4235
4235
|
) -> ClusterSubnetGroupMessage:
|
4236
4236
|
raise NotImplementedError
|
@@ -4239,9 +4239,9 @@ class RedshiftApi:
|
|
4239
4239
|
def describe_cluster_tracks(
|
4240
4240
|
self,
|
4241
4241
|
context: RequestContext,
|
4242
|
-
maintenance_track_name: String = None,
|
4243
|
-
max_records: IntegerOptional = None,
|
4244
|
-
marker: String = None,
|
4242
|
+
maintenance_track_name: String | None = None,
|
4243
|
+
max_records: IntegerOptional | None = None,
|
4244
|
+
marker: String | None = None,
|
4245
4245
|
**kwargs,
|
4246
4246
|
) -> TrackListMessage:
|
4247
4247
|
raise NotImplementedError
|
@@ -4250,10 +4250,10 @@ class RedshiftApi:
|
|
4250
4250
|
def describe_cluster_versions(
|
4251
4251
|
self,
|
4252
4252
|
context: RequestContext,
|
4253
|
-
cluster_version: String = None,
|
4254
|
-
cluster_parameter_group_family: String = None,
|
4255
|
-
max_records: IntegerOptional = None,
|
4256
|
-
marker: String = None,
|
4253
|
+
cluster_version: String | None = None,
|
4254
|
+
cluster_parameter_group_family: String | None = None,
|
4255
|
+
max_records: IntegerOptional | None = None,
|
4256
|
+
marker: String | None = None,
|
4257
4257
|
**kwargs,
|
4258
4258
|
) -> ClusterVersionsMessage:
|
4259
4259
|
raise NotImplementedError
|
@@ -4262,11 +4262,11 @@ class RedshiftApi:
|
|
4262
4262
|
def describe_clusters(
|
4263
4263
|
self,
|
4264
4264
|
context: RequestContext,
|
4265
|
-
cluster_identifier: String = None,
|
4266
|
-
max_records: IntegerOptional = None,
|
4267
|
-
marker: String = None,
|
4268
|
-
tag_keys: TagKeyList = None,
|
4269
|
-
tag_values: TagValueList = None,
|
4265
|
+
cluster_identifier: String | None = None,
|
4266
|
+
max_records: IntegerOptional | None = None,
|
4267
|
+
marker: String | None = None,
|
4268
|
+
tag_keys: TagKeyList | None = None,
|
4269
|
+
tag_values: TagValueList | None = None,
|
4270
4270
|
**kwargs,
|
4271
4271
|
) -> ClustersMessage:
|
4272
4272
|
raise NotImplementedError
|
@@ -4275,10 +4275,10 @@ class RedshiftApi:
|
|
4275
4275
|
def describe_custom_domain_associations(
|
4276
4276
|
self,
|
4277
4277
|
context: RequestContext,
|
4278
|
-
custom_domain_name: CustomDomainNameString = None,
|
4279
|
-
custom_domain_certificate_arn: CustomDomainCertificateArnString = None,
|
4280
|
-
max_records: IntegerOptional = None,
|
4281
|
-
marker: String = None,
|
4278
|
+
custom_domain_name: CustomDomainNameString | None = None,
|
4279
|
+
custom_domain_certificate_arn: CustomDomainCertificateArnString | None = None,
|
4280
|
+
max_records: IntegerOptional | None = None,
|
4281
|
+
marker: String | None = None,
|
4282
4282
|
**kwargs,
|
4283
4283
|
) -> CustomDomainAssociationsMessage:
|
4284
4284
|
raise NotImplementedError
|
@@ -4287,9 +4287,9 @@ class RedshiftApi:
|
|
4287
4287
|
def describe_data_shares(
|
4288
4288
|
self,
|
4289
4289
|
context: RequestContext,
|
4290
|
-
data_share_arn: String = None,
|
4291
|
-
max_records: IntegerOptional = None,
|
4292
|
-
marker: String = None,
|
4290
|
+
data_share_arn: String | None = None,
|
4291
|
+
max_records: IntegerOptional | None = None,
|
4292
|
+
marker: String | None = None,
|
4293
4293
|
**kwargs,
|
4294
4294
|
) -> DescribeDataSharesResult:
|
4295
4295
|
raise NotImplementedError
|
@@ -4298,10 +4298,10 @@ class RedshiftApi:
|
|
4298
4298
|
def describe_data_shares_for_consumer(
|
4299
4299
|
self,
|
4300
4300
|
context: RequestContext,
|
4301
|
-
consumer_arn: String = None,
|
4302
|
-
status: DataShareStatusForConsumer = None,
|
4303
|
-
max_records: IntegerOptional = None,
|
4304
|
-
marker: String = None,
|
4301
|
+
consumer_arn: String | None = None,
|
4302
|
+
status: DataShareStatusForConsumer | None = None,
|
4303
|
+
max_records: IntegerOptional | None = None,
|
4304
|
+
marker: String | None = None,
|
4305
4305
|
**kwargs,
|
4306
4306
|
) -> DescribeDataSharesForConsumerResult:
|
4307
4307
|
raise NotImplementedError
|
@@ -4310,10 +4310,10 @@ class RedshiftApi:
|
|
4310
4310
|
def describe_data_shares_for_producer(
|
4311
4311
|
self,
|
4312
4312
|
context: RequestContext,
|
4313
|
-
producer_arn: String = None,
|
4314
|
-
status: DataShareStatusForProducer = None,
|
4315
|
-
max_records: IntegerOptional = None,
|
4316
|
-
marker: String = None,
|
4313
|
+
producer_arn: String | None = None,
|
4314
|
+
status: DataShareStatusForProducer | None = None,
|
4315
|
+
max_records: IntegerOptional | None = None,
|
4316
|
+
marker: String | None = None,
|
4317
4317
|
**kwargs,
|
4318
4318
|
) -> DescribeDataSharesForProducerResult:
|
4319
4319
|
raise NotImplementedError
|
@@ -4323,8 +4323,8 @@ class RedshiftApi:
|
|
4323
4323
|
self,
|
4324
4324
|
context: RequestContext,
|
4325
4325
|
parameter_group_family: String,
|
4326
|
-
max_records: IntegerOptional = None,
|
4327
|
-
marker: String = None,
|
4326
|
+
max_records: IntegerOptional | None = None,
|
4327
|
+
marker: String | None = None,
|
4328
4328
|
**kwargs,
|
4329
4329
|
) -> DescribeDefaultClusterParametersResult:
|
4330
4330
|
raise NotImplementedError
|
@@ -4333,12 +4333,12 @@ class RedshiftApi:
|
|
4333
4333
|
def describe_endpoint_access(
|
4334
4334
|
self,
|
4335
4335
|
context: RequestContext,
|
4336
|
-
cluster_identifier: String = None,
|
4337
|
-
resource_owner: String = None,
|
4338
|
-
endpoint_name: String = None,
|
4339
|
-
vpc_id: String = None,
|
4340
|
-
max_records: IntegerOptional = None,
|
4341
|
-
marker: String = None,
|
4336
|
+
cluster_identifier: String | None = None,
|
4337
|
+
resource_owner: String | None = None,
|
4338
|
+
endpoint_name: String | None = None,
|
4339
|
+
vpc_id: String | None = None,
|
4340
|
+
max_records: IntegerOptional | None = None,
|
4341
|
+
marker: String | None = None,
|
4342
4342
|
**kwargs,
|
4343
4343
|
) -> EndpointAccessList:
|
4344
4344
|
raise NotImplementedError
|
@@ -4347,18 +4347,18 @@ class RedshiftApi:
|
|
4347
4347
|
def describe_endpoint_authorization(
|
4348
4348
|
self,
|
4349
4349
|
context: RequestContext,
|
4350
|
-
cluster_identifier: String = None,
|
4351
|
-
account: String = None,
|
4352
|
-
grantee: BooleanOptional = None,
|
4353
|
-
max_records: IntegerOptional = None,
|
4354
|
-
marker: String = None,
|
4350
|
+
cluster_identifier: String | None = None,
|
4351
|
+
account: String | None = None,
|
4352
|
+
grantee: BooleanOptional | None = None,
|
4353
|
+
max_records: IntegerOptional | None = None,
|
4354
|
+
marker: String | None = None,
|
4355
4355
|
**kwargs,
|
4356
4356
|
) -> EndpointAuthorizationList:
|
4357
4357
|
raise NotImplementedError
|
4358
4358
|
|
4359
4359
|
@handler("DescribeEventCategories")
|
4360
4360
|
def describe_event_categories(
|
4361
|
-
self, context: RequestContext, source_type: String = None, **kwargs
|
4361
|
+
self, context: RequestContext, source_type: String | None = None, **kwargs
|
4362
4362
|
) -> EventCategoriesMessage:
|
4363
4363
|
raise NotImplementedError
|
4364
4364
|
|
@@ -4366,11 +4366,11 @@ class RedshiftApi:
|
|
4366
4366
|
def describe_event_subscriptions(
|
4367
4367
|
self,
|
4368
4368
|
context: RequestContext,
|
4369
|
-
subscription_name: String = None,
|
4370
|
-
max_records: IntegerOptional = None,
|
4371
|
-
marker: String = None,
|
4372
|
-
tag_keys: TagKeyList = None,
|
4373
|
-
tag_values: TagValueList = None,
|
4369
|
+
subscription_name: String | None = None,
|
4370
|
+
max_records: IntegerOptional | None = None,
|
4371
|
+
marker: String | None = None,
|
4372
|
+
tag_keys: TagKeyList | None = None,
|
4373
|
+
tag_values: TagValueList | None = None,
|
4374
4374
|
**kwargs,
|
4375
4375
|
) -> EventSubscriptionsMessage:
|
4376
4376
|
raise NotImplementedError
|
@@ -4379,13 +4379,13 @@ class RedshiftApi:
|
|
4379
4379
|
def describe_events(
|
4380
4380
|
self,
|
4381
4381
|
context: RequestContext,
|
4382
|
-
source_identifier: String = None,
|
4383
|
-
source_type: SourceType = None,
|
4384
|
-
start_time: TStamp = None,
|
4385
|
-
end_time: TStamp = None,
|
4386
|
-
duration: IntegerOptional = None,
|
4387
|
-
max_records: IntegerOptional = None,
|
4388
|
-
marker: String = None,
|
4382
|
+
source_identifier: String | None = None,
|
4383
|
+
source_type: SourceType | None = None,
|
4384
|
+
start_time: TStamp | None = None,
|
4385
|
+
end_time: TStamp | None = None,
|
4386
|
+
duration: IntegerOptional | None = None,
|
4387
|
+
max_records: IntegerOptional | None = None,
|
4388
|
+
marker: String | None = None,
|
4389
4389
|
**kwargs,
|
4390
4390
|
) -> EventsMessage:
|
4391
4391
|
raise NotImplementedError
|
@@ -4394,11 +4394,11 @@ class RedshiftApi:
|
|
4394
4394
|
def describe_hsm_client_certificates(
|
4395
4395
|
self,
|
4396
4396
|
context: RequestContext,
|
4397
|
-
hsm_client_certificate_identifier: String = None,
|
4398
|
-
max_records: IntegerOptional = None,
|
4399
|
-
marker: String = None,
|
4400
|
-
tag_keys: TagKeyList = None,
|
4401
|
-
tag_values: TagValueList = None,
|
4397
|
+
hsm_client_certificate_identifier: String | None = None,
|
4398
|
+
max_records: IntegerOptional | None = None,
|
4399
|
+
marker: String | None = None,
|
4400
|
+
tag_keys: TagKeyList | None = None,
|
4401
|
+
tag_values: TagValueList | None = None,
|
4402
4402
|
**kwargs,
|
4403
4403
|
) -> HsmClientCertificateMessage:
|
4404
4404
|
raise NotImplementedError
|
@@ -4407,11 +4407,11 @@ class RedshiftApi:
|
|
4407
4407
|
def describe_hsm_configurations(
|
4408
4408
|
self,
|
4409
4409
|
context: RequestContext,
|
4410
|
-
hsm_configuration_identifier: String = None,
|
4411
|
-
max_records: IntegerOptional = None,
|
4412
|
-
marker: String = None,
|
4413
|
-
tag_keys: TagKeyList = None,
|
4414
|
-
tag_values: TagValueList = None,
|
4410
|
+
hsm_configuration_identifier: String | None = None,
|
4411
|
+
max_records: IntegerOptional | None = None,
|
4412
|
+
marker: String | None = None,
|
4413
|
+
tag_keys: TagKeyList | None = None,
|
4414
|
+
tag_values: TagValueList | None = None,
|
4415
4415
|
**kwargs,
|
4416
4416
|
) -> HsmConfigurationMessage:
|
4417
4417
|
raise NotImplementedError
|
@@ -4420,10 +4420,10 @@ class RedshiftApi:
|
|
4420
4420
|
def describe_inbound_integrations(
|
4421
4421
|
self,
|
4422
4422
|
context: RequestContext,
|
4423
|
-
integration_arn: InboundIntegrationArn = None,
|
4424
|
-
target_arn: TargetArn = None,
|
4425
|
-
max_records: IntegerOptional = None,
|
4426
|
-
marker: String = None,
|
4423
|
+
integration_arn: InboundIntegrationArn | None = None,
|
4424
|
+
target_arn: TargetArn | None = None,
|
4425
|
+
max_records: IntegerOptional | None = None,
|
4426
|
+
marker: String | None = None,
|
4427
4427
|
**kwargs,
|
4428
4428
|
) -> InboundIntegrationsMessage:
|
4429
4429
|
raise NotImplementedError
|
@@ -4432,10 +4432,10 @@ class RedshiftApi:
|
|
4432
4432
|
def describe_integrations(
|
4433
4433
|
self,
|
4434
4434
|
context: RequestContext,
|
4435
|
-
integration_arn: IntegrationArn = None,
|
4436
|
-
max_records: IntegerOptional = None,
|
4437
|
-
marker: String = None,
|
4438
|
-
filters: DescribeIntegrationsFilterList = None,
|
4435
|
+
integration_arn: IntegrationArn | None = None,
|
4436
|
+
max_records: IntegerOptional | None = None,
|
4437
|
+
marker: String | None = None,
|
4438
|
+
filters: DescribeIntegrationsFilterList | None = None,
|
4439
4439
|
**kwargs,
|
4440
4440
|
) -> IntegrationsMessage:
|
4441
4441
|
raise NotImplementedError
|
@@ -4451,13 +4451,13 @@ class RedshiftApi:
|
|
4451
4451
|
self,
|
4452
4452
|
context: RequestContext,
|
4453
4453
|
action_type: ActionType,
|
4454
|
-
cluster_identifier: String = None,
|
4455
|
-
snapshot_identifier: String = None,
|
4456
|
-
snapshot_arn: String = None,
|
4457
|
-
owner_account: String = None,
|
4458
|
-
filters: NodeConfigurationOptionsFilterList = None,
|
4459
|
-
marker: String = None,
|
4460
|
-
max_records: IntegerOptional = None,
|
4454
|
+
cluster_identifier: String | None = None,
|
4455
|
+
snapshot_identifier: String | None = None,
|
4456
|
+
snapshot_arn: String | None = None,
|
4457
|
+
owner_account: String | None = None,
|
4458
|
+
filters: NodeConfigurationOptionsFilterList | None = None,
|
4459
|
+
marker: String | None = None,
|
4460
|
+
max_records: IntegerOptional | None = None,
|
4461
4461
|
**kwargs,
|
4462
4462
|
) -> NodeConfigurationOptionsMessage:
|
4463
4463
|
raise NotImplementedError
|
@@ -4466,10 +4466,10 @@ class RedshiftApi:
|
|
4466
4466
|
def describe_orderable_cluster_options(
|
4467
4467
|
self,
|
4468
4468
|
context: RequestContext,
|
4469
|
-
cluster_version: String = None,
|
4470
|
-
node_type: String = None,
|
4471
|
-
max_records: IntegerOptional = None,
|
4472
|
-
marker: String = None,
|
4469
|
+
cluster_version: String | None = None,
|
4470
|
+
node_type: String | None = None,
|
4471
|
+
max_records: IntegerOptional | None = None,
|
4472
|
+
marker: String | None = None,
|
4473
4473
|
**kwargs,
|
4474
4474
|
) -> OrderableClusterOptionsMessage:
|
4475
4475
|
raise NotImplementedError
|
@@ -4480,8 +4480,8 @@ class RedshiftApi:
|
|
4480
4480
|
context: RequestContext,
|
4481
4481
|
account_id: PartnerIntegrationAccountId,
|
4482
4482
|
cluster_identifier: PartnerIntegrationClusterIdentifier,
|
4483
|
-
database_name: PartnerIntegrationDatabaseName = None,
|
4484
|
-
partner_name: PartnerIntegrationPartnerName = None,
|
4483
|
+
database_name: PartnerIntegrationDatabaseName | None = None,
|
4484
|
+
partner_name: PartnerIntegrationPartnerName | None = None,
|
4485
4485
|
**kwargs,
|
4486
4486
|
) -> DescribePartnersOutputMessage:
|
4487
4487
|
raise NotImplementedError
|
@@ -4490,9 +4490,9 @@ class RedshiftApi:
|
|
4490
4490
|
def describe_redshift_idc_applications(
|
4491
4491
|
self,
|
4492
4492
|
context: RequestContext,
|
4493
|
-
redshift_idc_application_arn: String = None,
|
4494
|
-
max_records: IntegerOptional = None,
|
4495
|
-
marker: String = None,
|
4493
|
+
redshift_idc_application_arn: String | None = None,
|
4494
|
+
max_records: IntegerOptional | None = None,
|
4495
|
+
marker: String | None = None,
|
4496
4496
|
**kwargs,
|
4497
4497
|
) -> DescribeRedshiftIdcApplicationsResult:
|
4498
4498
|
raise NotImplementedError
|
@@ -4501,10 +4501,10 @@ class RedshiftApi:
|
|
4501
4501
|
def describe_reserved_node_exchange_status(
|
4502
4502
|
self,
|
4503
4503
|
context: RequestContext,
|
4504
|
-
reserved_node_id: String = None,
|
4505
|
-
reserved_node_exchange_request_id: String = None,
|
4506
|
-
max_records: IntegerOptional = None,
|
4507
|
-
marker: String = None,
|
4504
|
+
reserved_node_id: String | None = None,
|
4505
|
+
reserved_node_exchange_request_id: String | None = None,
|
4506
|
+
max_records: IntegerOptional | None = None,
|
4507
|
+
marker: String | None = None,
|
4508
4508
|
**kwargs,
|
4509
4509
|
) -> DescribeReservedNodeExchangeStatusOutputMessage:
|
4510
4510
|
raise NotImplementedError
|
@@ -4513,9 +4513,9 @@ class RedshiftApi:
|
|
4513
4513
|
def describe_reserved_node_offerings(
|
4514
4514
|
self,
|
4515
4515
|
context: RequestContext,
|
4516
|
-
reserved_node_offering_id: String = None,
|
4517
|
-
max_records: IntegerOptional = None,
|
4518
|
-
marker: String = None,
|
4516
|
+
reserved_node_offering_id: String | None = None,
|
4517
|
+
max_records: IntegerOptional | None = None,
|
4518
|
+
marker: String | None = None,
|
4519
4519
|
**kwargs,
|
4520
4520
|
) -> ReservedNodeOfferingsMessage:
|
4521
4521
|
raise NotImplementedError
|
@@ -4524,9 +4524,9 @@ class RedshiftApi:
|
|
4524
4524
|
def describe_reserved_nodes(
|
4525
4525
|
self,
|
4526
4526
|
context: RequestContext,
|
4527
|
-
reserved_node_id: String = None,
|
4528
|
-
max_records: IntegerOptional = None,
|
4529
|
-
marker: String = None,
|
4527
|
+
reserved_node_id: String | None = None,
|
4528
|
+
max_records: IntegerOptional | None = None,
|
4529
|
+
marker: String | None = None,
|
4530
4530
|
**kwargs,
|
4531
4531
|
) -> ReservedNodesMessage:
|
4532
4532
|
raise NotImplementedError
|
@@ -4541,14 +4541,14 @@ class RedshiftApi:
|
|
4541
4541
|
def describe_scheduled_actions(
|
4542
4542
|
self,
|
4543
4543
|
context: RequestContext,
|
4544
|
-
scheduled_action_name: String = None,
|
4545
|
-
target_action_type: ScheduledActionTypeValues = None,
|
4546
|
-
start_time: TStamp = None,
|
4547
|
-
end_time: TStamp = None,
|
4548
|
-
active: BooleanOptional = None,
|
4549
|
-
filters: ScheduledActionFilterList = None,
|
4550
|
-
marker: String = None,
|
4551
|
-
max_records: IntegerOptional = None,
|
4544
|
+
scheduled_action_name: String | None = None,
|
4545
|
+
target_action_type: ScheduledActionTypeValues | None = None,
|
4546
|
+
start_time: TStamp | None = None,
|
4547
|
+
end_time: TStamp | None = None,
|
4548
|
+
active: BooleanOptional | None = None,
|
4549
|
+
filters: ScheduledActionFilterList | None = None,
|
4550
|
+
marker: String | None = None,
|
4551
|
+
max_records: IntegerOptional | None = None,
|
4552
4552
|
**kwargs,
|
4553
4553
|
) -> ScheduledActionsMessage:
|
4554
4554
|
raise NotImplementedError
|
@@ -4557,11 +4557,11 @@ class RedshiftApi:
|
|
4557
4557
|
def describe_snapshot_copy_grants(
|
4558
4558
|
self,
|
4559
4559
|
context: RequestContext,
|
4560
|
-
snapshot_copy_grant_name: String = None,
|
4561
|
-
max_records: IntegerOptional = None,
|
4562
|
-
marker: String = None,
|
4563
|
-
tag_keys: TagKeyList = None,
|
4564
|
-
tag_values: TagValueList = None,
|
4560
|
+
snapshot_copy_grant_name: String | None = None,
|
4561
|
+
max_records: IntegerOptional | None = None,
|
4562
|
+
marker: String | None = None,
|
4563
|
+
tag_keys: TagKeyList | None = None,
|
4564
|
+
tag_values: TagValueList | None = None,
|
4565
4565
|
**kwargs,
|
4566
4566
|
) -> SnapshotCopyGrantMessage:
|
4567
4567
|
raise NotImplementedError
|
@@ -4570,12 +4570,12 @@ class RedshiftApi:
|
|
4570
4570
|
def describe_snapshot_schedules(
|
4571
4571
|
self,
|
4572
4572
|
context: RequestContext,
|
4573
|
-
cluster_identifier: String = None,
|
4574
|
-
schedule_identifier: String = None,
|
4575
|
-
tag_keys: TagKeyList = None,
|
4576
|
-
tag_values: TagValueList = None,
|
4577
|
-
marker: String = None,
|
4578
|
-
max_records: IntegerOptional = None,
|
4573
|
+
cluster_identifier: String | None = None,
|
4574
|
+
schedule_identifier: String | None = None,
|
4575
|
+
tag_keys: TagKeyList | None = None,
|
4576
|
+
tag_values: TagValueList | None = None,
|
4577
|
+
marker: String | None = None,
|
4578
|
+
max_records: IntegerOptional | None = None,
|
4579
4579
|
**kwargs,
|
4580
4580
|
) -> DescribeSnapshotSchedulesOutputMessage:
|
4581
4581
|
raise NotImplementedError
|
@@ -4588,10 +4588,10 @@ class RedshiftApi:
|
|
4588
4588
|
def describe_table_restore_status(
|
4589
4589
|
self,
|
4590
4590
|
context: RequestContext,
|
4591
|
-
cluster_identifier: String = None,
|
4592
|
-
table_restore_request_id: String = None,
|
4593
|
-
max_records: IntegerOptional = None,
|
4594
|
-
marker: String = None,
|
4591
|
+
cluster_identifier: String | None = None,
|
4592
|
+
table_restore_request_id: String | None = None,
|
4593
|
+
max_records: IntegerOptional | None = None,
|
4594
|
+
marker: String | None = None,
|
4595
4595
|
**kwargs,
|
4596
4596
|
) -> TableRestoreStatusMessage:
|
4597
4597
|
raise NotImplementedError
|
@@ -4600,12 +4600,12 @@ class RedshiftApi:
|
|
4600
4600
|
def describe_tags(
|
4601
4601
|
self,
|
4602
4602
|
context: RequestContext,
|
4603
|
-
resource_name: String = None,
|
4604
|
-
resource_type: String = None,
|
4605
|
-
max_records: IntegerOptional = None,
|
4606
|
-
marker: String = None,
|
4607
|
-
tag_keys: TagKeyList = None,
|
4608
|
-
tag_values: TagValueList = None,
|
4603
|
+
resource_name: String | None = None,
|
4604
|
+
resource_type: String | None = None,
|
4605
|
+
max_records: IntegerOptional | None = None,
|
4606
|
+
marker: String | None = None,
|
4607
|
+
tag_keys: TagKeyList | None = None,
|
4608
|
+
tag_values: TagValueList | None = None,
|
4609
4609
|
**kwargs,
|
4610
4610
|
) -> TaggedResourceListMessage:
|
4611
4611
|
raise NotImplementedError
|
@@ -4614,13 +4614,13 @@ class RedshiftApi:
|
|
4614
4614
|
def describe_usage_limits(
|
4615
4615
|
self,
|
4616
4616
|
context: RequestContext,
|
4617
|
-
usage_limit_id: String = None,
|
4618
|
-
cluster_identifier: String = None,
|
4619
|
-
feature_type: UsageLimitFeatureType = None,
|
4620
|
-
max_records: IntegerOptional = None,
|
4621
|
-
marker: String = None,
|
4622
|
-
tag_keys: TagKeyList = None,
|
4623
|
-
tag_values: TagValueList = None,
|
4617
|
+
usage_limit_id: String | None = None,
|
4618
|
+
cluster_identifier: String | None = None,
|
4619
|
+
feature_type: UsageLimitFeatureType | None = None,
|
4620
|
+
max_records: IntegerOptional | None = None,
|
4621
|
+
marker: String | None = None,
|
4622
|
+
tag_keys: TagKeyList | None = None,
|
4623
|
+
tag_values: TagValueList | None = None,
|
4624
4624
|
**kwargs,
|
4625
4625
|
) -> UsageLimitList:
|
4626
4626
|
raise NotImplementedError
|
@@ -4642,9 +4642,9 @@ class RedshiftApi:
|
|
4642
4642
|
self,
|
4643
4643
|
context: RequestContext,
|
4644
4644
|
data_share_arn: String,
|
4645
|
-
disassociate_entire_account: BooleanOptional = None,
|
4646
|
-
consumer_arn: String = None,
|
4647
|
-
consumer_region: String = None,
|
4645
|
+
disassociate_entire_account: BooleanOptional | None = None,
|
4646
|
+
consumer_arn: String | None = None,
|
4647
|
+
consumer_region: String | None = None,
|
4648
4648
|
**kwargs,
|
4649
4649
|
) -> DataShare:
|
4650
4650
|
raise NotImplementedError
|
@@ -4654,10 +4654,10 @@ class RedshiftApi:
|
|
4654
4654
|
self,
|
4655
4655
|
context: RequestContext,
|
4656
4656
|
cluster_identifier: String,
|
4657
|
-
bucket_name: String = None,
|
4658
|
-
s3_key_prefix: S3KeyPrefixValue = None,
|
4659
|
-
log_destination_type: LogDestinationType = None,
|
4660
|
-
log_exports: LogTypeList = None,
|
4657
|
+
bucket_name: String | None = None,
|
4658
|
+
s3_key_prefix: S3KeyPrefixValue | None = None,
|
4659
|
+
log_destination_type: LogDestinationType | None = None,
|
4660
|
+
log_exports: LogTypeList | None = None,
|
4661
4661
|
**kwargs,
|
4662
4662
|
) -> LoggingStatus:
|
4663
4663
|
raise NotImplementedError
|
@@ -4668,9 +4668,9 @@ class RedshiftApi:
|
|
4668
4668
|
context: RequestContext,
|
4669
4669
|
cluster_identifier: String,
|
4670
4670
|
destination_region: String,
|
4671
|
-
retention_period: IntegerOptional = None,
|
4672
|
-
snapshot_copy_grant_name: String = None,
|
4673
|
-
manual_snapshot_retention_period: IntegerOptional = None,
|
4671
|
+
retention_period: IntegerOptional | None = None,
|
4672
|
+
snapshot_copy_grant_name: String | None = None,
|
4673
|
+
manual_snapshot_retention_period: IntegerOptional | None = None,
|
4674
4674
|
**kwargs,
|
4675
4675
|
) -> EnableSnapshotCopyResult:
|
4676
4676
|
raise NotImplementedError
|
@@ -4686,12 +4686,12 @@ class RedshiftApi:
|
|
4686
4686
|
self,
|
4687
4687
|
context: RequestContext,
|
4688
4688
|
db_user: String,
|
4689
|
-
db_name: String = None,
|
4690
|
-
cluster_identifier: String = None,
|
4691
|
-
duration_seconds: IntegerOptional = None,
|
4692
|
-
auto_create: BooleanOptional = None,
|
4693
|
-
db_groups: DbGroupList = None,
|
4694
|
-
custom_domain_name: String = None,
|
4689
|
+
db_name: String | None = None,
|
4690
|
+
cluster_identifier: String | None = None,
|
4691
|
+
duration_seconds: IntegerOptional | None = None,
|
4692
|
+
auto_create: BooleanOptional | None = None,
|
4693
|
+
db_groups: DbGroupList | None = None,
|
4694
|
+
custom_domain_name: String | None = None,
|
4695
4695
|
**kwargs,
|
4696
4696
|
) -> ClusterCredentials:
|
4697
4697
|
raise NotImplementedError
|
@@ -4700,10 +4700,10 @@ class RedshiftApi:
|
|
4700
4700
|
def get_cluster_credentials_with_iam(
|
4701
4701
|
self,
|
4702
4702
|
context: RequestContext,
|
4703
|
-
db_name: String = None,
|
4704
|
-
cluster_identifier: String = None,
|
4705
|
-
duration_seconds: IntegerOptional = None,
|
4706
|
-
custom_domain_name: String = None,
|
4703
|
+
db_name: String | None = None,
|
4704
|
+
cluster_identifier: String | None = None,
|
4705
|
+
duration_seconds: IntegerOptional | None = None,
|
4706
|
+
custom_domain_name: String | None = None,
|
4707
4707
|
**kwargs,
|
4708
4708
|
) -> ClusterExtendedCredentials:
|
4709
4709
|
raise NotImplementedError
|
@@ -4713,10 +4713,10 @@ class RedshiftApi:
|
|
4713
4713
|
self,
|
4714
4714
|
context: RequestContext,
|
4715
4715
|
action_type: ReservedNodeExchangeActionType,
|
4716
|
-
cluster_identifier: String = None,
|
4717
|
-
snapshot_identifier: String = None,
|
4718
|
-
max_records: IntegerOptional = None,
|
4719
|
-
marker: String = None,
|
4716
|
+
cluster_identifier: String | None = None,
|
4717
|
+
snapshot_identifier: String | None = None,
|
4718
|
+
max_records: IntegerOptional | None = None,
|
4719
|
+
marker: String | None = None,
|
4720
4720
|
**kwargs,
|
4721
4721
|
) -> GetReservedNodeExchangeConfigurationOptionsOutputMessage:
|
4722
4722
|
raise NotImplementedError
|
@@ -4726,8 +4726,8 @@ class RedshiftApi:
|
|
4726
4726
|
self,
|
4727
4727
|
context: RequestContext,
|
4728
4728
|
reserved_node_id: String,
|
4729
|
-
max_records: IntegerOptional = None,
|
4730
|
-
marker: String = None,
|
4729
|
+
max_records: IntegerOptional | None = None,
|
4730
|
+
marker: String | None = None,
|
4731
4731
|
**kwargs,
|
4732
4732
|
) -> GetReservedNodeExchangeOfferingsOutputMessage:
|
4733
4733
|
raise NotImplementedError
|
@@ -4742,10 +4742,10 @@ class RedshiftApi:
|
|
4742
4742
|
def list_recommendations(
|
4743
4743
|
self,
|
4744
4744
|
context: RequestContext,
|
4745
|
-
cluster_identifier: String = None,
|
4746
|
-
namespace_arn: String = None,
|
4747
|
-
max_records: IntegerOptional = None,
|
4748
|
-
marker: String = None,
|
4745
|
+
cluster_identifier: String | None = None,
|
4746
|
+
namespace_arn: String | None = None,
|
4747
|
+
max_records: IntegerOptional | None = None,
|
4748
|
+
marker: String | None = None,
|
4749
4749
|
**kwargs,
|
4750
4750
|
) -> ListRecommendationsResult:
|
4751
4751
|
raise NotImplementedError
|
@@ -4755,7 +4755,7 @@ class RedshiftApi:
|
|
4755
4755
|
self,
|
4756
4756
|
context: RequestContext,
|
4757
4757
|
cluster_identifier: String,
|
4758
|
-
aqua_configuration_status: AquaConfigurationStatus = None,
|
4758
|
+
aqua_configuration_status: AquaConfigurationStatus | None = None,
|
4759
4759
|
**kwargs,
|
4760
4760
|
) -> ModifyAquaOutputMessage:
|
4761
4761
|
raise NotImplementedError
|
@@ -4775,34 +4775,34 @@ class RedshiftApi:
|
|
4775
4775
|
self,
|
4776
4776
|
context: RequestContext,
|
4777
4777
|
cluster_identifier: String,
|
4778
|
-
cluster_type: String = None,
|
4779
|
-
node_type: String = None,
|
4780
|
-
number_of_nodes: IntegerOptional = None,
|
4781
|
-
cluster_security_groups: ClusterSecurityGroupNameList = None,
|
4782
|
-
vpc_security_group_ids: VpcSecurityGroupIdList = None,
|
4783
|
-
master_user_password: SensitiveString = None,
|
4784
|
-
cluster_parameter_group_name: String = None,
|
4785
|
-
automated_snapshot_retention_period: IntegerOptional = None,
|
4786
|
-
manual_snapshot_retention_period: IntegerOptional = None,
|
4787
|
-
preferred_maintenance_window: String = None,
|
4788
|
-
cluster_version: String = None,
|
4789
|
-
allow_version_upgrade: BooleanOptional = None,
|
4790
|
-
hsm_client_certificate_identifier: String = None,
|
4791
|
-
hsm_configuration_identifier: String = None,
|
4792
|
-
new_cluster_identifier: String = None,
|
4793
|
-
publicly_accessible: BooleanOptional = None,
|
4794
|
-
elastic_ip: String = None,
|
4795
|
-
enhanced_vpc_routing: BooleanOptional = None,
|
4796
|
-
maintenance_track_name: String = None,
|
4797
|
-
encrypted: BooleanOptional = None,
|
4798
|
-
kms_key_id: String = None,
|
4799
|
-
availability_zone_relocation: BooleanOptional = None,
|
4800
|
-
availability_zone: String = None,
|
4801
|
-
port: IntegerOptional = None,
|
4802
|
-
manage_master_password: BooleanOptional = None,
|
4803
|
-
master_password_secret_kms_key_id: String = None,
|
4804
|
-
ip_address_type: String = None,
|
4805
|
-
multi_az: BooleanOptional = None,
|
4778
|
+
cluster_type: String | None = None,
|
4779
|
+
node_type: String | None = None,
|
4780
|
+
number_of_nodes: IntegerOptional | None = None,
|
4781
|
+
cluster_security_groups: ClusterSecurityGroupNameList | None = None,
|
4782
|
+
vpc_security_group_ids: VpcSecurityGroupIdList | None = None,
|
4783
|
+
master_user_password: SensitiveString | None = None,
|
4784
|
+
cluster_parameter_group_name: String | None = None,
|
4785
|
+
automated_snapshot_retention_period: IntegerOptional | None = None,
|
4786
|
+
manual_snapshot_retention_period: IntegerOptional | None = None,
|
4787
|
+
preferred_maintenance_window: String | None = None,
|
4788
|
+
cluster_version: String | None = None,
|
4789
|
+
allow_version_upgrade: BooleanOptional | None = None,
|
4790
|
+
hsm_client_certificate_identifier: String | None = None,
|
4791
|
+
hsm_configuration_identifier: String | None = None,
|
4792
|
+
new_cluster_identifier: String | None = None,
|
4793
|
+
publicly_accessible: BooleanOptional | None = None,
|
4794
|
+
elastic_ip: String | None = None,
|
4795
|
+
enhanced_vpc_routing: BooleanOptional | None = None,
|
4796
|
+
maintenance_track_name: String | None = None,
|
4797
|
+
encrypted: BooleanOptional | None = None,
|
4798
|
+
kms_key_id: String | None = None,
|
4799
|
+
availability_zone_relocation: BooleanOptional | None = None,
|
4800
|
+
availability_zone: String | None = None,
|
4801
|
+
port: IntegerOptional | None = None,
|
4802
|
+
manage_master_password: BooleanOptional | None = None,
|
4803
|
+
master_password_secret_kms_key_id: String | None = None,
|
4804
|
+
ip_address_type: String | None = None,
|
4805
|
+
multi_az: BooleanOptional | None = None,
|
4806
4806
|
**kwargs,
|
4807
4807
|
) -> ModifyClusterResult:
|
4808
4808
|
raise NotImplementedError
|
@@ -4818,9 +4818,9 @@ class RedshiftApi:
|
|
4818
4818
|
self,
|
4819
4819
|
context: RequestContext,
|
4820
4820
|
cluster_identifier: String,
|
4821
|
-
add_iam_roles: IamRoleArnList = None,
|
4822
|
-
remove_iam_roles: IamRoleArnList = None,
|
4823
|
-
default_iam_role_arn: String = None,
|
4821
|
+
add_iam_roles: IamRoleArnList | None = None,
|
4822
|
+
remove_iam_roles: IamRoleArnList | None = None,
|
4823
|
+
default_iam_role_arn: String | None = None,
|
4824
4824
|
**kwargs,
|
4825
4825
|
) -> ModifyClusterIamRolesResult:
|
4826
4826
|
raise NotImplementedError
|
@@ -4830,11 +4830,11 @@ class RedshiftApi:
|
|
4830
4830
|
self,
|
4831
4831
|
context: RequestContext,
|
4832
4832
|
cluster_identifier: String,
|
4833
|
-
defer_maintenance: BooleanOptional = None,
|
4834
|
-
defer_maintenance_identifier: String = None,
|
4835
|
-
defer_maintenance_start_time: TStamp = None,
|
4836
|
-
defer_maintenance_end_time: TStamp = None,
|
4837
|
-
defer_maintenance_duration: IntegerOptional = None,
|
4833
|
+
defer_maintenance: BooleanOptional | None = None,
|
4834
|
+
defer_maintenance_identifier: String | None = None,
|
4835
|
+
defer_maintenance_start_time: TStamp | None = None,
|
4836
|
+
defer_maintenance_end_time: TStamp | None = None,
|
4837
|
+
defer_maintenance_duration: IntegerOptional | None = None,
|
4838
4838
|
**kwargs,
|
4839
4839
|
) -> ModifyClusterMaintenanceResult:
|
4840
4840
|
raise NotImplementedError
|
@@ -4854,8 +4854,8 @@ class RedshiftApi:
|
|
4854
4854
|
self,
|
4855
4855
|
context: RequestContext,
|
4856
4856
|
snapshot_identifier: String,
|
4857
|
-
manual_snapshot_retention_period: IntegerOptional = None,
|
4858
|
-
force: Boolean = None,
|
4857
|
+
manual_snapshot_retention_period: IntegerOptional | None = None,
|
4858
|
+
force: Boolean | None = None,
|
4859
4859
|
**kwargs,
|
4860
4860
|
) -> ModifyClusterSnapshotResult:
|
4861
4861
|
raise NotImplementedError
|
@@ -4865,8 +4865,8 @@ class RedshiftApi:
|
|
4865
4865
|
self,
|
4866
4866
|
context: RequestContext,
|
4867
4867
|
cluster_identifier: String,
|
4868
|
-
schedule_identifier: String = None,
|
4869
|
-
disassociate_schedule: BooleanOptional = None,
|
4868
|
+
schedule_identifier: String | None = None,
|
4869
|
+
disassociate_schedule: BooleanOptional | None = None,
|
4870
4870
|
**kwargs,
|
4871
4871
|
) -> None:
|
4872
4872
|
raise NotImplementedError
|
@@ -4877,7 +4877,7 @@ class RedshiftApi:
|
|
4877
4877
|
context: RequestContext,
|
4878
4878
|
cluster_subnet_group_name: String,
|
4879
4879
|
subnet_ids: SubnetIdentifierList,
|
4880
|
-
description: String = None,
|
4880
|
+
description: String | None = None,
|
4881
4881
|
**kwargs,
|
4882
4882
|
) -> ModifyClusterSubnetGroupResult:
|
4883
4883
|
raise NotImplementedError
|
@@ -4898,7 +4898,7 @@ class RedshiftApi:
|
|
4898
4898
|
self,
|
4899
4899
|
context: RequestContext,
|
4900
4900
|
endpoint_name: String,
|
4901
|
-
vpc_security_group_ids: VpcSecurityGroupIdList = None,
|
4901
|
+
vpc_security_group_ids: VpcSecurityGroupIdList | None = None,
|
4902
4902
|
**kwargs,
|
4903
4903
|
) -> EndpointAccess:
|
4904
4904
|
raise NotImplementedError
|
@@ -4908,12 +4908,12 @@ class RedshiftApi:
|
|
4908
4908
|
self,
|
4909
4909
|
context: RequestContext,
|
4910
4910
|
subscription_name: String,
|
4911
|
-
sns_topic_arn: String = None,
|
4912
|
-
source_type: String = None,
|
4913
|
-
source_ids: SourceIdsList = None,
|
4914
|
-
event_categories: EventCategoriesList = None,
|
4915
|
-
severity: String = None,
|
4916
|
-
enabled: BooleanOptional = None,
|
4911
|
+
sns_topic_arn: String | None = None,
|
4912
|
+
source_type: String | None = None,
|
4913
|
+
source_ids: SourceIdsList | None = None,
|
4914
|
+
event_categories: EventCategoriesList | None = None,
|
4915
|
+
severity: String | None = None,
|
4916
|
+
enabled: BooleanOptional | None = None,
|
4917
4917
|
**kwargs,
|
4918
4918
|
) -> ModifyEventSubscriptionResult:
|
4919
4919
|
raise NotImplementedError
|
@@ -4923,8 +4923,8 @@ class RedshiftApi:
|
|
4923
4923
|
self,
|
4924
4924
|
context: RequestContext,
|
4925
4925
|
integration_arn: IntegrationArn,
|
4926
|
-
description: IntegrationDescription = None,
|
4927
|
-
integration_name: IntegrationName = None,
|
4926
|
+
description: IntegrationDescription | None = None,
|
4927
|
+
integration_name: IntegrationName | None = None,
|
4928
4928
|
**kwargs,
|
4929
4929
|
) -> Integration:
|
4930
4930
|
raise NotImplementedError
|
@@ -4934,11 +4934,11 @@ class RedshiftApi:
|
|
4934
4934
|
self,
|
4935
4935
|
context: RequestContext,
|
4936
4936
|
redshift_idc_application_arn: String,
|
4937
|
-
identity_namespace: IdentityNamespaceString = None,
|
4938
|
-
iam_role_arn: String = None,
|
4939
|
-
idc_display_name: IdcDisplayNameString = None,
|
4940
|
-
authorized_token_issuer_list: AuthorizedTokenIssuerList = None,
|
4941
|
-
service_integrations: ServiceIntegrationList = None,
|
4937
|
+
identity_namespace: IdentityNamespaceString | None = None,
|
4938
|
+
iam_role_arn: String | None = None,
|
4939
|
+
idc_display_name: IdcDisplayNameString | None = None,
|
4940
|
+
authorized_token_issuer_list: AuthorizedTokenIssuerList | None = None,
|
4941
|
+
service_integrations: ServiceIntegrationList | None = None,
|
4942
4942
|
**kwargs,
|
4943
4943
|
) -> ModifyRedshiftIdcApplicationResult:
|
4944
4944
|
raise NotImplementedError
|
@@ -4948,13 +4948,13 @@ class RedshiftApi:
|
|
4948
4948
|
self,
|
4949
4949
|
context: RequestContext,
|
4950
4950
|
scheduled_action_name: String,
|
4951
|
-
target_action: ScheduledActionType = None,
|
4952
|
-
schedule: String = None,
|
4953
|
-
iam_role: String = None,
|
4954
|
-
scheduled_action_description: String = None,
|
4955
|
-
start_time: TStamp = None,
|
4956
|
-
end_time: TStamp = None,
|
4957
|
-
enable: BooleanOptional = None,
|
4951
|
+
target_action: ScheduledActionType | None = None,
|
4952
|
+
schedule: String | None = None,
|
4953
|
+
iam_role: String | None = None,
|
4954
|
+
scheduled_action_description: String | None = None,
|
4955
|
+
start_time: TStamp | None = None,
|
4956
|
+
end_time: TStamp | None = None,
|
4957
|
+
enable: BooleanOptional | None = None,
|
4958
4958
|
**kwargs,
|
4959
4959
|
) -> ScheduledAction:
|
4960
4960
|
raise NotImplementedError
|
@@ -4965,7 +4965,7 @@ class RedshiftApi:
|
|
4965
4965
|
context: RequestContext,
|
4966
4966
|
cluster_identifier: String,
|
4967
4967
|
retention_period: Integer,
|
4968
|
-
manual: Boolean = None,
|
4968
|
+
manual: Boolean | None = None,
|
4969
4969
|
**kwargs,
|
4970
4970
|
) -> ModifySnapshotCopyRetentionPeriodResult:
|
4971
4971
|
raise NotImplementedError
|
@@ -4985,8 +4985,8 @@ class RedshiftApi:
|
|
4985
4985
|
self,
|
4986
4986
|
context: RequestContext,
|
4987
4987
|
usage_limit_id: String,
|
4988
|
-
amount: LongOptional = None,
|
4989
|
-
breach_action: UsageLimitBreachAction = None,
|
4988
|
+
amount: LongOptional | None = None,
|
4989
|
+
breach_action: UsageLimitBreachAction | None = None,
|
4990
4990
|
**kwargs,
|
4991
4991
|
) -> UsageLimit:
|
4992
4992
|
raise NotImplementedError
|
@@ -5002,7 +5002,7 @@ class RedshiftApi:
|
|
5002
5002
|
self,
|
5003
5003
|
context: RequestContext,
|
5004
5004
|
reserved_node_offering_id: String,
|
5005
|
-
node_count: IntegerOptional = None,
|
5005
|
+
node_count: IntegerOptional | None = None,
|
5006
5006
|
**kwargs,
|
5007
5007
|
) -> PurchaseReservedNodeOfferingResult:
|
5008
5008
|
raise NotImplementedError
|
@@ -5040,8 +5040,8 @@ class RedshiftApi:
|
|
5040
5040
|
self,
|
5041
5041
|
context: RequestContext,
|
5042
5042
|
parameter_group_name: String,
|
5043
|
-
reset_all_parameters: Boolean = None,
|
5044
|
-
parameters: ParametersList = None,
|
5043
|
+
reset_all_parameters: Boolean | None = None,
|
5044
|
+
parameters: ParametersList | None = None,
|
5045
5045
|
**kwargs,
|
5046
5046
|
) -> ClusterParameterGroupNameMessage:
|
5047
5047
|
raise NotImplementedError
|
@@ -5051,12 +5051,12 @@ class RedshiftApi:
|
|
5051
5051
|
self,
|
5052
5052
|
context: RequestContext,
|
5053
5053
|
cluster_identifier: String,
|
5054
|
-
cluster_type: String = None,
|
5055
|
-
node_type: String = None,
|
5056
|
-
number_of_nodes: IntegerOptional = None,
|
5057
|
-
classic: BooleanOptional = None,
|
5058
|
-
reserved_node_id: String = None,
|
5059
|
-
target_reserved_node_offering_id: String = None,
|
5054
|
+
cluster_type: String | None = None,
|
5055
|
+
node_type: String | None = None,
|
5056
|
+
number_of_nodes: IntegerOptional | None = None,
|
5057
|
+
classic: BooleanOptional | None = None,
|
5058
|
+
reserved_node_id: String | None = None,
|
5059
|
+
target_reserved_node_offering_id: String | None = None,
|
5060
5060
|
**kwargs,
|
5061
5061
|
) -> ResizeClusterResult:
|
5062
5062
|
raise NotImplementedError
|
@@ -5066,42 +5066,42 @@ class RedshiftApi:
|
|
5066
5066
|
self,
|
5067
5067
|
context: RequestContext,
|
5068
5068
|
cluster_identifier: String,
|
5069
|
-
snapshot_identifier: String = None,
|
5070
|
-
snapshot_arn: String = None,
|
5071
|
-
snapshot_cluster_identifier: String = None,
|
5072
|
-
port: IntegerOptional = None,
|
5073
|
-
availability_zone: String = None,
|
5074
|
-
allow_version_upgrade: BooleanOptional = None,
|
5075
|
-
cluster_subnet_group_name: String = None,
|
5076
|
-
publicly_accessible: BooleanOptional = None,
|
5077
|
-
owner_account: String = None,
|
5078
|
-
hsm_client_certificate_identifier: String = None,
|
5079
|
-
hsm_configuration_identifier: String = None,
|
5080
|
-
elastic_ip: String = None,
|
5081
|
-
cluster_parameter_group_name: String = None,
|
5082
|
-
cluster_security_groups: ClusterSecurityGroupNameList = None,
|
5083
|
-
vpc_security_group_ids: VpcSecurityGroupIdList = None,
|
5084
|
-
preferred_maintenance_window: String = None,
|
5085
|
-
automated_snapshot_retention_period: IntegerOptional = None,
|
5086
|
-
manual_snapshot_retention_period: IntegerOptional = None,
|
5087
|
-
kms_key_id: String = None,
|
5088
|
-
node_type: String = None,
|
5089
|
-
enhanced_vpc_routing: BooleanOptional = None,
|
5090
|
-
additional_info: String = None,
|
5091
|
-
iam_roles: IamRoleArnList = None,
|
5092
|
-
maintenance_track_name: String = None,
|
5093
|
-
snapshot_schedule_identifier: String = None,
|
5094
|
-
number_of_nodes: IntegerOptional = None,
|
5095
|
-
availability_zone_relocation: BooleanOptional = None,
|
5096
|
-
aqua_configuration_status: AquaConfigurationStatus = None,
|
5097
|
-
default_iam_role_arn: String = None,
|
5098
|
-
reserved_node_id: String = None,
|
5099
|
-
target_reserved_node_offering_id: String = None,
|
5100
|
-
encrypted: BooleanOptional = None,
|
5101
|
-
manage_master_password: BooleanOptional = None,
|
5102
|
-
master_password_secret_kms_key_id: String = None,
|
5103
|
-
ip_address_type: String = None,
|
5104
|
-
multi_az: BooleanOptional = None,
|
5069
|
+
snapshot_identifier: String | None = None,
|
5070
|
+
snapshot_arn: String | None = None,
|
5071
|
+
snapshot_cluster_identifier: String | None = None,
|
5072
|
+
port: IntegerOptional | None = None,
|
5073
|
+
availability_zone: String | None = None,
|
5074
|
+
allow_version_upgrade: BooleanOptional | None = None,
|
5075
|
+
cluster_subnet_group_name: String | None = None,
|
5076
|
+
publicly_accessible: BooleanOptional | None = None,
|
5077
|
+
owner_account: String | None = None,
|
5078
|
+
hsm_client_certificate_identifier: String | None = None,
|
5079
|
+
hsm_configuration_identifier: String | None = None,
|
5080
|
+
elastic_ip: String | None = None,
|
5081
|
+
cluster_parameter_group_name: String | None = None,
|
5082
|
+
cluster_security_groups: ClusterSecurityGroupNameList | None = None,
|
5083
|
+
vpc_security_group_ids: VpcSecurityGroupIdList | None = None,
|
5084
|
+
preferred_maintenance_window: String | None = None,
|
5085
|
+
automated_snapshot_retention_period: IntegerOptional | None = None,
|
5086
|
+
manual_snapshot_retention_period: IntegerOptional | None = None,
|
5087
|
+
kms_key_id: String | None = None,
|
5088
|
+
node_type: String | None = None,
|
5089
|
+
enhanced_vpc_routing: BooleanOptional | None = None,
|
5090
|
+
additional_info: String | None = None,
|
5091
|
+
iam_roles: IamRoleArnList | None = None,
|
5092
|
+
maintenance_track_name: String | None = None,
|
5093
|
+
snapshot_schedule_identifier: String | None = None,
|
5094
|
+
number_of_nodes: IntegerOptional | None = None,
|
5095
|
+
availability_zone_relocation: BooleanOptional | None = None,
|
5096
|
+
aqua_configuration_status: AquaConfigurationStatus | None = None,
|
5097
|
+
default_iam_role_arn: String | None = None,
|
5098
|
+
reserved_node_id: String | None = None,
|
5099
|
+
target_reserved_node_offering_id: String | None = None,
|
5100
|
+
encrypted: BooleanOptional | None = None,
|
5101
|
+
manage_master_password: BooleanOptional | None = None,
|
5102
|
+
master_password_secret_kms_key_id: String | None = None,
|
5103
|
+
ip_address_type: String | None = None,
|
5104
|
+
multi_az: BooleanOptional | None = None,
|
5105
5105
|
**kwargs,
|
5106
5106
|
) -> RestoreFromClusterSnapshotResult:
|
5107
5107
|
raise NotImplementedError
|
@@ -5115,10 +5115,10 @@ class RedshiftApi:
|
|
5115
5115
|
source_database_name: String,
|
5116
5116
|
source_table_name: String,
|
5117
5117
|
new_table_name: String,
|
5118
|
-
source_schema_name: String = None,
|
5119
|
-
target_database_name: String = None,
|
5120
|
-
target_schema_name: String = None,
|
5121
|
-
enable_case_sensitive_identifier: BooleanOptional = None,
|
5118
|
+
source_schema_name: String | None = None,
|
5119
|
+
target_database_name: String | None = None,
|
5120
|
+
target_schema_name: String | None = None,
|
5121
|
+
enable_case_sensitive_identifier: BooleanOptional | None = None,
|
5122
5122
|
**kwargs,
|
5123
5123
|
) -> RestoreTableFromClusterSnapshotResult:
|
5124
5124
|
raise NotImplementedError
|
@@ -5134,9 +5134,9 @@ class RedshiftApi:
|
|
5134
5134
|
self,
|
5135
5135
|
context: RequestContext,
|
5136
5136
|
cluster_security_group_name: String,
|
5137
|
-
cidrip: String = None,
|
5138
|
-
ec2_security_group_name: String = None,
|
5139
|
-
ec2_security_group_owner_id: String = None,
|
5137
|
+
cidrip: String | None = None,
|
5138
|
+
ec2_security_group_name: String | None = None,
|
5139
|
+
ec2_security_group_owner_id: String | None = None,
|
5140
5140
|
**kwargs,
|
5141
5141
|
) -> RevokeClusterSecurityGroupIngressResult:
|
5142
5142
|
raise NotImplementedError
|
@@ -5145,10 +5145,10 @@ class RedshiftApi:
|
|
5145
5145
|
def revoke_endpoint_access(
|
5146
5146
|
self,
|
5147
5147
|
context: RequestContext,
|
5148
|
-
cluster_identifier: String = None,
|
5149
|
-
account: String = None,
|
5150
|
-
vpc_ids: VpcIdentifierList = None,
|
5151
|
-
force: Boolean = None,
|
5148
|
+
cluster_identifier: String | None = None,
|
5149
|
+
account: String | None = None,
|
5150
|
+
vpc_ids: VpcIdentifierList | None = None,
|
5151
|
+
force: Boolean | None = None,
|
5152
5152
|
**kwargs,
|
5153
5153
|
) -> EndpointAuthorization:
|
5154
5154
|
raise NotImplementedError
|
@@ -5158,9 +5158,9 @@ class RedshiftApi:
|
|
5158
5158
|
self,
|
5159
5159
|
context: RequestContext,
|
5160
5160
|
account_with_restore_access: String,
|
5161
|
-
snapshot_identifier: String = None,
|
5162
|
-
snapshot_arn: String = None,
|
5163
|
-
snapshot_cluster_identifier: String = None,
|
5161
|
+
snapshot_identifier: String | None = None,
|
5162
|
+
snapshot_arn: String | None = None,
|
5163
|
+
snapshot_cluster_identifier: String | None = None,
|
5164
5164
|
**kwargs,
|
5165
5165
|
) -> RevokeSnapshotAccessResult:
|
5166
5166
|
raise NotImplementedError
|
@@ -5180,7 +5180,7 @@ class RedshiftApi:
|
|
5180
5180
|
database_name: PartnerIntegrationDatabaseName,
|
5181
5181
|
partner_name: PartnerIntegrationPartnerName,
|
5182
5182
|
status: PartnerIntegrationStatus,
|
5183
|
-
status_message: PartnerIntegrationStatusMessage = None,
|
5183
|
+
status_message: PartnerIntegrationStatusMessage | None = None,
|
5184
5184
|
**kwargs,
|
5185
5185
|
) -> PartnerIntegrationOutputMessage:
|
5186
5186
|
raise NotImplementedError
|