Skip to content

Commit

Permalink
sync
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasmcdonald3 committed Aug 6, 2024
1 parent 2335ca7 commit 30ddec4
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 35 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -871,7 +871,7 @@ class KMSConfigurationDiscovery:
the KMS Client, requests will Fail with KMS Exceptions.
"""

def __init__(self, value: "Discovery"):
def __init__(self, value: Discovery):
self.value = value

def as_dict(self) -> Dict[str, Any]:
Expand Down Expand Up @@ -900,7 +900,7 @@ class KMSConfigurationMrDiscovery:
is changed to the configured region.
"""

def __init__(self, value: "MRDiscovery"):
def __init__(self, value: MRDiscovery):
self.value = value

def as_dict(self) -> Dict[str, Any]:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ def __eq__(self, other: Any) -> bool:


class DerivationAlgorithmHKDF:
def __init__(self, value: "HKDF"):
def __init__(self, value: HKDF):
self.value = value

def as_dict(self) -> Dict[str, Any]:
Expand All @@ -351,7 +351,7 @@ def __eq__(self, other: Any) -> bool:


class DerivationAlgorithmIDENTITY:
def __init__(self, value: "IDENTITY"):
def __init__(self, value: IDENTITY):
self.value = value

def as_dict(self) -> Dict[str, Any]:
Expand All @@ -374,7 +374,7 @@ def __eq__(self, other: Any) -> bool:


class DerivationAlgorithmNone:
def __init__(self, value: "None_"):
def __init__(self, value: None_):
self.value = value

def as_dict(self) -> Dict[str, Any]:
Expand Down Expand Up @@ -470,7 +470,7 @@ def __eq__(self, other: Any) -> bool:


class EncryptAES_GCM:
def __init__(self, value: "AES_GCM"):
def __init__(self, value: AES_GCM):
self.value = value

def as_dict(self) -> Dict[str, Any]:
Expand Down Expand Up @@ -597,7 +597,7 @@ def __eq__(self, other: Any) -> bool:


class EdkWrappingAlgorithmDIRECT_KEY_WRAPPING:
def __init__(self, value: "DIRECT_KEY_WRAPPING"):
def __init__(self, value: DIRECT_KEY_WRAPPING):
self.value = value

def as_dict(self) -> Dict[str, Any]:
Expand All @@ -622,7 +622,7 @@ def __eq__(self, other: Any) -> bool:


class EdkWrappingAlgorithmIntermediateKeyWrapping:
def __init__(self, value: "IntermediateKeyWrapping"):
def __init__(self, value: IntermediateKeyWrapping):
self.value = value

def as_dict(self) -> Dict[str, Any]:
Expand Down Expand Up @@ -738,7 +738,7 @@ def __eq__(self, other: Any) -> bool:


class SignatureAlgorithmECDSA:
def __init__(self, value: "ECDSA"):
def __init__(self, value: ECDSA):
self.value = value

def as_dict(self) -> Dict[str, Any]:
Expand All @@ -761,7 +761,7 @@ def __eq__(self, other: Any) -> bool:


class SignatureAlgorithmNone:
def __init__(self, value: "None_"):
def __init__(self, value: None_):
self.value = value

def as_dict(self) -> Dict[str, Any]:
Expand Down Expand Up @@ -847,7 +847,7 @@ def __eq__(self, other: Any) -> bool:


class SymmetricSignatureAlgorithmNone:
def __init__(self, value: "None_"):
def __init__(self, value: None_):
self.value = value

