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
@@ -1312,15 +1312,15 @@ class KmsApi:
|
|
1312
1312
|
self,
|
1313
1313
|
context: RequestContext,
|
1314
1314
|
custom_key_store_name: CustomKeyStoreNameType,
|
1315
|
-
cloud_hsm_cluster_id: CloudHsmClusterIdType = None,
|
1316
|
-
trust_anchor_certificate: TrustAnchorCertificateType = None,
|
1317
|
-
key_store_password: KeyStorePasswordType = None,
|
1318
|
-
custom_key_store_type: CustomKeyStoreType = None,
|
1319
|
-
xks_proxy_uri_endpoint: XksProxyUriEndpointType = None,
|
1320
|
-
xks_proxy_uri_path: XksProxyUriPathType = None,
|
1321
|
-
xks_proxy_vpc_endpoint_service_name: XksProxyVpcEndpointServiceNameType = None,
|
1322
|
-
xks_proxy_authentication_credential: XksProxyAuthenticationCredentialType = None,
|
1323
|
-
xks_proxy_connectivity: XksProxyConnectivityType = None,
|
1315
|
+
cloud_hsm_cluster_id: CloudHsmClusterIdType | None = None,
|
1316
|
+
trust_anchor_certificate: TrustAnchorCertificateType | None = None,
|
1317
|
+
key_store_password: KeyStorePasswordType | None = None,
|
1318
|
+
custom_key_store_type: CustomKeyStoreType | None = None,
|
1319
|
+
xks_proxy_uri_endpoint: XksProxyUriEndpointType | None = None,
|
1320
|
+
xks_proxy_uri_path: XksProxyUriPathType | None = None,
|
1321
|
+
xks_proxy_vpc_endpoint_service_name: XksProxyVpcEndpointServiceNameType | None = None,
|
1322
|
+
xks_proxy_authentication_credential: XksProxyAuthenticationCredentialType | None = None,
|
1323
|
+
xks_proxy_connectivity: XksProxyConnectivityType | None = None,
|
1324
1324
|
**kwargs,
|
1325
1325
|
) -> CreateCustomKeyStoreResponse:
|
1326
1326
|
raise NotImplementedError
|
@@ -1332,11 +1332,11 @@ class KmsApi:
|
|
1332
1332
|
key_id: KeyIdType,
|
1333
1333
|
grantee_principal: PrincipalIdType,
|
1334
1334
|
operations: GrantOperationList,
|
1335
|
-
retiring_principal: PrincipalIdType = None,
|
1336
|
-
constraints: GrantConstraints = None,
|
1337
|
-
grant_tokens: GrantTokenList = None,
|
1338
|
-
name: GrantNameType = None,
|
1339
|
-
dry_run: NullableBooleanType = None,
|
1335
|
+
retiring_principal: PrincipalIdType | None = None,
|
1336
|
+
constraints: GrantConstraints | None = None,
|
1337
|
+
grant_tokens: GrantTokenList | None = None,
|
1338
|
+
name: GrantNameType | None = None,
|
1339
|
+
dry_run: NullableBooleanType | None = None,
|
1340
1340
|
**kwargs,
|
1341
1341
|
) -> CreateGrantResponse:
|
1342
1342
|
raise NotImplementedError
|
@@ -1345,17 +1345,17 @@ class KmsApi:
|
|
1345
1345
|
def create_key(
|
1346
1346
|
self,
|
1347
1347
|
context: RequestContext,
|
1348
|
-
policy: PolicyType = None,
|
1349
|
-
description: DescriptionType = None,
|
1350
|
-
key_usage: KeyUsageType = None,
|
1351
|
-
customer_master_key_spec: CustomerMasterKeySpec = None,
|
1352
|
-
key_spec: KeySpec = None,
|
1353
|
-
origin: OriginType = None,
|
1354
|
-
custom_key_store_id: CustomKeyStoreIdType = None,
|
1355
|
-
bypass_policy_lockout_safety_check: BooleanType = None,
|
1356
|
-
tags: TagList = None,
|
1357
|
-
multi_region: NullableBooleanType = None,
|
1358
|
-
xks_key_id: XksKeyIdType = None,
|
1348
|
+
policy: PolicyType | None = None,
|
1349
|
+
description: DescriptionType | None = None,
|
1350
|
+
key_usage: KeyUsageType | None = None,
|
1351
|
+
customer_master_key_spec: CustomerMasterKeySpec | None = None,
|
1352
|
+
key_spec: KeySpec | None = None,
|
1353
|
+
origin: OriginType | None = None,
|
1354
|
+
custom_key_store_id: CustomKeyStoreIdType | None = None,
|
1355
|
+
bypass_policy_lockout_safety_check: BooleanType | None = None,
|
1356
|
+
tags: TagList | None = None,
|
1357
|
+
multi_region: NullableBooleanType | None = None,
|
1358
|
+
xks_key_id: XksKeyIdType | None = None,
|
1359
1359
|
**kwargs,
|
1360
1360
|
) -> CreateKeyResponse:
|
1361
1361
|
raise NotImplementedError
|
@@ -1365,12 +1365,12 @@ class KmsApi:
|
|
1365
1365
|
self,
|
1366
1366
|
context: RequestContext,
|
1367
1367
|
ciphertext_blob: CiphertextType,
|
1368
|
-
encryption_context: EncryptionContextType = None,
|
1369
|
-
grant_tokens: GrantTokenList = None,
|
1370
|
-
key_id: KeyIdType = None,
|
1371
|
-
encryption_algorithm: EncryptionAlgorithmSpec = None,
|
1372
|
-
recipient: RecipientInfo = None,
|
1373
|
-
dry_run: NullableBooleanType = None,
|
1368
|
+
encryption_context: EncryptionContextType | None = None,
|
1369
|
+
grant_tokens: GrantTokenList | None = None,
|
1370
|
+
key_id: KeyIdType | None = None,
|
1371
|
+
encryption_algorithm: EncryptionAlgorithmSpec | None = None,
|
1372
|
+
recipient: RecipientInfo | None = None,
|
1373
|
+
dry_run: NullableBooleanType | None = None,
|
1374
1374
|
**kwargs,
|
1375
1375
|
) -> DecryptResponse:
|
1376
1376
|
raise NotImplementedError
|
@@ -1398,9 +1398,9 @@ class KmsApi:
|
|
1398
1398
|
key_id: KeyIdType,
|
1399
1399
|
key_agreement_algorithm: KeyAgreementAlgorithmSpec,
|
1400
1400
|
public_key: PublicKeyType,
|
1401
|
-
grant_tokens: GrantTokenList = None,
|
1402
|
-
dry_run: NullableBooleanType = None,
|
1403
|
-
recipient: RecipientInfo = None,
|
1401
|
+
grant_tokens: GrantTokenList | None = None,
|
1402
|
+
dry_run: NullableBooleanType | None = None,
|
1403
|
+
recipient: RecipientInfo | None = None,
|
1404
1404
|
**kwargs,
|
1405
1405
|
) -> DeriveSharedSecretResponse:
|
1406
1406
|
raise NotImplementedError
|
@@ -1409,10 +1409,10 @@ class KmsApi:
|
|
1409
1409
|
def describe_custom_key_stores(
|
1410
1410
|
self,
|
1411
1411
|
context: RequestContext,
|
1412
|
-
custom_key_store_id: CustomKeyStoreIdType = None,
|
1413
|
-
custom_key_store_name: CustomKeyStoreNameType = None,
|
1414
|
-
limit: LimitType = None,
|
1415
|
-
marker: MarkerType = None,
|
1412
|
+
custom_key_store_id: CustomKeyStoreIdType | None = None,
|
1413
|
+
custom_key_store_name: CustomKeyStoreNameType | None = None,
|
1414
|
+
limit: LimitType | None = None,
|
1415
|
+
marker: MarkerType | None = None,
|
1416
1416
|
**kwargs,
|
1417
1417
|
) -> DescribeCustomKeyStoresResponse:
|
1418
1418
|
raise NotImplementedError
|
@@ -1422,7 +1422,7 @@ class KmsApi:
|
|
1422
1422
|
self,
|
1423
1423
|
context: RequestContext,
|
1424
1424
|
key_id: KeyIdType,
|
1425
|
-
grant_tokens: GrantTokenList = None,
|
1425
|
+
grant_tokens: GrantTokenList | None = None,
|
1426
1426
|
**kwargs,
|
1427
1427
|
) -> DescribeKeyResponse:
|
1428
1428
|
raise NotImplementedError
|
@@ -1450,7 +1450,7 @@ class KmsApi:
|
|
1450
1450
|
self,
|
1451
1451
|
context: RequestContext,
|
1452
1452
|
key_id: KeyIdType,
|
1453
|
-
rotation_period_in_days: RotationPeriodInDaysType = None,
|
1453
|
+
rotation_period_in_days: RotationPeriodInDaysType | None = None,
|
1454
1454
|
**kwargs,
|
1455
1455
|
) -> None:
|
1456
1456
|
raise NotImplementedError
|
@@ -1461,10 +1461,10 @@ class KmsApi:
|
|
1461
1461
|
context: RequestContext,
|
1462
1462
|
key_id: KeyIdType,
|
1463
1463
|
plaintext: PlaintextType,
|
1464
|
-
encryption_context: EncryptionContextType = None,
|
1465
|
-
grant_tokens: GrantTokenList = None,
|
1466
|
-
encryption_algorithm: EncryptionAlgorithmSpec = None,
|
1467
|
-
dry_run: NullableBooleanType = None,
|
1464
|
+
encryption_context: EncryptionContextType | None = None,
|
1465
|
+
grant_tokens: GrantTokenList | None = None,
|
1466
|
+
encryption_algorithm: EncryptionAlgorithmSpec | None = None,
|
1467
|
+
dry_run: NullableBooleanType | None = None,
|
1468
1468
|
**kwargs,
|
1469
1469
|
) -> EncryptResponse:
|
1470
1470
|
raise NotImplementedError
|
@@ -1474,12 +1474,12 @@ class KmsApi:
|
|
1474
1474
|
self,
|
1475
1475
|
context: RequestContext,
|
1476
1476
|
key_id: KeyIdType,
|
1477
|
-
encryption_context: EncryptionContextType = None,
|
1478
|
-
number_of_bytes: NumberOfBytesType = None,
|
1479
|
-
key_spec: DataKeySpec = None,
|
1480
|
-
grant_tokens: GrantTokenList = None,
|
1481
|
-
recipient: RecipientInfo = None,
|
1482
|
-
dry_run: NullableBooleanType = None,
|
1477
|
+
encryption_context: EncryptionContextType | None = None,
|
1478
|
+
number_of_bytes: NumberOfBytesType | None = None,
|
1479
|
+
key_spec: DataKeySpec | None = None,
|
1480
|
+
grant_tokens: GrantTokenList | None = None,
|
1481
|
+
recipient: RecipientInfo | None = None,
|
1482
|
+
dry_run: NullableBooleanType | None = None,
|
1483
1483
|
**kwargs,
|
1484
1484
|
) -> GenerateDataKeyResponse:
|
1485
1485
|
raise NotImplementedError
|
@@ -1490,10 +1490,10 @@ class KmsApi:
|
|
1490
1490
|
context: RequestContext,
|
1491
1491
|
key_id: KeyIdType,
|
1492
1492
|
key_pair_spec: DataKeyPairSpec,
|
1493
|
-
encryption_context: EncryptionContextType = None,
|
1494
|
-
grant_tokens: GrantTokenList = None,
|
1495
|
-
recipient: RecipientInfo = None,
|
1496
|
-
dry_run: NullableBooleanType = None,
|
1493
|
+
encryption_context: EncryptionContextType | None = None,
|
1494
|
+
grant_tokens: GrantTokenList | None = None,
|
1495
|
+
recipient: RecipientInfo | None = None,
|
1496
|
+
dry_run: NullableBooleanType | None = None,
|
1497
1497
|
**kwargs,
|
1498
1498
|
) -> GenerateDataKeyPairResponse:
|
1499
1499
|
raise NotImplementedError
|
@@ -1504,9 +1504,9 @@ class KmsApi:
|
|
1504
1504
|
context: RequestContext,
|
1505
1505
|
key_id: KeyIdType,
|
1506
1506
|
key_pair_spec: DataKeyPairSpec,
|
1507
|
-
encryption_context: EncryptionContextType = None,
|
1508
|
-
grant_tokens: GrantTokenList = None,
|
1509
|
-
dry_run: NullableBooleanType = None,
|
1507
|
+
encryption_context: EncryptionContextType | None = None,
|
1508
|
+
grant_tokens: GrantTokenList | None = None,
|
1509
|
+
dry_run: NullableBooleanType | None = None,
|
1510
1510
|
**kwargs,
|
1511
1511
|
) -> GenerateDataKeyPairWithoutPlaintextResponse:
|
1512
1512
|
raise NotImplementedError
|
@@ -1516,11 +1516,11 @@ class KmsApi:
|
|
1516
1516
|
self,
|
1517
1517
|
context: RequestContext,
|
1518
1518
|
key_id: KeyIdType,
|
1519
|
-
encryption_context: EncryptionContextType = None,
|
1520
|
-
key_spec: DataKeySpec = None,
|
1521
|
-
number_of_bytes: NumberOfBytesType = None,
|
1522
|
-
grant_tokens: GrantTokenList = None,
|
1523
|
-
dry_run: NullableBooleanType = None,
|
1519
|
+
encryption_context: EncryptionContextType | None = None,
|
1520
|
+
key_spec: DataKeySpec | None = None,
|
1521
|
+
number_of_bytes: NumberOfBytesType | None = None,
|
1522
|
+
grant_tokens: GrantTokenList | None = None,
|
1523
|
+
dry_run: NullableBooleanType | None = None,
|
1524
1524
|
**kwargs,
|
1525
1525
|
) -> GenerateDataKeyWithoutPlaintextResponse:
|
1526
1526
|
raise NotImplementedError
|
@@ -1532,8 +1532,8 @@ class KmsApi:
|
|
1532
1532
|
message: PlaintextType,
|
1533
1533
|
key_id: KeyIdType,
|
1534
1534
|
mac_algorithm: MacAlgorithmSpec,
|
1535
|
-
grant_tokens: GrantTokenList = None,
|
1536
|
-
dry_run: NullableBooleanType = None,
|
1535
|
+
grant_tokens: GrantTokenList | None = None,
|
1536
|
+
dry_run: NullableBooleanType | None = None,
|
1537
1537
|
**kwargs,
|
1538
1538
|
) -> GenerateMacResponse:
|
1539
1539
|
raise NotImplementedError
|
@@ -1542,9 +1542,9 @@ class KmsApi:
|
|
1542
1542
|
def generate_random(
|
1543
1543
|
self,
|
1544
1544
|
context: RequestContext,
|
1545
|
-
number_of_bytes: NumberOfBytesType = None,
|
1546
|
-
custom_key_store_id: CustomKeyStoreIdType = None,
|
1547
|
-
recipient: RecipientInfo = None,
|
1545
|
+
number_of_bytes: NumberOfBytesType | None = None,
|
1546
|
+
custom_key_store_id: CustomKeyStoreIdType | None = None,
|
1547
|
+
recipient: RecipientInfo | None = None,
|
1548
1548
|
**kwargs,
|
1549
1549
|
) -> GenerateRandomResponse:
|
1550
1550
|
raise NotImplementedError
|
@@ -1554,7 +1554,7 @@ class KmsApi:
|
|
1554
1554
|
self,
|
1555
1555
|
context: RequestContext,
|
1556
1556
|
key_id: KeyIdType,
|
1557
|
-
policy_name: PolicyNameType = None,
|
1557
|
+
policy_name: PolicyNameType | None = None,
|
1558
1558
|
**kwargs,
|
1559
1559
|
) -> GetKeyPolicyResponse:
|
1560
1560
|
raise NotImplementedError
|
@@ -1581,7 +1581,7 @@ class KmsApi:
|
|
1581
1581
|
self,
|
1582
1582
|
context: RequestContext,
|
1583
1583
|
key_id: KeyIdType,
|
1584
|
-
grant_tokens: GrantTokenList = None,
|
1584
|
+
grant_tokens: GrantTokenList | None = None,
|
1585
1585
|
**kwargs,
|
1586
1586
|
) -> GetPublicKeyResponse:
|
1587
1587
|
raise NotImplementedError
|
@@ -1593,8 +1593,8 @@ class KmsApi:
|
|
1593
1593
|
key_id: KeyIdType,
|
1594
1594
|
import_token: CiphertextType,
|
1595
1595
|
encrypted_key_material: CiphertextType,
|
1596
|
-
valid_to: DateType = None,
|
1597
|
-
expiration_model: ExpirationModelType = None,
|
1596
|
+
valid_to: DateType | None = None,
|
1597
|
+
expiration_model: ExpirationModelType | None = None,
|
1598
1598
|
**kwargs,
|
1599
1599
|
) -> ImportKeyMaterialResponse:
|
1600
1600
|
raise NotImplementedError
|
@@ -1603,9 +1603,9 @@ class KmsApi:
|
|
1603
1603
|
def list_aliases(
|
1604
1604
|
self,
|
1605
1605
|
context: RequestContext,
|
1606
|
-
key_id: KeyIdType = None,
|
1607
|
-
limit: LimitType = None,
|
1608
|
-
marker: MarkerType = None,
|
1606
|
+
key_id: KeyIdType | None = None,
|
1607
|
+
limit: LimitType | None = None,
|
1608
|
+
marker: MarkerType | None = None,
|
1609
1609
|
**kwargs,
|
1610
1610
|
) -> ListAliasesResponse:
|
1611
1611
|
raise NotImplementedError
|
@@ -1615,10 +1615,10 @@ class KmsApi:
|
|
1615
1615
|
self,
|
1616
1616
|
context: RequestContext,
|
1617
1617
|
key_id: KeyIdType,
|
1618
|
-
limit: LimitType = None,
|
1619
|
-
marker: MarkerType = None,
|
1620
|
-
grant_id: GrantIdType = None,
|
1621
|
-
grantee_principal: PrincipalIdType = None,
|
1618
|
+
limit: LimitType | None = None,
|
1619
|
+
marker: MarkerType | None = None,
|
1620
|
+
grant_id: GrantIdType | None = None,
|
1621
|
+
grantee_principal: PrincipalIdType | None = None,
|
1622
1622
|
**kwargs,
|
1623
1623
|
) -> ListGrantsResponse:
|
1624
1624
|
raise NotImplementedError
|
@@ -1628,8 +1628,8 @@ class KmsApi:
|
|
1628
1628
|
self,
|
1629
1629
|
context: RequestContext,
|
1630
1630
|
key_id: KeyIdType,
|
1631
|
-
limit: LimitType = None,
|
1632
|
-
marker: MarkerType = None,
|
1631
|
+
limit: LimitType | None = None,
|
1632
|
+
marker: MarkerType | None = None,
|
1633
1633
|
**kwargs,
|
1634
1634
|
) -> ListKeyPoliciesResponse:
|
1635
1635
|
raise NotImplementedError
|
@@ -1639,15 +1639,19 @@ class KmsApi:
|
|
1639
1639
|
self,
|
1640
1640
|
context: RequestContext,
|
1641
1641
|
key_id: KeyIdType,
|
1642
|
-
limit: LimitType = None,
|
1643
|
-
marker: MarkerType = None,
|
1642
|
+
limit: LimitType | None = None,
|
1643
|
+
marker: MarkerType | None = None,
|
1644
1644
|
**kwargs,
|
1645
1645
|
) -> ListKeyRotationsResponse:
|
1646
1646
|
raise NotImplementedError
|
1647
1647
|
|
1648
1648
|
@handler("ListKeys")
|
1649
1649
|
def list_keys(
|
1650
|
-
self,
|
1650
|
+
self,
|
1651
|
+
context: RequestContext,
|
1652
|
+
limit: LimitType | None = None,
|
1653
|
+
marker: MarkerType | None = None,
|
1654
|
+
**kwargs,
|
1651
1655
|
) -> ListKeysResponse:
|
1652
1656
|
raise NotImplementedError
|
1653
1657
|
|
@@ -1656,8 +1660,8 @@ class KmsApi:
|
|
1656
1660
|
self,
|
1657
1661
|
context: RequestContext,
|
1658
1662
|
key_id: KeyIdType,
|
1659
|
-
limit: LimitType = None,
|
1660
|
-
marker: MarkerType = None,
|
1663
|
+
limit: LimitType | None = None,
|
1664
|
+
marker: MarkerType | None = None,
|
1661
1665
|
**kwargs,
|
1662
1666
|
) -> ListResourceTagsResponse:
|
1663
1667
|
raise NotImplementedError
|
@@ -1667,8 +1671,8 @@ class KmsApi:
|
|
1667
1671
|
self,
|
1668
1672
|
context: RequestContext,
|
1669
1673
|
retiring_principal: PrincipalIdType,
|
1670
|
-
limit: LimitType = None,
|
1671
|
-
marker: MarkerType = None,
|
1674
|
+
limit: LimitType | None = None,
|
1675
|
+
marker: MarkerType | None = None,
|
1672
1676
|
**kwargs,
|
1673
1677
|
) -> ListGrantsResponse:
|
1674
1678
|
raise NotImplementedError
|
@@ -1679,8 +1683,8 @@ class KmsApi:
|
|
1679
1683
|
context: RequestContext,
|
1680
1684
|
key_id: KeyIdType,
|
1681
1685
|
policy: PolicyType,
|
1682
|
-
policy_name: PolicyNameType = None,
|
1683
|
-
bypass_policy_lockout_safety_check: BooleanType = None,
|
1686
|
+
policy_name: PolicyNameType | None = None,
|
1687
|
+
bypass_policy_lockout_safety_check: BooleanType | None = None,
|
1684
1688
|
**kwargs,
|
1685
1689
|
) -> None:
|
1686
1690
|
raise NotImplementedError
|
@@ -1691,13 +1695,13 @@ class KmsApi:
|
|
1691
1695
|
context: RequestContext,
|
1692
1696
|
ciphertext_blob: CiphertextType,
|
1693
1697
|
destination_key_id: KeyIdType,
|
1694
|
-
source_encryption_context: EncryptionContextType = None,
|
1695
|
-
source_key_id: KeyIdType = None,
|
1696
|
-
destination_encryption_context: EncryptionContextType = None,
|
1697
|
-
source_encryption_algorithm: EncryptionAlgorithmSpec = None,
|
1698
|
-
destination_encryption_algorithm: EncryptionAlgorithmSpec = None,
|
1699
|
-
grant_tokens: GrantTokenList = None,
|
1700
|
-
dry_run: NullableBooleanType = None,
|
1698
|
+
source_encryption_context: EncryptionContextType | None = None,
|
1699
|
+
source_key_id: KeyIdType | None = None,
|
1700
|
+
destination_encryption_context: EncryptionContextType | None = None,
|
1701
|
+
source_encryption_algorithm: EncryptionAlgorithmSpec | None = None,
|
1702
|
+
destination_encryption_algorithm: EncryptionAlgorithmSpec | None = None,
|
1703
|
+
grant_tokens: GrantTokenList | None = None,
|
1704
|
+
dry_run: NullableBooleanType | None = None,
|
1701
1705
|
**kwargs,
|
1702
1706
|
) -> ReEncryptResponse:
|
1703
1707
|
raise NotImplementedError
|
@@ -1708,10 +1712,10 @@ class KmsApi:
|
|
1708
1712
|
context: RequestContext,
|
1709
1713
|
key_id: KeyIdType,
|
1710
1714
|
replica_region: RegionType,
|
1711
|
-
policy: PolicyType = None,
|
1712
|
-
bypass_policy_lockout_safety_check: BooleanType = None,
|
1713
|
-
description: DescriptionType = None,
|
1714
|
-
tags: TagList = None,
|
1715
|
+
policy: PolicyType | None = None,
|
1716
|
+
bypass_policy_lockout_safety_check: BooleanType | None = None,
|
1717
|
+
description: DescriptionType | None = None,
|
1718
|
+
tags: TagList | None = None,
|
1715
1719
|
**kwargs,
|
1716
1720
|
) -> ReplicateKeyResponse:
|
1717
1721
|
raise NotImplementedError
|
@@ -1720,10 +1724,10 @@ class KmsApi:
|
|
1720
1724
|
def retire_grant(
|
1721
1725
|
self,
|
1722
1726
|
context: RequestContext,
|
1723
|
-
grant_token: GrantTokenType = None,
|
1724
|
-
key_id: KeyIdType = None,
|
1725
|
-
grant_id: GrantIdType = None,
|
1726
|
-
dry_run: NullableBooleanType = None,
|
1727
|
+
grant_token: GrantTokenType | None = None,
|
1728
|
+
key_id: KeyIdType | None = None,
|
1729
|
+
grant_id: GrantIdType | None = None,
|
1730
|
+
dry_run: NullableBooleanType | None = None,
|
1727
1731
|
**kwargs,
|
1728
1732
|
) -> None:
|
1729
1733
|
raise NotImplementedError
|
@@ -1734,7 +1738,7 @@ class KmsApi:
|
|
1734
1738
|
context: RequestContext,
|
1735
1739
|
key_id: KeyIdType,
|
1736
1740
|
grant_id: GrantIdType,
|
1737
|
-
dry_run: NullableBooleanType = None,
|
1741
|
+
dry_run: NullableBooleanType | None = None,
|
1738
1742
|
**kwargs,
|
1739
1743
|
) -> None:
|
1740
1744
|
raise NotImplementedError
|
@@ -1750,7 +1754,7 @@ class KmsApi:
|
|
1750
1754
|
self,
|
1751
1755
|
context: RequestContext,
|
1752
1756
|
key_id: KeyIdType,
|
1753
|
-
pending_window_in_days: PendingWindowInDaysType = None,
|
1757
|
+
pending_window_in_days: PendingWindowInDaysType | None = None,
|
1754
1758
|
**kwargs,
|
1755
1759
|
) -> ScheduleKeyDeletionResponse:
|
1756
1760
|
raise NotImplementedError
|
@@ -1762,9 +1766,9 @@ class KmsApi:
|
|
1762
1766
|
key_id: KeyIdType,
|
1763
1767
|
message: PlaintextType,
|
1764
1768
|
signing_algorithm: SigningAlgorithmSpec,
|
1765
|
-
message_type: MessageType = None,
|
1766
|
-
grant_tokens: GrantTokenList = None,
|
1767
|
-
dry_run: NullableBooleanType = None,
|
1769
|
+
message_type: MessageType | None = None,
|
1770
|
+
grant_tokens: GrantTokenList | None = None,
|
1771
|
+
dry_run: NullableBooleanType | None = None,
|
1768
1772
|
**kwargs,
|
1769
1773
|
) -> SignResponse:
|
1770
1774
|
raise NotImplementedError
|
@@ -1792,14 +1796,14 @@ class KmsApi:
|
|
1792
1796
|
self,
|
1793
1797
|
context: RequestContext,
|
1794
1798
|
custom_key_store_id: CustomKeyStoreIdType,
|
1795
|
-
new_custom_key_store_name: CustomKeyStoreNameType = None,
|
1796
|
-
key_store_password: KeyStorePasswordType = None,
|
1797
|
-
cloud_hsm_cluster_id: CloudHsmClusterIdType = None,
|
1798
|
-
xks_proxy_uri_endpoint: XksProxyUriEndpointType = None,
|
1799
|
-
xks_proxy_uri_path: XksProxyUriPathType = None,
|
1800
|
-
xks_proxy_vpc_endpoint_service_name: XksProxyVpcEndpointServiceNameType = None,
|
1801
|
-
xks_proxy_authentication_credential: XksProxyAuthenticationCredentialType = None,
|
1802
|
-
xks_proxy_connectivity: XksProxyConnectivityType = None,
|
1799
|
+
new_custom_key_store_name: CustomKeyStoreNameType | None = None,
|
1800
|
+
key_store_password: KeyStorePasswordType | None = None,
|
1801
|
+
cloud_hsm_cluster_id: CloudHsmClusterIdType | None = None,
|
1802
|
+
xks_proxy_uri_endpoint: XksProxyUriEndpointType | None = None,
|
1803
|
+
xks_proxy_uri_path: XksProxyUriPathType | None = None,
|
1804
|
+
xks_proxy_vpc_endpoint_service_name: XksProxyVpcEndpointServiceNameType | None = None,
|
1805
|
+
xks_proxy_authentication_credential: XksProxyAuthenticationCredentialType | None = None,
|
1806
|
+
xks_proxy_connectivity: XksProxyConnectivityType | None = None,
|
1803
1807
|
**kwargs,
|
1804
1808
|
) -> UpdateCustomKeyStoreResponse:
|
1805
1809
|
raise NotImplementedError
|
@@ -1824,9 +1828,9 @@ class KmsApi:
|
|
1824
1828
|
message: PlaintextType,
|
1825
1829
|
signature: CiphertextType,
|
1826
1830
|
signing_algorithm: SigningAlgorithmSpec,
|
1827
|
-
message_type: MessageType = None,
|
1828
|
-
grant_tokens: GrantTokenList = None,
|
1829
|
-
dry_run: NullableBooleanType = None,
|
1831
|
+
message_type: MessageType | None = None,
|
1832
|
+
grant_tokens: GrantTokenList | None = None,
|
1833
|
+
dry_run: NullableBooleanType | None = None,
|
1830
1834
|
**kwargs,
|
1831
1835
|
) -> VerifyResponse:
|
1832
1836
|
raise NotImplementedError
|
@@ -1839,8 +1843,8 @@ class KmsApi:
|
|
1839
1843
|
key_id: KeyIdType,
|
1840
1844
|
mac_algorithm: MacAlgorithmSpec,
|
1841
1845
|
mac: CiphertextType,
|
1842
|
-
grant_tokens: GrantTokenList = None,
|
1843
|
-
dry_run: NullableBooleanType = None,
|
1846
|
+
grant_tokens: GrantTokenList | None = None,
|
1847
|
+
dry_run: NullableBooleanType | None = None,
|
1844
1848
|
**kwargs,
|
1845
1849
|
) -> VerifyMacResponse:
|
1846
1850
|
raise NotImplementedError
|