mypy-boto3-sso-admin 1.28.37__py3-none-any.whl → 1.29.0__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.
@@ -1,4 +1,5 @@
1
1
  """
2
2
  Source of truth for version.
3
3
  """
4
- __version__ = "1.28.37"
4
+
5
+ __version__ = "1.29.0"
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mypy-boto3-sso-admin
3
- Version: 1.28.37
4
- Summary: Type annotations for boto3.SSOAdmin 1.28.37 service generated with mypy-boto3-builder 7.18.2
3
+ Version: 1.29.0
4
+ Summary: Type annotations for boto3.SSOAdmin 1.29.0 service generated with mypy-boto3-builder 7.20.3
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
@@ -23,13 +23,14 @@ Classifier: Programming Language :: Python :: 3.9
23
23
  Classifier: Programming Language :: Python :: 3.10
24
24
  Classifier: Programming Language :: Python :: 3.11
25
25
  Classifier: Programming Language :: Python :: 3.12
26
+ Classifier: Programming Language :: Python :: 3.13
26
27
  Classifier: Programming Language :: Python :: 3 :: Only
27
28
  Classifier: Programming Language :: Python :: Implementation :: CPython
28
29
  Classifier: Typing :: Typed
29
30
  Requires-Python: >=3.7
30
31
  Description-Content-Type: text/markdown
31
32
  License-File: LICENSE
32
- Requires-Dist: typing-extensions (>=4.1.0) ; python_version < "3.12"
33
+ Requires-Dist: typing-extensions >=4.1.0 ; python_version < "3.12"
33
34
 
34
35
  <a id="mypy-boto3-sso-admin"></a>
35
36
 
@@ -43,7 +44,7 @@ Requires-Dist: typing-extensions (>=4.1.0) ; python_version < "3.12"
43
44
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
44
45
 
45
46
  Type annotations for
