capo-appflow 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_appflow/__init__.py +70 -0
- capo_appflow/_async.py +25 -0
- capo_appflow/_auth/_identity.py +16 -0
- capo_appflow/_auth/_providers.py +886 -0
- capo_appflow/_auth/_signers.py +88 -0
- capo_appflow/_auth/_sigv4.py +434 -0
- capo_appflow/_auth/_zapros_handler.py +80 -0
- capo_appflow/_iter.py +113 -0
- capo_appflow/_operations/sandstone_configuration_service_lambda/cancel_flow_executions.py +164 -0
- capo_appflow/_operations/sandstone_configuration_service_lambda/create_connector_profile.py +170 -0
- capo_appflow/_operations/sandstone_configuration_service_lambda/create_flow.py +182 -0
- capo_appflow/_operations/sandstone_configuration_service_lambda/delete_connector_profile.py +153 -0
- capo_appflow/_operations/sandstone_configuration_service_lambda/delete_flow.py +142 -0
- capo_appflow/_operations/sandstone_configuration_service_lambda/describe_connector.py +159 -0
- capo_appflow/_operations/sandstone_configuration_service_lambda/describe_connector_entity.py +165 -0
- capo_appflow/_operations/sandstone_configuration_service_lambda/describe_connector_profiles.py +151 -0
- capo_appflow/_operations/sandstone_configuration_service_lambda/describe_connectors.py +155 -0
- capo_appflow/_operations/sandstone_configuration_service_lambda/describe_flow.py +159 -0
- capo_appflow/_operations/sandstone_configuration_service_lambda/describe_flow_execution_records.py +156 -0
- capo_appflow/_operations/sandstone_configuration_service_lambda/list_connector_entities.py +165 -0
- capo_appflow/_operations/sandstone_configuration_service_lambda/list_connectors.py +151 -0
- capo_appflow/_operations/sandstone_configuration_service_lambda/list_flows.py +146 -0
- capo_appflow/_operations/sandstone_configuration_service_lambda/list_tags_for_resource.py +152 -0
- capo_appflow/_operations/sandstone_configuration_service_lambda/register_connector.py +189 -0
- capo_appflow/_operations/sandstone_configuration_service_lambda/reset_connector_metadata_cache.py +157 -0
- capo_appflow/_operations/sandstone_configuration_service_lambda/start_flow.py +156 -0
- capo_appflow/_operations/sandstone_configuration_service_lambda/stop_flow.py +156 -0
- capo_appflow/_operations/sandstone_configuration_service_lambda/tag_resource.py +149 -0
- capo_appflow/_operations/sandstone_configuration_service_lambda/unregister_connector.py +149 -0
- capo_appflow/_operations/sandstone_configuration_service_lambda/untag_resource.py +148 -0
- capo_appflow/_operations/sandstone_configuration_service_lambda/update_connector_profile.py +169 -0
- capo_appflow/_operations/sandstone_configuration_service_lambda/update_connector_registration.py +184 -0
- capo_appflow/_operations/sandstone_configuration_service_lambda/update_flow.py +181 -0
- capo_appflow/_pagination.py +21 -0
- capo_appflow/_protocol/__init__.py +1 -0
- capo_appflow/_protocol/errors.py +93 -0
- capo_appflow/_protocol/eventstream.py +238 -0
- capo_appflow/_protocol/serialize.py +47 -0
- capo_appflow/_protocol/xml.py +33 -0
- capo_appflow/_rule_engine/__init__.py +0 -0
- capo_appflow/_rule_engine/_aws_partition.py +160 -0
- capo_appflow/_rule_engine/_endpoint_rule_set.py +136 -0
- capo_appflow/_rule_engine/_endpoint_runtime.py +389 -0
- capo_appflow/_services/_aws_config.py +160 -0
- capo_appflow/_services/_pipeline.py +198 -0
- capo_appflow/_services/appflow.py +1764 -0
- capo_appflow/_services/async_appflow.py +1789 -0
- capo_appflow/errors/__init__.py +45 -0
- capo_appflow/errors/_base.py +94 -0
- capo_appflow/errors/access_denied_exception.py +51 -0
- capo_appflow/errors/conflict_exception.py +49 -0
- capo_appflow/errors/connector_authentication_exception.py +53 -0
- capo_appflow/errors/connector_server_exception.py +51 -0
- capo_appflow/errors/internal_server_exception.py +51 -0
- capo_appflow/errors/resource_not_found_exception.py +51 -0
- capo_appflow/errors/service_quota_exceeded_exception.py +53 -0
- capo_appflow/errors/throttling_exception.py +49 -0
- capo_appflow/errors/unsupported_operation_exception.py +53 -0
- capo_appflow/errors/validation_exception.py +49 -0
- capo_appflow/py.typed +0 -0
- capo_appflow/types/_prelude/blob.py +12 -0
- capo_appflow/types/_prelude/timestamp.py +17 -0
- capo_appflow/types/access_key_id.py +5 -0
- capo_appflow/types/access_token.py +5 -0
- capo_appflow/types/account_name.py +5 -0
- capo_appflow/types/aggregation_config.py +43 -0
- capo_appflow/types/aggregation_type.py +17 -0
- capo_appflow/types/amplitude_connector_operator.py +14 -0
- capo_appflow/types/amplitude_connector_profile_credentials.py +43 -0
- capo_appflow/types/amplitude_connector_profile_properties.py +18 -0
- capo_appflow/types/amplitude_metadata.py +18 -0
- capo_appflow/types/amplitude_source_properties.py +31 -0
- capo_appflow/types/api_key.py +5 -0
- capo_appflow/types/api_key_credentials.py +38 -0
- capo_appflow/types/api_secret_key.py +5 -0
- capo_appflow/types/api_token.py +5 -0
- capo_appflow/types/api_version.py +5 -0
- capo_appflow/types/application_host_url.py +5 -0
- capo_appflow/types/application_key.py +5 -0
- capo_appflow/types/application_service_path.py +5 -0
- capo_appflow/types/application_type.py +5 -0
- capo_appflow/types/arn.py +5 -0
- capo_appflow/types/auth_code.py +5 -0
- capo_appflow/types/auth_code_url.py +5 -0
- capo_appflow/types/auth_code_url_list.py +17 -0
- capo_appflow/types/auth_parameter.py +78 -0
- capo_appflow/types/auth_parameter_list.py +29 -0
- capo_appflow/types/authentication_config.py +86 -0
- capo_appflow/types/authentication_type.py +19 -0
- capo_appflow/types/basic_auth_credentials.py +39 -0
- capo_appflow/types/boolean.py +5 -0
- capo_appflow/types/bucket_name.py +5 -0
- capo_appflow/types/bucket_prefix.py +5 -0
- capo_appflow/types/business_unit_id.py +5 -0
- capo_appflow/types/cancel_flow_executions_request.py +46 -0
- capo_appflow/types/cancel_flow_executions_response.py +36 -0
- capo_appflow/types/catalog_type.py +14 -0
- capo_appflow/types/client_credentials_arn.py +5 -0
- capo_appflow/types/client_id.py +5 -0
- capo_appflow/types/client_number.py +5 -0
- capo_appflow/types/client_secret.py +5 -0
- capo_appflow/types/client_token.py +5 -0
- capo_appflow/types/cluster_identifier.py +5 -0
- capo_appflow/types/connection_mode.py +17 -0
- capo_appflow/types/connector_configuration.py +434 -0
- capo_appflow/types/connector_configurations_map.py +40 -0
- capo_appflow/types/connector_description.py +5 -0
- capo_appflow/types/connector_detail.py +165 -0
- capo_appflow/types/connector_entity.py +46 -0
- capo_appflow/types/connector_entity_field.py +155 -0
- capo_appflow/types/connector_entity_field_list.py +31 -0
- capo_appflow/types/connector_entity_list.py +31 -0
- capo_appflow/types/connector_entity_map.py +33 -0
- capo_appflow/types/connector_label.py +5 -0
- capo_appflow/types/connector_list.py +29 -0
- capo_appflow/types/connector_metadata.py +356 -0
- capo_appflow/types/connector_mode.py +5 -0
- capo_appflow/types/connector_mode_list.py +17 -0
- capo_appflow/types/connector_name.py +5 -0
- capo_appflow/types/connector_o_auth_request.py +35 -0
- capo_appflow/types/connector_operator.py +338 -0
- capo_appflow/types/connector_owner.py +5 -0
- capo_appflow/types/connector_profile.py +150 -0
- capo_appflow/types/connector_profile_arn.py +5 -0
- capo_appflow/types/connector_profile_config.py +68 -0
- capo_appflow/types/connector_profile_credentials.py +418 -0
- capo_appflow/types/connector_profile_detail_list.py +31 -0
- capo_appflow/types/connector_profile_name.py +5 -0
- capo_appflow/types/connector_profile_name_list.py +19 -0
- capo_appflow/types/connector_profile_properties.py +419 -0
- capo_appflow/types/connector_provisioning_config.py +45 -0
- capo_appflow/types/connector_provisioning_type.py +15 -0
- capo_appflow/types/connector_runtime_setting.py +89 -0
- capo_appflow/types/connector_runtime_setting_data_type.py +5 -0
- capo_appflow/types/connector_runtime_setting_list.py +31 -0
- capo_appflow/types/connector_runtime_setting_scope.py +5 -0
- capo_appflow/types/connector_supplied_value.py +5 -0
- capo_appflow/types/connector_supplied_value_list.py +19 -0
- capo_appflow/types/connector_supplied_value_option_list.py +19 -0
- capo_appflow/types/connector_type.py +39 -0
- capo_appflow/types/connector_type_list.py +29 -0
- capo_appflow/types/connector_version.py +5 -0
- capo_appflow/types/create_connector_profile_request.py +116 -0
- capo_appflow/types/create_connector_profile_response.py +30 -0
- capo_appflow/types/create_flow_request.py +154 -0
- capo_appflow/types/create_flow_response.py +43 -0
- capo_appflow/types/created_by.py +5 -0
- capo_appflow/types/credentials_map.py +29 -0
- capo_appflow/types/credentials_map_key.py +5 -0
- capo_appflow/types/credentials_map_value.py +5 -0
- capo_appflow/types/custom_auth_config.py +49 -0
- capo_appflow/types/custom_auth_config_list.py +31 -0
- capo_appflow/types/custom_auth_credentials.py +50 -0
- capo_appflow/types/custom_authentication_type.py +5 -0
- capo_appflow/types/custom_connector_destination_properties.py +109 -0
- capo_appflow/types/custom_connector_profile_credentials.py +105 -0
- capo_appflow/types/custom_connector_profile_properties.py +60 -0
- capo_appflow/types/custom_connector_source_properties.py +71 -0
- capo_appflow/types/custom_properties.py +29 -0
- capo_appflow/types/custom_property_key.py +5 -0
- capo_appflow/types/custom_property_value.py +5 -0
- capo_appflow/types/customer_profiles_destination_properties.py +40 -0
- capo_appflow/types/customer_profiles_metadata.py +18 -0
- capo_appflow/types/data_api_role_arn.py +5 -0
- capo_appflow/types/data_pull_mode.py +17 -0
- capo_appflow/types/data_transfer_api.py +45 -0
- capo_appflow/types/data_transfer_api_type.py +18 -0
- capo_appflow/types/data_transfer_api_type_name.py +5 -0
- capo_appflow/types/database_name.py +5 -0
- capo_appflow/types/database_url.py +5 -0
- capo_appflow/types/datadog_connector_operator.py +30 -0
- capo_appflow/types/datadog_connector_profile_credentials.py +43 -0
- capo_appflow/types/datadog_connector_profile_properties.py +33 -0
- capo_appflow/types/datadog_metadata.py +18 -0
- capo_appflow/types/datadog_source_properties.py +31 -0
- capo_appflow/types/date.py +20 -0
- capo_appflow/types/datetime_type_field_name.py +5 -0
- capo_appflow/types/delete_connector_profile_request.py +43 -0
- capo_appflow/types/delete_connector_profile_response.py +18 -0
- capo_appflow/types/delete_flow_request.py +39 -0
- capo_appflow/types/delete_flow_response.py +18 -0
- capo_appflow/types/describe_connector_entity_request.py +64 -0
- capo_appflow/types/describe_connector_entity_response.py +47 -0
- capo_appflow/types/describe_connector_profiles_request.py +78 -0
- capo_appflow/types/describe_connector_profiles_response.py +49 -0
- capo_appflow/types/describe_connector_request.py +46 -0
- capo_appflow/types/describe_connector_response.py +42 -0
- capo_appflow/types/describe_connectors_request.py +54 -0
- capo_appflow/types/describe_connectors_response.py +64 -0
- capo_appflow/types/describe_flow_execution_records_request.py +47 -0
- capo_appflow/types/describe_flow_execution_records_response.py +47 -0
- capo_appflow/types/describe_flow_request.py +31 -0
- capo_appflow/types/describe_flow_response.py +259 -0
- capo_appflow/types/description.py +5 -0
- capo_appflow/types/destination_connector_properties.py +290 -0
- capo_appflow/types/destination_field.py +5 -0
- capo_appflow/types/destination_field_properties.py +78 -0
- capo_appflow/types/destination_flow_config.py +77 -0
- capo_appflow/types/destination_flow_config_list.py +31 -0
- capo_appflow/types/document_type.py +5 -0
- capo_appflow/types/domain_name.py +5 -0
- capo_appflow/types/double.py +5 -0
- capo_appflow/types/dynatrace_connector_operator.py +30 -0
- capo_appflow/types/dynatrace_connector_profile_credentials.py +33 -0
- capo_appflow/types/dynatrace_connector_profile_properties.py +33 -0
- capo_appflow/types/dynatrace_metadata.py +18 -0
- capo_appflow/types/dynatrace_source_properties.py +31 -0
- capo_appflow/types/entities_path.py +5 -0
- capo_appflow/types/entity_name.py +5 -0
- capo_appflow/types/error_handling_config.py +45 -0
- capo_appflow/types/error_info.py +37 -0
- capo_appflow/types/error_message.py +5 -0
- capo_appflow/types/event_bridge_destination_properties.py +51 -0
- capo_appflow/types/event_bridge_metadata.py +18 -0
- capo_appflow/types/execution_details.py +66 -0
- capo_appflow/types/execution_id.py +5 -0
- capo_appflow/types/execution_ids.py +17 -0
- capo_appflow/types/execution_message.py +5 -0
- capo_appflow/types/execution_record.py +132 -0
- capo_appflow/types/execution_result.py +67 -0
- capo_appflow/types/execution_status.py +20 -0
- capo_appflow/types/field_type.py +5 -0
- capo_appflow/types/field_type_details.py +110 -0
- capo_appflow/types/file_type.py +18 -0
- capo_appflow/types/filter_operator_list.py +29 -0
- capo_appflow/types/flow_arn.py +5 -0
- capo_appflow/types/flow_definition.py +199 -0
- capo_appflow/types/flow_description.py +5 -0
- capo_appflow/types/flow_error_deactivation_threshold.py +5 -0
- capo_appflow/types/flow_execution_list.py +31 -0
- capo_appflow/types/flow_list.py +29 -0
- capo_appflow/types/flow_name.py +5 -0
- capo_appflow/types/flow_status.py +21 -0
- capo_appflow/types/flow_status_message.py +5 -0
- capo_appflow/types/glue_data_catalog_config.py +51 -0
- capo_appflow/types/glue_data_catalog_database_name.py +5 -0
- capo_appflow/types/glue_data_catalog_iam_role.py +5 -0
- capo_appflow/types/glue_data_catalog_table_prefix.py +5 -0
- capo_appflow/types/google_analytics_connector_operator.py +17 -0
- capo_appflow/types/google_analytics_connector_profile_credentials.py +78 -0
- capo_appflow/types/google_analytics_connector_profile_properties.py +18 -0
- capo_appflow/types/google_analytics_metadata.py +36 -0
- capo_appflow/types/google_analytics_source_properties.py +31 -0
- capo_appflow/types/group.py +5 -0
- capo_appflow/types/honeycode_connector_profile_credentials.py +55 -0
- capo_appflow/types/honeycode_connector_profile_properties.py +18 -0
- capo_appflow/types/honeycode_destination_properties.py +51 -0
- capo_appflow/types/honeycode_metadata.py +36 -0
- capo_appflow/types/id_field_name_list.py +17 -0
- capo_appflow/types/identifier.py +5 -0
- capo_appflow/types/incremental_pull_config.py +30 -0
- capo_appflow/types/infor_nexus_connector_operator.py +30 -0
- capo_appflow/types/infor_nexus_connector_profile_credentials.py +62 -0
- capo_appflow/types/infor_nexus_connector_profile_properties.py +33 -0
- capo_appflow/types/infor_nexus_metadata.py +18 -0
- capo_appflow/types/infor_nexus_source_properties.py +31 -0
- capo_appflow/types/instance_url.py +5 -0
- capo_appflow/types/java_boolean.py +5 -0
- capo_appflow/types/jwt_token.py +5 -0
- capo_appflow/types/key.py +5 -0
- capo_appflow/types/kms_arn.py +5 -0
- capo_appflow/types/label.py +5 -0
- capo_appflow/types/lambda_connector_provisioning_config.py +33 -0
- capo_appflow/types/list_connector_entities_request.py +75 -0
- capo_appflow/types/list_connector_entities_response.py +50 -0
- capo_appflow/types/list_connectors_request.py +35 -0
- capo_appflow/types/list_connectors_response.py +43 -0
- capo_appflow/types/list_entities_max_results.py +5 -0
- capo_appflow/types/list_flows_request.py +35 -0
- capo_appflow/types/list_flows_response.py +39 -0
- capo_appflow/types/list_tags_for_resource_request.py +24 -0
- capo_appflow/types/list_tags_for_resource_response.py +32 -0
- capo_appflow/types/logo_url.py +5 -0
- capo_appflow/types/logon_language.py +5 -0
- capo_appflow/types/long.py +5 -0
- capo_appflow/types/lookout_metrics_destination_properties.py +18 -0
- capo_appflow/types/marketo_connector_operator.py +31 -0
- capo_appflow/types/marketo_connector_profile_credentials.py +71 -0
- capo_appflow/types/marketo_connector_profile_properties.py +33 -0
- capo_appflow/types/marketo_destination_properties.py +51 -0
- capo_appflow/types/marketo_metadata.py +18 -0
- capo_appflow/types/marketo_source_properties.py +31 -0
- capo_appflow/types/max_results.py +5 -0
- capo_appflow/types/metadata_catalog_config.py +42 -0
- capo_appflow/types/metadata_catalog_detail.py +84 -0
- capo_appflow/types/metadata_catalog_details.py +31 -0
- capo_appflow/types/most_recent_execution_message.py +5 -0
- capo_appflow/types/name.py +5 -0
- capo_appflow/types/next_token.py +5 -0
- capo_appflow/types/o_auth2_credentials.py +69 -0
- capo_appflow/types/o_auth2_custom_parameter.py +95 -0
- capo_appflow/types/o_auth2_custom_prop_type.py +17 -0
- capo_appflow/types/o_auth2_custom_properties_list.py +31 -0
- capo_appflow/types/o_auth2_defaults.py +108 -0
- capo_appflow/types/o_auth2_grant_type.py +18 -0
- capo_appflow/types/o_auth2_grant_type_supported_list.py +31 -0
- capo_appflow/types/o_auth2_properties.py +70 -0
- capo_appflow/types/o_auth_credentials.py +74 -0
- capo_appflow/types/o_auth_properties.py +55 -0
- capo_appflow/types/o_auth_scope.py +5 -0
- capo_appflow/types/o_auth_scope_list.py +17 -0
- capo_appflow/types/object.py +5 -0
- capo_appflow/types/object_type_name.py +5 -0
- capo_appflow/types/operator.py +36 -0
- capo_appflow/types/operator_properties_keys.py +32 -0
- capo_appflow/types/operators.py +36 -0
- capo_appflow/types/pardot_connector_operator.py +29 -0
- capo_appflow/types/pardot_connector_profile_credentials.py +64 -0
- capo_appflow/types/pardot_connector_profile_properties.py +43 -0
- capo_appflow/types/pardot_metadata.py +18 -0
- capo_appflow/types/pardot_source_properties.py +31 -0
- capo_appflow/types/password.py +5 -0
- capo_appflow/types/path_prefix.py +17 -0
- capo_appflow/types/path_prefix_hierarchy.py +29 -0
- capo_appflow/types/port_number.py +5 -0
- capo_appflow/types/prefix_config.py +72 -0
- capo_appflow/types/prefix_format.py +20 -0
- capo_appflow/types/prefix_type.py +18 -0
- capo_appflow/types/private_connection_provisioning_failure_cause.py +20 -0
- capo_appflow/types/private_connection_provisioning_failure_message.py +5 -0
- capo_appflow/types/private_connection_provisioning_state.py +72 -0
- capo_appflow/types/private_connection_provisioning_status.py +18 -0
- capo_appflow/types/private_link_service_name.py +5 -0
- capo_appflow/types/profile_properties_map.py +29 -0
- capo_appflow/types/profile_property_key.py +5 -0
- capo_appflow/types/profile_property_value.py +5 -0
- capo_appflow/types/property.py +5 -0
- capo_appflow/types/range.py +52 -0
- capo_appflow/types/redirect_uri.py +5 -0
- capo_appflow/types/redshift_connector_profile_credentials.py +35 -0
- capo_appflow/types/redshift_connector_profile_properties.py +97 -0
- capo_appflow/types/redshift_destination_properties.py +69 -0
- capo_appflow/types/redshift_metadata.py +18 -0
- capo_appflow/types/refresh_token.py +5 -0
- capo_appflow/types/region.py +5 -0
- capo_appflow/types/region_list.py +17 -0
- capo_appflow/types/register_connector_request.py +84 -0
- capo_appflow/types/register_connector_response.py +28 -0
- capo_appflow/types/registered_by.py +5 -0
- capo_appflow/types/registration_output.py +49 -0
- capo_appflow/types/reset_connector_metadata_cache_request.py +66 -0
- capo_appflow/types/reset_connector_metadata_cache_response.py +18 -0
- capo_appflow/types/role_arn.py +5 -0
- capo_appflow/types/s3_connector_operator.py +35 -0
- capo_appflow/types/s3_destination_properties.py +58 -0
- capo_appflow/types/s3_input_file_type.py +17 -0
- capo_appflow/types/s3_input_format_config.py +40 -0
- capo_appflow/types/s3_metadata.py +18 -0
- capo_appflow/types/s3_output_format_config.py +78 -0
- capo_appflow/types/s3_source_properties.py +58 -0
- capo_appflow/types/salesforce_connector_operator.py +36 -0
- capo_appflow/types/salesforce_connector_profile_credentials.py +91 -0
- capo_appflow/types/salesforce_connector_profile_properties.py +49 -0
- capo_appflow/types/salesforce_data_transfer_api.py +18 -0
- capo_appflow/types/salesforce_data_transfer_api_list.py +33 -0
- capo_appflow/types/salesforce_destination_properties.py +109 -0
- capo_appflow/types/salesforce_metadata.py +78 -0
- capo_appflow/types/salesforce_source_properties.py +67 -0
- capo_appflow/types/sapo_data_connector_operator.py +36 -0
- capo_appflow/types/sapo_data_connector_profile_credentials.py +61 -0
- capo_appflow/types/sapo_data_connector_profile_properties.py +108 -0
- capo_appflow/types/sapo_data_destination_properties.py +106 -0
- capo_appflow/types/sapo_data_max_page_size.py +5 -0
- capo_appflow/types/sapo_data_max_parallelism.py +5 -0
- capo_appflow/types/sapo_data_metadata.py +18 -0
- capo_appflow/types/sapo_data_pagination_config.py +31 -0
- capo_appflow/types/sapo_data_parallelism_config.py +33 -0
- capo_appflow/types/sapo_data_source_properties.py +70 -0
- capo_appflow/types/schedule_expression.py +5 -0
- capo_appflow/types/schedule_frequency_type.py +21 -0
- capo_appflow/types/schedule_offset.py +5 -0
- capo_appflow/types/scheduled_trigger_properties.py +118 -0
- capo_appflow/types/scheduling_frequency_type_list.py +31 -0
- capo_appflow/types/secret_key.py +5 -0
- capo_appflow/types/service_now_connector_operator.py +36 -0
- capo_appflow/types/service_now_connector_profile_credentials.py +56 -0
- capo_appflow/types/service_now_connector_profile_properties.py +33 -0
- capo_appflow/types/service_now_metadata.py +18 -0
- capo_appflow/types/service_now_source_properties.py +31 -0
- capo_appflow/types/singular_connector_operator.py +29 -0
- capo_appflow/types/singular_connector_profile_credentials.py +33 -0
- capo_appflow/types/singular_connector_profile_properties.py +18 -0
- capo_appflow/types/singular_metadata.py +18 -0
- capo_appflow/types/singular_source_properties.py +31 -0
- capo_appflow/types/slack_connector_operator.py +34 -0
- capo_appflow/types/slack_connector_profile_credentials.py +71 -0
- capo_appflow/types/slack_connector_profile_properties.py +33 -0
- capo_appflow/types/slack_metadata.py +36 -0
- capo_appflow/types/slack_source_properties.py +31 -0
- capo_appflow/types/snowflake_connector_profile_credentials.py +43 -0
- capo_appflow/types/snowflake_connector_profile_properties.py +81 -0
- capo_appflow/types/snowflake_destination_properties.py +69 -0
- capo_appflow/types/snowflake_metadata.py +36 -0
- capo_appflow/types/source_connector_properties.py +338 -0
- capo_appflow/types/source_field_properties.py +47 -0
- capo_appflow/types/source_fields.py +17 -0
- capo_appflow/types/source_flow_config.py +100 -0
- capo_appflow/types/stage.py +5 -0
- capo_appflow/types/start_flow_request.py +38 -0
- capo_appflow/types/start_flow_response.py +50 -0
- capo_appflow/types/stop_flow_request.py +31 -0
- capo_appflow/types/stop_flow_response.py +43 -0
- capo_appflow/types/string.py +5 -0
- capo_appflow/types/success_response_handling_config.py +35 -0
- capo_appflow/types/supported_api_version.py +5 -0
- capo_appflow/types/supported_api_version_list.py +19 -0
- capo_appflow/types/supported_data_transfer_apis.py +31 -0
- capo_appflow/types/supported_data_transfer_type.py +17 -0
- capo_appflow/types/supported_data_transfer_type_list.py +33 -0
- capo_appflow/types/supported_field_type_details.py +35 -0
- capo_appflow/types/supported_operator_list.py +29 -0
- capo_appflow/types/supported_value_list.py +17 -0
- capo_appflow/types/supported_write_operation_list.py +31 -0
- capo_appflow/types/tag_key.py +5 -0
- capo_appflow/types/tag_key_list.py +17 -0
- capo_appflow/types/tag_map.py +28 -0
- capo_appflow/types/tag_resource_request.py +38 -0
- capo_appflow/types/tag_resource_response.py +18 -0
- capo_appflow/types/tag_value.py +5 -0
- capo_appflow/types/task.py +100 -0
- capo_appflow/types/task_properties_map.py +33 -0
- capo_appflow/types/task_type.py +25 -0
- capo_appflow/types/tasks.py +29 -0
- capo_appflow/types/timezone.py +5 -0
- capo_appflow/types/token_url.py +5 -0
- capo_appflow/types/token_url_custom_properties.py +29 -0
- capo_appflow/types/token_url_list.py +17 -0
- capo_appflow/types/trendmicro_connector_operator.py +29 -0
- capo_appflow/types/trendmicro_connector_profile_credentials.py +33 -0
- capo_appflow/types/trendmicro_connector_profile_properties.py +18 -0
- capo_appflow/types/trendmicro_metadata.py +18 -0
- capo_appflow/types/trendmicro_source_properties.py +31 -0
- capo_appflow/types/trigger_config.py +58 -0
- capo_appflow/types/trigger_properties.py +42 -0
- capo_appflow/types/trigger_type.py +18 -0
- capo_appflow/types/trigger_type_list.py +29 -0
- capo_appflow/types/unregister_connector_request.py +41 -0
- capo_appflow/types/unregister_connector_response.py +18 -0
- capo_appflow/types/untag_resource_request.py +27 -0
- capo_appflow/types/untag_resource_response.py +18 -0
- capo_appflow/types/update_connector_profile_request.py +84 -0
- capo_appflow/types/update_connector_profile_response.py +30 -0
- capo_appflow/types/update_connector_registration_request.py +67 -0
- capo_appflow/types/update_connector_registration_response.py +28 -0
- capo_appflow/types/update_flow_request.py +135 -0
- capo_appflow/types/update_flow_response.py +36 -0
- capo_appflow/types/updated_by.py +5 -0
- capo_appflow/types/upsolver_bucket_name.py +5 -0
- capo_appflow/types/upsolver_destination_properties.py +60 -0
- capo_appflow/types/upsolver_metadata.py +18 -0
- capo_appflow/types/upsolver_s3_output_format_config.py +73 -0
- capo_appflow/types/username.py +5 -0
- capo_appflow/types/value.py +5 -0
- capo_appflow/types/veeva_connector_operator.py +36 -0
- capo_appflow/types/veeva_connector_profile_credentials.py +39 -0
- capo_appflow/types/veeva_connector_profile_properties.py +33 -0
- capo_appflow/types/veeva_metadata.py +18 -0
- capo_appflow/types/veeva_source_properties.py +60 -0
- capo_appflow/types/warehouse.py +5 -0
- capo_appflow/types/workgroup_name.py +5 -0
- capo_appflow/types/write_operation_type.py +20 -0
- capo_appflow/types/zendesk_connector_operator.py +29 -0
- capo_appflow/types/zendesk_connector_profile_credentials.py +71 -0
- capo_appflow/types/zendesk_connector_profile_properties.py +33 -0
- capo_appflow/types/zendesk_destination_properties.py +85 -0
- capo_appflow/types/zendesk_metadata.py +36 -0
- capo_appflow/types/zendesk_source_properties.py +31 -0
- capo_appflow-0.1.0.dist-info/METADATA +101 -0
- capo_appflow-0.1.0.dist-info/RECORD +472 -0
- capo_appflow-0.1.0.dist-info/WHEEL +5 -0
- capo_appflow-0.1.0.dist-info/licenses/LICENSE +21 -0
- capo_appflow-0.1.0.dist-info/top_level.txt +1 -0
capo_appflow/__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.appflow import AppflowClient as AppflowClient
|
|
70
|
+
from ._services.async_appflow import AsyncAppflowClient as AsyncAppflowClient
|
capo_appflow/_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]
|