def as_dict(self) -> Dict[str, Any]:
Expand Down Expand Up @@ -1600,7 +1600,7 @@ class KmsEcdhStaticConfigurationsKmsPublicKeyDiscovery:
ONLY configuration.
"""

def __init__(self, value: "KmsPublicKeyDiscoveryInput"):
def __init__(self, value: KmsPublicKeyDiscoveryInput):
self.value = value

def as_dict(self) -> Dict[str, Any]:
Expand Down Expand Up @@ -1631,7 +1631,7 @@ def __eq__(self, other: Any) -> bool:
class KmsEcdhStaticConfigurationsKmsPrivateKeyToStaticPublicKey:
"""Inputs for creating a KmsPrivateKeyToStaticPublicKey Configuration."""

def __init__(self, value: "KmsPrivateKeyToStaticPublicKeyInput"):
def __init__(self, value: KmsPrivateKeyToStaticPublicKeyInput):
self.value = value

def as_dict(self) -> Dict[str, Any]:
Expand Down Expand Up @@ -2224,7 +2224,7 @@ def __eq__(self, other: Any) -> bool:
class CacheTypeDefault:
"""The best choice for most situations. Probably a StormTrackingCache."""

def __init__(self, value: "DefaultCache"):
def __init__(self, value: DefaultCache):
self.value = value

def as_dict(self) -> Dict[str, Any]:
Expand All @@ -2249,7 +2249,7 @@ def __eq__(self, other: Any) -> bool:
class CacheTypeNo:
"""Nothing should ever be cached."""

def __init__(self, value: "NoCache"):
def __init__(self, value: NoCache):
self.value = value

def as_dict(self) -> Dict[str, Any]:
Expand All @@ -2274,7 +2274,7 @@ def __eq__(self, other: Any) -> bool:
class CacheTypeSingleThreaded:
"""A cache that is NOT safe for use in a multi threaded environment."""

def __init__(self, value: "SingleThreadedCache"):
def __init__(self, value: SingleThreadedCache):
self.value = value

def as_dict(self) -> Dict[str, Any]:
Expand Down Expand Up @@ -2303,7 +2303,7 @@ class CacheTypeMultiThreaded:
functionality.
"""

def __init__(self, value: "MultiThreadedCache"):
def __init__(self, value: MultiThreadedCache):
self.value = value

