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
@@ -2372,10 +2372,10 @@ class S3ControlApi:
|
|
2372
2372
|
access_grants_location_id: AccessGrantsLocationId,
|
2373
2373
|
grantee: Grantee,
|
2374
2374
|
permission: Permission,
|
2375
|
-
access_grants_location_configuration: AccessGrantsLocationConfiguration = None,
|
2376
|
-
application_arn: IdentityCenterApplicationArn = None,
|
2377
|
-
s3_prefix_type: S3PrefixType = None,
|
2378
|
-
tags: TagList = None,
|
2375
|
+
access_grants_location_configuration: AccessGrantsLocationConfiguration | None = None,
|
2376
|
+
application_arn: IdentityCenterApplicationArn | None = None,
|
2377
|
+
s3_prefix_type: S3PrefixType | None = None,
|
2378
|
+
tags: TagList | None = None,
|
2379
2379
|
**kwargs,
|
2380
2380
|
) -> CreateAccessGrantResult:
|
2381
2381
|
raise NotImplementedError
|
@@ -2385,8 +2385,8 @@ class S3ControlApi:
|
|
2385
2385
|
self,
|
2386
2386
|
context: RequestContext,
|
2387
2387
|
account_id: AccountId,
|
2388
|
-
identity_center_arn: IdentityCenterArn = None,
|
2389
|
-
tags: TagList = None,
|
2388
|
+
identity_center_arn: IdentityCenterArn | None = None,
|
2389
|
+
tags: TagList | None = None,
|
2390
2390
|
**kwargs,
|
2391
2391
|
) -> CreateAccessGrantsInstanceResult:
|
2392
2392
|
raise NotImplementedError
|
@@ -2398,7 +2398,7 @@ class S3ControlApi:
|
|
2398
2398
|
account_id: AccountId,
|
2399
2399
|
location_scope: S3Prefix,
|
2400
2400
|
iam_role_arn: IAMRoleArn,
|
2401
|
-
tags: TagList = None,
|
2401
|
+
tags: TagList | None = None,
|
2402
2402
|
**kwargs,
|
2403
2403
|
) -> CreateAccessGrantsLocationResult:
|
2404
2404
|
raise NotImplementedError
|
@@ -2410,10 +2410,10 @@ class S3ControlApi:
|
|
2410
2410
|
account_id: AccountId,
|
2411
2411
|
name: AccessPointName,
|
2412
2412
|
bucket: BucketName,
|
2413
|
-
vpc_configuration: VpcConfiguration = None,
|
2414
|
-
public_access_block_configuration: PublicAccessBlockConfiguration = None,
|
2415
|
-
bucket_account_id: AccountId = None,
|
2416
|
-
scope: Scope = None,
|
2413
|
+
vpc_configuration: VpcConfiguration | None = None,
|
2414
|
+
public_access_block_configuration: PublicAccessBlockConfiguration | None = None,
|
2415
|
+
bucket_account_id: AccountId | None = None,
|
2416
|
+
scope: Scope | None = None,
|
2417
2417
|
**kwargs,
|
2418
2418
|
) -> CreateAccessPointResult:
|
2419
2419
|
raise NotImplementedError
|
@@ -2434,15 +2434,15 @@ class S3ControlApi:
|
|
2434
2434
|
self,
|
2435
2435
|
context: RequestContext,
|
2436
2436
|
bucket: BucketName,
|
2437
|
-
acl: BucketCannedACL = None,
|
2438
|
-
create_bucket_configuration: CreateBucketConfiguration = None,
|
2439
|
-
grant_full_control: GrantFullControl = None,
|
2440
|
-
grant_read: GrantRead = None,
|
2441
|
-
grant_read_acp: GrantReadACP = None,
|
2442
|
-
grant_write: GrantWrite = None,
|
2443
|
-
grant_write_acp: GrantWriteACP = None,
|
2444
|
-
object_lock_enabled_for_bucket: ObjectLockEnabledForBucket = None,
|
2445
|
-
outpost_id: NonEmptyMaxLength64String = None,
|
2437
|
+
acl: BucketCannedACL | None = None,
|
2438
|
+
create_bucket_configuration: CreateBucketConfiguration | None = None,
|
2439
|
+
grant_full_control: GrantFullControl | None = None,
|
2440
|
+
grant_read: GrantRead | None = None,
|
2441
|
+
grant_read_acp: GrantReadACP | None = None,
|
2442
|
+
grant_write: GrantWrite | None = None,
|
2443
|
+
grant_write_acp: GrantWriteACP | None = None,
|
2444
|
+
object_lock_enabled_for_bucket: ObjectLockEnabledForBucket | None = None,
|
2445
|
+
outpost_id: NonEmptyMaxLength64String | None = None,
|
2446
2446
|
**kwargs,
|
2447
2447
|
) -> CreateBucketResult:
|
2448
2448
|
raise NotImplementedError
|
@@ -2457,11 +2457,11 @@ class S3ControlApi:
|
|
2457
2457
|
client_request_token: NonEmptyMaxLength64String,
|
2458
2458
|
priority: JobPriority,
|
2459
2459
|
role_arn: IAMRoleArn,
|
2460
|
-
confirmation_required: ConfirmationRequired = None,
|
2461
|
-
manifest: JobManifest = None,
|
2462
|
-
description: NonEmptyMaxLength256String = None,
|
2463
|
-
tags: S3TagSet = None,
|
2464
|
-
manifest_generator: JobManifestGenerator = None,
|
2460
|
+
confirmation_required: ConfirmationRequired | None = None,
|
2461
|
+
manifest: JobManifest | None = None,
|
2462
|
+
description: NonEmptyMaxLength256String | None = None,
|
2463
|
+
tags: S3TagSet | None = None,
|
2464
|
+
manifest_generator: JobManifestGenerator | None = None,
|
2465
2465
|
**kwargs,
|
2466
2466
|
) -> CreateJobResult:
|
2467
2467
|
raise NotImplementedError
|
@@ -2483,7 +2483,7 @@ class S3ControlApi:
|
|
2483
2483
|
context: RequestContext,
|
2484
2484
|
account_id: AccountId,
|
2485
2485
|
storage_lens_group: StorageLensGroup,
|
2486
|
-
tags: TagList = None,
|
2486
|
+
tags: TagList | None = None,
|
2487
2487
|
**kwargs,
|
2488
2488
|
) -> None:
|
2489
2489
|
raise NotImplementedError
|
@@ -2796,9 +2796,9 @@ class S3ControlApi:
|
|
2796
2796
|
account_id: AccountId,
|
2797
2797
|
target: S3Prefix,
|
2798
2798
|
permission: Permission,
|
2799
|
-
duration_seconds: DurationSeconds = None,
|
2800
|
-
privilege: Privilege = None,
|
2801
|
-
target_type: S3PrefixType = None,
|
2799
|
+
duration_seconds: DurationSeconds | None = None,
|
2800
|
+
privilege: Privilege | None = None,
|
2801
|
+
target_type: S3PrefixType | None = None,
|
2802
2802
|
**kwargs,
|
2803
2803
|
) -> GetDataAccessResult:
|
2804
2804
|
raise NotImplementedError
|
@@ -2878,13 +2878,13 @@ class S3ControlApi:
|
|
2878
2878
|
self,
|
2879
2879
|
context: RequestContext,
|
2880
2880
|
account_id: AccountId,
|
2881
|
-
next_token: ContinuationToken = None,
|
2882
|
-
max_results: MaxResults = None,
|
2883
|
-
grantee_type: GranteeType = None,
|
2884
|
-
grantee_identifier: GranteeIdentifier = None,
|
2885
|
-
permission: Permission = None,
|
2886
|
-
grant_scope: S3Prefix = None,
|
2887
|
-
application_arn: IdentityCenterApplicationArn = None,
|
2881
|
+
next_token: ContinuationToken | None = None,
|
2882
|
+
max_results: MaxResults | None = None,
|
2883
|
+
grantee_type: GranteeType | None = None,
|
2884
|
+
grantee_identifier: GranteeIdentifier | None = None,
|
2885
|
+
permission: Permission | None = None,
|
2886
|
+
grant_scope: S3Prefix | None = None,
|
2887
|
+
application_arn: IdentityCenterApplicationArn | None = None,
|
2888
2888
|
**kwargs,
|
2889
2889
|
) -> ListAccessGrantsResult:
|
2890
2890
|
raise NotImplementedError
|
@@ -2894,8 +2894,8 @@ class S3ControlApi:
|
|
2894
2894
|
self,
|
2895
2895
|
context: RequestContext,
|
2896
2896
|
account_id: AccountId,
|
2897
|
-
next_token: ContinuationToken = None,
|
2898
|
-
max_results: MaxResults = None,
|
2897
|
+
next_token: ContinuationToken | None = None,
|
2898
|
+
max_results: MaxResults | None = None,
|
2899
2899
|
**kwargs,
|
2900
2900
|
) -> ListAccessGrantsInstancesResult:
|
2901
2901
|
raise NotImplementedError
|
@@ -2905,9 +2905,9 @@ class S3ControlApi:
|
|
2905
2905
|
self,
|
2906
2906
|
context: RequestContext,
|
2907
2907
|
account_id: AccountId,
|
2908
|
-
next_token: ContinuationToken = None,
|
2909
|
-
max_results: MaxResults = None,
|
2910
|
-
location_scope: S3Prefix = None,
|
2908
|
+
next_token: ContinuationToken | None = None,
|
2909
|
+
max_results: MaxResults | None = None,
|
2910
|
+
location_scope: S3Prefix | None = None,
|
2911
2911
|
**kwargs,
|
2912
2912
|
) -> ListAccessGrantsLocationsResult:
|
2913
2913
|
raise NotImplementedError
|
@@ -2917,9 +2917,9 @@ class S3ControlApi:
|
|
2917
2917
|
self,
|
2918
2918
|
context: RequestContext,
|
2919
2919
|
account_id: AccountId,
|
2920
|
-
bucket: BucketName = None,
|
2921
|
-
next_token: NonEmptyMaxLength1024String = None,
|
2922
|
-
max_results: MaxResults = None,
|
2920
|
+
bucket: BucketName | None = None,
|
2921
|
+
next_token: NonEmptyMaxLength1024String | None = None,
|
2922
|
+
max_results: MaxResults | None = None,
|
2923
2923
|
**kwargs,
|
2924
2924
|
) -> ListAccessPointsResult:
|
2925
2925
|
raise NotImplementedError
|
@@ -2929,9 +2929,9 @@ class S3ControlApi:
|
|
2929
2929
|
self,
|
2930
2930
|
context: RequestContext,
|
2931
2931
|
account_id: AccountId,
|
2932
|
-
directory_bucket: BucketName = None,
|
2933
|
-
next_token: NonEmptyMaxLength1024String = None,
|
2934
|
-
max_results: MaxResults = None,
|
2932
|
+
directory_bucket: BucketName | None = None,
|
2933
|
+
next_token: NonEmptyMaxLength1024String | None = None,
|
2934
|
+
max_results: MaxResults | None = None,
|
2935
2935
|
**kwargs,
|
2936
2936
|
) -> ListAccessPointsForDirectoryBucketsResult:
|
2937
2937
|
raise NotImplementedError
|
@@ -2941,8 +2941,8 @@ class S3ControlApi:
|
|
2941
2941
|
self,
|
2942
2942
|
context: RequestContext,
|
2943
2943
|
account_id: AccountId,
|
2944
|
-
next_token: NonEmptyMaxLength1024String = None,
|
2945
|
-
max_results: MaxResults = None,
|
2944
|
+
next_token: NonEmptyMaxLength1024String | None = None,
|
2945
|
+
max_results: MaxResults | None = None,
|
2946
2946
|
**kwargs,
|
2947
2947
|
) -> ListAccessPointsForObjectLambdaResult:
|
2948
2948
|
raise NotImplementedError
|
@@ -2952,10 +2952,10 @@ class S3ControlApi:
|
|
2952
2952
|
self,
|
2953
2953
|
context: RequestContext,
|
2954
2954
|
account_id: AccountId,
|
2955
|
-
grant_scope: S3Prefix = None,
|
2956
|
-
next_token: ContinuationToken = None,
|
2957
|
-
max_results: MaxResults = None,
|
2958
|
-
allowed_by_application: Boolean = None,
|
2955
|
+
grant_scope: S3Prefix | None = None,
|
2956
|
+
next_token: ContinuationToken | None = None,
|
2957
|
+
max_results: MaxResults | None = None,
|
2958
|
+
allowed_by_application: Boolean | None = None,
|
2959
2959
|
**kwargs,
|
2960
2960
|
) -> ListCallerAccessGrantsResult:
|
2961
2961
|
raise NotImplementedError
|
@@ -2965,9 +2965,9 @@ class S3ControlApi:
|
|
2965
2965
|
self,
|
2966
2966
|
context: RequestContext,
|
2967
2967
|
account_id: AccountId,
|
2968
|
-
job_statuses: JobStatusList = None,
|
2969
|
-
next_token: StringForNextToken = None,
|
2970
|
-
max_results: MaxResults = None,
|
2968
|
+
job_statuses: JobStatusList | None = None,
|
2969
|
+
next_token: StringForNextToken | None = None,
|
2970
|
+
max_results: MaxResults | None = None,
|
2971
2971
|
**kwargs,
|
2972
2972
|
) -> ListJobsResult:
|
2973
2973
|
raise NotImplementedError
|
@@ -2977,8 +2977,8 @@ class S3ControlApi:
|
|
2977
2977
|
self,
|
2978
2978
|
context: RequestContext,
|
2979
2979
|
account_id: AccountId,
|
2980
|
-
next_token: NonEmptyMaxLength1024String = None,
|
2981
|
-
max_results: MaxResults = None,
|
2980
|
+
next_token: NonEmptyMaxLength1024String | None = None,
|
2981
|
+
max_results: MaxResults | None = None,
|
2982
2982
|
**kwargs,
|
2983
2983
|
) -> ListMultiRegionAccessPointsResult:
|
2984
2984
|
raise NotImplementedError
|
@@ -2988,9 +2988,9 @@ class S3ControlApi:
|
|
2988
2988
|
self,
|
2989
2989
|
context: RequestContext,
|
2990
2990
|
account_id: AccountId,
|
2991
|
-
next_token: NonEmptyMaxLength1024String = None,
|
2992
|
-
max_results: MaxResults = None,
|
2993
|
-
outpost_id: NonEmptyMaxLength64String = None,
|
2991
|
+
next_token: NonEmptyMaxLength1024String | None = None,
|
2992
|
+
max_results: MaxResults | None = None,
|
2993
|
+
outpost_id: NonEmptyMaxLength64String | None = None,
|
2994
2994
|
**kwargs,
|
2995
2995
|
) -> ListRegionalBucketsResult:
|
2996
2996
|
raise NotImplementedError
|
@@ -3000,7 +3000,7 @@ class S3ControlApi:
|
|
3000
3000
|
self,
|
3001
3001
|
context: RequestContext,
|
3002
3002
|
account_id: AccountId,
|
3003
|
-
next_token: ContinuationToken = None,
|
3003
|
+
next_token: ContinuationToken | None = None,
|
3004
3004
|
**kwargs,
|
3005
3005
|
) -> ListStorageLensConfigurationsResult:
|
3006
3006
|
raise NotImplementedError
|
@@ -3010,7 +3010,7 @@ class S3ControlApi:
|
|
3010
3010
|
self,
|
3011
3011
|
context: RequestContext,
|
3012
3012
|
account_id: AccountId,
|
3013
|
-
next_token: ContinuationToken = None,
|
3013
|
+
next_token: ContinuationToken | None = None,
|
3014
3014
|
**kwargs,
|
3015
3015
|
) -> ListStorageLensGroupsResult:
|
3016
3016
|
raise NotImplementedError
|
@@ -3027,7 +3027,7 @@ class S3ControlApi:
|
|
3027
3027
|
context: RequestContext,
|
3028
3028
|
account_id: AccountId,
|
3029
3029
|
policy: PolicyDocument,
|
3030
|
-
organization: Organization = None,
|
3030
|
+
organization: Organization | None = None,
|
3031
3031
|
**kwargs,
|
3032
3032
|
) -> PutAccessGrantsInstanceResourcePolicyResult:
|
3033
3033
|
raise NotImplementedError
|
@@ -3082,7 +3082,7 @@ class S3ControlApi:
|
|
3082
3082
|
context: RequestContext,
|
3083
3083
|
account_id: AccountId,
|
3084
3084
|
bucket: BucketName,
|
3085
|
-
lifecycle_configuration: LifecycleConfiguration = None,
|
3085
|
+
lifecycle_configuration: LifecycleConfiguration | None = None,
|
3086
3086
|
**kwargs,
|
3087
3087
|
) -> None:
|
3088
3088
|
raise NotImplementedError
|
@@ -3094,7 +3094,7 @@ class S3ControlApi:
|
|
3094
3094
|
account_id: AccountId,
|
3095
3095
|
bucket: BucketName,
|
3096
3096
|
policy: Policy,
|
3097
|
-
confirm_remove_self_bucket_access: ConfirmRemoveSelfBucketAccess = None,
|
3097
|
+
confirm_remove_self_bucket_access: ConfirmRemoveSelfBucketAccess | None = None,
|
3098
3098
|
**kwargs,
|
3099
3099
|
) -> None:
|
3100
3100
|
raise NotImplementedError
|
@@ -3128,7 +3128,7 @@ class S3ControlApi:
|
|
3128
3128
|
account_id: AccountId,
|
3129
3129
|
bucket: BucketName,
|
3130
3130
|
versioning_configuration: VersioningConfiguration,
|
3131
|
-
mfa: MFA = None,
|
3131
|
+
mfa: MFA | None = None,
|
3132
3132
|
**kwargs,
|
3133
3133
|
) -> None:
|
3134
3134
|
raise NotImplementedError
|
@@ -3172,7 +3172,7 @@ class S3ControlApi:
|
|
3172
3172
|
config_id: ConfigId,
|
3173
3173
|
account_id: AccountId,
|
3174
3174
|
storage_lens_configuration: StorageLensConfiguration,
|
3175
|
-
tags: StorageLensTags = None,
|
3175
|
+
tags: StorageLensTags | None = None,
|
3176
3176
|
**kwargs,
|
3177
3177
|
) -> None:
|
3178
3178
|
raise NotImplementedError
|
@@ -3250,7 +3250,7 @@ class S3ControlApi:
|
|
3250
3250
|
account_id: AccountId,
|
3251
3251
|
job_id: JobId,
|
3252
3252
|
requested_job_status: RequestedJobStatus,
|
3253
|
-
status_update_reason: JobStatusUpdateReason = None,
|
3253
|
+
status_update_reason: JobStatusUpdateReason | None = None,
|
3254
3254
|
**kwargs,
|
3255
3255
|
) -> UpdateJobStatusResult:
|
3256
3256
|
raise NotImplementedError
|
@@ -463,15 +463,15 @@ class SchedulerApi:
|
|
463
463
|
name: Name,
|
464
464
|
schedule_expression: ScheduleExpression,
|
465
465
|
target: Target,
|
466
|
-
action_after_completion: ActionAfterCompletion = None,
|
467
|
-
client_token: ClientToken = None,
|
468
|
-
description: Description = None,
|
469
|
-
end_date: EndDate = None,
|
470
|
-
group_name: ScheduleGroupName = None,
|
471
|
-
kms_key_arn: KmsKeyArn = None,
|
472
|
-
schedule_expression_timezone: ScheduleExpressionTimezone = None,
|
473
|
-
start_date: StartDate = None,
|
474
|
-
state: ScheduleState = None,
|
466
|
+
action_after_completion: ActionAfterCompletion | None = None,
|
467
|
+
client_token: ClientToken | None = None,
|
468
|
+
description: Description | None = None,
|
469
|
+
end_date: EndDate | None = None,
|
470
|
+
group_name: ScheduleGroupName | None = None,
|
471
|
+
kms_key_arn: KmsKeyArn | None = None,
|
472
|
+
schedule_expression_timezone: ScheduleExpressionTimezone | None = None,
|
473
|
+
start_date: StartDate | None = None,
|
474
|
+
state: ScheduleState | None = None,
|
475
475
|
**kwargs,
|
476
476
|
) -> CreateScheduleOutput:
|
477
477
|
raise NotImplementedError
|
@@ -481,8 +481,8 @@ class SchedulerApi:
|
|
481
481
|
self,
|
482
482
|
context: RequestContext,
|
483
483
|
name: ScheduleGroupName,
|
484
|
-
client_token: ClientToken = None,
|
485
|
-
tags: TagList = None,
|
484
|
+
client_token: ClientToken | None = None,
|
485
|
+
tags: TagList | None = None,
|
486
486
|
**kwargs,
|
487
487
|
) -> CreateScheduleGroupOutput:
|
488
488
|
raise NotImplementedError
|
@@ -492,8 +492,8 @@ class SchedulerApi:
|
|
492
492
|
self,
|
493
493
|
context: RequestContext,
|
494
494
|
name: Name,
|
495
|
-
client_token: ClientToken = None,
|
496
|
-
group_name: ScheduleGroupName = None,
|
495
|
+
client_token: ClientToken | None = None,
|
496
|
+
group_name: ScheduleGroupName | None = None,
|
497
497
|
**kwargs,
|
498
498
|
) -> DeleteScheduleOutput:
|
499
499
|
raise NotImplementedError
|
@@ -503,14 +503,18 @@ class SchedulerApi:
|
|
503
503
|
self,
|
504
504
|
context: RequestContext,
|
505
505
|
name: ScheduleGroupName,
|
506
|
-
client_token: ClientToken = None,
|
506
|
+
client_token: ClientToken | None = None,
|
507
507
|
**kwargs,
|
508
508
|
) -> DeleteScheduleGroupOutput:
|
509
509
|
raise NotImplementedError
|
510
510
|
|
511
511
|
@handler("GetSchedule")
|
512
512
|
def get_schedule(
|
513
|
-
self,
|
513
|
+
self,
|
514
|
+
context: RequestContext,
|
515
|
+
name: Name,
|
516
|
+
group_name: ScheduleGroupName | None = None,
|
517
|
+
**kwargs,
|
514
518
|
) -> GetScheduleOutput:
|
515
519
|
raise NotImplementedError
|
516
520
|
|
@@ -524,9 +528,9 @@ class SchedulerApi:
|
|
524
528
|
def list_schedule_groups(
|
525
529
|
self,
|
526
530
|
context: RequestContext,
|
527
|
-
max_results: MaxResults = None,
|
528
|
-
name_prefix: ScheduleGroupNamePrefix = None,
|
529
|
-
next_token: NextToken = None,
|
531
|
+
max_results: MaxResults | None = None,
|
532
|
+
name_prefix: ScheduleGroupNamePrefix | None = None,
|
533
|
+
next_token: NextToken | None = None,
|
530
534
|
**kwargs,
|
531
535
|
) -> ListScheduleGroupsOutput:
|
532
536
|
raise NotImplementedError
|
@@ -535,11 +539,11 @@ class SchedulerApi:
|
|
535
539
|
def list_schedules(
|
536
540
|
self,
|
537
541
|
context: RequestContext,
|
538
|
-
group_name: ScheduleGroupName = None,
|
539
|
-
max_results: MaxResults = None,
|
540
|
-
name_prefix: NamePrefix = None,
|
541
|
-
next_token: NextToken = None,
|
542
|
-
state: ScheduleState = None,
|
542
|
+
group_name: ScheduleGroupName | None = None,
|
543
|
+
max_results: MaxResults | None = None,
|
544
|
+
name_prefix: NamePrefix | None = None,
|
545
|
+
next_token: NextToken | None = None,
|
546
|
+
state: ScheduleState | None = None,
|
543
547
|
**kwargs,
|
544
548
|
) -> ListSchedulesOutput:
|
545
549
|
raise NotImplementedError
|
@@ -570,15 +574,15 @@ class SchedulerApi:
|
|
570
574
|
name: Name,
|
571
575
|
schedule_expression: ScheduleExpression,
|
572
576
|
target: Target,
|
573
|
-
action_after_completion: ActionAfterCompletion = None,
|
574
|
-
client_token: ClientToken = None,
|
575
|
-
description: Description = None,
|
576
|
-
end_date: EndDate = None,
|
577
|
-
group_name: ScheduleGroupName = None,
|
578
|
-
kms_key_arn: KmsKeyArn = None,
|
579
|
-
schedule_expression_timezone: ScheduleExpressionTimezone = None,
|
580
|
-
start_date: StartDate = None,
|
581
|
-
state: ScheduleState = None,
|
577
|
+
action_after_completion: ActionAfterCompletion | None = None,
|
578
|
+
client_token: ClientToken | None = None,
|
579
|
+
description: Description | None = None,
|
580
|
+
end_date: EndDate | None = None,
|
581
|
+
group_name: ScheduleGroupName | None = None,
|
582
|
+
kms_key_arn: KmsKeyArn | None = None,
|
583
|
+
schedule_expression_timezone: ScheduleExpressionTimezone | None = None,
|
584
|
+
start_date: StartDate | None = None,
|
585
|
+
state: ScheduleState | None = None,
|
582
586
|
**kwargs,
|
583
587
|
) -> UpdateScheduleOutput:
|
584
588
|
raise NotImplementedError
|
@@ -569,10 +569,10 @@ class SecretsmanagerApi:
|
|
569
569
|
def batch_get_secret_value(
|
570
570
|
self,
|
571
571
|
context: RequestContext,
|
572
|
-
secret_id_list: SecretIdListType = None,
|
573
|
-
filters: FiltersListType = None,
|
574
|
-
max_results: MaxResultsBatchType = None,
|
575
|
-
next_token: NextTokenType = None,
|
572
|
+
secret_id_list: SecretIdListType | None = None,
|
573
|
+
filters: FiltersListType | None = None,
|
574
|
+
max_results: MaxResultsBatchType | None = None,
|
575
|
+
next_token: NextTokenType | None = None,
|
576
576
|
**kwargs,
|
577
577
|
) -> BatchGetSecretValueResponse:
|
578
578
|
raise NotImplementedError
|
@@ -588,14 +588,14 @@ class SecretsmanagerApi:
|
|
588
588
|
self,
|
589
589
|
context: RequestContext,
|
590
590
|
name: NameType,
|
591
|
-
client_request_token: ClientRequestTokenType = None,
|
592
|
-
description: DescriptionType = None,
|
593
|
-
kms_key_id: KmsKeyIdType = None,
|
594
|
-
secret_binary: SecretBinaryType = None,
|
595
|
-
secret_string: SecretStringType = None,
|
596
|
-
tags: TagListType = None,
|
597
|
-
add_replica_regions: AddReplicaRegionListType = None,
|
598
|
-
force_overwrite_replica_secret: BooleanType = None,
|
591
|
+
client_request_token: ClientRequestTokenType | None = None,
|
592
|
+
description: DescriptionType | None = None,
|
593
|
+
kms_key_id: KmsKeyIdType | None = None,
|
594
|
+
secret_binary: SecretBinaryType | None = None,
|
595
|
+
secret_string: SecretStringType | None = None,
|
596
|
+
tags: TagListType | None = None,
|
597
|
+
add_replica_regions: AddReplicaRegionListType | None = None,
|
598
|
+
force_overwrite_replica_secret: BooleanType | None = None,
|
599
599
|
**kwargs,
|
600
600
|
) -> CreateSecretResponse:
|
601
601
|
raise NotImplementedError
|
@@ -611,8 +611,8 @@ class SecretsmanagerApi:
|
|
611
611
|
self,
|
612
612
|
context: RequestContext,
|
613
613
|
secret_id: SecretIdType,
|
614
|
-
recovery_window_in_days: RecoveryWindowInDaysType = None,
|
615
|
-
force_delete_without_recovery: BooleanType = None,
|
614
|
+
recovery_window_in_days: RecoveryWindowInDaysType | None = None,
|
615
|
+
force_delete_without_recovery: BooleanType | None = None,
|
616
616
|
**kwargs,
|
617
617
|
) -> DeleteSecretResponse:
|
618
618
|
raise NotImplementedError
|
@@ -627,14 +627,14 @@ class SecretsmanagerApi:
|
|
627
627
|
def get_random_password(
|
628
628
|
self,
|
629
629
|
context: RequestContext,
|
630
|
-
password_length: PasswordLengthType = None,
|
631
|
-
exclude_characters: ExcludeCharactersType = None,
|
632
|
-
exclude_numbers: ExcludeNumbersType = None,
|
633
|
-
exclude_punctuation: ExcludePunctuationType = None,
|
634
|
-
exclude_uppercase: ExcludeUppercaseType = None,
|
635
|
-
exclude_lowercase: ExcludeLowercaseType = None,
|
636
|
-
include_space: IncludeSpaceType = None,
|
637
|
-
require_each_included_type: RequireEachIncludedTypeType = None,
|
630
|
+
password_length: PasswordLengthType | None = None,
|
631
|
+
exclude_characters: ExcludeCharactersType | None = None,
|
632
|
+
exclude_numbers: ExcludeNumbersType | None = None,
|
633
|
+
exclude_punctuation: ExcludePunctuationType | None = None,
|
634
|
+
exclude_uppercase: ExcludeUppercaseType | None = None,
|
635
|
+
exclude_lowercase: ExcludeLowercaseType | None = None,
|
636
|
+
include_space: IncludeSpaceType | None = None,
|
637
|
+
require_each_included_type: RequireEachIncludedTypeType | None = None,
|
638
638
|
**kwargs,
|
639
639
|
) -> GetRandomPasswordResponse:
|
640
640
|
raise NotImplementedError
|
@@ -650,8 +650,8 @@ class SecretsmanagerApi:
|
|
650
650
|
self,
|
651
651
|
context: RequestContext,
|
652
652
|
secret_id: SecretIdType,
|
653
|
-
version_id: SecretVersionIdType = None,
|
654
|
-
version_stage: SecretVersionStageType = None,
|
653
|
+
version_id: SecretVersionIdType | None = None,
|
654
|
+
version_stage: SecretVersionStageType | None = None,
|
655
655
|
**kwargs,
|
656
656
|
) -> GetSecretValueResponse:
|
657
657
|
raise NotImplementedError
|
@@ -661,9 +661,9 @@ class SecretsmanagerApi:
|
|
661
661
|
self,
|
662
662
|
context: RequestContext,
|
663
663
|
secret_id: SecretIdType,
|
664
|
-
max_results: MaxResultsType = None,
|
665
|
-
next_token: NextTokenType = None,
|
666
|
-
include_deprecated: BooleanType = None,
|
664
|
+
max_results: MaxResultsType | None = None,
|
665
|
+
next_token: NextTokenType | None = None,
|
666
|
+
include_deprecated: BooleanType | None = None,
|
667
667
|
**kwargs,
|
668
668
|
) -> ListSecretVersionIdsResponse:
|
669
669
|
raise NotImplementedError
|
@@ -672,11 +672,11 @@ class SecretsmanagerApi:
|
|
672
672
|
def list_secrets(
|
673
673
|
self,
|
674
674
|
context: RequestContext,
|
675
|
-
include_planned_deletion: BooleanType = None,
|
676
|
-
max_results: MaxResultsType = None,
|
677
|
-
next_token: NextTokenType = None,
|
678
|
-
filters: FiltersListType = None,
|
679
|
-
sort_order: SortOrderType = None,
|
675
|
+
include_planned_deletion: BooleanType | None = None,
|
676
|
+
max_results: MaxResultsType | None = None,
|
677
|
+
next_token: NextTokenType | None = None,
|
678
|
+
filters: FiltersListType | None = None,
|
679
|
+
sort_order: SortOrderType | None = None,
|
680
680
|
**kwargs,
|
681
681
|
) -> ListSecretsResponse:
|
682
682
|
raise NotImplementedError
|
@@ -687,7 +687,7 @@ class SecretsmanagerApi:
|
|
687
687
|
context: RequestContext,
|
688
688
|
secret_id: SecretIdType,
|
689
689
|
resource_policy: NonEmptyResourcePolicyType,
|
690
|
-
block_public_policy: BooleanType = None,
|
690
|
+
block_public_policy: BooleanType | None = None,
|
691
691
|
**kwargs,
|
692
692
|
) -> PutResourcePolicyResponse:
|
693
693
|
raise NotImplementedError
|
@@ -697,11 +697,11 @@ class SecretsmanagerApi:
|
|
697
697
|
self,
|
698
698
|
context: RequestContext,
|
699
699
|
secret_id: SecretIdType,
|
700
|
-
client_request_token: ClientRequestTokenType = None,
|
701
|
-
secret_binary: SecretBinaryType = None,
|
702
|
-
secret_string: SecretStringType = None,
|
703
|
-
version_stages: SecretVersionStagesType = None,
|
704
|
-
rotation_token: RotationTokenType = None,
|
700
|
+
client_request_token: ClientRequestTokenType | None = None,
|
701
|
+
secret_binary: SecretBinaryType | None = None,
|
702
|
+
secret_string: SecretStringType | None = None,
|
703
|
+
version_stages: SecretVersionStagesType | None = None,
|
704
|
+
rotation_token: RotationTokenType | None = None,
|
705
705
|
**kwargs,
|
706
706
|
) -> PutSecretValueResponse:
|
707
707
|
raise NotImplementedError
|
@@ -722,7 +722,7 @@ class SecretsmanagerApi:
|
|
722
722
|
context: RequestContext,
|
723
723
|
secret_id: SecretIdType,
|
724
724
|
add_replica_regions: AddReplicaRegionListType,
|
725
|
-
force_overwrite_replica_secret: BooleanType = None,
|
725
|
+
force_overwrite_replica_secret: BooleanType | None = None,
|
726
726
|
**kwargs,
|
727
727
|
) -> ReplicateSecretToRegionsResponse:
|
728
728
|
raise NotImplementedError
|
@@ -738,10 +738,10 @@ class SecretsmanagerApi:
|
|
738
738
|
self,
|
739
739
|
context: RequestContext,
|
740
740
|
secret_id: SecretIdType,
|
741
|
-
client_request_token: ClientRequestTokenType = None,
|
742
|
-
rotation_lambda_arn: RotationLambdaARNType = None,
|
743
|
-
rotation_rules: RotationRulesType = None,
|
744
|
-
rotate_immediately: BooleanType = None,
|
741
|
+
client_request_token: ClientRequestTokenType | None = None,
|
742
|
+
rotation_lambda_arn: RotationLambdaARNType | None = None,
|
743
|
+
rotation_rules: RotationRulesType | None = None,
|
744
|
+
rotate_immediately: BooleanType | None = None,
|
745
745
|
**kwargs,
|
746
746
|
) -> RotateSecretResponse:
|
747
747
|
raise NotImplementedError
|
@@ -769,11 +769,11 @@ class SecretsmanagerApi:
|
|
769
769
|
self,
|
770
770
|
context: RequestContext,
|
771
771
|
secret_id: SecretIdType,
|
772
|
-
client_request_token: ClientRequestTokenType = None,
|
773
|
-
description: DescriptionType = None,
|
774
|
-
kms_key_id: KmsKeyIdType = None,
|
775
|
-
secret_binary: SecretBinaryType = None,
|
776
|
-
secret_string: SecretStringType = None,
|
772
|
+
client_request_token: ClientRequestTokenType | None = None,
|
773
|
+
description: DescriptionType | None = None,
|
774
|
+
kms_key_id: KmsKeyIdType | None = None,
|
775
|
+
secret_binary: SecretBinaryType | None = None,
|
776
|
+
secret_string: SecretStringType | None = None,
|
777
777
|
**kwargs,
|
778
778
|
) -> UpdateSecretResponse:
|
779
779
|
raise NotImplementedError
|
@@ -784,8 +784,8 @@ class SecretsmanagerApi:
|
|
784
784
|
context: RequestContext,
|
785
785
|
secret_id: SecretIdType,
|
786
786
|
version_stage: SecretVersionStageType,
|
787
|
-
remove_from_version_id: SecretVersionIdType = None,
|
788
|
-
move_to_version_id: SecretVersionIdType = None,
|
787
|
+
remove_from_version_id: SecretVersionIdType | None = None,
|
788
|
+
move_to_version_id: SecretVersionIdType | None = None,
|
789
789
|
**kwargs,
|
790
790
|
) -> UpdateSecretVersionStageResponse:
|
791
791
|
raise NotImplementedError
|
@@ -795,7 +795,7 @@ class SecretsmanagerApi:
|
|
795
795
|
self,
|
796
796
|
context: RequestContext,
|
797
797
|
resource_policy: NonEmptyResourcePolicyType,
|
798
|
-
secret_id: SecretIdType = None,
|
798
|
+
secret_id: SecretIdType | None = None,
|
799
799
|
**kwargs,
|
800
800
|
) -> ValidateResourcePolicyResponse:
|
801
801
|
raise NotImplementedError
|