mypy-boto3-sso-admin 1.39.0__py3-none-any.whl → 1.40.7__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.
- mypy_boto3_sso_admin/__main__.py +3 -3
- mypy_boto3_sso_admin/client.py +23 -0
- mypy_boto3_sso_admin/client.pyi +23 -0
- mypy_boto3_sso_admin/literals.py +7 -0
- mypy_boto3_sso_admin/literals.pyi +7 -0
- mypy_boto3_sso_admin/type_defs.py +18 -0
- mypy_boto3_sso_admin/type_defs.pyi +15 -0
- mypy_boto3_sso_admin/version.py +1 -1
- {mypy_boto3_sso_admin-1.39.0.dist-info → mypy_boto3_sso_admin-1.40.7.dist-info}/METADATA +4 -4
- mypy_boto3_sso_admin-1.40.7.dist-info/RECORD +18 -0
- mypy_boto3_sso_admin-1.39.0.dist-info/RECORD +0 -18
- {mypy_boto3_sso_admin-1.39.0.dist-info → mypy_boto3_sso_admin-1.40.7.dist-info}/WHEEL +0 -0
- {mypy_boto3_sso_admin-1.39.0.dist-info → mypy_boto3_sso_admin-1.40.7.dist-info}/licenses/LICENSE +0 -0
- {mypy_boto3_sso_admin-1.39.0.dist-info → mypy_boto3_sso_admin-1.40.7.dist-info}/top_level.txt +0 -0
mypy_boto3_sso_admin/__main__.py
CHANGED
|
@@ -12,8 +12,8 @@ def print_info() -> None:
|
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
14
|
sys.stdout.write(
|
|
15
|
-
"Type annotations for boto3 SSOAdmin 1.
|
|
16
|
-
"Version: 1.
|
|
15
|
+
"Type annotations for boto3 SSOAdmin 1.40.7\n"
|
|
16
|
+
"Version: 1.40.7\n"
|
|
17
17
|
"Builder version: 8.11.0\n"
|
|
18
18
|
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#ssoadmin\n"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
sys.stdout.write("1.
|
|
29
|
+
sys.stdout.write("1.40.7\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
mypy_boto3_sso_admin/client.py
CHANGED
|
@@ -106,6 +106,8 @@ from .type_defs import (
|
|
|
106
106
|
GetApplicationAuthenticationMethodResponseTypeDef,
|
|
107
107
|
GetApplicationGrantRequestTypeDef,
|
|
108
108
|
GetApplicationGrantResponseTypeDef,
|
|
109
|
+
GetApplicationSessionConfigurationRequestTypeDef,
|
|
110
|
+
GetApplicationSessionConfigurationResponseTypeDef,
|
|
109
111
|
GetInlinePolicyForPermissionSetRequestTypeDef,
|
|
110
112
|
GetInlinePolicyForPermissionSetResponseTypeDef,
|
|
111
113
|
GetPermissionsBoundaryForPermissionSetRequestTypeDef,
|
|
@@ -156,6 +158,7 @@ from .type_defs import (
|
|
|
156
158
|
PutApplicationAssignmentConfigurationRequestTypeDef,
|
|
157
159
|
PutApplicationAuthenticationMethodRequestTypeDef,
|
|
158
160
|
PutApplicationGrantRequestTypeDef,
|
|
161
|
+
PutApplicationSessionConfigurationRequestTypeDef,
|
|
159
162
|
PutInlinePolicyToPermissionSetRequestTypeDef,
|
|
160
163
|
PutPermissionsBoundaryToPermissionSetRequestTypeDef,
|
|
161
164
|
TagResourceRequestTypeDef,
|
|
@@ -617,6 +620,16 @@ class SSOAdminClient(BaseClient):
|
|
|
617
620
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_application_grant)
|
|
618
621
|
"""
|
|
619
622
|
|
|
623
|
+
def get_application_session_configuration(
|
|
624
|
+
self, **kwargs: Unpack[GetApplicationSessionConfigurationRequestTypeDef]
|
|
625
|
+
) -> GetApplicationSessionConfigurationResponseTypeDef:
|
|
626
|
+
"""
|
|
627
|
+
Retrieves the session configuration for an application in IAM Identity Center.
|
|
628
|
+
|
|
629
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/get_application_session_configuration.html)
|
|
630
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_application_session_configuration)
|
|
631
|
+
"""
|
|
632
|
+
|
|
620
633
|
def get_inline_policy_for_permission_set(
|
|
621
634
|
self, **kwargs: Unpack[GetInlinePolicyForPermissionSetRequestTypeDef]
|
|
622
635
|
) -> GetInlinePolicyForPermissionSetResponseTypeDef:
|
|
@@ -901,6 +914,16 @@ class SSOAdminClient(BaseClient):
|
|
|
901
914
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#put_application_grant)
|
|
902
915
|
"""
|
|
903
916
|
|
|
917
|
+
def put_application_session_configuration(
|
|
918
|
+
self, **kwargs: Unpack[PutApplicationSessionConfigurationRequestTypeDef]
|
|
919
|
+
) -> Dict[str, Any]:
|
|
920
|
+
"""
|
|
921
|
+
Updates the session configuration for an application in IAM Identity Center.
|
|
922
|
+
|
|
923
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/put_application_session_configuration.html)
|
|
924
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#put_application_session_configuration)
|
|
925
|
+
"""
|
|
926
|
+
|
|
904
927
|
def put_inline_policy_to_permission_set(
|
|
905
928
|
self, **kwargs: Unpack[PutInlinePolicyToPermissionSetRequestTypeDef]
|
|
906
929
|
) -> Dict[str, Any]:
|
mypy_boto3_sso_admin/client.pyi
CHANGED
|
@@ -106,6 +106,8 @@ from .type_defs import (
|
|
|
106
106
|
GetApplicationAuthenticationMethodResponseTypeDef,
|
|
107
107
|
GetApplicationGrantRequestTypeDef,
|
|
108
108
|
GetApplicationGrantResponseTypeDef,
|
|
109
|
+
GetApplicationSessionConfigurationRequestTypeDef,
|
|
110
|
+
GetApplicationSessionConfigurationResponseTypeDef,
|
|
109
111
|
GetInlinePolicyForPermissionSetRequestTypeDef,
|
|
110
112
|
GetInlinePolicyForPermissionSetResponseTypeDef,
|
|
111
113
|
GetPermissionsBoundaryForPermissionSetRequestTypeDef,
|
|
@@ -156,6 +158,7 @@ from .type_defs import (
|
|
|
156
158
|
PutApplicationAssignmentConfigurationRequestTypeDef,
|
|
157
159
|
PutApplicationAuthenticationMethodRequestTypeDef,
|
|
158
160
|
PutApplicationGrantRequestTypeDef,
|
|
161
|
+
PutApplicationSessionConfigurationRequestTypeDef,
|
|
159
162
|
PutInlinePolicyToPermissionSetRequestTypeDef,
|
|
160
163
|
PutPermissionsBoundaryToPermissionSetRequestTypeDef,
|
|
161
164
|
TagResourceRequestTypeDef,
|
|
@@ -614,6 +617,16 @@ class SSOAdminClient(BaseClient):
|
|
|
614
617
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_application_grant)
|
|
615
618
|
"""
|
|
616
619
|
|
|
620
|
+
def get_application_session_configuration(
|
|
621
|
+
self, **kwargs: Unpack[GetApplicationSessionConfigurationRequestTypeDef]
|
|
622
|
+
) -> GetApplicationSessionConfigurationResponseTypeDef:
|
|
623
|
+
"""
|
|
624
|
+
Retrieves the session configuration for an application in IAM Identity Center.
|
|
625
|
+
|
|
626
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/get_application_session_configuration.html)
|
|
627
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#get_application_session_configuration)
|
|
628
|
+
"""
|
|
629
|
+
|
|
617
630
|
def get_inline_policy_for_permission_set(
|
|
618
631
|
self, **kwargs: Unpack[GetInlinePolicyForPermissionSetRequestTypeDef]
|
|
619
632
|
) -> GetInlinePolicyForPermissionSetResponseTypeDef:
|
|
@@ -898,6 +911,16 @@ class SSOAdminClient(BaseClient):
|
|
|
898
911
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#put_application_grant)
|
|
899
912
|
"""
|
|
900
913
|
|
|
914
|
+
def put_application_session_configuration(
|
|
915
|
+
self, **kwargs: Unpack[PutApplicationSessionConfigurationRequestTypeDef]
|
|
916
|
+
) -> Dict[str, Any]:
|
|
917
|
+
"""
|
|
918
|
+
Updates the session configuration for an application in IAM Identity Center.
|
|
919
|
+
|
|
920
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin/client/put_application_session_configuration.html)
|
|
921
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/client/#put_application_session_configuration)
|
|
922
|
+
"""
|
|
923
|
+
|
|
901
924
|
def put_inline_policy_to_permission_set(
|
|
902
925
|
self, **kwargs: Unpack[PutInlinePolicyToPermissionSetRequestTypeDef]
|
|
903
926
|
) -> Dict[str, Any]:
|
mypy_boto3_sso_admin/literals.py
CHANGED
|
@@ -63,6 +63,7 @@ __all__ = (
|
|
|
63
63
|
"StatusValuesType",
|
|
64
64
|
"TargetTypeType",
|
|
65
65
|
"TrustedTokenIssuerTypeType",
|
|
66
|
+
"UserBackgroundSessionApplicationStatusType",
|
|
66
67
|
)
|
|
67
68
|
|
|
68
69
|
|
|
@@ -126,6 +127,7 @@ SignInOriginType = Literal["APPLICATION", "IDENTITY_CENTER"]
|
|
|
126
127
|
StatusValuesType = Literal["FAILED", "IN_PROGRESS", "SUCCEEDED"]
|
|
127
128
|
TargetTypeType = Literal["AWS_ACCOUNT"]
|
|
128
129
|
TrustedTokenIssuerTypeType = Literal["OIDC_JWT"]
|
|
130
|
+
UserBackgroundSessionApplicationStatusType = Literal["DISABLED", "ENABLED"]
|
|
129
131
|
SSOAdminServiceName = Literal["sso-admin"]
|
|
130
132
|
ServiceName = Literal[
|
|
131
133
|
"accessanalyzer",
|
|
@@ -154,6 +156,7 @@ ServiceName = Literal[
|
|
|
154
156
|
"appstream",
|
|
155
157
|
"appsync",
|
|
156
158
|
"apptest",
|
|
159
|
+
"arc-region-switch",
|
|
157
160
|
"arc-zonal-shift",
|
|
158
161
|
"artifact",
|
|
159
162
|
"athena",
|
|
@@ -170,6 +173,8 @@ ServiceName = Literal[
|
|
|
170
173
|
"bedrock",
|
|
171
174
|
"bedrock-agent",
|
|
172
175
|
"bedrock-agent-runtime",
|
|
176
|
+
"bedrock-agentcore",
|
|
177
|
+
"bedrock-agentcore-control",
|
|
173
178
|
"bedrock-data-automation",
|
|
174
179
|
"bedrock-data-automation-runtime",
|
|
175
180
|
"bedrock-runtime",
|
|
@@ -402,6 +407,7 @@ ServiceName = Literal[
|
|
|
402
407
|
"notificationscontacts",
|
|
403
408
|
"oam",
|
|
404
409
|
"observabilityadmin",
|
|
410
|
+
"odb",
|
|
405
411
|
"omics",
|
|
406
412
|
"opensearch",
|
|
407
413
|
"opensearchserverless",
|
|
@@ -462,6 +468,7 @@ ServiceName = Literal[
|
|
|
462
468
|
"s3control",
|
|
463
469
|
"s3outposts",
|
|
464
470
|
"s3tables",
|
|
471
|
+
"s3vectors",
|
|
465
472
|
"sagemaker",
|
|
466
473
|
"sagemaker-a2i-runtime",
|
|
467
474
|
"sagemaker-edge",
|
|
@@ -62,6 +62,7 @@ __all__ = (
|
|
|
62
62
|
"StatusValuesType",
|
|
63
63
|
"TargetTypeType",
|
|
64
64
|
"TrustedTokenIssuerTypeType",
|
|
65
|
+
"UserBackgroundSessionApplicationStatusType",
|
|
65
66
|
)
|
|
66
67
|
|
|
67
68
|
ApplicationStatusType = Literal["DISABLED", "ENABLED"]
|
|
@@ -124,6 +125,7 @@ SignInOriginType = Literal["APPLICATION", "IDENTITY_CENTER"]
|
|
|
124
125
|
StatusValuesType = Literal["FAILED", "IN_PROGRESS", "SUCCEEDED"]
|
|
125
126
|
TargetTypeType = Literal["AWS_ACCOUNT"]
|
|
126
127
|
TrustedTokenIssuerTypeType = Literal["OIDC_JWT"]
|
|
128
|
+
UserBackgroundSessionApplicationStatusType = Literal["DISABLED", "ENABLED"]
|
|
127
129
|
SSOAdminServiceName = Literal["sso-admin"]
|
|
128
130
|
ServiceName = Literal[
|
|
129
131
|
"accessanalyzer",
|
|
@@ -152,6 +154,7 @@ ServiceName = Literal[
|
|
|
152
154
|
"appstream",
|
|
153
155
|
"appsync",
|
|
154
156
|
"apptest",
|
|
157
|
+
"arc-region-switch",
|
|
155
158
|
"arc-zonal-shift",
|
|
156
159
|
"artifact",
|
|
157
160
|
"athena",
|
|
@@ -168,6 +171,8 @@ ServiceName = Literal[
|
|
|
168
171
|
"bedrock",
|
|
169
172
|
"bedrock-agent",
|
|
170
173
|
"bedrock-agent-runtime",
|
|
174
|
+
"bedrock-agentcore",
|
|
175
|
+
"bedrock-agentcore-control",
|
|
171
176
|
"bedrock-data-automation",
|
|
172
177
|
"bedrock-data-automation-runtime",
|
|
173
178
|
"bedrock-runtime",
|
|
@@ -400,6 +405,7 @@ ServiceName = Literal[
|
|
|
400
405
|
"notificationscontacts",
|
|
401
406
|
"oam",
|
|
402
407
|
"observabilityadmin",
|
|
408
|
+
"odb",
|
|
403
409
|
"omics",
|
|
404
410
|
"opensearch",
|
|
405
411
|
"opensearchserverless",
|
|
@@ -460,6 +466,7 @@ ServiceName = Literal[
|
|
|
460
466
|
"s3control",
|
|
461
467
|
"s3outposts",
|
|
462
468
|
"s3tables",
|
|
469
|
+
"s3vectors",
|
|
463
470
|
"sagemaker",
|
|
464
471
|
"sagemaker-a2i-runtime",
|
|
465
472
|
"sagemaker-edge",
|
|
@@ -32,6 +32,7 @@ from .literals import (
|
|
|
32
32
|
ProvisionTargetTypeType,
|
|
33
33
|
SignInOriginType,
|
|
34
34
|
StatusValuesType,
|
|
35
|
+
UserBackgroundSessionApplicationStatusType,
|
|
35
36
|
)
|
|
36
37
|
|
|
37
38
|
if sys.version_info >= (3, 9):
|
|
@@ -128,6 +129,8 @@ __all__ = (
|
|
|
128
129
|
"GetApplicationAuthenticationMethodResponseTypeDef",
|
|
129
130
|
"GetApplicationGrantRequestTypeDef",
|
|
130
131
|
"GetApplicationGrantResponseTypeDef",
|
|
132
|
+
"GetApplicationSessionConfigurationRequestTypeDef",
|
|
133
|
+
"GetApplicationSessionConfigurationResponseTypeDef",
|
|
131
134
|
"GetInlinePolicyForPermissionSetRequestTypeDef",
|
|
132
135
|
"GetInlinePolicyForPermissionSetResponseTypeDef",
|
|
133
136
|
"GetPermissionsBoundaryForPermissionSetRequestTypeDef",
|
|
@@ -222,6 +225,7 @@ __all__ = (
|
|
|
222
225
|
"PutApplicationAssignmentConfigurationRequestTypeDef",
|
|
223
226
|
"PutApplicationAuthenticationMethodRequestTypeDef",
|
|
224
227
|
"PutApplicationGrantRequestTypeDef",
|
|
228
|
+
"PutApplicationSessionConfigurationRequestTypeDef",
|
|
225
229
|
"PutInlinePolicyToPermissionSetRequestTypeDef",
|
|
226
230
|
"PutPermissionsBoundaryToPermissionSetRequestTypeDef",
|
|
227
231
|
"ResourceServerConfigTypeDef",
|
|
@@ -522,6 +526,10 @@ class GetApplicationGrantRequestTypeDef(TypedDict):
|
|
|
522
526
|
GrantType: GrantTypeType
|
|
523
527
|
|
|
524
528
|
|
|
529
|
+
class GetApplicationSessionConfigurationRequestTypeDef(TypedDict):
|
|
530
|
+
ApplicationArn: str
|
|
531
|
+
|
|
532
|
+
|
|
525
533
|
class GetInlinePolicyForPermissionSetRequestTypeDef(TypedDict):
|
|
526
534
|
InstanceArn: str
|
|
527
535
|
PermissionSetArn: str
|
|
@@ -705,6 +713,11 @@ class PutApplicationAssignmentConfigurationRequestTypeDef(TypedDict):
|
|
|
705
713
|
AssignmentRequired: bool
|
|
706
714
|
|
|
707
715
|
|
|
716
|
+
class PutApplicationSessionConfigurationRequestTypeDef(TypedDict):
|
|
717
|
+
ApplicationArn: str
|
|
718
|
+
UserBackgroundSessionApplicationStatus: NotRequired[UserBackgroundSessionApplicationStatusType]
|
|
719
|
+
|
|
720
|
+
|
|
708
721
|
class PutInlinePolicyToPermissionSetRequestTypeDef(TypedDict):
|
|
709
722
|
InstanceArn: str
|
|
710
723
|
PermissionSetArn: str
|
|
@@ -845,6 +858,11 @@ class GetApplicationAssignmentConfigurationResponseTypeDef(TypedDict):
|
|
|
845
858
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
846
859
|
|
|
847
860
|
|
|
861
|
+
class GetApplicationSessionConfigurationResponseTypeDef(TypedDict):
|
|
862
|
+
UserBackgroundSessionApplicationStatus: UserBackgroundSessionApplicationStatusType
|
|
863
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
864
|
+
|
|
865
|
+
|
|
848
866
|
class GetInlinePolicyForPermissionSetResponseTypeDef(TypedDict):
|
|
849
867
|
InlinePolicy: str
|
|
850
868
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -32,6 +32,7 @@ from .literals import (
|
|
|
32
32
|
ProvisionTargetTypeType,
|
|
33
33
|
SignInOriginType,
|
|
34
34
|
StatusValuesType,
|
|
35
|
+
UserBackgroundSessionApplicationStatusType,
|
|
35
36
|
)
|
|
36
37
|
|
|
37
38
|
if sys.version_info >= (3, 9):
|
|
@@ -127,6 +128,8 @@ __all__ = (
|
|
|
127
128
|
"GetApplicationAuthenticationMethodResponseTypeDef",
|
|
128
129
|
"GetApplicationGrantRequestTypeDef",
|
|
129
130
|
"GetApplicationGrantResponseTypeDef",
|
|
131
|
+
"GetApplicationSessionConfigurationRequestTypeDef",
|
|
132
|
+
"GetApplicationSessionConfigurationResponseTypeDef",
|
|
130
133
|
"GetInlinePolicyForPermissionSetRequestTypeDef",
|
|
131
134
|
"GetInlinePolicyForPermissionSetResponseTypeDef",
|
|
132
135
|
"GetPermissionsBoundaryForPermissionSetRequestTypeDef",
|
|
@@ -221,6 +224,7 @@ __all__ = (
|
|
|
221
224
|
"PutApplicationAssignmentConfigurationRequestTypeDef",
|
|
222
225
|
"PutApplicationAuthenticationMethodRequestTypeDef",
|
|
223
226
|
"PutApplicationGrantRequestTypeDef",
|
|
227
|
+
"PutApplicationSessionConfigurationRequestTypeDef",
|
|
224
228
|
"PutInlinePolicyToPermissionSetRequestTypeDef",
|
|
225
229
|
"PutPermissionsBoundaryToPermissionSetRequestTypeDef",
|
|
226
230
|
"ResourceServerConfigTypeDef",
|
|
@@ -469,6 +473,9 @@ class GetApplicationGrantRequestTypeDef(TypedDict):
|
|
|
469
473
|
ApplicationArn: str
|
|
470
474
|
GrantType: GrantTypeType
|
|
471
475
|
|
|
476
|
+
class GetApplicationSessionConfigurationRequestTypeDef(TypedDict):
|
|
477
|
+
ApplicationArn: str
|
|
478
|
+
|
|
472
479
|
class GetInlinePolicyForPermissionSetRequestTypeDef(TypedDict):
|
|
473
480
|
InstanceArn: str
|
|
474
481
|
PermissionSetArn: str
|
|
@@ -621,6 +628,10 @@ class PutApplicationAssignmentConfigurationRequestTypeDef(TypedDict):
|
|
|
621
628
|
ApplicationArn: str
|
|
622
629
|
AssignmentRequired: bool
|
|
623
630
|
|
|
631
|
+
class PutApplicationSessionConfigurationRequestTypeDef(TypedDict):
|
|
632
|
+
ApplicationArn: str
|
|
633
|
+
UserBackgroundSessionApplicationStatus: NotRequired[UserBackgroundSessionApplicationStatusType]
|
|
634
|
+
|
|
624
635
|
class PutInlinePolicyToPermissionSetRequestTypeDef(TypedDict):
|
|
625
636
|
InstanceArn: str
|
|
626
637
|
PermissionSetArn: str
|
|
@@ -735,6 +746,10 @@ class GetApplicationAssignmentConfigurationResponseTypeDef(TypedDict):
|
|
|
735
746
|
AssignmentRequired: bool
|
|
736
747
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
737
748
|
|
|
749
|
+
class GetApplicationSessionConfigurationResponseTypeDef(TypedDict):
|
|
750
|
+
UserBackgroundSessionApplicationStatus: UserBackgroundSessionApplicationStatusType
|
|
751
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
752
|
+
|
|
738
753
|
class GetInlinePolicyForPermissionSetResponseTypeDef(TypedDict):
|
|
739
754
|
InlinePolicy: str
|
|
740
755
|
ResponseMetadata: ResponseMetadataTypeDef
|
mypy_boto3_sso_admin/version.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mypy-boto3-sso-admin
|
|
3
|
-
Version: 1.
|
|
4
|
-
Summary: Type annotations for boto3 SSOAdmin 1.
|
|
3
|
+
Version: 1.40.7
|
|
4
|
+
Summary: Type annotations for boto3 SSOAdmin 1.40.7 service generated with mypy-boto3-builder 8.11.0
|
|
5
5
|
Home-page: https://github.com/youtype/mypy_boto3_builder
|
|
6
6
|
Author: Vlad Emelianov
|
|
7
7
|
Author-email: vlad.emelianov.nz@gmail.com
|
|
@@ -56,7 +56,7 @@ Dynamic: summary
|
|
|
56
56
|
|
|
57
57
|

|
|
58
58
|
|
|
59
|
-
Type annotations for [boto3 SSOAdmin 1.
|
|
59
|
+
Type annotations for [boto3 SSOAdmin 1.40.7](https://pypi.org/project/boto3/)
|
|
60
60
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
61
61
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
62
62
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -118,7 +118,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
118
118
|
isolation.
|
|
119
119
|
|
|
120
120
|
1. Run mypy-boto3-builder in your package root directory:
|
|
121
|
-
`uvx --with 'boto3==1.
|
|
121
|
+
`uvx --with 'boto3==1.40.7' mypy-boto3-builder`
|
|
122
122
|
2. Select `boto3-stubs` AWS SDK.
|
|
123
123
|
3. Add `SSOAdmin` service.
|
|
124
124
|
4. Use provided commands to install generated packages.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
mypy_boto3_sso_admin/__init__.py,sha256=K7ei0XSTTdtdRK463sfNnrXBe78mhLne49ZC5SbnGRI,6248
|
|
2
|
+
mypy_boto3_sso_admin/__init__.pyi,sha256=ZZdfLxuG00N7IH_46b44bzdMh8QrPSD7IEFqqZCDlCg,6247
|
|
3
|
+
mypy_boto3_sso_admin/__main__.py,sha256=AkUD2s9jCgG57XKo-yAGysY4uew_iVQmLpYBZFbxhrg,987
|
|
4
|
+
mypy_boto3_sso_admin/client.py,sha256=qBD5Jvsjcr1oWajwyKrTpww6gH1W_lMBA8DklGraw44,65798
|
|
5
|
+
mypy_boto3_sso_admin/client.pyi,sha256=QfQ9AZ0kqhmx_gEY9dAwr1Rv2xR0Hh0wwfu00n5EW0A,65795
|
|
6
|
+
mypy_boto3_sso_admin/literals.py,sha256=Giss-rRLntZP5e09pJcnukGJxhVT2nyRJ2KDWXAea90,14961
|
|
7
|
+
mypy_boto3_sso_admin/literals.pyi,sha256=Ji_10MH4odomYinKDdSbY5_b3lhEL6Ey2s60W8ojCXc,14959
|
|
8
|
+
mypy_boto3_sso_admin/paginator.py,sha256=2LfYXUtC0D6BGO2psp5TFtAquuecOMgj6Bhsyfg8KEQ,33892
|
|
9
|
+
mypy_boto3_sso_admin/paginator.pyi,sha256=ZfdhZZNtLU8wpAw0bZTkxcBoi82Sb9WZtP_s0mF3pQA,33831
|
|
10
|
+
mypy_boto3_sso_admin/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_sso_admin/type_defs.py,sha256=xZT2HbSM8sqvuYp0sD9xGC6veETC29Kt2xgAf_-v6Jk,43678
|
|
12
|
+
mypy_boto3_sso_admin/type_defs.pyi,sha256=ZhSveZi39GEh9qQVzY-yfDVqpOPbV8TQXkBr00TbLxg,43480
|
|
13
|
+
mypy_boto3_sso_admin/version.py,sha256=rmTw8Sq7zP4HwozzydHyftSAvXnZAqV0JbGlJ_09clk,92
|
|
14
|
+
mypy_boto3_sso_admin-1.40.7.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
+
mypy_boto3_sso_admin-1.40.7.dist-info/METADATA,sha256=-wTiyKkouLlp4Eht8rCGMZy5shwKHxrImULcApicHq0,18780
|
|
16
|
+
mypy_boto3_sso_admin-1.40.7.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
17
|
+
mypy_boto3_sso_admin-1.40.7.dist-info/top_level.txt,sha256=J3YkolHLCw1VEirBRu25pYMYGQc-RQmLv-k8X_A7IT8,21
|
|
18
|
+
mypy_boto3_sso_admin-1.40.7.dist-info/RECORD,,
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
mypy_boto3_sso_admin/__init__.py,sha256=K7ei0XSTTdtdRK463sfNnrXBe78mhLne49ZC5SbnGRI,6248
|
|
2
|
-
mypy_boto3_sso_admin/__init__.pyi,sha256=ZZdfLxuG00N7IH_46b44bzdMh8QrPSD7IEFqqZCDlCg,6247
|
|
3
|
-
mypy_boto3_sso_admin/__main__.py,sha256=tnTyzYD3iRPnAq0mqgaHF67D1gQpgoLQAg2qcVRDCDk,987
|
|
4
|
-
mypy_boto3_sso_admin/client.py,sha256=SdNStcOncSpG0ap5-5xTDnkUWI2OQvT0ey1UL0HrqA0,64424
|
|
5
|
-
mypy_boto3_sso_admin/client.pyi,sha256=HU8STEaUUXk1i9tizrRgUdUnOBqAOfN0JIQ4Z5jmb9k,64421
|
|
6
|
-
mypy_boto3_sso_admin/literals.py,sha256=4laa-dGgvbKm4zYnpqr3TbTWlMQZojoydq2k9DJOomU,14724
|
|
7
|
-
mypy_boto3_sso_admin/literals.pyi,sha256=zwWGqvtVHWhTjYf0OBhXxk6AxToRP6LcjwyIA0yitXg,14722
|
|
8
|
-
mypy_boto3_sso_admin/paginator.py,sha256=2LfYXUtC0D6BGO2psp5TFtAquuecOMgj6Bhsyfg8KEQ,33892
|
|
9
|
-
mypy_boto3_sso_admin/paginator.pyi,sha256=ZfdhZZNtLU8wpAw0bZTkxcBoi82Sb9WZtP_s0mF3pQA,33831
|
|
10
|
-
mypy_boto3_sso_admin/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_sso_admin/type_defs.py,sha256=qDG4A7Yx7MgBC_ecyrJu3hBnZdWHmYuUT11EcQ05Vo8,42972
|
|
12
|
-
mypy_boto3_sso_admin/type_defs.pyi,sha256=B850j_0PY-38j1dmn6ULgJOihyj2bDpbCju7Ey3AmGE,42777
|
|
13
|
-
mypy_boto3_sso_admin/version.py,sha256=2zoG4eEWPRyRE1KcrQlbWADhaM3qPJ9AE2mKAu218VA,92
|
|
14
|
-
mypy_boto3_sso_admin-1.39.0.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
-
mypy_boto3_sso_admin-1.39.0.dist-info/METADATA,sha256=jWp4hv0oDJJmSn1hi79DfTNSIbfofk8SWTaiN_00_9w,18780
|
|
16
|
-
mypy_boto3_sso_admin-1.39.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
17
|
-
mypy_boto3_sso_admin-1.39.0.dist-info/top_level.txt,sha256=J3YkolHLCw1VEirBRu25pYMYGQc-RQmLv-k8X_A7IT8,21
|
|
18
|
-
mypy_boto3_sso_admin-1.39.0.dist-info/RECORD,,
|
|
File without changes
|
{mypy_boto3_sso_admin-1.39.0.dist-info → mypy_boto3_sso_admin-1.40.7.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
{mypy_boto3_sso_admin-1.39.0.dist-info → mypy_boto3_sso_admin-1.40.7.dist-info}/top_level.txt
RENAMED
|
File without changes
|