def as_dict(self) -> Dict[str, Any]:
Expand Down Expand Up @@ -2331,7 +2331,7 @@ class CacheTypeStormTracking:
prevent redundant or overly parallel backend calls.
"""

def __init__(self, value: "StormTrackingCache"):
def __init__(self, value: StormTrackingCache):
self.value = value

def as_dict(self) -> Dict[str, Any]:
Expand Down Expand Up @@ -3737,7 +3737,7 @@ def __eq__(self, other: Any) -> bool:
class RawEcdhStaticConfigurationsPublicKeyDiscovery:
"""Inputs for creating a PublicKeyDiscovery Configuration."""

def __init__(self, value: "PublicKeyDiscoveryInput"):
def __init__(self, value: PublicKeyDiscoveryInput):
self.value = value

def as_dict(self) -> Dict[str, Any]:
Expand All @@ -3764,7 +3764,7 @@ def __eq__(self, other: Any) -> bool:
class RawEcdhStaticConfigurationsRawPrivateKeyToStaticPublicKey:
"""Inputs for creating a RawPrivateKeyToStaticPublicKey Configuration."""

def __init__(self, value: "RawPrivateKeyToStaticPublicKeyInput"):
def __init__(self, value: RawPrivateKeyToStaticPublicKeyInput):
self.value = value

def as_dict(self) -> Dict[str, Any]:
Expand Down Expand Up @@ -3797,7 +3797,7 @@ def __eq__(self, other: Any) -> bool:
class RawEcdhStaticConfigurationsEphemeralPrivateKeyToStaticPublicKey:
"""Inputs for creating a EphemeralPrivateKeyToStaticPublicKey Configuration."""

def __init__(self, value: "EphemeralPrivateKeyToStaticPublicKeyInput"):
def __init__(self, value: EphemeralPrivateKeyToStaticPublicKeyInput):
self.value = value

def as_dict(self) -> Dict[str, Any]:
Expand Down Expand Up @@ -4599,7 +4599,7 @@ def __eq__(self, other: Any) -> bool:


class MaterialsEncryption:
def __init__(self, value: "EncryptionMaterials"):
def __init__(self, value: EncryptionMaterials):
self.value = value

def as_dict(self) -> Dict[str, Any]:
Expand All @@ -4622,7 +4622,7 @@ def __eq__(self, other: Any) -> bool:


class MaterialsDecryption:
def __init__(self, value: "DecryptionMaterials"):
def __init__(self, value: DecryptionMaterials):
self.value = value

def as_dict(self) -> Dict[str, Any]:
Expand All @@ -4645,7 +4645,7 @@ def __eq__(self, other: Any) -> bool:


class MaterialsBranchKey:
def __init__(self, value: "BranchKeyMaterials"):
def __init__(self, value: BranchKeyMaterials):
self.value = value

def as_dict(self) -> Dict[str, Any]:
Expand All @@ -4668,7 +4668,7 @@ def __eq__(self, other: Any) -> bool:


class MaterialsBeaconKey:
def __init__(self, value: "BeaconKeyMaterials"):
def __init__(self, value: BeaconKeyMaterials):
self.value = value

def as_dict(self) -> Dict[str, Any]:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -774,7 +774,7 @@ def __eq__(self, other: Any) -> bool:


class KeyDescriptionKms:
def __init__(self, value: "KMSInfo"):
def __init__(self, value: KMSInfo):
self.value = value

def as_dict(self) -> Dict[str, Any]:
Expand All @@ -797,7 +797,7 @@ def __eq__(self, other: Any) -> bool:


class KeyDescriptionKmsMrk:
def __init__(self, value: "KmsMrkAware"):
def __init__(self, value: KmsMrkAware):
self.value = value

def as_dict(self) -> Dict[str, Any]:
Expand All @@ -820,7 +820,7 @@ def __eq__(self, other: Any) -> bool:


class KeyDescriptionKmsMrkDiscovery:
def __init__(self, value: "KmsMrkAwareDiscovery"):
def __init__(self, value: KmsMrkAwareDiscovery):
self.value = value

def as_dict(self) -> Dict[str, Any]:
Expand All @@ -845,7 +845,7 @@ def __eq__(self, other: Any) -> bool:


class KeyDescriptionRSA:
def __init__(self, value: "RawRSA"):
def __init__(self, value: RawRSA):
self.value = value

def as_dict(self) -> Dict[str, Any]:
Expand All @@ -868,7 +868,7 @@ def __eq__(self, other: Any) -> bool:


class KeyDescriptionAES:
def __init__(self, value: "RawAES"):
def __init__(self, value: RawAES):
self.value = value

def as_dict(self) -> Dict[str, Any]:
Expand All @@ -891,7 +891,7 @@ def __eq__(self, other: Any) -> bool:


class KeyDescriptionECDH:
def __init__(self, value: "RawEcdh"):
def __init__(self, value: RawEcdh):
self.value = value

def as_dict(self) -> Dict[str, Any]:
Expand All @@ -914,7 +914,7 @@ def __eq__(self, other: Any) -> bool:


class KeyDescriptionStatic:
def __init__(self, value: "StaticKeyring"):
def __init__(self, value: StaticKeyring):
self.value = value

def as_dict(self) -> Dict[str, Any]:
Expand All @@ -937,7 +937,7 @@ def __eq__(self, other: Any) -> bool:


class KeyDescriptionKmsRsa:
def __init__(self, value: "KmsRsaKeyring"):
def __init__(self, value: KmsRsaKeyring):
self.value = value

def as_dict(self) -> Dict[str, Any]:
Expand All @@ -960,7 +960,7 @@ def __eq__(self, other: Any) -> bool:


class KeyDescriptionKmsECDH:
def __init__(self, value: "KmsEcdhKeyring"):
def __init__(self, value: KmsEcdhKeyring):
self.value = value

def as_dict(self) -> Dict[str, Any]:
Expand All @@ -983,7 +983,7 @@ def __eq__(self, other: Any) -> bool:


class KeyDescriptionHierarchy:
def __init__(self, value: "HierarchyKeyring"):
def __init__(self, value: HierarchyKeyring):
self.value = value

def as_dict(self) -> Dict[str, Any]:
Expand Down

0 comments on commit 30ddec4

Please sign in to comment.