capo-appstream 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_appstream/__init__.py +70 -0
- capo_appstream/_async.py +25 -0
- capo_appstream/_auth/_identity.py +16 -0
- capo_appstream/_auth/_providers.py +886 -0
- capo_appstream/_auth/_signers.py +88 -0
- capo_appstream/_auth/_sigv4.py +434 -0
- capo_appstream/_auth/_zapros_handler.py +80 -0
- capo_appstream/_iter.py +113 -0
- capo_appstream/_operations/photon_admin_proxy_service/associate_app_block_builder_app_block.py +167 -0
- capo_appstream/_operations/photon_admin_proxy_service/associate_application_fleet.py +167 -0
- capo_appstream/_operations/photon_admin_proxy_service/associate_application_to_entitlement.py +159 -0
- capo_appstream/_operations/photon_admin_proxy_service/associate_fleet.py +163 -0
- capo_appstream/_operations/photon_admin_proxy_service/associate_software_to_image_builder.py +163 -0
- capo_appstream/_operations/photon_admin_proxy_service/batch_associate_user_stack.py +157 -0
- capo_appstream/_operations/photon_admin_proxy_service/batch_disassociate_user_stack.py +153 -0
- capo_appstream/_operations/photon_admin_proxy_service/copy_image.py +167 -0
- capo_appstream/_operations/photon_admin_proxy_service/create_app_block.py +166 -0
- capo_appstream/_operations/photon_admin_proxy_service/create_app_block_builder.py +196 -0
- capo_appstream/_operations/photon_admin_proxy_service/create_app_block_builder_streaming_url.py +154 -0
- capo_appstream/_operations/photon_admin_proxy_service/create_application.py +173 -0
- capo_appstream/_operations/photon_admin_proxy_service/create_directory_config.py +175 -0
- capo_appstream/_operations/photon_admin_proxy_service/create_entitlement.py +166 -0
- capo_appstream/_operations/photon_admin_proxy_service/create_export_image_task.py +178 -0
- capo_appstream/_operations/photon_admin_proxy_service/create_fleet.py +203 -0
- capo_appstream/_operations/photon_admin_proxy_service/create_image_builder.py +207 -0
- capo_appstream/_operations/photon_admin_proxy_service/create_image_builder_streaming_url.py +152 -0
- capo_appstream/_operations/photon_admin_proxy_service/create_imported_image.py +195 -0
- capo_appstream/_operations/photon_admin_proxy_service/create_stack.py +187 -0
- capo_appstream/_operations/photon_admin_proxy_service/create_streaming_url.py +166 -0
- capo_appstream/_operations/photon_admin_proxy_service/create_theme_for_stack.py +175 -0
- capo_appstream/_operations/photon_admin_proxy_service/create_updated_image.py +182 -0
- capo_appstream/_operations/photon_admin_proxy_service/create_usage_report_subscription.py +157 -0
- capo_appstream/_operations/photon_admin_proxy_service/create_user.py +156 -0
- capo_appstream/_operations/photon_admin_proxy_service/delete_app_block.py +148 -0
- capo_appstream/_operations/photon_admin_proxy_service/delete_app_block_builder.py +157 -0
- capo_appstream/_operations/photon_admin_proxy_service/delete_application.py +155 -0
- capo_appstream/_operations/photon_admin_proxy_service/delete_directory_config.py +147 -0
- capo_appstream/_operations/photon_admin_proxy_service/delete_entitlement.py +155 -0
- capo_appstream/_operations/photon_admin_proxy_service/delete_fleet.py +144 -0
- capo_appstream/_operations/photon_admin_proxy_service/delete_image.py +158 -0
- capo_appstream/_operations/photon_admin_proxy_service/delete_image_builder.py +161 -0
- capo_appstream/_operations/photon_admin_proxy_service/delete_image_permissions.py +147 -0
- capo_appstream/_operations/photon_admin_proxy_service/delete_stack.py +149 -0
- capo_appstream/_operations/photon_admin_proxy_service/delete_theme_for_stack.py +152 -0
- capo_appstream/_operations/photon_admin_proxy_service/delete_usage_report_subscription.py +147 -0
- capo_appstream/_operations/photon_admin_proxy_service/delete_user.py +135 -0
- capo_appstream/_operations/photon_admin_proxy_service/describe_app_block_builder_app_block_associations.py +154 -0
- capo_appstream/_operations/photon_admin_proxy_service/describe_app_block_builders.py +153 -0
- capo_appstream/_operations/photon_admin_proxy_service/describe_app_blocks.py +155 -0
- capo_appstream/_operations/photon_admin_proxy_service/describe_app_license_usage.py +161 -0
- capo_appstream/_operations/photon_admin_proxy_service/describe_application_fleet_associations.py +154 -0
- capo_appstream/_operations/photon_admin_proxy_service/describe_applications.py +153 -0
- capo_appstream/_operations/photon_admin_proxy_service/describe_directory_configs.py +148 -0
- capo_appstream/_operations/photon_admin_proxy_service/describe_entitlements.py +157 -0
- capo_appstream/_operations/photon_admin_proxy_service/describe_fleets.py +148 -0
- capo_appstream/_operations/photon_admin_proxy_service/describe_image_builders.py +148 -0
- capo_appstream/_operations/photon_admin_proxy_service/describe_image_permissions.py +148 -0
- capo_appstream/_operations/photon_admin_proxy_service/describe_images.py +155 -0
- capo_appstream/_operations/photon_admin_proxy_service/describe_sessions.py +150 -0
- capo_appstream/_operations/photon_admin_proxy_service/describe_software_associations.py +152 -0
- capo_appstream/_operations/photon_admin_proxy_service/describe_stacks.py +148 -0
- capo_appstream/_operations/photon_admin_proxy_service/describe_theme_for_stack.py +152 -0
- capo_appstream/_operations/photon_admin_proxy_service/describe_usage_report_subscriptions.py +152 -0
- capo_appstream/_operations/photon_admin_proxy_service/describe_user_stack_associations.py +153 -0
- capo_appstream/_operations/photon_admin_proxy_service/describe_users.py +158 -0
- capo_appstream/_operations/photon_admin_proxy_service/disable_user.py +135 -0
- capo_appstream/_operations/photon_admin_proxy_service/disassociate_app_block_builder_app_block.py +159 -0
- capo_appstream/_operations/photon_admin_proxy_service/disassociate_application_fleet.py +152 -0
- capo_appstream/_operations/photon_admin_proxy_service/disassociate_application_from_entitlement.py +154 -0
- capo_appstream/_operations/photon_admin_proxy_service/disassociate_fleet.py +155 -0
- capo_appstream/_operations/photon_admin_proxy_service/disassociate_software_from_image_builder.py +160 -0
- capo_appstream/_operations/photon_admin_proxy_service/drain_session_instance.py +152 -0
- capo_appstream/_operations/photon_admin_proxy_service/enable_user.py +140 -0
- capo_appstream/_operations/photon_admin_proxy_service/expire_session.py +133 -0
- capo_appstream/_operations/photon_admin_proxy_service/get_export_image_task.py +156 -0
- capo_appstream/_operations/photon_admin_proxy_service/list_associated_fleets.py +142 -0
- capo_appstream/_operations/photon_admin_proxy_service/list_associated_stacks.py +142 -0
- capo_appstream/_operations/photon_admin_proxy_service/list_entitled_applications.py +157 -0
- capo_appstream/_operations/photon_admin_proxy_service/list_export_image_tasks.py +148 -0
- capo_appstream/_operations/photon_admin_proxy_service/list_tags_for_resource.py +147 -0
- capo_appstream/_operations/photon_admin_proxy_service/start_app_block_builder.py +177 -0
- capo_appstream/_operations/photon_admin_proxy_service/start_fleet.py +169 -0
- capo_appstream/_operations/photon_admin_proxy_service/start_image_builder.py +169 -0
- capo_appstream/_operations/photon_admin_proxy_service/start_software_deployment_to_image_builder.py +154 -0
- capo_appstream/_operations/photon_admin_proxy_service/stop_app_block_builder.py +157 -0
- capo_appstream/_operations/photon_admin_proxy_service/stop_fleet.py +139 -0
- capo_appstream/_operations/photon_admin_proxy_service/stop_image_builder.py +159 -0
- capo_appstream/_operations/photon_admin_proxy_service/tag_resource.py +149 -0
- capo_appstream/_operations/photon_admin_proxy_service/untag_resource.py +139 -0
- capo_appstream/_operations/photon_admin_proxy_service/update_app_block_builder.py +196 -0
- capo_appstream/_operations/photon_admin_proxy_service/update_application.py +161 -0
- capo_appstream/_operations/photon_admin_proxy_service/update_directory_config.py +175 -0
- capo_appstream/_operations/photon_admin_proxy_service/update_entitlement.py +166 -0
- capo_appstream/_operations/photon_admin_proxy_service/update_fleet.py +202 -0
- capo_appstream/_operations/photon_admin_proxy_service/update_image_permissions.py +153 -0
- capo_appstream/_operations/photon_admin_proxy_service/update_stack.py +192 -0
- capo_appstream/_operations/photon_admin_proxy_service/update_theme_for_stack.py +177 -0
- capo_appstream/_pagination.py +21 -0
- capo_appstream/_protocol/__init__.py +1 -0
- capo_appstream/_protocol/errors.py +93 -0
- capo_appstream/_protocol/eventstream.py +238 -0
- capo_appstream/_protocol/serialize.py +47 -0
- capo_appstream/_protocol/xml.py +33 -0
- capo_appstream/_rule_engine/__init__.py +0 -0
- capo_appstream/_rule_engine/_aws_partition.py +160 -0
- capo_appstream/_rule_engine/_endpoint_rule_set.py +161 -0
- capo_appstream/_rule_engine/_endpoint_runtime.py +389 -0
- capo_appstream/_services/_aws_config.py +160 -0
- capo_appstream/_services/_pipeline.py +198 -0
- capo_appstream/_services/app_stream.py +5876 -0
- capo_appstream/_services/async_app_stream.py +5965 -0
- capo_appstream/errors/__init__.py +62 -0
- capo_appstream/errors/_base.py +94 -0
- capo_appstream/errors/concurrent_modification_exception.py +53 -0
- capo_appstream/errors/dry_run_operation_exception.py +51 -0
- capo_appstream/errors/entitlement_already_exists_exception.py +53 -0
- capo_appstream/errors/entitlement_not_found_exception.py +51 -0
- capo_appstream/errors/incompatible_image_exception.py +51 -0
- capo_appstream/errors/invalid_account_status_exception.py +53 -0
- capo_appstream/errors/invalid_parameter_combination_exception.py +53 -0
- capo_appstream/errors/invalid_role_exception.py +51 -0
- capo_appstream/errors/limit_exceeded_exception.py +51 -0
- capo_appstream/errors/operation_not_permitted_exception.py +53 -0
- capo_appstream/errors/request_limit_exceeded_exception.py +53 -0
- capo_appstream/errors/resource_already_exists_exception.py +53 -0
- capo_appstream/errors/resource_in_use_exception.py +51 -0
- capo_appstream/errors/resource_not_available_exception.py +53 -0
- capo_appstream/errors/resource_not_found_exception.py +51 -0
- capo_appstream/py.typed +0 -0
- capo_appstream/types/_prelude/blob.py +12 -0
- capo_appstream/types/_prelude/timestamp.py +17 -0
- capo_appstream/types/access_endpoint.py +49 -0
- capo_appstream/types/access_endpoint_list.py +31 -0
- capo_appstream/types/access_endpoint_type.py +14 -0
- capo_appstream/types/account_name.py +5 -0
- capo_appstream/types/account_password.py +5 -0
- capo_appstream/types/action.py +23 -0
- capo_appstream/types/admin_app_license_usage_list.py +39 -0
- capo_appstream/types/admin_app_license_usage_record.py +94 -0
- capo_appstream/types/agent_access_config.py +100 -0
- capo_appstream/types/agent_access_config_for_update.py +100 -0
- capo_appstream/types/agent_access_setting.py +53 -0
- capo_appstream/types/agent_access_setting_list.py +35 -0
- capo_appstream/types/agent_action.py +18 -0
- capo_appstream/types/agent_software_version.py +18 -0
- capo_appstream/types/ami_name.py +5 -0
- capo_appstream/types/app_block.py +177 -0
- capo_appstream/types/app_block_builder.py +209 -0
- capo_appstream/types/app_block_builder_app_block_association.py +35 -0
- capo_appstream/types/app_block_builder_app_block_associations_list.py +39 -0
- capo_appstream/types/app_block_builder_attribute.py +18 -0
- capo_appstream/types/app_block_builder_attributes.py +39 -0
- capo_appstream/types/app_block_builder_list.py +33 -0
- capo_appstream/types/app_block_builder_platform_type.py +14 -0
- capo_appstream/types/app_block_builder_state.py +19 -0
- capo_appstream/types/app_block_builder_state_change_reason.py +49 -0
- capo_appstream/types/app_block_builder_state_change_reason_code.py +14 -0
- capo_appstream/types/app_block_state.py +17 -0
- capo_appstream/types/app_blocks.py +29 -0
- capo_appstream/types/app_catalog_config.py +33 -0
- capo_appstream/types/app_display_name.py +5 -0
- capo_appstream/types/app_name.py +5 -0
- capo_appstream/types/app_visibility.py +17 -0
- capo_appstream/types/application.py +165 -0
- capo_appstream/types/application_attribute.py +17 -0
- capo_appstream/types/application_attributes.py +35 -0
- capo_appstream/types/application_config.py +69 -0
- capo_appstream/types/application_fleet_association.py +35 -0
- capo_appstream/types/application_fleet_association_list.py +39 -0
- capo_appstream/types/application_settings.py +35 -0
- capo_appstream/types/application_settings_response.py +42 -0
- capo_appstream/types/applications.py +29 -0
- capo_appstream/types/appstream_agent_version.py +5 -0
- capo_appstream/types/arn.py +5 -0
- capo_appstream/types/arn_list.py +17 -0
- capo_appstream/types/associate_app_block_builder_app_block_request.py +35 -0
- capo_appstream/types/associate_app_block_builder_app_block_result.py +42 -0
- capo_appstream/types/associate_application_fleet_request.py +35 -0
- capo_appstream/types/associate_application_fleet_result.py +42 -0
- capo_appstream/types/associate_application_to_entitlement_request.py +41 -0
- capo_appstream/types/associate_application_to_entitlement_result.py +18 -0
- capo_appstream/types/associate_fleet_request.py +34 -0
- capo_appstream/types/associate_fleet_result.py +18 -0
- capo_appstream/types/associate_software_to_image_builder_request.py +45 -0
- capo_appstream/types/associate_software_to_image_builder_result.py +18 -0
- capo_appstream/types/authentication_type.py +19 -0
- capo_appstream/types/aws_account_id.py +5 -0
- capo_appstream/types/aws_account_id_list.py +17 -0
- capo_appstream/types/batch_associate_user_stack_request.py +42 -0
- capo_appstream/types/batch_associate_user_stack_result.py +42 -0
- capo_appstream/types/batch_disassociate_user_stack_request.py +42 -0
- capo_appstream/types/batch_disassociate_user_stack_result.py +42 -0
- capo_appstream/types/boolean.py +5 -0
- capo_appstream/types/boolean_object.py +5 -0
- capo_appstream/types/certificate_based_auth_properties.py +49 -0
- capo_appstream/types/certificate_based_auth_status.py +18 -0
- capo_appstream/types/compute_capacity.py +34 -0
- capo_appstream/types/compute_capacity_status.py +88 -0
- capo_appstream/types/content_redirection.py +42 -0
- capo_appstream/types/copy_image_request.py +50 -0
- capo_appstream/types/copy_image_response.py +28 -0
- capo_appstream/types/create_app_block_builder_request.py +139 -0
- capo_appstream/types/create_app_block_builder_result.py +41 -0
- capo_appstream/types/create_app_block_builder_streaming_url_request.py +35 -0
- capo_appstream/types/create_app_block_builder_streaming_url_result.py +43 -0
- capo_appstream/types/create_app_block_request.py +132 -0
- capo_appstream/types/create_app_block_result.py +36 -0
- capo_appstream/types/create_application_request.py +130 -0
- capo_appstream/types/create_application_result.py +35 -0
- capo_appstream/types/create_directory_config_request.py +91 -0
- capo_appstream/types/create_directory_config_result.py +42 -0
- capo_appstream/types/create_entitlement_request.py +81 -0
- capo_appstream/types/create_entitlement_result.py +36 -0
- capo_appstream/types/create_export_image_task_request.py +64 -0
- capo_appstream/types/create_export_image_task_result.py +42 -0
- capo_appstream/types/create_fleet_request.py +294 -0
- capo_appstream/types/create_fleet_result.py +34 -0
- capo_appstream/types/create_image_builder_request.py +216 -0
- capo_appstream/types/create_image_builder_result.py +38 -0
- capo_appstream/types/create_image_builder_streaming_url_request.py +35 -0
- capo_appstream/types/create_image_builder_streaming_url_result.py +43 -0
- capo_appstream/types/create_imported_image_request.py +150 -0
- capo_appstream/types/create_imported_image_result.py +33 -0
- capo_appstream/types/create_stack_request.py +232 -0
- capo_appstream/types/create_stack_result.py +34 -0
- capo_appstream/types/create_streaming_url_request.py +62 -0
- capo_appstream/types/create_streaming_url_result.py +43 -0
- capo_appstream/types/create_theme_for_stack_request.py +112 -0
- capo_appstream/types/create_theme_for_stack_result.py +34 -0
- capo_appstream/types/create_updated_image_request.py +70 -0
- capo_appstream/types/create_updated_image_result.py +40 -0
- capo_appstream/types/create_usage_report_subscription_request.py +18 -0
- capo_appstream/types/create_usage_report_subscription_result.py +49 -0
- capo_appstream/types/create_user_request.py +85 -0
- capo_appstream/types/create_user_result.py +18 -0
- capo_appstream/types/delete_app_block_builder_request.py +28 -0
- capo_appstream/types/delete_app_block_builder_result.py +18 -0
- capo_appstream/types/delete_app_block_request.py +28 -0
- capo_appstream/types/delete_app_block_result.py +18 -0
- capo_appstream/types/delete_application_request.py +28 -0
- capo_appstream/types/delete_application_result.py +18 -0
- capo_appstream/types/delete_directory_config_request.py +28 -0
- capo_appstream/types/delete_directory_config_result.py +18 -0
- capo_appstream/types/delete_entitlement_request.py +34 -0
- capo_appstream/types/delete_entitlement_result.py +18 -0
- capo_appstream/types/delete_fleet_request.py +28 -0
- capo_appstream/types/delete_fleet_result.py +18 -0
- capo_appstream/types/delete_image_builder_request.py +28 -0
- capo_appstream/types/delete_image_builder_result.py +38 -0
- capo_appstream/types/delete_image_permissions_request.py +35 -0
- capo_appstream/types/delete_image_permissions_result.py +18 -0
- capo_appstream/types/delete_image_request.py +28 -0
- capo_appstream/types/delete_image_result.py +34 -0
- capo_appstream/types/delete_stack_request.py +28 -0
- capo_appstream/types/delete_stack_result.py +18 -0
- capo_appstream/types/delete_theme_for_stack_request.py +28 -0
- capo_appstream/types/delete_theme_for_stack_result.py +18 -0
- capo_appstream/types/delete_usage_report_subscription_request.py +18 -0
- capo_appstream/types/delete_usage_report_subscription_result.py +18 -0
- capo_appstream/types/delete_user_request.py +49 -0
- capo_appstream/types/delete_user_result.py +18 -0
- capo_appstream/types/describe_app_block_builder_app_block_associations_request.py +53 -0
- capo_appstream/types/describe_app_block_builder_app_block_associations_result.py +53 -0
- capo_appstream/types/describe_app_block_builders_request.py +50 -0
- capo_appstream/types/describe_app_block_builders_result.py +49 -0
- capo_appstream/types/describe_app_blocks_request.py +50 -0
- capo_appstream/types/describe_app_blocks_result.py +43 -0
- capo_appstream/types/describe_app_license_usage_request.py +41 -0
- capo_appstream/types/describe_app_license_usage_result.py +49 -0
- capo_appstream/types/describe_application_fleet_associations_request.py +49 -0
- capo_appstream/types/describe_application_fleet_associations_result.py +49 -0
- capo_appstream/types/describe_applications_request.py +50 -0
- capo_appstream/types/describe_applications_result.py +45 -0
- capo_appstream/types/describe_directory_configs_request.py +56 -0
- capo_appstream/types/describe_directory_configs_result.py +49 -0
- capo_appstream/types/describe_entitlements_request.py +48 -0
- capo_appstream/types/describe_entitlements_result.py +47 -0
- capo_appstream/types/describe_fleets_request.py +43 -0
- capo_appstream/types/describe_fleets_result.py +43 -0
- capo_appstream/types/describe_image_builders_request.py +50 -0
- capo_appstream/types/describe_image_builders_result.py +49 -0
- capo_appstream/types/describe_image_permissions_request.py +63 -0
- capo_appstream/types/describe_image_permissions_result.py +56 -0
- capo_appstream/types/describe_images_max_results.py +5 -0
- capo_appstream/types/describe_images_request.py +82 -0
- capo_appstream/types/describe_images_result.py +43 -0
- capo_appstream/types/describe_sessions_request.py +82 -0
- capo_appstream/types/describe_sessions_result.py +43 -0
- capo_appstream/types/describe_software_associations_request.py +42 -0
- capo_appstream/types/describe_software_associations_result.py +56 -0
- capo_appstream/types/describe_stacks_request.py +43 -0
- capo_appstream/types/describe_stacks_result.py +43 -0
- capo_appstream/types/describe_theme_for_stack_request.py +28 -0
- capo_appstream/types/describe_theme_for_stack_result.py +34 -0
- capo_appstream/types/describe_usage_report_subscriptions_request.py +35 -0
- capo_appstream/types/describe_usage_report_subscriptions_result.py +49 -0
- capo_appstream/types/describe_user_stack_associations_request.py +69 -0
- capo_appstream/types/describe_user_stack_associations_result.py +49 -0
- capo_appstream/types/describe_users_request.py +56 -0
- capo_appstream/types/describe_users_result.py +43 -0
- capo_appstream/types/description.py +5 -0
- capo_appstream/types/directory_config.py +106 -0
- capo_appstream/types/directory_config_list.py +31 -0
- capo_appstream/types/directory_name.py +5 -0
- capo_appstream/types/directory_name_list.py +17 -0
- capo_appstream/types/disable_user_request.py +49 -0
- capo_appstream/types/disable_user_result.py +18 -0
- capo_appstream/types/disassociate_app_block_builder_app_block_request.py +35 -0
- capo_appstream/types/disassociate_app_block_builder_app_block_result.py +18 -0
- capo_appstream/types/disassociate_application_fleet_request.py +35 -0
- capo_appstream/types/disassociate_application_fleet_result.py +18 -0
- capo_appstream/types/disassociate_application_from_entitlement_request.py +45 -0
- capo_appstream/types/disassociate_application_from_entitlement_result.py +20 -0
- capo_appstream/types/disassociate_fleet_request.py +34 -0
- capo_appstream/types/disassociate_fleet_result.py +18 -0
- capo_appstream/types/disassociate_software_from_image_builder_request.py +45 -0
- capo_appstream/types/disassociate_software_from_image_builder_result.py +18 -0
- capo_appstream/types/display_name.py +5 -0
- capo_appstream/types/domain.py +6 -0
- capo_appstream/types/domain_join_info.py +41 -0
- capo_appstream/types/domain_list.py +17 -0
- capo_appstream/types/drain_session_instance_request.py +28 -0
- capo_appstream/types/drain_session_instance_result.py +18 -0
- capo_appstream/types/dynamic_app_providers_enabled.py +17 -0
- capo_appstream/types/embed_host_domain.py +6 -0
- capo_appstream/types/embed_host_domains.py +19 -0
- capo_appstream/types/enable_user_request.py +49 -0
- capo_appstream/types/enable_user_result.py +18 -0
- capo_appstream/types/entitled_application.py +28 -0
- capo_appstream/types/entitled_application_list.py +35 -0
- capo_appstream/types/entitlement.py +112 -0
- capo_appstream/types/entitlement_attribute.py +34 -0
- capo_appstream/types/entitlement_attribute_list.py +35 -0
- capo_appstream/types/entitlement_list.py +29 -0
- capo_appstream/types/error_details.py +34 -0
- capo_appstream/types/error_details_list.py +29 -0
- capo_appstream/types/error_message.py +6 -0
- capo_appstream/types/expire_session_request.py +28 -0
- capo_appstream/types/expire_session_result.py +18 -0
- capo_appstream/types/export_image_task.py +128 -0
- capo_appstream/types/export_image_task_state.py +19 -0
- capo_appstream/types/export_image_tasks.py +33 -0
- capo_appstream/types/feedback_url.py +5 -0
- capo_appstream/types/file_path.py +5 -0
- capo_appstream/types/filter.py +43 -0
- capo_appstream/types/filter_name.py +5 -0
- capo_appstream/types/filter_value.py +5 -0
- capo_appstream/types/filter_values.py +17 -0
- capo_appstream/types/filters.py +29 -0
- capo_appstream/types/fleet.py +333 -0
- capo_appstream/types/fleet_attribute.py +24 -0
- capo_appstream/types/fleet_attributes.py +29 -0
- capo_appstream/types/fleet_error.py +45 -0
- capo_appstream/types/fleet_error_code.py +46 -0
- capo_appstream/types/fleet_errors.py +29 -0
- capo_appstream/types/fleet_list.py +29 -0
- capo_appstream/types/fleet_state.py +19 -0
- capo_appstream/types/fleet_type.py +18 -0
- capo_appstream/types/get_export_image_task_request.py +28 -0
- capo_appstream/types/get_export_image_task_result.py +42 -0
- capo_appstream/types/image.py +340 -0
- capo_appstream/types/image_builder.py +295 -0
- capo_appstream/types/image_builder_list.py +29 -0
- capo_appstream/types/image_builder_state.py +29 -0
- capo_appstream/types/image_builder_state_change_reason.py +49 -0
- capo_appstream/types/image_builder_state_change_reason_code.py +17 -0
- capo_appstream/types/image_import_description.py +5 -0
- capo_appstream/types/image_import_display_name.py +5 -0
- capo_appstream/types/image_list.py +29 -0
- capo_appstream/types/image_permissions.py +36 -0
- capo_appstream/types/image_shared_with_others.py +17 -0
- capo_appstream/types/image_state.py +23 -0
- capo_appstream/types/image_state_change_reason.py +49 -0
- capo_appstream/types/image_state_change_reason_code.py +20 -0
- capo_appstream/types/image_type.py +19 -0
- capo_appstream/types/instance_drain_status.py +19 -0
- capo_appstream/types/instance_type.py +5 -0
- capo_appstream/types/integer.py +5 -0
- capo_appstream/types/last_report_generation_execution_error.py +49 -0
- capo_appstream/types/last_report_generation_execution_errors.py +39 -0
- capo_appstream/types/latest_appstream_agent_version.py +17 -0
- capo_appstream/types/launch_parameters.py +5 -0
- capo_appstream/types/list_associated_fleets_request.py +34 -0
- capo_appstream/types/list_associated_fleets_result.py +43 -0
- capo_appstream/types/list_associated_stacks_request.py +34 -0
- capo_appstream/types/list_associated_stacks_result.py +43 -0
- capo_appstream/types/list_entitled_applications_request.py +48 -0
- capo_appstream/types/list_entitled_applications_result.py +49 -0
- capo_appstream/types/list_export_image_tasks_request.py +50 -0
- capo_appstream/types/list_export_image_tasks_result.py +49 -0
- capo_appstream/types/list_tags_for_resource_request.py +28 -0
- capo_appstream/types/list_tags_for_resource_response.py +32 -0
- capo_appstream/types/long.py +5 -0
- capo_appstream/types/max_results.py +5 -0
- capo_appstream/types/message_action.py +17 -0
- capo_appstream/types/metadata.py +27 -0
- capo_appstream/types/name.py +5 -0
- capo_appstream/types/network_access_configuration.py +53 -0
- capo_appstream/types/organizational_unit_distinguished_name.py +5 -0
- capo_appstream/types/organizational_unit_distinguished_names_list.py +19 -0
- capo_appstream/types/packaging_type.py +17 -0
- capo_appstream/types/permission.py +17 -0
- capo_appstream/types/photon_ami_id.py +5 -0
- capo_appstream/types/platform_type.py +24 -0
- capo_appstream/types/platforms.py +29 -0
- capo_appstream/types/preferred_protocol.py +17 -0
- capo_appstream/types/redirect_url.py +5 -0
- capo_appstream/types/region_name.py +5 -0
- capo_appstream/types/resource_error.py +62 -0
- capo_appstream/types/resource_errors.py +29 -0
- capo_appstream/types/resource_identifier.py +6 -0
- capo_appstream/types/runtime_validation_config.py +30 -0
- capo_appstream/types/s3_bucket.py +5 -0
- capo_appstream/types/s3_bucket_arn.py +5 -0
- capo_appstream/types/s3_key.py +5 -0
- capo_appstream/types/s3_location.py +35 -0
- capo_appstream/types/screen_image_format.py +18 -0
- capo_appstream/types/screen_resolution.py +15 -0
- capo_appstream/types/script_details.py +60 -0
- capo_appstream/types/security_group_id_list.py +17 -0
- capo_appstream/types/service_account_credentials.py +37 -0
- capo_appstream/types/session.py +185 -0
- capo_appstream/types/session_connection_state.py +17 -0
- capo_appstream/types/session_list.py +29 -0
- capo_appstream/types/session_state.py +19 -0
- capo_appstream/types/settings_group.py +5 -0
- capo_appstream/types/shared_image_permissions.py +49 -0
- capo_appstream/types/shared_image_permissions_list.py +35 -0
- capo_appstream/types/software_associations.py +70 -0
- capo_appstream/types/software_associations_list.py +35 -0
- capo_appstream/types/software_deployment_status.py +22 -0
- capo_appstream/types/stack.py +259 -0
- capo_appstream/types/stack_attribute.py +30 -0
- capo_appstream/types/stack_attributes.py +29 -0
- capo_appstream/types/stack_error.py +45 -0
- capo_appstream/types/stack_error_code.py +17 -0
- capo_appstream/types/stack_errors.py +29 -0
- capo_appstream/types/stack_list.py +29 -0
- capo_appstream/types/start_app_block_builder_request.py +28 -0
- capo_appstream/types/start_app_block_builder_result.py +41 -0
- capo_appstream/types/start_fleet_request.py +28 -0
- capo_appstream/types/start_fleet_result.py +18 -0
- capo_appstream/types/start_image_builder_request.py +37 -0
- capo_appstream/types/start_image_builder_result.py +38 -0
- capo_appstream/types/start_software_deployment_to_image_builder_request.py +37 -0
- capo_appstream/types/start_software_deployment_to_image_builder_result.py +18 -0
- capo_appstream/types/stop_app_block_builder_request.py +28 -0
- capo_appstream/types/stop_app_block_builder_result.py +41 -0
- capo_appstream/types/stop_fleet_request.py +28 -0
- capo_appstream/types/stop_fleet_result.py +18 -0
- capo_appstream/types/stop_image_builder_request.py +28 -0
- capo_appstream/types/stop_image_builder_result.py +38 -0
- capo_appstream/types/storage_connector.py +86 -0
- capo_appstream/types/storage_connector_list.py +33 -0
- capo_appstream/types/storage_connector_type.py +19 -0
- capo_appstream/types/stream_view.py +17 -0
- capo_appstream/types/streaming_experience_settings.py +42 -0
- capo_appstream/types/streaming_url_user_id.py +5 -0
- capo_appstream/types/string.py +5 -0
- capo_appstream/types/string_list.py +17 -0
- capo_appstream/types/subnet_id_list.py +17 -0
- capo_appstream/types/tag_key.py +5 -0
- capo_appstream/types/tag_key_list.py +17 -0
- capo_appstream/types/tag_resource_request.py +39 -0
- capo_appstream/types/tag_resource_response.py +18 -0
- capo_appstream/types/tag_value.py +5 -0
- capo_appstream/types/tags.py +28 -0
- capo_appstream/types/theme.py +118 -0
- capo_appstream/types/theme_attribute.py +14 -0
- capo_appstream/types/theme_attributes.py +29 -0
- capo_appstream/types/theme_footer_link.py +39 -0
- capo_appstream/types/theme_footer_link_display_name.py +5 -0
- capo_appstream/types/theme_footer_link_url.py +5 -0
- capo_appstream/types/theme_footer_links.py +33 -0
- capo_appstream/types/theme_state.py +17 -0
- capo_appstream/types/theme_styling.py +19 -0
- capo_appstream/types/theme_title_text.py +5 -0
- capo_appstream/types/timestamp.py +20 -0
- capo_appstream/types/untag_resource_request.py +43 -0
- capo_appstream/types/untag_resource_response.py +18 -0
- capo_appstream/types/update_app_block_builder_request.py +143 -0
- capo_appstream/types/update_app_block_builder_result.py +41 -0
- capo_appstream/types/update_application_request.py +106 -0
- capo_appstream/types/update_application_result.py +35 -0
- capo_appstream/types/update_directory_config_request.py +91 -0
- capo_appstream/types/update_directory_config_result.py +42 -0
- capo_appstream/types/update_entitlement_request.py +81 -0
- capo_appstream/types/update_entitlement_result.py +36 -0
- capo_appstream/types/update_fleet_request.py +296 -0
- capo_appstream/types/update_fleet_result.py +34 -0
- capo_appstream/types/update_image_permissions_request.py +56 -0
- capo_appstream/types/update_image_permissions_result.py +18 -0
- capo_appstream/types/update_stack_request.py +249 -0
- capo_appstream/types/update_stack_result.py +34 -0
- capo_appstream/types/update_theme_for_stack_request.py +148 -0
- capo_appstream/types/update_theme_for_stack_result.py +34 -0
- capo_appstream/types/url_pattern.py +6 -0
- capo_appstream/types/url_pattern_list.py +17 -0
- capo_appstream/types/url_redirection_config.py +65 -0
- capo_appstream/types/usage_report_execution_error_code.py +18 -0
- capo_appstream/types/usage_report_schedule.py +14 -0
- capo_appstream/types/usage_report_subscription.py +89 -0
- capo_appstream/types/usage_report_subscription_list.py +37 -0
- capo_appstream/types/usb_device_filter_string.py +5 -0
- capo_appstream/types/usb_device_filter_strings.py +19 -0
- capo_appstream/types/user.py +102 -0
- capo_appstream/types/user_attribute_value.py +5 -0
- capo_appstream/types/user_id.py +5 -0
- capo_appstream/types/user_list.py +29 -0
- capo_appstream/types/user_setting.py +58 -0
- capo_appstream/types/user_setting_list.py +29 -0
- capo_appstream/types/user_stack_association.py +63 -0
- capo_appstream/types/user_stack_association_error.py +70 -0
- capo_appstream/types/user_stack_association_error_code.py +19 -0
- capo_appstream/types/user_stack_association_error_list.py +39 -0
- capo_appstream/types/user_stack_association_list.py +35 -0
- capo_appstream/types/username.py +5 -0
- capo_appstream/types/uuid.py +5 -0
- capo_appstream/types/visibility_type.py +18 -0
- capo_appstream/types/volume_config.py +28 -0
- capo_appstream/types/vpc_config.py +59 -0
- capo_appstream/types/workspace_image_id.py +5 -0
- capo_appstream-0.1.0.dist-info/METADATA +102 -0
- capo_appstream-0.1.0.dist-info/RECORD +527 -0
- capo_appstream-0.1.0.dist-info/WHEEL +5 -0
- capo_appstream-0.1.0.dist-info/licenses/LICENSE +21 -0
- capo_appstream-0.1.0.dist-info/top_level.txt +1 -0
|
@@ -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.app_stream import AppStreamClient as AppStreamClient
|
|
70
|
+
from ._services.async_app_stream import AsyncAppStreamClient as AsyncAppStreamClient
|
capo_appstream/_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]
|