# WARNING ABOUT GENERATED CODE # # This file is generated. See the contributing guide for more information: # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md # # WARNING ABOUT GENERATED CODE module Aws module Mobile class Client < ::Seahorse::Client::Base include ::Aws::ClientStubs # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mobile/Client.html#initialize-instance_method def self.new: ( ?credentials: untyped, ?region: String, ?access_key_id: String, ?active_endpoint_cache: bool, ?adaptive_retry_wait_to_fill: bool, ?client_side_monitoring: bool, ?client_side_monitoring_client_id: String, ?client_side_monitoring_host: String, ?client_side_monitoring_port: Integer, ?client_side_monitoring_publisher: untyped, ?convert_params: bool, ?correct_clock_skew: bool, ?defaults_mode: String, ?disable_host_prefix_injection: bool, ?disable_request_compression: bool, ?endpoint: String, ?endpoint_cache_max_entries: Integer, ?endpoint_cache_max_threads: Integer, ?endpoint_cache_poll_interval: Integer, ?endpoint_discovery: bool, ?ignore_configured_endpoint_urls: bool, ?log_formatter: untyped, ?log_level: Symbol, ?logger: untyped, ?max_attempts: Integer, ?profile: String, ?request_min_compression_size_bytes: Integer, ?retry_backoff: Proc, ?retry_base_delay: Float, ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer), ?retry_limit: Integer, ?retry_max_delay: Integer, ?retry_mode: ("legacy" | "standard" | "adaptive"), ?sdk_ua_app_id: String, ?secret_access_key: String, ?session_token: String, ?stub_responses: untyped, ?token_provider: untyped, ?use_dualstack_endpoint: bool, ?use_fips_endpoint: bool, ?validate_params: bool, ?endpoint_provider: untyped, ?http_proxy: String, ?http_open_timeout: (Float | Integer), ?http_read_timeout: (Float | Integer), ?http_idle_timeout: (Float | Integer), ?http_continue_timeout: (Float | Integer), ?ssl_timeout: (Float | Integer | nil), ?http_wire_trace: bool, ?ssl_verify_peer: bool, ?ssl_ca_bundle: String, ?ssl_ca_directory: String, ?ssl_ca_store: String, ?on_chunk_received: Proc, ?on_chunk_sent: Proc, ?raise_response_errors: bool ) -> instance | (?Hash[Symbol, untyped]) -> instance interface _CreateProjectResponseSuccess include ::Seahorse::Client::_ResponseSuccess[Types::CreateProjectResult] def details: () -> Types::ProjectDetails end # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mobile/Client.html#create_project-instance_method def create_project: ( ?name: ::String, ?region: ::String, ?contents: ::String, ?snapshot_id: ::String ) -> _CreateProjectResponseSuccess | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateProjectResponseSuccess interface _DeleteProjectResponseSuccess include ::Seahorse::Client::_ResponseSuccess[Types::DeleteProjectResult] def deleted_resources: () -> ::Array[Types::Resource] def orphaned_resources: () -> ::Array[Types::Resource] end # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mobile/Client.html#delete_project-instance_method def delete_project: ( project_id: ::String ) -> _DeleteProjectResponseSuccess | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteProjectResponseSuccess interface _DescribeBundleResponseSuccess include ::Seahorse::Client::_ResponseSuccess[Types::DescribeBundleResult] def details: () -> Types::BundleDetails end # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mobile/Client.html#describe_bundle-instance_method def describe_bundle: ( bundle_id: ::String ) -> _DescribeBundleResponseSuccess | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeBundleResponseSuccess interface _DescribeProjectResponseSuccess include ::Seahorse::Client::_ResponseSuccess[Types::DescribeProjectResult] def details: () -> Types::ProjectDetails end # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mobile/Client.html#describe_project-instance_method def describe_project: ( project_id: ::String, ?sync_from_resources: bool ) -> _DescribeProjectResponseSuccess | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeProjectResponseSuccess interface _ExportBundleResponseSuccess include ::Seahorse::Client::_ResponseSuccess[Types::ExportBundleResult] def download_url: () -> ::String end # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mobile/Client.html#export_bundle-instance_method def export_bundle: ( bundle_id: ::String, ?project_id: ::String, ?platform: ("OSX" | "WINDOWS" | "LINUX" | "OBJC" | "SWIFT" | "ANDROID" | "JAVASCRIPT") ) -> _ExportBundleResponseSuccess | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ExportBundleResponseSuccess interface _ExportProjectResponseSuccess include ::Seahorse::Client::_ResponseSuccess[Types::ExportProjectResult] def download_url: () -> ::String def share_url: () -> ::String def snapshot_id: () -> ::String end # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mobile/Client.html#export_project-instance_method def export_project: ( project_id: ::String ) -> _ExportProjectResponseSuccess | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ExportProjectResponseSuccess interface _ListBundlesResponseSuccess include ::Seahorse::Client::_ResponseSuccess[Types::ListBundlesResult] def bundle_list: () -> ::Array[Types::BundleDetails] def next_token: () -> ::String end # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mobile/Client.html#list_bundles-instance_method def list_bundles: ( ?max_results: ::Integer, ?next_token: ::String ) -> _ListBundlesResponseSuccess | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBundlesResponseSuccess interface _ListProjectsResponseSuccess include ::Seahorse::Client::_ResponseSuccess[Types::ListProjectsResult] def projects: () -> ::Array[Types::ProjectSummary] def next_token: () -> ::String end # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mobile/Client.html#list_projects-instance_method def list_projects: ( ?max_results: ::Integer, ?next_token: ::String ) -> _ListProjectsResponseSuccess | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListProjectsResponseSuccess interface _UpdateProjectResponseSuccess include ::Seahorse::Client::_ResponseSuccess[Types::UpdateProjectResult] def details: () -> Types::ProjectDetails end # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mobile/Client.html#update_project-instance_method def update_project: ( ?contents: ::String, project_id: ::String ) -> _UpdateProjectResponseSuccess | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateProjectResponseSuccess end end end