capo-eks 0.1.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.
- capo_eks/__init__.py +70 -0
- capo_eks/_async.py +25 -0
- capo_eks/_auth/_identity.py +16 -0
- capo_eks/_auth/_providers.py +882 -0
- capo_eks/_auth/_signers.py +88 -0
- capo_eks/_auth/_sigv4.py +434 -0
- capo_eks/_auth/_zapros_handler.py +80 -0
- capo_eks/_iter.py +113 -0
- capo_eks/_operations/aws_wesley_frontend/associate_access_policy.py +166 -0
- capo_eks/_operations/aws_wesley_frontend/associate_encryption_config.py +179 -0
- capo_eks/_operations/aws_wesley_frontend/associate_identity_provider_config.py +183 -0
- capo_eks/_operations/aws_wesley_frontend/create_access_entry.py +177 -0
- capo_eks/_operations/aws_wesley_frontend/create_addon.py +172 -0
- capo_eks/_operations/aws_wesley_frontend/create_capability.py +181 -0
- capo_eks/_operations/aws_wesley_frontend/create_cluster.py +188 -0
- capo_eks/_operations/aws_wesley_frontend/create_eks_anywhere_subscription.py +167 -0
- capo_eks/_operations/aws_wesley_frontend/create_fargate_profile.py +178 -0
- capo_eks/_operations/aws_wesley_frontend/create_nodegroup.py +189 -0
- capo_eks/_operations/aws_wesley_frontend/create_pod_identity_association.py +172 -0
- capo_eks/_operations/aws_wesley_frontend/delete_access_entry.py +151 -0
- capo_eks/_operations/aws_wesley_frontend/delete_addon.py +162 -0
- capo_eks/_operations/aws_wesley_frontend/delete_capability.py +168 -0
- capo_eks/_operations/aws_wesley_frontend/delete_cluster.py +169 -0
- capo_eks/_operations/aws_wesley_frontend/delete_eks_anywhere_subscription.py +157 -0
- capo_eks/_operations/aws_wesley_frontend/delete_fargate_profile.py +167 -0
- capo_eks/_operations/aws_wesley_frontend/delete_nodegroup.py +172 -0
- capo_eks/_operations/aws_wesley_frontend/delete_pod_identity_association.py +161 -0
- capo_eks/_operations/aws_wesley_frontend/deregister_cluster.py +171 -0
- capo_eks/_operations/aws_wesley_frontend/describe_access_entry.py +160 -0
- capo_eks/_operations/aws_wesley_frontend/describe_addon.py +165 -0
- capo_eks/_operations/aws_wesley_frontend/describe_addon_configuration.py +154 -0
- capo_eks/_operations/aws_wesley_frontend/describe_addon_versions.py +168 -0
- capo_eks/_operations/aws_wesley_frontend/describe_capability.py +165 -0
- capo_eks/_operations/aws_wesley_frontend/describe_cluster.py +159 -0
- capo_eks/_operations/aws_wesley_frontend/describe_cluster_versions.py +183 -0
- capo_eks/_operations/aws_wesley_frontend/describe_eks_anywhere_subscription.py +157 -0
- capo_eks/_operations/aws_wesley_frontend/describe_fargate_profile.py +163 -0
- capo_eks/_operations/aws_wesley_frontend/describe_identity_provider_config.py +170 -0
- capo_eks/_operations/aws_wesley_frontend/describe_insight.py +160 -0
- capo_eks/_operations/aws_wesley_frontend/describe_insights_refresh.py +158 -0
- capo_eks/_operations/aws_wesley_frontend/describe_nodegroup.py +169 -0
- capo_eks/_operations/aws_wesley_frontend/describe_pod_identity_association.py +161 -0
- capo_eks/_operations/aws_wesley_frontend/describe_update.py +166 -0
- capo_eks/_operations/aws_wesley_frontend/disassociate_access_policy.py +156 -0
- capo_eks/_operations/aws_wesley_frontend/disassociate_identity_provider_config.py +182 -0
- capo_eks/_operations/aws_wesley_frontend/list_access_entries.py +167 -0
- capo_eks/_operations/aws_wesley_frontend/list_access_policies.py +148 -0
- capo_eks/_operations/aws_wesley_frontend/list_addons.py +164 -0
- capo_eks/_operations/aws_wesley_frontend/list_associated_access_policies.py +160 -0
- capo_eks/_operations/aws_wesley_frontend/list_capabilities.py +153 -0
- capo_eks/_operations/aws_wesley_frontend/list_clusters.py +161 -0
- capo_eks/_operations/aws_wesley_frontend/list_eks_anywhere_subscriptions.py +172 -0
- capo_eks/_operations/aws_wesley_frontend/list_fargate_profiles.py +165 -0
- capo_eks/_operations/aws_wesley_frontend/list_identity_provider_configs.py +166 -0
- capo_eks/_operations/aws_wesley_frontend/list_insights.py +159 -0
- capo_eks/_operations/aws_wesley_frontend/list_nodegroups.py +168 -0
- capo_eks/_operations/aws_wesley_frontend/list_pod_identity_associations.py +165 -0
- capo_eks/_operations/aws_wesley_frontend/list_tags_for_resource.py +151 -0
- capo_eks/_operations/aws_wesley_frontend/list_updates.py +165 -0
- capo_eks/_operations/aws_wesley_frontend/register_cluster.py +182 -0
- capo_eks/_operations/aws_wesley_frontend/start_insights_refresh.py +161 -0
- capo_eks/_operations/aws_wesley_frontend/tag_resource.py +140 -0
- capo_eks/_operations/aws_wesley_frontend/untag_resource.py +143 -0
- capo_eks/_operations/aws_wesley_frontend/update_access_entry.py +170 -0
- capo_eks/_operations/aws_wesley_frontend/update_addon.py +171 -0
- capo_eks/_operations/aws_wesley_frontend/update_capability.py +173 -0
- capo_eks/_operations/aws_wesley_frontend/update_cluster_config.py +190 -0
- capo_eks/_operations/aws_wesley_frontend/update_cluster_version.py +185 -0
- capo_eks/_operations/aws_wesley_frontend/update_eks_anywhere_subscription.py +166 -0
- capo_eks/_operations/aws_wesley_frontend/update_nodegroup_config.py +181 -0
- capo_eks/_operations/aws_wesley_frontend/update_nodegroup_version.py +176 -0
- capo_eks/_operations/aws_wesley_frontend/update_pod_identity_association.py +165 -0
- capo_eks/_pagination.py +21 -0
- capo_eks/_protocol/__init__.py +1 -0
- capo_eks/_protocol/errors.py +93 -0
- capo_eks/_protocol/eventstream.py +238 -0
- capo_eks/_protocol/serialize.py +47 -0
- capo_eks/_protocol/xml.py +33 -0
- capo_eks/_rule_engine/__init__.py +0 -0
- capo_eks/_rule_engine/_aws_partition.py +160 -0
- capo_eks/_rule_engine/_endpoint_rule_set.py +163 -0
- capo_eks/_rule_engine/_endpoint_runtime.py +389 -0
- capo_eks/_services/_aws_config.py +160 -0
- capo_eks/_services/_pipeline.py +198 -0
- capo_eks/_services/async_eks.py +4793 -0
- capo_eks/_services/eks.py +4727 -0
- capo_eks/errors/__init__.py +52 -0
- capo_eks/errors/_base.py +94 -0
- capo_eks/errors/access_denied_exception.py +52 -0
- capo_eks/errors/bad_request_exception.py +50 -0
- capo_eks/errors/client_exception.py +74 -0
- capo_eks/errors/invalid_parameter_exception.py +82 -0
- capo_eks/errors/invalid_request_exception.py +76 -0
- capo_eks/errors/invalid_state_exception.py +57 -0
- capo_eks/errors/not_found_exception.py +50 -0
- capo_eks/errors/resource_in_use_exception.py +70 -0
- capo_eks/errors/resource_limit_exceeded_exception.py +72 -0
- capo_eks/errors/resource_not_found_exception.py +82 -0
- capo_eks/errors/resource_propagation_delay_exception.py +54 -0
- capo_eks/errors/server_exception.py +74 -0
- capo_eks/errors/service_unavailable_exception.py +52 -0
- capo_eks/errors/throttling_exception.py +55 -0
- capo_eks/errors/unsupported_availability_zone_exception.py +81 -0
- capo_eks/py.typed +0 -0
- capo_eks/types/_prelude/blob.py +12 -0
- capo_eks/types/_prelude/timestamp.py +17 -0
- capo_eks/types/access_config_response.py +53 -0
- capo_eks/types/access_entry.py +103 -0
- capo_eks/types/access_policies_list.py +29 -0
- capo_eks/types/access_policy.py +34 -0
- capo_eks/types/access_scope.py +47 -0
- capo_eks/types/access_scope_type.py +17 -0
- capo_eks/types/additional_info_map.py +27 -0
- capo_eks/types/addon.py +186 -0
- capo_eks/types/addon_compatibility_detail.py +43 -0
- capo_eks/types/addon_compatibility_details.py +31 -0
- capo_eks/types/addon_health.py +32 -0
- capo_eks/types/addon_info.py +90 -0
- capo_eks/types/addon_issue.py +54 -0
- capo_eks/types/addon_issue_code.py +25 -0
- capo_eks/types/addon_issue_list.py +29 -0
- capo_eks/types/addon_namespace_config_request.py +28 -0
- capo_eks/types/addon_namespace_config_response.py +28 -0
- capo_eks/types/addon_pod_identity_associations.py +40 -0
- capo_eks/types/addon_pod_identity_associations_list.py +33 -0
- capo_eks/types/addon_pod_identity_configuration.py +45 -0
- capo_eks/types/addon_pod_identity_configuration_list.py +33 -0
- capo_eks/types/addon_status.py +23 -0
- capo_eks/types/addon_version_info.py +87 -0
- capo_eks/types/addon_version_info_list.py +31 -0
- capo_eks/types/addons.py +29 -0
- capo_eks/types/ami_types.py +38 -0
- capo_eks/types/argo_cd_aws_idc_config_request.py +39 -0
- capo_eks/types/argo_cd_aws_idc_config_response.py +40 -0
- capo_eks/types/argo_cd_config_request.py +88 -0
- capo_eks/types/argo_cd_config_response.py +95 -0
- capo_eks/types/argo_cd_network_access_config_request.py +32 -0
- capo_eks/types/argo_cd_network_access_config_response.py +32 -0
- capo_eks/types/argo_cd_role.py +18 -0
- capo_eks/types/argo_cd_role_mapping.py +51 -0
- capo_eks/types/argo_cd_role_mapping_list.py +31 -0
- capo_eks/types/associate_access_policy_request.py +51 -0
- capo_eks/types/associate_access_policy_response.py +55 -0
- capo_eks/types/associate_encryption_config_request.py +52 -0
- capo_eks/types/associate_encryption_config_response.py +31 -0
- capo_eks/types/associate_identity_provider_config_request.py +63 -0
- capo_eks/types/associate_identity_provider_config_response.py +42 -0
- capo_eks/types/associated_access_policies_list.py +31 -0
- capo_eks/types/associated_access_policy.py +72 -0
- capo_eks/types/authentication_mode.py +18 -0
- capo_eks/types/auto_scaling_group.py +28 -0
- capo_eks/types/auto_scaling_group_list.py +31 -0
- capo_eks/types/block_storage.py +28 -0
- capo_eks/types/boolean.py +5 -0
- capo_eks/types/boxed_boolean.py +5 -0
- capo_eks/types/boxed_integer.py +5 -0
- capo_eks/types/capability.py +166 -0
- capo_eks/types/capability_configuration_request.py +36 -0
- capo_eks/types/capability_configuration_response.py +36 -0
- capo_eks/types/capability_delete_propagation_policy.py +14 -0
- capo_eks/types/capability_health.py +36 -0
- capo_eks/types/capability_issue.py +41 -0
- capo_eks/types/capability_issue_code.py +17 -0
- capo_eks/types/capability_issue_list.py +29 -0
- capo_eks/types/capability_status.py +22 -0
- capo_eks/types/capability_summary.py +89 -0
- capo_eks/types/capability_summary_list.py +31 -0
- capo_eks/types/capability_type.py +18 -0
- capo_eks/types/capacity.py +5 -0
- capo_eks/types/capacity_types.py +18 -0
- capo_eks/types/category.py +17 -0
- capo_eks/types/category_list.py +29 -0
- capo_eks/types/certificate.py +28 -0
- capo_eks/types/client_stat.py +51 -0
- capo_eks/types/client_stats.py +29 -0
- capo_eks/types/cluster.py +386 -0
- capo_eks/types/cluster_health.py +36 -0
- capo_eks/types/cluster_issue.py +54 -0
- capo_eks/types/cluster_issue_code.py +34 -0
- capo_eks/types/cluster_issue_list.py +29 -0
- capo_eks/types/cluster_name.py +5 -0
- capo_eks/types/cluster_status.py +21 -0
- capo_eks/types/cluster_version_information.py +127 -0
- capo_eks/types/cluster_version_list.py +31 -0
- capo_eks/types/cluster_version_status.py +18 -0
- capo_eks/types/compatibilities.py +29 -0
- capo_eks/types/compatibility.py +51 -0
- capo_eks/types/compute_config_request.py +50 -0
- capo_eks/types/compute_config_response.py +50 -0
- capo_eks/types/config_status.py +18 -0
- capo_eks/types/connector_config_provider.py +24 -0
- capo_eks/types/connector_config_request.py +47 -0
- capo_eks/types/connector_config_response.py +61 -0
- capo_eks/types/control_plane_placement_request.py +28 -0
- capo_eks/types/control_plane_placement_response.py +28 -0
- capo_eks/types/control_plane_scaling_config.py +38 -0
- capo_eks/types/create_access_config_request.py +53 -0
- capo_eks/types/create_access_entry_request.py +77 -0
- capo_eks/types/create_access_entry_response.py +35 -0
- capo_eks/types/create_addon_request.py +127 -0
- capo_eks/types/create_addon_response.py +31 -0
- capo_eks/types/create_capability_request.py +111 -0
- capo_eks/types/create_capability_response.py +36 -0
- capo_eks/types/create_cluster_request.py +298 -0
- capo_eks/types/create_cluster_response.py +32 -0
- capo_eks/types/create_eks_anywhere_subscription_request.py +102 -0
- capo_eks/types/create_eks_anywhere_subscription_response.py +38 -0
- capo_eks/types/create_fargate_profile_request.py +89 -0
- capo_eks/types/create_fargate_profile_response.py +36 -0
- capo_eks/types/create_nodegroup_request.py +254 -0
- capo_eks/types/create_nodegroup_response.py +32 -0
- capo_eks/types/create_pod_identity_association_request.py +89 -0
- capo_eks/types/create_pod_identity_association_response.py +38 -0
- capo_eks/types/delete_access_entry_request.py +26 -0
- capo_eks/types/delete_access_entry_response.py +18 -0
- capo_eks/types/delete_addon_request.py +30 -0
- capo_eks/types/delete_addon_response.py +31 -0
- capo_eks/types/delete_capability_request.py +26 -0
- capo_eks/types/delete_capability_response.py +36 -0
- capo_eks/types/delete_cluster_request.py +24 -0
- capo_eks/types/delete_cluster_response.py +32 -0
- capo_eks/types/delete_eks_anywhere_subscription_request.py +24 -0
- capo_eks/types/delete_eks_anywhere_subscription_response.py +38 -0
- capo_eks/types/delete_fargate_profile_request.py +26 -0
- capo_eks/types/delete_fargate_profile_response.py +36 -0
- capo_eks/types/delete_nodegroup_request.py +26 -0
- capo_eks/types/delete_nodegroup_response.py +32 -0
- capo_eks/types/delete_pod_identity_association_request.py +26 -0
- capo_eks/types/delete_pod_identity_association_response.py +38 -0
- capo_eks/types/deprecation_detail.py +65 -0
- capo_eks/types/deprecation_details.py +31 -0
- capo_eks/types/deregister_cluster_request.py +24 -0
- capo_eks/types/deregister_cluster_response.py +31 -0
- capo_eks/types/describe_access_entry_request.py +26 -0
- capo_eks/types/describe_access_entry_response.py +36 -0
- capo_eks/types/describe_addon_configuration_request.py +26 -0
- capo_eks/types/describe_addon_configuration_response.py +61 -0
- capo_eks/types/describe_addon_request.py +27 -0
- capo_eks/types/describe_addon_response.py +31 -0
- capo_eks/types/describe_addon_versions_request.py +40 -0
- capo_eks/types/describe_addon_versions_request_max_results.py +5 -0
- capo_eks/types/describe_addon_versions_response.py +39 -0
- capo_eks/types/describe_capability_request.py +26 -0
- capo_eks/types/describe_capability_response.py +36 -0
- capo_eks/types/describe_cluster_request.py +24 -0
- capo_eks/types/describe_cluster_response.py +32 -0
- capo_eks/types/describe_cluster_version_max_results.py +5 -0
- capo_eks/types/describe_cluster_versions_request.py +45 -0
- capo_eks/types/describe_cluster_versions_response.py +45 -0
- capo_eks/types/describe_eks_anywhere_subscription_request.py +24 -0
- capo_eks/types/describe_eks_anywhere_subscription_response.py +38 -0
- capo_eks/types/describe_fargate_profile_request.py +26 -0
- capo_eks/types/describe_fargate_profile_response.py +36 -0
- capo_eks/types/describe_identity_provider_config_request.py +50 -0
- capo_eks/types/describe_identity_provider_config_response.py +42 -0
- capo_eks/types/describe_insight_request.py +26 -0
- capo_eks/types/describe_insight_response.py +32 -0
- capo_eks/types/describe_insights_refresh_request.py +24 -0
- capo_eks/types/describe_insights_refresh_response.py +64 -0
- capo_eks/types/describe_nodegroup_request.py +26 -0
- capo_eks/types/describe_nodegroup_response.py +32 -0
- capo_eks/types/describe_pod_identity_association_request.py +26 -0
- capo_eks/types/describe_pod_identity_association_response.py +38 -0
- capo_eks/types/describe_update_request.py +32 -0
- capo_eks/types/describe_update_response.py +32 -0
- capo_eks/types/disassociate_access_policy_request.py +28 -0
- capo_eks/types/disassociate_access_policy_response.py +18 -0
- capo_eks/types/disassociate_identity_provider_config_request.py +56 -0
- capo_eks/types/disassociate_identity_provider_config_response.py +31 -0
- capo_eks/types/eks_anywhere_subscription.py +170 -0
- capo_eks/types/eks_anywhere_subscription_license_type.py +14 -0
- capo_eks/types/eks_anywhere_subscription_list.py +31 -0
- capo_eks/types/eks_anywhere_subscription_name.py +5 -0
- capo_eks/types/eks_anywhere_subscription_status.py +21 -0
- capo_eks/types/eks_anywhere_subscription_status_values.py +33 -0
- capo_eks/types/eks_anywhere_subscription_term.py +48 -0
- capo_eks/types/eks_anywhere_subscription_term_unit.py +14 -0
- capo_eks/types/elastic_load_balancing.py +28 -0
- capo_eks/types/encryption_config.py +45 -0
- capo_eks/types/encryption_config_list.py +31 -0
- capo_eks/types/error_code.py +32 -0
- capo_eks/types/error_detail.py +56 -0
- capo_eks/types/error_details.py +29 -0
- capo_eks/types/fargate_profile.py +126 -0
- capo_eks/types/fargate_profile_health.py +38 -0
- capo_eks/types/fargate_profile_issue.py +60 -0
- capo_eks/types/fargate_profile_issue_code.py +19 -0
- capo_eks/types/fargate_profile_issue_list.py +31 -0
- capo_eks/types/fargate_profile_label.py +27 -0
- capo_eks/types/fargate_profile_selector.py +43 -0
- capo_eks/types/fargate_profile_selectors.py +31 -0
- capo_eks/types/fargate_profile_status.py +20 -0
- capo_eks/types/fargate_profiles_request_max_results.py +5 -0
- capo_eks/types/identity.py +32 -0
- capo_eks/types/identity_provider_config.py +38 -0
- capo_eks/types/identity_provider_config_response.py +38 -0
- capo_eks/types/identity_provider_configs.py +31 -0
- capo_eks/types/include_clusters_list.py +17 -0
- capo_eks/types/insight.py +160 -0
- capo_eks/types/insight_category_specific_summary.py +61 -0
- capo_eks/types/insight_resource_detail.py +49 -0
- capo_eks/types/insight_resource_details.py +31 -0
- capo_eks/types/insight_status.py +43 -0
- capo_eks/types/insight_status_value.py +19 -0
- capo_eks/types/insight_status_value_list.py +31 -0
- capo_eks/types/insight_summaries.py +29 -0
- capo_eks/types/insight_summary.py +101 -0
- capo_eks/types/insights_filter.py +68 -0
- capo_eks/types/insights_refresh_status.py +18 -0
- capo_eks/types/integer.py +5 -0
- capo_eks/types/ip_family.py +17 -0
- capo_eks/types/issue.py +54 -0
- capo_eks/types/issue_list.py +29 -0
- capo_eks/types/kubernetes_network_config_request.py +60 -0
- capo_eks/types/kubernetes_network_config_response.py +66 -0
- capo_eks/types/label_key.py +5 -0
- capo_eks/types/label_value.py +5 -0
- capo_eks/types/labels_key_list.py +17 -0
- capo_eks/types/labels_map.py +28 -0
- capo_eks/types/launch_template_specification.py +40 -0
- capo_eks/types/license.py +34 -0
- capo_eks/types/license_list.py +29 -0
- capo_eks/types/list_access_entries_request.py +33 -0
- capo_eks/types/list_access_entries_request_max_results.py +5 -0
- capo_eks/types/list_access_entries_response.py +43 -0
- capo_eks/types/list_access_policies_request.py +29 -0
- capo_eks/types/list_access_policies_request_max_results.py +5 -0
- capo_eks/types/list_access_policies_response.py +45 -0
- capo_eks/types/list_addons_request.py +32 -0
- capo_eks/types/list_addons_request_max_results.py +5 -0
- capo_eks/types/list_addons_response.py +39 -0
- capo_eks/types/list_associated_access_policies_request.py +33 -0
- capo_eks/types/list_associated_access_policies_request_max_results.py +5 -0
- capo_eks/types/list_associated_access_policies_response.py +61 -0
- capo_eks/types/list_capabilities_request.py +31 -0
- capo_eks/types/list_capabilities_request_max_results.py +5 -0
- capo_eks/types/list_capabilities_response.py +45 -0
- capo_eks/types/list_clusters_request.py +32 -0
- capo_eks/types/list_clusters_request_max_results.py +5 -0
- capo_eks/types/list_clusters_response.py +39 -0
- capo_eks/types/list_eks_anywhere_subscriptions_request.py +34 -0
- capo_eks/types/list_eks_anywhere_subscriptions_request_max_results.py +5 -0
- capo_eks/types/list_eks_anywhere_subscriptions_response.py +49 -0
- capo_eks/types/list_fargate_profiles_request.py +31 -0
- capo_eks/types/list_fargate_profiles_response.py +43 -0
- capo_eks/types/list_identity_provider_configs_request.py +31 -0
- capo_eks/types/list_identity_provider_configs_request_max_results.py +5 -0
- capo_eks/types/list_identity_provider_configs_response.py +49 -0
- capo_eks/types/list_insights_max_results.py +5 -0
- capo_eks/types/list_insights_request.py +50 -0
- capo_eks/types/list_insights_response.py +43 -0
- capo_eks/types/list_nodegroups_request.py +31 -0
- capo_eks/types/list_nodegroups_request_max_results.py +5 -0
- capo_eks/types/list_nodegroups_response.py +43 -0
- capo_eks/types/list_pod_identity_associations_max_results.py +5 -0
- capo_eks/types/list_pod_identity_associations_request.py +35 -0
- capo_eks/types/list_pod_identity_associations_response.py +49 -0
- capo_eks/types/list_tags_for_resource_request.py +24 -0
- capo_eks/types/list_tags_for_resource_response.py +32 -0
- capo_eks/types/list_updates_request.py +37 -0
- capo_eks/types/list_updates_request_max_results.py +5 -0
- capo_eks/types/list_updates_response.py +43 -0
- capo_eks/types/log_setup.py +39 -0
- capo_eks/types/log_setups.py +29 -0
- capo_eks/types/log_type.py +20 -0
- capo_eks/types/log_types.py +29 -0
- capo_eks/types/logging.py +36 -0
- capo_eks/types/marketplace_information.py +34 -0
- capo_eks/types/namespace.py +5 -0
- capo_eks/types/node_repair_config.py +97 -0
- capo_eks/types/node_repair_config_overrides.py +58 -0
- capo_eks/types/node_repair_config_overrides_list.py +31 -0
- capo_eks/types/nodegroup.py +315 -0
- capo_eks/types/nodegroup_health.py +32 -0
- capo_eks/types/nodegroup_issue_code.py +51 -0
- capo_eks/types/nodegroup_resources.py +49 -0
- capo_eks/types/nodegroup_scaling_config.py +41 -0
- capo_eks/types/nodegroup_status.py +22 -0
- capo_eks/types/nodegroup_update_config.py +58 -0
- capo_eks/types/nodegroup_update_strategies.py +17 -0
- capo_eks/types/non_zero_integer.py +5 -0
- capo_eks/types/oidc.py +28 -0
- capo_eks/types/oidc_identity_provider_config.py +113 -0
- capo_eks/types/oidc_identity_provider_config_request.py +90 -0
- capo_eks/types/outpost_config_request.py +70 -0
- capo_eks/types/outpost_config_response.py +70 -0
- capo_eks/types/percent_capacity.py +5 -0
- capo_eks/types/pod_identity_association.py +125 -0
- capo_eks/types/pod_identity_association_summaries.py +33 -0
- capo_eks/types/pod_identity_association_summary.py +58 -0
- capo_eks/types/provider.py +28 -0
- capo_eks/types/provisioned_control_plane_tier.py +20 -0
- capo_eks/types/register_cluster_request.py +67 -0
- capo_eks/types/register_cluster_response.py +31 -0
- capo_eks/types/remote_access_config.py +43 -0
- capo_eks/types/remote_network_config_request.py +63 -0
- capo_eks/types/remote_network_config_response.py +63 -0
- capo_eks/types/remote_node_network.py +32 -0
- capo_eks/types/remote_node_network_list.py +31 -0
- capo_eks/types/remote_pod_network.py +32 -0
- capo_eks/types/remote_pod_network_list.py +31 -0
- capo_eks/types/repair_action.py +18 -0
- capo_eks/types/required_claims_key.py +5 -0
- capo_eks/types/required_claims_map.py +29 -0
- capo_eks/types/required_claims_value.py +5 -0
- capo_eks/types/resolve_conflicts.py +18 -0
- capo_eks/types/role_arn.py +5 -0
- capo_eks/types/sso_identity.py +43 -0
- capo_eks/types/sso_identity_list.py +29 -0
- capo_eks/types/sso_identity_type.py +17 -0
- capo_eks/types/start_insights_refresh_request.py +24 -0
- capo_eks/types/start_insights_refresh_response.py +43 -0
- capo_eks/types/storage_config_request.py +36 -0
- capo_eks/types/storage_config_response.py +36 -0
- capo_eks/types/string.py +5 -0
- capo_eks/types/string_list.py +17 -0
- capo_eks/types/support_type.py +17 -0
- capo_eks/types/tag_key.py +6 -0
- capo_eks/types/tag_key_list.py +17 -0
- capo_eks/types/tag_map.py +28 -0
- capo_eks/types/tag_resource_request.py +38 -0
- capo_eks/types/tag_resource_response.py +18 -0
- capo_eks/types/tag_value.py +6 -0
- capo_eks/types/taint.py +46 -0
- capo_eks/types/taint_effect.py +18 -0
- capo_eks/types/taint_key.py +5 -0
- capo_eks/types/taint_value.py +5 -0
- capo_eks/types/taints_list.py +29 -0
- capo_eks/types/timestamp.py +20 -0
- capo_eks/types/untag_resource_request.py +27 -0
- capo_eks/types/untag_resource_response.py +18 -0
- capo_eks/types/update.py +83 -0
- capo_eks/types/update_access_config_request.py +40 -0
- capo_eks/types/update_access_entry_request.py +53 -0
- capo_eks/types/update_access_entry_response.py +36 -0
- capo_eks/types/update_addon_request.py +88 -0
- capo_eks/types/update_addon_response.py +31 -0
- capo_eks/types/update_argo_cd_config.py +61 -0
- capo_eks/types/update_capability_configuration.py +36 -0
- capo_eks/types/update_capability_request.py +80 -0
- capo_eks/types/update_capability_response.py +31 -0
- capo_eks/types/update_cluster_config_request.py +220 -0
- capo_eks/types/update_cluster_config_response.py +31 -0
- capo_eks/types/update_cluster_version_request.py +47 -0
- capo_eks/types/update_cluster_version_response.py +32 -0
- capo_eks/types/update_eks_anywhere_subscription_request.py +38 -0
- capo_eks/types/update_eks_anywhere_subscription_response.py +38 -0
- capo_eks/types/update_labels_payload.py +51 -0
- capo_eks/types/update_nodegroup_config_request.py +130 -0
- capo_eks/types/update_nodegroup_config_response.py +31 -0
- capo_eks/types/update_nodegroup_version_request.py +73 -0
- capo_eks/types/update_nodegroup_version_response.py +31 -0
- capo_eks/types/update_param.py +39 -0
- capo_eks/types/update_param_type.py +61 -0
- capo_eks/types/update_params.py +29 -0
- capo_eks/types/update_pod_identity_association_request.py +57 -0
- capo_eks/types/update_pod_identity_association_response.py +38 -0
- capo_eks/types/update_role_mappings.py +62 -0
- capo_eks/types/update_status.py +19 -0
- capo_eks/types/update_taints_payload.py +50 -0
- capo_eks/types/update_type.py +32 -0
- capo_eks/types/upgrade_policy_request.py +36 -0
- capo_eks/types/upgrade_policy_response.py +36 -0
- capo_eks/types/version_status.py +18 -0
- capo_eks/types/vpc_config_request.py +77 -0
- capo_eks/types/vpc_config_response.py +92 -0
- capo_eks/types/warm_pool_config.py +65 -0
- capo_eks/types/warm_pool_state.py +18 -0
- capo_eks/types/zero_capacity.py +5 -0
- capo_eks/types/zonal_shift_config_request.py +28 -0
- capo_eks/types/zonal_shift_config_response.py +28 -0
- capo_eks-0.1.0.dist-info/METADATA +102 -0
- capo_eks-0.1.0.dist-info/RECORD +476 -0
- capo_eks-0.1.0.dist-info/WHEEL +5 -0
- capo_eks-0.1.0.dist-info/licenses/LICENSE +21 -0
- capo_eks-0.1.0.dist-info/top_level.txt +1 -0
capo_eks/__init__.py
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
from . import _iter as _iter
|
|
4
|
+
from . import _protocol as _protocol
|
|
5
|
+
from ._auth._identity import Credentials as Credentials
|
|
6
|
+
from ._auth._identity import Identity as Identity
|
|
7
|
+
from ._auth._providers import (
|
|
8
|
+
AssumeRoleCredentialsProvider as AssumeRoleCredentialsProvider,
|
|
9
|
+
)
|
|
10
|
+
from ._auth._providers import (
|
|
11
|
+
AssumeRoleError as AssumeRoleError,
|
|
12
|
+
)
|
|
13
|
+
from ._auth._providers import (
|
|
14
|
+
CachedProvider as CachedProvider,
|
|
15
|
+
)
|
|
16
|
+
from ._auth._providers import (
|
|
17
|
+
ChainedProvider as ChainedProvider,
|
|
18
|
+
)
|
|
19
|
+
from ._auth._providers import (
|
|
20
|
+
CredentialsProvider as CredentialsProvider,
|
|
21
|
+
)
|
|
22
|
+
from ._auth._providers import (
|
|
23
|
+
EnvCredentialsProvider as EnvCredentialsProvider,
|
|
24
|
+
)
|
|
25
|
+
from ._auth._providers import (
|
|
26
|
+
IdentityNotFound as IdentityNotFound,
|
|
27
|
+
)
|
|
28
|
+
from ._auth._providers import (
|
|
29
|
+
IdentityProvider as IdentityProvider,
|
|
30
|
+
)
|
|
31
|
+
from ._auth._providers import (
|
|
32
|
+
MissingDependencyError as MissingDependencyError,
|
|
33
|
+
)
|
|
34
|
+
from ._auth._providers import (
|
|
35
|
+
ProfileCredentialsProvider as ProfileCredentialsProvider,
|
|
36
|
+
)
|
|
37
|
+
from ._auth._providers import (
|
|
38
|
+
SsoCredentialsProvider as SsoCredentialsProvider,
|
|
39
|
+
)
|
|
40
|
+
from ._auth._providers import (
|
|
41
|
+
SSOError as SSOError,
|
|
42
|
+
)
|
|
43
|
+
from ._auth._providers import (
|
|
44
|
+
StaticAwsCredentialsProvider as StaticAwsCredentialsProvider,
|
|
45
|
+
)
|
|
46
|
+
from ._auth._providers import (
|
|
47
|
+
WebIdentityCredentialsProvider as WebIdentityCredentialsProvider,
|
|
48
|
+
)
|
|
49
|
+
from ._auth._signers import Signer as Signer
|
|
50
|
+
from ._auth._signers import SigV4Signer as SigV4Signer
|
|
51
|
+
from ._services._pipeline import (
|
|
52
|
+
AsyncOperationOptions as AsyncOperationOptions,
|
|
53
|
+
)
|
|
54
|
+
from ._services._pipeline import (
|
|
55
|
+
AsyncOperationRequest as AsyncOperationRequest,
|
|
56
|
+
)
|
|
57
|
+
from ._services._pipeline import (
|
|
58
|
+
AsyncOperationResponse as AsyncOperationResponse,
|
|
59
|
+
)
|
|
60
|
+
from ._services._pipeline import (
|
|
61
|
+
OperationOptions as OperationOptions,
|
|
62
|
+
)
|
|
63
|
+
from ._services._pipeline import (
|
|
64
|
+
OperationRequest as OperationRequest,
|
|
65
|
+
)
|
|
66
|
+
from ._services._pipeline import (
|
|
67
|
+
OperationResponse as OperationResponse,
|
|
68
|
+
)
|
|
69
|
+
from ._services.async_eks import AsyncEKSClient as AsyncEKSClient
|
|
70
|
+
from ._services.eks import EKSClient as EKSClient
|
capo_eks/_async.py
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
import asyncio
|
|
4
|
+
from typing import TYPE_CHECKING
|
|
5
|
+
|
|
6
|
+
if TYPE_CHECKING:
|
|
7
|
+
import trio
|
|
8
|
+
else:
|
|
9
|
+
try:
|
|
10
|
+
import trio
|
|
11
|
+
except ImportError:
|
|
12
|
+
trio = None
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
def in_trio_run() -> bool:
|
|
16
|
+
if trio is None:
|
|
17
|
+
return False
|
|
18
|
+
return trio.lowlevel.in_trio_run()
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
async def anysleep(delay: float) -> None:
|
|
22
|
+
if in_trio_run():
|
|
23
|
+
await trio.sleep(delay)
|
|
24
|
+
else:
|
|
25
|
+
await asyncio.sleep(delay)
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
from datetime import datetime
|
|
4
|
+
from typing import TypedDict
|
|
5
|
+
|
|
6
|
+
from typing_extensions import NotRequired
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class Identity(TypedDict):
|
|
10
|
+
expiration: NotRequired[datetime | None]
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class Credentials(Identity):
|
|
14
|
+
access_key: str
|
|
15
|
+
secret_key: str
|
|
16
|
+
session_token: NotRequired[str | None]
|