46
- [boto3.SSOAdmin 1.28.37](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin)
47
+ [boto3.SSOAdmin 1.29.0](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sso-admin.html#SSOAdmin)
47
48
  service compatible with [VSCode](https://code.visualstudio.com/),
48
49
  [PyCharm](https://www.jetbrains.com/pycharm/),
49
50
  [Emacs](https://www.gnu.org/software/emacs/),
@@ -52,7 +53,7 @@ service compatible with [VSCode](https://code.visualstudio.com/),
52
53
  [pyright](https://github.com/microsoft/pyright) and other tools.
53
54
 
54
55
  Generated by
55
- [mypy-boto3-builder 7.18.2](https://github.com/youtype/mypy_boto3_builder).
56
+ [mypy-boto3-builder 7.20.3](https://github.com/youtype/mypy_boto3_builder).
56
57
 
57
58
  More information can be found on
58
59
  [boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
@@ -310,12 +311,12 @@ list_account_assignment_deletion_status_paginator: ListAccountAssignmentDeletion
310
311
  list_account_assignments_paginator: ListAccountAssignmentsPaginator = client.get_paginator(
311
312
  "list_account_assignments"
312
313
  )
313
- list_accounts_for_provisioned_permission_set_paginator: ListAccountsForProvisionedPermissionSetPaginator = client.get_paginator(
314
- "list_accounts_for_provisioned_permission_set"
315
- )
316
- list_customer_managed_policy_references_in_permission_set_paginator: ListCustomerManagedPolicyReferencesInPermissionSetPaginator = client.get_paginator(
317
- "list_customer_managed_policy_references_in_permission_set"
318
- )
314
+ list_accounts_for_provisioned_permission_set_paginator: (
315
+ ListAccountsForProvisionedPermissionSetPaginator
316
+ ) = client.get_paginator("list_accounts_for_provisioned_permission_set")
317
+ list_customer_managed_policy_references_in_permission_set_paginator: (
318
+ ListCustomerManagedPolicyReferencesInPermissionSetPaginator
319
+ ) = client.get_paginator("list_customer_managed_policy_references_in_permission_set")
319
320
  list_instances_paginator: ListInstancesPaginator = client.get_paginator("list_instances")
320
321
  list_managed_policies_in_permission_set_paginator: ListManagedPoliciesInPermissionSetPaginator = (
321
322
  client.get_paginator("list_managed_policies_in_permission_set")
@@ -326,9 +327,9 @@ list_permission_set_provisioning_status_paginator: ListPermissionSetProvisioning
326
327
  list_permission_sets_paginator: ListPermissionSetsPaginator = client.get_paginator(
327
328
  "list_permission_sets"
328
329
  )
329
- list_permission_sets_provisioned_to_account_paginator: ListPermissionSetsProvisionedToAccountPaginator = client.get_paginator(
330
- "list_permission_sets_provisioned_to_account"
331
- )
330
+ list_permission_sets_provisioned_to_account_paginator: (
331
+ ListPermissionSetsProvisionedToAccountPaginator
332
+ ) = client.get_paginator("list_permission_sets_provisioned_to_account")
332
333
  list_tags_for_resource_paginator: ListTagsForResourcePaginator = client.get_paginator(
333
334
  "list_tags_for_resource"
334
335
  )
@@ -348,8 +349,7 @@ Full list of `SSOAdmin` Literals can be found in
348
349
  from mypy_boto3_sso_admin.literals import InstanceAccessControlAttributeConfigurationStatusType
349
350
 
350
351
 
351
- def check_value(value: InstanceAccessControlAttributeConfigurationStatusType) -> bool:
352
- ...
352
+ def check_value(value: InstanceAccessControlAttributeConfigurationStatusType) -> bool: ...
353
353
  ```
354
354
 
355
355
  <a id="type-definitions"></a>
@@ -0,0 +1,18 @@
1
+ mypy_boto3_sso_admin/__init__.py,sha256=5XcBErMhngiO25FiU_-FS3gdBCRQ7-MUYXex1NwqJ2w,3680
2
+ mypy_boto3_sso_admin/__init__.pyi,sha256=z8eQLBgnWgCF0utWdp3SlWhlyjuAKW1nA5XxavX91Yg,3679
3
+ mypy_boto3_sso_admin/__main__.py,sha256=0UcsgqBxCpAum9TikqOcCTmA-Ms3pS0ToRTiYtU2w5Y,911
4
+ mypy_boto3_sso_admin/client.py,sha256=098Hg-CyPFb_yBUzwGG-wMrJ_-yGb18EER4qD0qFMdI,35168
5
+ mypy_boto3_sso_admin/client.pyi,sha256=T9EwmDNk2lIZMKQqzW999VmarqvzUmsJ3XLUvlBFx8k,35164
6
+ mypy_boto3_sso_admin/literals.py,sha256=v61-FJdR8fY4T4mpx7YDx4QzNn1Z1FTzhVgNL73jr2o,11090
7
+ mypy_boto3_sso_admin/literals.pyi,sha256=1UDAqKyl5MVk3Z5zu8A0NFCvcJXG2xlqBjkOpjSZWxg,11088
8
+ mypy_boto3_sso_admin/paginator.py,sha256=fDSqy4pKPxom2MLBhiEDdwJC66yygTEg6x-U1dIBLoQ,15269
9
+ mypy_boto3_sso_admin/paginator.pyi,sha256=JGmrruC986A9ylZb-1l1WcC5a4fJZARPefeC18i-G7s,15256
10
+ mypy_boto3_sso_admin/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ mypy_boto3_sso_admin/type_defs.py,sha256=TMroWZR3gsw6eRYJyssn3POGI_lMIGth7ZYRuvCZq4w,29523
12
+ mypy_boto3_sso_admin/type_defs.pyi,sha256=YOH6ulghCbk7nCYJtvNV8zyoCdFrS89IiwzXxKQvveI,29522
13
+ mypy_boto3_sso_admin/version.py,sha256=mNcCytW-69sJJzx3XNhhsfbD50BPuV9MHF1qR-EBBZ0,61
14
+ mypy_boto3_sso_admin-1.29.0.dist-info/LICENSE,sha256=v0rThCyxXzUO7rKg6RM8RmmNKO6EvsBx_mdNoXUPxAU,1070
15
+ mypy_boto3_sso_admin-1.29.0.dist-info/METADATA,sha256=1DfTvCmEtYS84oFxRXmUo4RfDnNq6boCTLnKQ_V-lXU,15017
16
+ mypy_boto3_sso_admin-1.29.0.dist-info/WHEEL,sha256=Xo9-1PvkuimrydujYJAjF7pCkriuXBpUPEjma1nZyJ0,92
17
+ mypy_boto3_sso_admin-1.29.0.dist-info/top_level.txt,sha256=J3YkolHLCw1VEirBRu25pYMYGQc-RQmLv-k8X_A7IT8,21
18
+ mypy_boto3_sso_admin-1.29.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.38.4)
2
+ Generator: bdist_wheel (0.41.3)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,18 +0,0 @@
1
- mypy_boto3_sso_admin/__init__.py,sha256=dzrgoyPkrmDEiyVy10Nqoa27pQwQlHAoSZC-lgVD0Bs,3679
2
- mypy_boto3_sso_admin/__init__.pyi,sha256=4z_5TDDfWUC_iakFito-Xom2-SwsHhIHiOdJrxWZpJc,3678
3
- mypy_boto3_sso_admin/__main__.py,sha256=Taas0b7BIb8k89eXP0QksYooF6zJV8Mu9vss35SQY1k,913
4
- mypy_boto3_sso_admin/client.py,sha256=Fw0RdKRLSHFhiFTE63hF7KLcJ20747kDVi51AMxnUEk,34842
5
- mypy_boto3_sso_admin/client.pyi,sha256=tJpovAg3MIhVoCM7pqmaJONQ0r1tlAdsi414X0xEtso,34787
6
- mypy_boto3_sso_admin/literals.py,sha256=CBUsBHeczN-E14E3FydhgUXEctMS_8OYkmBnF0Jk91U,10949
7
- mypy_boto3_sso_admin/literals.pyi,sha256=IuOCdH-p-okORmt5mAnYi1CV6vlQcS-oJ6nQUNnww1c,10947
8
- mypy_boto3_sso_admin/paginator.py,sha256=xgF26FfdIFWIomZcdhnUaC-T5mhF-HyW9yDu3IjnStE,15268
9
- mypy_boto3_sso_admin/paginator.pyi,sha256=9zTlavf5yKMrokrZho4lF5XSTZA5QIP9bBKocInyXKo,15255
10
- mypy_boto3_sso_admin/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- mypy_boto3_sso_admin/type_defs.py,sha256=akiHkkJ6A1kHzIVozbTesdnI87AXhn2yNcIUeqZWPv4,29608
12
- mypy_boto3_sso_admin/type_defs.pyi,sha256=TGsa4xNXLlpeMC7cfUWwETWnYUyitCWa03I-eTM6Q1M,29607
13
- mypy_boto3_sso_admin/version.py,sha256=c4ip-K8KBhDQPJihON5uDg0vVqncEmbSiQdDZP6TsBI,61
14
- mypy_boto3_sso_admin-1.28.37.dist-info/LICENSE,sha256=v0rThCyxXzUO7rKg6RM8RmmNKO6EvsBx_mdNoXUPxAU,1070
15
- mypy_boto3_sso_admin-1.28.37.dist-info/METADATA,sha256=Zd7zWM94-dlQu91jnbbIgmF9ovvSA4PHS2mR88eFMmM,14969
16
- mypy_boto3_sso_admin-1.28.37.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
17
- mypy_boto3_sso_admin-1.28.37.dist-info/top_level.txt,sha256=J3YkolHLCw1VEirBRu25pYMYGQc-RQmLv-k8X_A7IT8,21
18
- mypy_boto3_sso_admin-1.28.37.dist-info/RECORD,,