methodaws 0.0.11__tar.gz → 0.0.13__tar.gz
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.
- {methodaws-0.0.11 → methodaws-0.0.13}/PKG-INFO +1 -1
- {methodaws-0.0.11 → methodaws-0.0.13}/pyproject.toml +1 -1
- {methodaws-0.0.11 → methodaws-0.0.13}/src/method-security/methodaws/__init__.py +24 -0
- {methodaws-0.0.11 → methodaws-0.0.13}/src/method-security/methodaws/resources/__init__.py +26 -1
- {methodaws-0.0.11 → methodaws-0.0.13}/src/method-security/methodaws/resources/credential/credential_info.py +2 -0
- methodaws-0.0.13/src/method-security/methodaws/resources/s_3/__init__.py +27 -0
- methodaws-0.0.13/src/method-security/methodaws/resources/s_3/bucket.py +33 -0
- methodaws-0.0.13/src/method-security/methodaws/resources/s_3/bucket_versioning_status.py +5 -0
- methodaws-0.0.13/src/method-security/methodaws/resources/s_3/encryption_rule.py +20 -0
- methodaws-0.0.13/src/method-security/methodaws/resources/s_3/external_bucket.py +28 -0
- methodaws-0.0.13/src/method-security/methodaws/resources/s_3/external_s_3_report.py +22 -0
- methodaws-0.0.13/src/method-security/methodaws/resources/s_3/s_3_bucket_acl.py +19 -0
- methodaws-0.0.13/src/method-security/methodaws/resources/s_3/s_3_mfa_delete_status.py +5 -0
- methodaws-0.0.13/src/method-security/methodaws/resources/s_3/s_3_object_details.py +23 -0
- methodaws-0.0.13/src/method-security/methodaws/resources/s_3/s_3_public_access_block_configuration.py +21 -0
- methodaws-0.0.13/src/method-security/methodaws/resources/s_3/s_3_report.py +21 -0
- methodaws-0.0.13/src/method-security/methodaws/resources/s_3/s_3_server_side_encryption.py +5 -0
- {methodaws-0.0.11 → methodaws-0.0.13}/README.md +0 -0
- {methodaws-0.0.11 → methodaws-0.0.13}/src/method-security/methodaws/core/__init__.py +0 -0
- {methodaws-0.0.11 → methodaws-0.0.13}/src/method-security/methodaws/core/datetime_utils.py +0 -0
- {methodaws-0.0.11 → methodaws-0.0.13}/src/method-security/methodaws/core/pydantic_utilities.py +0 -0
- {methodaws-0.0.11 → methodaws-0.0.13}/src/method-security/methodaws/core/serialization.py +0 -0
- {methodaws-0.0.11 → methodaws-0.0.13}/src/method-security/methodaws/py.typed +0 -0
- {methodaws-0.0.11 → methodaws-0.0.13}/src/method-security/methodaws/resources/credential/__init__.py +0 -0
- {methodaws-0.0.11 → methodaws-0.0.13}/src/method-security/methodaws/resources/credential/credential_report.py +0 -0
- {methodaws-0.0.11 → methodaws-0.0.13}/src/method-security/methodaws/resources/loadbalancer/__init__.py +0 -0
- {methodaws-0.0.11 → methodaws-0.0.13}/src/method-security/methodaws/resources/loadbalancer/certificate.py +0 -0
- {methodaws-0.0.11 → methodaws-0.0.13}/src/method-security/methodaws/resources/loadbalancer/ip_address_type.py +0 -0
- {methodaws-0.0.11 → methodaws-0.0.13}/src/method-security/methodaws/resources/loadbalancer/listener.py +0 -0
- {methodaws-0.0.11 → methodaws-0.0.13}/src/method-security/methodaws/resources/loadbalancer/load_balancer_report.py +0 -0
- {methodaws-0.0.11 → methodaws-0.0.13}/src/method-security/methodaws/resources/loadbalancer/load_balancer_state.py +0 -0
- {methodaws-0.0.11 → methodaws-0.0.13}/src/method-security/methodaws/resources/loadbalancer/load_balancer_v_1.py +0 -0
- {methodaws-0.0.11 → methodaws-0.0.13}/src/method-security/methodaws/resources/loadbalancer/load_balancer_v_2.py +0 -0
- {methodaws-0.0.11 → methodaws-0.0.13}/src/method-security/methodaws/resources/loadbalancer/protocol.py +0 -0
- {methodaws-0.0.11 → methodaws-0.0.13}/src/method-security/methodaws/resources/loadbalancer/target.py +0 -0
- {methodaws-0.0.11 → methodaws-0.0.13}/src/method-security/methodaws/resources/loadbalancer/target_group.py +0 -0
- {methodaws-0.0.11 → methodaws-0.0.13}/src/method-security/methodaws/resources/loadbalancer/target_group_ip_address_type.py +0 -0
- {methodaws-0.0.11 → methodaws-0.0.13}/src/method-security/methodaws/resources/loadbalancer/target_type.py +0 -0
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
|
2
2
|
|
|
3
3
|
from .resources import (
|
|
4
|
+
Bucket,
|
|
5
|
+
BucketVersioningStatus,
|
|
4
6
|
Certificate,
|
|
5
7
|
CredentialInfo,
|
|
6
8
|
CredentialReport,
|
|
9
|
+
EncryptionRule,
|
|
10
|
+
ExternalBucket,
|
|
11
|
+
ExternalS3Report,
|
|
7
12
|
IpAddressType,
|
|
8
13
|
Listener,
|
|
9
14
|
LoadBalancerReport,
|
|
@@ -11,18 +16,30 @@ from .resources import (
|
|
|
11
16
|
LoadBalancerV1,
|
|
12
17
|
LoadBalancerV2,
|
|
13
18
|
Protocol,
|
|
19
|
+
S3BucketAcl,
|
|
20
|
+
S3MfaDeleteStatus,
|
|
21
|
+
S3ObjectDetails,
|
|
22
|
+
S3PublicAccessBlockConfiguration,
|
|
23
|
+
S3Report,
|
|
24
|
+
S3ServerSideEncryption,
|
|
14
25
|
Target,
|
|
15
26
|
TargetGroup,
|
|
16
27
|
TargetGroupIpAddressType,
|
|
17
28
|
TargetType,
|
|
18
29
|
credential,
|
|
19
30
|
loadbalancer,
|
|
31
|
+
s_3,
|
|
20
32
|
)
|
|
21
33
|
|
|
22
34
|
__all__ = [
|
|
35
|
+
"Bucket",
|
|
36
|
+
"BucketVersioningStatus",
|
|
23
37
|
"Certificate",
|
|
24
38
|
"CredentialInfo",
|
|
25
39
|
"CredentialReport",
|
|
40
|
+
"EncryptionRule",
|
|
41
|
+
"ExternalBucket",
|
|
42
|
+
"ExternalS3Report",
|
|
26
43
|
"IpAddressType",
|
|
27
44
|
"Listener",
|
|
28
45
|
"LoadBalancerReport",
|
|
@@ -30,10 +47,17 @@ __all__ = [
|
|
|
30
47
|
"LoadBalancerV1",
|
|
31
48
|
"LoadBalancerV2",
|
|
32
49
|
"Protocol",
|
|
50
|
+
"S3BucketAcl",
|
|
51
|
+
"S3MfaDeleteStatus",
|
|
52
|
+
"S3ObjectDetails",
|
|
53
|
+
"S3PublicAccessBlockConfiguration",
|
|
54
|
+
"S3Report",
|
|
55
|
+
"S3ServerSideEncryption",
|
|
33
56
|
"Target",
|
|
34
57
|
"TargetGroup",
|
|
35
58
|
"TargetGroupIpAddressType",
|
|
36
59
|
"TargetType",
|
|
37
60
|
"credential",
|
|
38
61
|
"loadbalancer",
|
|
62
|
+
"s_3",
|
|
39
63
|
]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
|
2
2
|
|
|
3
|
-
from . import credential, loadbalancer
|
|
3
|
+
from . import credential, loadbalancer, s_3
|
|
4
4
|
from .credential import CredentialInfo, CredentialReport
|
|
5
5
|
from .loadbalancer import (
|
|
6
6
|
Certificate,
|
|
@@ -16,11 +16,29 @@ from .loadbalancer import (
|
|
|
16
16
|
TargetGroupIpAddressType,
|
|
17
17
|
TargetType,
|
|
18
18
|
)
|
|
19
|
+
from .s_3 import (
|
|
20
|
+
Bucket,
|
|
21
|
+
BucketVersioningStatus,
|
|
22
|
+
EncryptionRule,
|
|
23
|
+
ExternalBucket,
|
|
24
|
+
ExternalS3Report,
|
|
25
|
+
S3BucketAcl,
|
|
26
|
+
S3MfaDeleteStatus,
|
|
27
|
+
S3ObjectDetails,
|
|
28
|
+
S3PublicAccessBlockConfiguration,
|
|
29
|
+
S3Report,
|
|
30
|
+
S3ServerSideEncryption,
|
|
31
|
+
)
|
|
19
32
|
|
|
20
33
|
__all__ = [
|
|
34
|
+
"Bucket",
|
|
35
|
+
"BucketVersioningStatus",
|
|
21
36
|
"Certificate",
|
|
22
37
|
"CredentialInfo",
|
|
23
38
|
"CredentialReport",
|
|
39
|
+
"EncryptionRule",
|
|
40
|
+
"ExternalBucket",
|
|
41
|
+
"ExternalS3Report",
|
|
24
42
|
"IpAddressType",
|
|
25
43
|
"Listener",
|
|
26
44
|
"LoadBalancerReport",
|
|
@@ -28,10 +46,17 @@ __all__ = [
|
|
|
28
46
|
"LoadBalancerV1",
|
|
29
47
|
"LoadBalancerV2",
|
|
30
48
|
"Protocol",
|
|
49
|
+
"S3BucketAcl",
|
|
50
|
+
"S3MfaDeleteStatus",
|
|
51
|
+
"S3ObjectDetails",
|
|
52
|
+
"S3PublicAccessBlockConfiguration",
|
|
53
|
+
"S3Report",
|
|
54
|
+
"S3ServerSideEncryption",
|
|
31
55
|
"Target",
|
|
32
56
|
"TargetGroup",
|
|
33
57
|
"TargetGroupIpAddressType",
|
|
34
58
|
"TargetType",
|
|
35
59
|
"credential",
|
|
36
60
|
"loadbalancer",
|
|
61
|
+
"s_3",
|
|
37
62
|
]
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
|
2
2
|
|
|
3
|
+
import datetime as dt
|
|
3
4
|
import typing
|
|
4
5
|
|
|
5
6
|
import pydantic
|
|
@@ -11,6 +12,7 @@ class CredentialInfo(UniversalBaseModel):
|
|
|
11
12
|
url: str
|
|
12
13
|
token: str
|
|
13
14
|
ca_cert: typing.Optional[str] = pydantic.Field(alias="caCert", default=None)
|
|
15
|
+
expiration: typing.Optional[dt.datetime] = None
|
|
14
16
|
|
|
15
17
|
if IS_PYDANTIC_V2:
|
|
16
18
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow") # type: ignore # Pydantic v2
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
from .bucket import Bucket
|
|
4
|
+
from .bucket_versioning_status import BucketVersioningStatus
|
|
5
|
+
from .encryption_rule import EncryptionRule
|
|
6
|
+
from .external_bucket import ExternalBucket
|
|
7
|
+
from .external_s_3_report import ExternalS3Report
|
|
8
|
+
from .s_3_bucket_acl import S3BucketAcl
|
|
9
|
+
from .s_3_mfa_delete_status import S3MfaDeleteStatus
|
|
10
|
+
from .s_3_object_details import S3ObjectDetails
|
|
11
|
+
from .s_3_public_access_block_configuration import S3PublicAccessBlockConfiguration
|
|
12
|
+
from .s_3_report import S3Report
|
|
13
|
+
from .s_3_server_side_encryption import S3ServerSideEncryption
|
|
14
|
+
|
|
15
|
+
__all__ = [
|
|
16
|
+
"Bucket",
|
|
17
|
+
"BucketVersioningStatus",
|
|
18
|
+
"EncryptionRule",
|
|
19
|
+
"ExternalBucket",
|
|
20
|
+
"ExternalS3Report",
|
|
21
|
+
"S3BucketAcl",
|
|
22
|
+
"S3MfaDeleteStatus",
|
|
23
|
+
"S3ObjectDetails",
|
|
24
|
+
"S3PublicAccessBlockConfiguration",
|
|
25
|
+
"S3Report",
|
|
26
|
+
"S3ServerSideEncryption",
|
|
27
|
+
]
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
import datetime as dt
|
|
4
|
+
import typing
|
|
5
|
+
|
|
6
|
+
import pydantic
|
|
7
|
+
|
|
8
|
+
from ...core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
|
|
9
|
+
from .bucket_versioning_status import BucketVersioningStatus
|
|
10
|
+
from .encryption_rule import EncryptionRule
|
|
11
|
+
from .s_3_mfa_delete_status import S3MfaDeleteStatus
|
|
12
|
+
from .s_3_public_access_block_configuration import S3PublicAccessBlockConfiguration
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class Bucket(UniversalBaseModel):
|
|
16
|
+
name: str
|
|
17
|
+
arn: str
|
|
18
|
+
url: str
|
|
19
|
+
creation_date: dt.datetime = pydantic.Field(alias="creationDate")
|
|
20
|
+
owner_id: str = pydantic.Field(alias="ownerID")
|
|
21
|
+
owner_name: str = pydantic.Field(alias="ownerName")
|
|
22
|
+
public_access_config: S3PublicAccessBlockConfiguration = pydantic.Field(alias="publicAccessConfig")
|
|
23
|
+
policy: typing.Optional[str] = None
|
|
24
|
+
bucket_versioning: typing.Optional[BucketVersioningStatus] = pydantic.Field(alias="bucketVersioning", default=None)
|
|
25
|
+
mfa_delete: typing.Optional[S3MfaDeleteStatus] = pydantic.Field(alias="mfaDelete", default=None)
|
|
26
|
+
encryption_rules: typing.List[EncryptionRule] = pydantic.Field(alias="encryptionRules")
|
|
27
|
+
|
|
28
|
+
if IS_PYDANTIC_V2:
|
|
29
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow") # type: ignore # Pydantic v2
|
|
30
|
+
else:
|
|
31
|
+
|
|
32
|
+
class Config:
|
|
33
|
+
extra = pydantic.Extra.allow
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
import typing
|
|
4
|
+
|
|
5
|
+
import pydantic
|
|
6
|
+
|
|
7
|
+
from ...core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
|
|
8
|
+
from .s_3_server_side_encryption import S3ServerSideEncryption
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class EncryptionRule(UniversalBaseModel):
|
|
12
|
+
sse_algorithm: typing.Optional[S3ServerSideEncryption] = pydantic.Field(alias="sseAlgorithm", default=None)
|
|
13
|
+
kms_master_key_id: typing.Optional[str] = pydantic.Field(alias="kmsMasterKeyID", default=None)
|
|
14
|
+
|
|
15
|
+
if IS_PYDANTIC_V2:
|
|
16
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow") # type: ignore # Pydantic v2
|
|
17
|
+
else:
|
|
18
|
+
|
|
19
|
+
class Config:
|
|
20
|
+
extra = pydantic.Extra.allow
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
import typing
|
|
4
|
+
|
|
5
|
+
import pydantic
|
|
6
|
+
|
|
7
|
+
from ...core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
|
|
8
|
+
from .s_3_bucket_acl import S3BucketAcl
|
|
9
|
+
from .s_3_object_details import S3ObjectDetails
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class ExternalBucket(UniversalBaseModel):
|
|
13
|
+
url: str
|
|
14
|
+
region: str
|
|
15
|
+
directory_contents: typing.Optional[typing.List[S3ObjectDetails]] = pydantic.Field(
|
|
16
|
+
alias="directoryContents", default=None
|
|
17
|
+
)
|
|
18
|
+
allow_directory_listing: bool = pydantic.Field(alias="allowDirectoryListing")
|
|
19
|
+
allow_anonymous_read: bool = pydantic.Field(alias="allowAnonymousRead")
|
|
20
|
+
policy: typing.Optional[str] = None
|
|
21
|
+
acls: typing.Optional[typing.List[S3BucketAcl]] = None
|
|
22
|
+
|
|
23
|
+
if IS_PYDANTIC_V2:
|
|
24
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow") # type: ignore # Pydantic v2
|
|
25
|
+
else:
|
|
26
|
+
|
|
27
|
+
class Config:
|
|
28
|
+
extra = pydantic.Extra.allow
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
import typing
|
|
4
|
+
|
|
5
|
+
import pydantic
|
|
6
|
+
|
|
7
|
+
from ...core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
|
|
8
|
+
from .external_bucket import ExternalBucket
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class ExternalS3Report(UniversalBaseModel):
|
|
12
|
+
external_buckets: typing.Optional[typing.List[ExternalBucket]] = pydantic.Field(
|
|
13
|
+
alias="externalBuckets", default=None
|
|
14
|
+
)
|
|
15
|
+
errors: typing.Optional[typing.List[str]] = None
|
|
16
|
+
|
|
17
|
+
if IS_PYDANTIC_V2:
|
|
18
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow") # type: ignore # Pydantic v2
|
|
19
|
+
else:
|
|
20
|
+
|
|
21
|
+
class Config:
|
|
22
|
+
extra = pydantic.Extra.allow
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
import typing
|
|
4
|
+
|
|
5
|
+
import pydantic
|
|
6
|
+
|
|
7
|
+
from ...core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class S3BucketAcl(UniversalBaseModel):
|
|
11
|
+
grantee_uri: str = pydantic.Field(alias="granteeURI")
|
|
12
|
+
permission: str
|
|
13
|
+
|
|
14
|
+
if IS_PYDANTIC_V2:
|
|
15
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow") # type: ignore # Pydantic v2
|
|
16
|
+
else:
|
|
17
|
+
|
|
18
|
+
class Config:
|
|
19
|
+
extra = pydantic.Extra.allow
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
import datetime as dt
|
|
4
|
+
import typing
|
|
5
|
+
|
|
6
|
+
import pydantic
|
|
7
|
+
|
|
8
|
+
from ...core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class S3ObjectDetails(UniversalBaseModel):
|
|
12
|
+
key: str
|
|
13
|
+
last_modified: typing.Optional[dt.datetime] = pydantic.Field(alias="lastModified", default=None)
|
|
14
|
+
size: typing.Optional[int] = None
|
|
15
|
+
owner_id: typing.Optional[str] = pydantic.Field(alias="ownerID", default=None)
|
|
16
|
+
owner_name: typing.Optional[str] = pydantic.Field(alias="ownerName", default=None)
|
|
17
|
+
|
|
18
|
+
if IS_PYDANTIC_V2:
|
|
19
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow") # type: ignore # Pydantic v2
|
|
20
|
+
else:
|
|
21
|
+
|
|
22
|
+
class Config:
|
|
23
|
+
extra = pydantic.Extra.allow
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
import typing
|
|
4
|
+
|
|
5
|
+
import pydantic
|
|
6
|
+
|
|
7
|
+
from ...core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class S3PublicAccessBlockConfiguration(UniversalBaseModel):
|
|
11
|
+
block_public_acls: bool = pydantic.Field(alias="blockPublicAcls")
|
|
12
|
+
ignore_public_acls: bool = pydantic.Field(alias="ignorePublicAcls")
|
|
13
|
+
block_public_policy: bool = pydantic.Field(alias="blockPublicPolicy")
|
|
14
|
+
restrict_public_buckets: bool = pydantic.Field(alias="restrictPublicBuckets")
|
|
15
|
+
|
|
16
|
+
if IS_PYDANTIC_V2:
|
|
17
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow") # type: ignore # Pydantic v2
|
|
18
|
+
else:
|
|
19
|
+
|
|
20
|
+
class Config:
|
|
21
|
+
extra = pydantic.Extra.allow
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
import typing
|
|
4
|
+
|
|
5
|
+
import pydantic
|
|
6
|
+
|
|
7
|
+
from ...core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
|
|
8
|
+
from .bucket import Bucket
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class S3Report(UniversalBaseModel):
|
|
12
|
+
account_id: str = pydantic.Field(alias="accountId")
|
|
13
|
+
s_3_buckets: typing.Optional[typing.List[Bucket]] = pydantic.Field(alias="s3Buckets", default=None)
|
|
14
|
+
errors: typing.Optional[typing.List[str]] = None
|
|
15
|
+
|
|
16
|
+
if IS_PYDANTIC_V2:
|
|
17
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow") # type: ignore # Pydantic v2
|
|
18
|
+
else:
|
|
19
|
+
|
|
20
|
+
class Config:
|
|
21
|
+
extra = pydantic.Extra.allow
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{methodaws-0.0.11 → methodaws-0.0.13}/src/method-security/methodaws/core/pydantic_utilities.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{methodaws-0.0.11 → methodaws-0.0.13}/src/method-security/methodaws/resources/credential/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{methodaws-0.0.11 → methodaws-0.0.13}/src/method-security/methodaws/resources/loadbalancer/target.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|