gooddata 1.0.0-java
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.
- checksums.yaml +7 -0
- data/.document +5 -0
- data/.editorconfig +12 -0
- data/.flayignore +6 -0
- data/.gitignore +38 -0
- data/.pronto.yml +3 -0
- data/.rspec +5 -0
- data/.rubocop.yml +101 -0
- data/.travis.yml +9 -0
- data/.yardopts +22 -0
- data/CHANGELOG.md +272 -0
- data/CLI.md +435 -0
- data/CONTRIBUTING.md +38 -0
- data/DEPENDENCIES.md +880 -0
- data/Dockerfile.jruby +17 -0
- data/Dockerfile.ruby +19 -0
- data/Gemfile +4 -0
- data/Guardfile +5 -0
- data/LICENSE +22 -0
- data/LICENSE.rb +5 -0
- data/README.md +78 -0
- data/Rakefile +204 -0
- data/TODO.md +32 -0
- data/authors.sh +4 -0
- data/bin/gooddata +7 -0
- data/ci.rake +47 -0
- data/dependency_decisions.yml +104 -0
- data/docker-compose.yml +34 -0
- data/gooddata +9 -0
- data/gooddata.gemspec +72 -0
- data/lib/gooddata.rb +34 -0
- data/lib/gooddata/app/app.rb +16 -0
- data/lib/gooddata/bricks/base_downloader.rb +86 -0
- data/lib/gooddata/bricks/brick.rb +37 -0
- data/lib/gooddata/bricks/bricks.rb +17 -0
- data/lib/gooddata/bricks/middleware/aws_middleware.rb +41 -0
- data/lib/gooddata/bricks/middleware/base_middleware.rb +57 -0
- data/lib/gooddata/bricks/middleware/bench_middleware.rb +25 -0
- data/lib/gooddata/bricks/middleware/bulk_salesforce_middleware.rb +37 -0
- data/lib/gooddata/bricks/middleware/decode_params_middleware.rb +21 -0
- data/lib/gooddata/bricks/middleware/dwh_middleware.rb +41 -0
- data/lib/gooddata/bricks/middleware/fs_download_middleware.rb +48 -0
- data/lib/gooddata/bricks/middleware/fs_upload_middleware.rb +36 -0
- data/lib/gooddata/bricks/middleware/gooddata_middleware.rb +112 -0
- data/lib/gooddata/bricks/middleware/logger_middleware.rb +33 -0
- data/lib/gooddata/bricks/middleware/middleware.rb +12 -0
- data/lib/gooddata/bricks/middleware/restforce_middleware.rb +58 -0
- data/lib/gooddata/bricks/middleware/stdout_middleware.rb +23 -0
- data/lib/gooddata/bricks/middleware/twitter_middleware.rb +29 -0
- data/lib/gooddata/bricks/middleware/undot_params_middleware.rb +37 -0
- data/lib/gooddata/bricks/pipeline.rb +25 -0
- data/lib/gooddata/bricks/utils.rb +18 -0
- data/lib/gooddata/cli/cli.rb +27 -0
- data/lib/gooddata/cli/commands/auth_cmd.rb +29 -0
- data/lib/gooddata/cli/commands/domain_cmd.rb +28 -0
- data/lib/gooddata/cli/commands/project_cmd.rb +28 -0
- data/lib/gooddata/cli/hooks.rb +56 -0
- data/lib/gooddata/cli/shared.rb +66 -0
- data/lib/gooddata/cli/terminal.rb +20 -0
- data/lib/gooddata/client.rb +67 -0
- data/lib/gooddata/commands/api.rb +64 -0
- data/lib/gooddata/commands/auth.rb +107 -0
- data/lib/gooddata/commands/base.rb +12 -0
- data/lib/gooddata/commands/commands.rb +12 -0
- data/lib/gooddata/commands/datasets.rb +148 -0
- data/lib/gooddata/commands/datawarehouse.rb +20 -0
- data/lib/gooddata/commands/domain.rb +40 -0
- data/lib/gooddata/commands/process.rb +67 -0
- data/lib/gooddata/commands/project.rb +144 -0
- data/lib/gooddata/commands/projects.rb +20 -0
- data/lib/gooddata/commands/role.rb +36 -0
- data/lib/gooddata/commands/runners.rb +47 -0
- data/lib/gooddata/commands/scaffold.rb +69 -0
- data/lib/gooddata/commands/user.rb +39 -0
- data/lib/gooddata/connection.rb +127 -0
- data/lib/gooddata/core/core.rb +12 -0
- data/lib/gooddata/core/logging.rb +105 -0
- data/lib/gooddata/core/nil_logger.rb +32 -0
- data/lib/gooddata/core/project.rb +74 -0
- data/lib/gooddata/core/rest.rb +149 -0
- data/lib/gooddata/core/user.rb +20 -0
- data/lib/gooddata/data/data.rb +12 -0
- data/lib/gooddata/data/guesser.rb +122 -0
- data/lib/gooddata/exceptions/attr_element_not_found.rb +16 -0
- data/lib/gooddata/exceptions/command_failed.rb +11 -0
- data/lib/gooddata/exceptions/exceptions.rb +12 -0
- data/lib/gooddata/exceptions/execution_limit_exceeded.rb +13 -0
- data/lib/gooddata/exceptions/export_clone.rb +4 -0
- data/lib/gooddata/exceptions/filter_maqlization.rb +16 -0
- data/lib/gooddata/exceptions/import_clone.rb +4 -0
- data/lib/gooddata/exceptions/malformed_user.rb +15 -0
- data/lib/gooddata/exceptions/maql_execution.rb +16 -0
- data/lib/gooddata/exceptions/no_project_error.rb +19 -0
- data/lib/gooddata/exceptions/object_migration.rb +32 -0
- data/lib/gooddata/exceptions/project_not_found.rb +13 -0
- data/lib/gooddata/exceptions/segment_not_empty.rb +18 -0
- data/lib/gooddata/exceptions/uncomputable_report.rb +13 -0
- data/lib/gooddata/exceptions/user_in_different_domain.rb +15 -0
- data/lib/gooddata/exceptions/validation_error.rb +16 -0
- data/lib/gooddata/extensions/big_decimal.rb +17 -0
- data/lib/gooddata/extensions/class.rb +11 -0
- data/lib/gooddata/extensions/enumerable.rb +39 -0
- data/lib/gooddata/extensions/extensions.rb +10 -0
- data/lib/gooddata/extensions/false.rb +23 -0
- data/lib/gooddata/extensions/hash.rb +49 -0
- data/lib/gooddata/extensions/integer.rb +5 -0
- data/lib/gooddata/extensions/nil.rb +19 -0
- data/lib/gooddata/extensions/numeric.rb +15 -0
- data/lib/gooddata/extensions/object.rb +31 -0
- data/lib/gooddata/extensions/string.rb +7 -0
- data/lib/gooddata/extensions/symbol.rb +15 -0
- data/lib/gooddata/extensions/true.rb +23 -0
- data/lib/gooddata/extract.rb +21 -0
- data/lib/gooddata/goodzilla/goodzilla.rb +160 -0
- data/lib/gooddata/helpers/auth_helpers.rb +75 -0
- data/lib/gooddata/helpers/csv_helper.rb +61 -0
- data/lib/gooddata/helpers/data_helper.rb +129 -0
- data/lib/gooddata/helpers/erb_helper.rb +23 -0
- data/lib/gooddata/helpers/global_helpers.rb +266 -0
- data/lib/gooddata/helpers/global_helpers_params.rb +292 -0
- data/lib/gooddata/helpers/helpers.rb +10 -0
- data/lib/gooddata/lcm/actions/actions.rb +12 -0
- data/lib/gooddata/lcm/actions/apply_custom_maql.rb +80 -0
- data/lib/gooddata/lcm/actions/associate_clients.rb +87 -0
- data/lib/gooddata/lcm/actions/base_action.rb +23 -0
- data/lib/gooddata/lcm/actions/collect_ca_metrics.rb +53 -0
- data/lib/gooddata/lcm/actions/collect_client_projects.rb +78 -0
- data/lib/gooddata/lcm/actions/collect_clients.rb +128 -0
- data/lib/gooddata/lcm/actions/collect_data_product.rb +57 -0
- data/lib/gooddata/lcm/actions/collect_dynamic_schedule_params.rb +62 -0
- data/lib/gooddata/lcm/actions/collect_ldm_objects.rb +56 -0
- data/lib/gooddata/lcm/actions/collect_meta.rb +88 -0
- data/lib/gooddata/lcm/actions/collect_segment_clients.rb +113 -0
- data/lib/gooddata/lcm/actions/collect_segments.rb +72 -0
- data/lib/gooddata/lcm/actions/collect_tagged_objects.rb +80 -0
- data/lib/gooddata/lcm/actions/collect_users_brick_users.rb +46 -0
- data/lib/gooddata/lcm/actions/create_segment_masters.rb +160 -0
- data/lib/gooddata/lcm/actions/ensure_data_product.rb +53 -0
- data/lib/gooddata/lcm/actions/ensure_release_table.rb +53 -0
- data/lib/gooddata/lcm/actions/ensure_segments.rb +32 -0
- data/lib/gooddata/lcm/actions/ensure_technical_users_domain.rb +70 -0
- data/lib/gooddata/lcm/actions/ensure_technical_users_project.rb +83 -0
- data/lib/gooddata/lcm/actions/execute_schedules.rb +128 -0
- data/lib/gooddata/lcm/actions/hello_world.rb +41 -0
- data/lib/gooddata/lcm/actions/import_object_collections.rb +60 -0
- data/lib/gooddata/lcm/actions/print_actions.rb +58 -0
- data/lib/gooddata/lcm/actions/print_modes.rb +69 -0
- data/lib/gooddata/lcm/actions/print_types.rb +52 -0
- data/lib/gooddata/lcm/actions/provision_clients.rb +89 -0
- data/lib/gooddata/lcm/actions/purge_clients.rb +58 -0
- data/lib/gooddata/lcm/actions/rename_existing_client_projects.rb +70 -0
- data/lib/gooddata/lcm/actions/segments_filter.rb +50 -0
- data/lib/gooddata/lcm/actions/synchronize_attribute_drillpaths.rb +64 -0
- data/lib/gooddata/lcm/actions/synchronize_cas.rb +72 -0
- data/lib/gooddata/lcm/actions/synchronize_clients.rb +94 -0
- data/lib/gooddata/lcm/actions/synchronize_color_palette.rb +67 -0
- data/lib/gooddata/lcm/actions/synchronize_etls_in_segment.rb +155 -0
- data/lib/gooddata/lcm/actions/synchronize_label_types.rb +64 -0
- data/lib/gooddata/lcm/actions/synchronize_ldm.rb +82 -0
- data/lib/gooddata/lcm/actions/synchronize_meta.rb +52 -0
- data/lib/gooddata/lcm/actions/synchronize_new_segments.rb +61 -0
- data/lib/gooddata/lcm/actions/synchronize_processes.rb +66 -0
- data/lib/gooddata/lcm/actions/synchronize_schedules.rb +91 -0
- data/lib/gooddata/lcm/actions/synchronize_tag_objects.rb +64 -0
- data/lib/gooddata/lcm/actions/synchronize_user_filters.rb +210 -0
- data/lib/gooddata/lcm/actions/synchronize_user_groups.rb +53 -0
- data/lib/gooddata/lcm/actions/synchronize_users.rb +336 -0
- data/lib/gooddata/lcm/actions/update_release_table.rb +77 -0
- data/lib/gooddata/lcm/data/create_lcm_release.sql.erb +6 -0
- data/lib/gooddata/lcm/data/insert_into_lcm_release.sql.erb +11 -0
- data/lib/gooddata/lcm/data/select_from_lcm_release.sql.erb +8 -0
- data/lib/gooddata/lcm/data/update_lcm_release.sql.erb +7 -0
- data/lib/gooddata/lcm/dsl/dsl.rb +50 -0
- data/lib/gooddata/lcm/dsl/params_dsl.rb +61 -0
- data/lib/gooddata/lcm/dsl/type_dsl.rb +62 -0
- data/lib/gooddata/lcm/helpers/check_helper.rb +41 -0
- data/lib/gooddata/lcm/helpers/helpers.rb +12 -0
- data/lib/gooddata/lcm/helpers/tags_helper.rb +36 -0
- data/lib/gooddata/lcm/lcm.rb +325 -0
- data/lib/gooddata/lcm/lcm2.rb +400 -0
- data/lib/gooddata/lcm/types/base_type.rb +29 -0
- data/lib/gooddata/lcm/types/class/ads_client.rb +35 -0
- data/lib/gooddata/lcm/types/class/class.rb +21 -0
- data/lib/gooddata/lcm/types/class/gd_client.rb +35 -0
- data/lib/gooddata/lcm/types/class/types.rb +12 -0
- data/lib/gooddata/lcm/types/complex/complex.rb +33 -0
- data/lib/gooddata/lcm/types/complex/release_query.rb +35 -0
- data/lib/gooddata/lcm/types/complex/segment.rb +40 -0
- data/lib/gooddata/lcm/types/complex/synchronization_info.rb +35 -0
- data/lib/gooddata/lcm/types/complex/tokens.rb +31 -0
- data/lib/gooddata/lcm/types/complex/types.rb +12 -0
- data/lib/gooddata/lcm/types/complex/update_preference.rb +38 -0
- data/lib/gooddata/lcm/types/complex/users_brick_config.rb +32 -0
- data/lib/gooddata/lcm/types/param.rb +16 -0
- data/lib/gooddata/lcm/types/scalar/bool.rb +22 -0
- data/lib/gooddata/lcm/types/scalar/hash.rb +22 -0
- data/lib/gooddata/lcm/types/scalar/integer.rb +22 -0
- data/lib/gooddata/lcm/types/scalar/object.rb +22 -0
- data/lib/gooddata/lcm/types/scalar/string.rb +22 -0
- data/lib/gooddata/lcm/types/scalar/types.rb +12 -0
- data/lib/gooddata/lcm/types/special/array.rb +33 -0
- data/lib/gooddata/lcm/types/special/enum.rb +15 -0
- data/lib/gooddata/lcm/types/special/types.rb +12 -0
- data/lib/gooddata/lcm/types/types.rb +12 -0
- data/lib/gooddata/lcm/user_bricks_helper.rb +32 -0
- data/lib/gooddata/mixins/author.rb +26 -0
- data/lib/gooddata/mixins/content_getter.rb +15 -0
- data/lib/gooddata/mixins/content_property_reader.rb +17 -0
- data/lib/gooddata/mixins/content_property_writer.rb +17 -0
- data/lib/gooddata/mixins/contributor.rb +20 -0
- data/lib/gooddata/mixins/data_getter.rb +15 -0
- data/lib/gooddata/mixins/data_property_reader.rb +19 -0
- data/lib/gooddata/mixins/data_property_writer.rb +19 -0
- data/lib/gooddata/mixins/inspector.rb +53 -0
- data/lib/gooddata/mixins/is_attribute.rb +17 -0
- data/lib/gooddata/mixins/is_dimension.rb +17 -0
- data/lib/gooddata/mixins/is_fact.rb +17 -0
- data/lib/gooddata/mixins/is_folder.rb +11 -0
- data/lib/gooddata/mixins/is_label.rb +19 -0
- data/lib/gooddata/mixins/links.rb +15 -0
- data/lib/gooddata/mixins/md_finders.rb +79 -0
- data/lib/gooddata/mixins/md_grantees.rb +42 -0
- data/lib/gooddata/mixins/md_id_to_uri.rb +39 -0
- data/lib/gooddata/mixins/md_json.rb +15 -0
- data/lib/gooddata/mixins/md_lock.rb +87 -0
- data/lib/gooddata/mixins/md_object_id.rb +15 -0
- data/lib/gooddata/mixins/md_object_indexer.rb +74 -0
- data/lib/gooddata/mixins/md_object_query.rb +134 -0
- data/lib/gooddata/mixins/md_relations.rb +43 -0
- data/lib/gooddata/mixins/meta_getter.rb +17 -0
- data/lib/gooddata/mixins/meta_property_reader.rb +19 -0
- data/lib/gooddata/mixins/meta_property_writer.rb +19 -0
- data/lib/gooddata/mixins/mixins.rb +19 -0
- data/lib/gooddata/mixins/not_attribute.rb +17 -0
- data/lib/gooddata/mixins/not_exportable.rb +15 -0
- data/lib/gooddata/mixins/not_fact.rb +17 -0
- data/lib/gooddata/mixins/not_group.rb +17 -0
- data/lib/gooddata/mixins/not_label.rb +19 -0
- data/lib/gooddata/mixins/not_metric.rb +19 -0
- data/lib/gooddata/mixins/obj_id.rb +15 -0
- data/lib/gooddata/mixins/rest_getters.rb +17 -0
- data/lib/gooddata/mixins/rest_resource.rb +47 -0
- data/lib/gooddata/mixins/root_key_getter.rb +15 -0
- data/lib/gooddata/mixins/root_key_setter.rb +15 -0
- data/lib/gooddata/mixins/timestamps.rb +19 -0
- data/lib/gooddata/mixins/to_json.rb +11 -0
- data/lib/gooddata/mixins/uri_getter.rb +9 -0
- data/lib/gooddata/models/ads_output_stage.rb +85 -0
- data/lib/gooddata/models/automated_data_distribution.rb +36 -0
- data/lib/gooddata/models/blueprint/anchor_field.rb +65 -0
- data/lib/gooddata/models/blueprint/attribute_field.rb +45 -0
- data/lib/gooddata/models/blueprint/blueprint.rb +11 -0
- data/lib/gooddata/models/blueprint/blueprint_field.rb +70 -0
- data/lib/gooddata/models/blueprint/dashboard_builder.rb +30 -0
- data/lib/gooddata/models/blueprint/dataset_blueprint.rb +455 -0
- data/lib/gooddata/models/blueprint/date_dimension.rb +20 -0
- data/lib/gooddata/models/blueprint/fact_field.rb +20 -0
- data/lib/gooddata/models/blueprint/label_field.rb +47 -0
- data/lib/gooddata/models/blueprint/project_blueprint.rb +791 -0
- data/lib/gooddata/models/blueprint/project_builder.rb +103 -0
- data/lib/gooddata/models/blueprint/reference_field.rb +43 -0
- data/lib/gooddata/models/blueprint/schema_blueprint.rb +160 -0
- data/lib/gooddata/models/blueprint/schema_builder.rb +89 -0
- data/lib/gooddata/models/blueprint/to_manifest.rb +185 -0
- data/lib/gooddata/models/blueprint/to_wire.rb +173 -0
- data/lib/gooddata/models/channel_configuration.rb +112 -0
- data/lib/gooddata/models/client.rb +236 -0
- data/lib/gooddata/models/client_synchronization_result.rb +31 -0
- data/lib/gooddata/models/client_synchronization_result_details.rb +41 -0
- data/lib/gooddata/models/data_product.rb +149 -0
- data/lib/gooddata/models/datawarehouse.rb +114 -0
- data/lib/gooddata/models/domain.rb +505 -0
- data/lib/gooddata/models/execution.rb +115 -0
- data/lib/gooddata/models/execution_detail.rb +81 -0
- data/lib/gooddata/models/from_wire.rb +173 -0
- data/lib/gooddata/models/invitation.rb +75 -0
- data/lib/gooddata/models/links.rb +50 -0
- data/lib/gooddata/models/membership.rb +441 -0
- data/lib/gooddata/models/metadata.rb +324 -0
- data/lib/gooddata/models/metadata/attribute.rb +155 -0
- data/lib/gooddata/models/metadata/dashboard.rb +120 -0
- data/lib/gooddata/models/metadata/dashboard/dashboard_item.rb +76 -0
- data/lib/gooddata/models/metadata/dashboard/filter_apply_item.rb +37 -0
- data/lib/gooddata/models/metadata/dashboard/filter_item.rb +64 -0
- data/lib/gooddata/models/metadata/dashboard/geo_chart_item.rb +56 -0
- data/lib/gooddata/models/metadata/dashboard/headline_item.rb +56 -0
- data/lib/gooddata/models/metadata/dashboard/iframe_item.rb +46 -0
- data/lib/gooddata/models/metadata/dashboard/report_item.rb +92 -0
- data/lib/gooddata/models/metadata/dashboard/text_item.rb +55 -0
- data/lib/gooddata/models/metadata/dashboard_tab.rb +141 -0
- data/lib/gooddata/models/metadata/dataset.rb +67 -0
- data/lib/gooddata/models/metadata/dimension.rb +57 -0
- data/lib/gooddata/models/metadata/fact.rb +51 -0
- data/lib/gooddata/models/metadata/folder.rb +49 -0
- data/lib/gooddata/models/metadata/label.rb +128 -0
- data/lib/gooddata/models/metadata/metadata.rb +12 -0
- data/lib/gooddata/models/metadata/metric.rb +206 -0
- data/lib/gooddata/models/metadata/report.rb +268 -0
- data/lib/gooddata/models/metadata/report_definition.rb +272 -0
- data/lib/gooddata/models/metadata/scheduled_mail.rb +277 -0
- data/lib/gooddata/models/metadata/scheduled_mail/dashboard_attachment.rb +62 -0
- data/lib/gooddata/models/metadata/scheduled_mail/report_attachment.rb +64 -0
- data/lib/gooddata/models/metadata/variable.rb +96 -0
- data/lib/gooddata/models/model.rb +293 -0
- data/lib/gooddata/models/models.rb +12 -0
- data/lib/gooddata/models/module_constants.rb +31 -0
- data/lib/gooddata/models/notification_rule.rb +113 -0
- data/lib/gooddata/models/process.rb +371 -0
- data/lib/gooddata/models/profile.rb +451 -0
- data/lib/gooddata/models/project.rb +2030 -0
- data/lib/gooddata/models/project_creator.rb +209 -0
- data/lib/gooddata/models/project_log_formatter.rb +204 -0
- data/lib/gooddata/models/project_metadata.rb +67 -0
- data/lib/gooddata/models/project_role.rb +79 -0
- data/lib/gooddata/models/report_data_result.rb +270 -0
- data/lib/gooddata/models/schedule.rb +538 -0
- data/lib/gooddata/models/segment.rb +274 -0
- data/lib/gooddata/models/style_setting.rb +62 -0
- data/lib/gooddata/models/subscription.rb +188 -0
- data/lib/gooddata/models/tab_builder.rb +27 -0
- data/lib/gooddata/models/user_filters/mandatory_user_filter.rb +76 -0
- data/lib/gooddata/models/user_filters/user_filter.rb +101 -0
- data/lib/gooddata/models/user_filters/user_filter_builder.rb +553 -0
- data/lib/gooddata/models/user_filters/user_filters.rb +13 -0
- data/lib/gooddata/models/user_filters/variable_user_filter.rb +33 -0
- data/lib/gooddata/models/user_group.rb +250 -0
- data/lib/gooddata/rest/README.md +37 -0
- data/lib/gooddata/rest/client.rb +396 -0
- data/lib/gooddata/rest/connection.rb +776 -0
- data/lib/gooddata/rest/object.rb +69 -0
- data/lib/gooddata/rest/object_factory.rb +51 -0
- data/lib/gooddata/rest/resource.rb +27 -0
- data/lib/gooddata/rest/rest.rb +24 -0
- data/lib/gooddata/version.rb +23 -0
- data/lib/templates/bricks/brick.rb.erb +7 -0
- data/lib/templates/bricks/main.rb.erb +5 -0
- data/lib/templates/project/Goodfile.erb +4 -0
- data/lib/templates/project/data/commits.csv +4 -0
- data/lib/templates/project/data/devs.csv +4 -0
- data/lib/templates/project/data/repos.csv +3 -0
- data/lib/templates/project/model/model.rb.erb +20 -0
- data/spec/.rubocop.yml +16 -0
- data/spec/bricks/bricks_spec.rb +110 -0
- data/spec/bricks/default-config.json +8 -0
- data/spec/data/.gooddata +4 -0
- data/spec/data/blueprints/additional_dataset_module.json +32 -0
- data/spec/data/blueprints/attribute_sort_order_blueprint.json +72 -0
- data/spec/data/blueprints/big_blueprint_not_pruned.json +2079 -0
- data/spec/data/blueprints/invalid_blueprint.json +103 -0
- data/spec/data/blueprints/m_n_model.json +104 -0
- data/spec/data/blueprints/model_module.json +25 -0
- data/spec/data/blueprints/test_blueprint.json +39 -0
- data/spec/data/blueprints/test_project_model_spec.json +106 -0
- data/spec/data/cc/data/source/commits.csv +4 -0
- data/spec/data/cc/data/source/devs.csv +4 -0
- data/spec/data/cc/data/source/repos.csv +3 -0
- data/spec/data/cc/devel.prm +0 -0
- data/spec/data/cc/graph/graph.grf +11 -0
- data/spec/data/cc/workspace.prm +19 -0
- data/spec/data/column_based_permissions.csv +7 -0
- data/spec/data/column_based_permissions2.csv +6 -0
- data/spec/data/dynamic_schedule_params_table.csv +7 -0
- data/spec/data/gd_gse_data_blueprint.json +1371 -0
- data/spec/data/gd_gse_data_manifest.json +1424 -0
- data/spec/data/gd_gse_data_model.json +1772 -0
- data/spec/data/gooddata_version_process/gooddata_version.rb +9 -0
- data/spec/data/gooddata_version_process/gooddata_version.zip +0 -0
- data/spec/data/hello_world_process/hello_world.rb +9 -0
- data/spec/data/hello_world_process/hello_world.zip +0 -0
- data/spec/data/line_based_permissions.csv +3 -0
- data/spec/data/manifests/test_blueprint.json +32 -0
- data/spec/data/manifests/test_project.json +107 -0
- data/spec/data/reports/left_attr_report.json +108 -0
- data/spec/data/reports/metric_only_one_line.json +83 -0
- data/spec/data/reports/report_1.json +197 -0
- data/spec/data/reports/top_attr_report.json +108 -0
- data/spec/data/ruby_params_process/ruby_params.rb +9 -0
- data/spec/data/ruby_process/deep_files/deep_stuff.txt +1 -0
- data/spec/data/ruby_process/process.rb +8 -0
- data/spec/data/ruby_process/stuff.txt +1 -0
- data/spec/data/superfluous_titles_view.json +81 -0
- data/spec/data/test-ci-data.csv +2 -0
- data/spec/data/users.csv +12 -0
- data/spec/data/wire_models/attribute_sort_by_model.json +73 -0
- data/spec/data/wire_models/model_view.json +1775 -0
- data/spec/data/wire_models/nu_model.json +3046 -0
- data/spec/data/wire_models/test_blueprint.json +66 -0
- data/spec/data/wire_test_project.json +150 -0
- data/spec/data/workspace_table.csv +3 -0
- data/spec/environment/default.rb +43 -0
- data/spec/environment/development.rb +32 -0
- data/spec/environment/environment.rb +38 -0
- data/spec/environment/production.rb +27 -0
- data/spec/environment/staging.rb +33 -0
- data/spec/environment/testing.rb +32 -0
- data/spec/helpers/blueprint_helper.rb +27 -0
- data/spec/helpers/cli_helper.rb +38 -0
- data/spec/helpers/connection_helper.rb +43 -0
- data/spec/helpers/crypto_helper.rb +19 -0
- data/spec/helpers/csv_helper.rb +20 -0
- data/spec/helpers/process_helper.rb +35 -0
- data/spec/helpers/project_helper.rb +74 -0
- data/spec/helpers/schedule_helper.rb +33 -0
- data/spec/helpers/spec_helper.rb +17 -0
- data/spec/integration/ads_output_stage_spec.rb +45 -0
- data/spec/integration/blueprint_updates_spec.rb +107 -0
- data/spec/integration/blueprint_with_ca_spec.rb +56 -0
- data/spec/integration/blueprint_with_grain_spec.rb +74 -0
- data/spec/integration/channel_configuration_spec.rb +67 -0
- data/spec/integration/clients_spec.rb +164 -0
- data/spec/integration/command_datawarehouse_spec.rb +45 -0
- data/spec/integration/command_projects_spec.rb +32 -0
- data/spec/integration/commands/command_projects_spec.rb +22 -0
- data/spec/integration/core/connection_spec.rb +56 -0
- data/spec/integration/core/logging_spec.rb +130 -0
- data/spec/integration/core/project_spec.rb +54 -0
- data/spec/integration/create_from_template_spec.rb +29 -0
- data/spec/integration/create_project_spec.rb +27 -0
- data/spec/integration/date_dim_switch_spec.rb +150 -0
- data/spec/integration/deprecated_load_spec.rb +60 -0
- data/spec/integration/full_process_schedule_spec.rb +367 -0
- data/spec/integration/full_project_spec.rb +592 -0
- data/spec/integration/helpers_spec.rb +16 -0
- data/spec/integration/lcm_spec.rb +54 -0
- data/spec/integration/mixins/id_to_uri_spec.rb +44 -0
- data/spec/integration/models/data_product_spec.rb +71 -0
- data/spec/integration/models/domain_spec.rb +162 -0
- data/spec/integration/models/invitation_spec.rb +17 -0
- data/spec/integration/models/membership_spec.rb +127 -0
- data/spec/integration/models/metadata/report_spec.rb +54 -0
- data/spec/integration/models/params_spec.rb +118 -0
- data/spec/integration/models/profile_spec.rb +210 -0
- data/spec/integration/models/project_role_spec.rb +94 -0
- data/spec/integration/models/project_spec.rb +225 -0
- data/spec/integration/models/schedule_spec.rb +485 -0
- data/spec/integration/models/unit_project_spec.rb +130 -0
- data/spec/integration/over_to_user_filters_spec.rb +98 -0
- data/spec/integration/partial_md_export_import_spec.rb +41 -0
- data/spec/integration/project_spec.rb +381 -0
- data/spec/integration/rest_spec.rb +214 -0
- data/spec/integration/schedule_spec.rb +613 -0
- data/spec/integration/segments_spec.rb +100 -0
- data/spec/integration/subscription_spec.rb +88 -0
- data/spec/integration/urn_date_dim_spec.rb +53 -0
- data/spec/integration/user_filters_spec.rb +306 -0
- data/spec/integration/user_group_spec.rb +147 -0
- data/spec/integration/variables_spec.rb +189 -0
- data/spec/logging_in_logging_out_spec.rb +91 -0
- data/spec/spec_helper.rb +66 -0
- data/spec/unit/actions/associate_clients_spec.rb +47 -0
- data/spec/unit/actions/collect_client_projects_spec.rb +47 -0
- data/spec/unit/actions/collect_clients_spec.rb +65 -0
- data/spec/unit/actions/collect_data_product_spec.rb +56 -0
- data/spec/unit/actions/collect_dynamic_schedule_params_spec.rb +56 -0
- data/spec/unit/actions/collect_meta_spec.rb +88 -0
- data/spec/unit/actions/collect_segment_clients_spec.rb +81 -0
- data/spec/unit/actions/collect_tagged_objects_spec.rb +126 -0
- data/spec/unit/actions/collect_users_brick_users_spec.rb +36 -0
- data/spec/unit/actions/create_segment_masters_spec.rb +64 -0
- data/spec/unit/actions/ensure_data_product_spec.rb +38 -0
- data/spec/unit/actions/ensure_technical_users_domain_spec.rb +51 -0
- data/spec/unit/actions/ensure_technical_users_project_spec.rb +72 -0
- data/spec/unit/actions/execute_schedules_spec.rb +94 -0
- data/spec/unit/actions/provision_clients_spec.rb +45 -0
- data/spec/unit/actions/purge_clients_spec.rb +47 -0
- data/spec/unit/actions/rename_existing_client_projects_spec.rb +54 -0
- data/spec/unit/actions/segments_filter_spec.rb +46 -0
- data/spec/unit/actions/shared_examples_for_user_actions.rb +26 -0
- data/spec/unit/actions/synchronize_cas_spec.rb +58 -0
- data/spec/unit/actions/synchronize_etls_in_segment_spec.rb +212 -0
- data/spec/unit/actions/synchronize_ldm_spec.rb +57 -0
- data/spec/unit/actions/synchronize_user_filters_spec.rb +146 -0
- data/spec/unit/actions/synchronize_user_groups_spec.rb +49 -0
- data/spec/unit/actions/synchronize_users_spec.rb +134 -0
- data/spec/unit/bricks/bricks_spec.rb +34 -0
- data/spec/unit/bricks/middleware/aws_middelware_spec.rb +98 -0
- data/spec/unit/bricks/middleware/bench_middleware_spec.rb +15 -0
- data/spec/unit/bricks/middleware/bulk_salesforce_middleware_spec.rb +15 -0
- data/spec/unit/bricks/middleware/gooddata_middleware_spec.rb +15 -0
- data/spec/unit/bricks/middleware/logger_middleware_spec.rb +30 -0
- data/spec/unit/bricks/middleware/restforce_middleware_spec.rb +15 -0
- data/spec/unit/bricks/middleware/stdout_middleware_spec.rb +15 -0
- data/spec/unit/bricks/middleware/twitter_middleware_spec.rb +15 -0
- data/spec/unit/cli/cli_spec.rb +17 -0
- data/spec/unit/cli/commands/cmd_auth_spec.rb +17 -0
- data/spec/unit/core/nil_logger_spec.rb +13 -0
- data/spec/unit/extensions/hash_spec.rb +22 -0
- data/spec/unit/godzilla/goodzilla_spec.rb +74 -0
- data/spec/unit/helpers/csv_helper_spec.rb +22 -0
- data/spec/unit/helpers/data_helper_spec.rb +67 -0
- data/spec/unit/helpers/global_helpers_spec.rb +264 -0
- data/spec/unit/helpers_spec.rb +254 -0
- data/spec/unit/lcm/user_bricks_helper_spec.rb +58 -0
- data/spec/unit/models/blueprint/attribute_sort_by_spec.rb +20 -0
- data/spec/unit/models/blueprint/attributes_spec.rb +28 -0
- data/spec/unit/models/blueprint/dataset_spec.rb +120 -0
- data/spec/unit/models/blueprint/labels_spec.rb +43 -0
- data/spec/unit/models/blueprint/project_blueprint_spec.rb +642 -0
- data/spec/unit/models/blueprint/reference_spec.rb +28 -0
- data/spec/unit/models/blueprint/schema_builder_spec.rb +36 -0
- data/spec/unit/models/blueprint/to_wire_spec.rb +195 -0
- data/spec/unit/models/execution_spec.rb +109 -0
- data/spec/unit/models/from_wire_spec.rb +301 -0
- data/spec/unit/models/metadata_spec.rb +140 -0
- data/spec/unit/models/metric_spec.rb +129 -0
- data/spec/unit/models/model_spec.rb +77 -0
- data/spec/unit/models/project_creator_spec.rb +90 -0
- data/spec/unit/models/project_spec.rb +94 -0
- data/spec/unit/models/report_result_data_spec.rb +194 -0
- data/spec/unit/models/to_manifest_spec.rb +136 -0
- data/spec/unit/models/user_filters/user_filter_builder_spec.rb +110 -0
- data/spec/unit/models/user_filters_spec.rb +95 -0
- data/spec/unit/models/variable_spec.rb +280 -0
- data/spec/unit/rest/polling_spec.rb +101 -0
- data/spec/unit/rest/resource_spec.rb +10 -0
- data/yard-server.sh +3 -0
- metadata +1207 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 20618bb2d0cc061c8f3b1051469a49101b64bdde
|
|
4
|
+
data.tar.gz: 3ec39e14522ef3483079de3a889970d38ac40ab6
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 4f11e6548c04ac738f752f094b0d44aed4f0488a0e89171060c2f7d0724617d1158e3722ed1e99ebfae27207c85544f64de81029a9791fc1568449349716bf3f
|
|
7
|
+
data.tar.gz: 9d56099900a534da48a21c828594baf94ed4e26e3a7ef5ff3623810784fef1369384a085d860d68d7b28cd14d5261027f4d4abfc47b9b65a3eb0e8a4f01c974f
|
data/.document
ADDED
data/.editorconfig
ADDED
data/.flayignore
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
spec/unit/actions/ensure_technical_users_domain_spec.rb
|
|
2
|
+
spec/unit/actions/ensure_technical_users_project_spec.rb
|
|
3
|
+
spec/unit/actions/synchronize_cas_spec.rb
|
|
4
|
+
lib/gooddata/lcm/actions/collect_data_product.rb
|
|
5
|
+
# TMA-652
|
|
6
|
+
lib/gooddata/lcm/actions/synchronize_user_filters.rb
|
data/.gitignore
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
## MAC OS
|
|
2
|
+
.DS_Store
|
|
3
|
+
|
|
4
|
+
## TEXTMATE
|
|
5
|
+
*.tmproj
|
|
6
|
+
tmtags
|
|
7
|
+
|
|
8
|
+
## EMACS
|
|
9
|
+
*~
|
|
10
|
+
\#*
|
|
11
|
+
.\#*
|
|
12
|
+
|
|
13
|
+
## VIM
|
|
14
|
+
*.swp
|
|
15
|
+
.tags*
|
|
16
|
+
|
|
17
|
+
## IDEA
|
|
18
|
+
.idea/
|
|
19
|
+
|
|
20
|
+
## PROJECT::GENERAL
|
|
21
|
+
.bundle
|
|
22
|
+
coverage
|
|
23
|
+
/rdoc
|
|
24
|
+
/doc
|
|
25
|
+
pkg
|
|
26
|
+
|
|
27
|
+
## PROJECT::SPECIFIC
|
|
28
|
+
Gemfile.lock
|
|
29
|
+
|
|
30
|
+
# YARD
|
|
31
|
+
.yardoc/
|
|
32
|
+
|
|
33
|
+
# Local scripts
|
|
34
|
+
.scripts/
|
|
35
|
+
|
|
36
|
+
# Temp files
|
|
37
|
+
tmp/
|
|
38
|
+
junit.xml
|
data/.pronto.yml
ADDED
data/.rspec
ADDED
data/.rubocop.yml
ADDED
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
AllCops:
|
|
2
|
+
DisplayCopNames: true
|
|
3
|
+
|
|
4
|
+
AbcSize:
|
|
5
|
+
Enabled: false
|
|
6
|
+
|
|
7
|
+
ClassLength:
|
|
8
|
+
Enabled: false
|
|
9
|
+
|
|
10
|
+
Metrics/BlockLength:
|
|
11
|
+
Max: 40
|
|
12
|
+
|
|
13
|
+
ModuleLength:
|
|
14
|
+
Enabled: false
|
|
15
|
+
|
|
16
|
+
Style/EmptyMethod:
|
|
17
|
+
Enabled: false
|
|
18
|
+
|
|
19
|
+
CyclomaticComplexity:
|
|
20
|
+
Enabled: false
|
|
21
|
+
|
|
22
|
+
Documentation:
|
|
23
|
+
Enabled: false
|
|
24
|
+
|
|
25
|
+
EachWithObject:
|
|
26
|
+
Enabled: false
|
|
27
|
+
|
|
28
|
+
Eval:
|
|
29
|
+
Enabled: false
|
|
30
|
+
|
|
31
|
+
FormatString:
|
|
32
|
+
Enabled: false
|
|
33
|
+
|
|
34
|
+
HashSyntax:
|
|
35
|
+
Enabled: false
|
|
36
|
+
|
|
37
|
+
LineLength:
|
|
38
|
+
Max: 180
|
|
39
|
+
|
|
40
|
+
MethodLength:
|
|
41
|
+
Enabled: false
|
|
42
|
+
|
|
43
|
+
PerceivedComplexity:
|
|
44
|
+
Enabled: false
|
|
45
|
+
|
|
46
|
+
Alias:
|
|
47
|
+
Enabled: false
|
|
48
|
+
|
|
49
|
+
Casecmp:
|
|
50
|
+
Enabled: false
|
|
51
|
+
|
|
52
|
+
ConditionalAssignment:
|
|
53
|
+
Enabled: false
|
|
54
|
+
|
|
55
|
+
GuardClause:
|
|
56
|
+
Enabled: false
|
|
57
|
+
|
|
58
|
+
IdenticalConditionalBranches:
|
|
59
|
+
Enabled: false
|
|
60
|
+
|
|
61
|
+
IfInsideElse:
|
|
62
|
+
Enabled: false
|
|
63
|
+
|
|
64
|
+
IneffectiveAccessModifier:
|
|
65
|
+
Enabled: false
|
|
66
|
+
|
|
67
|
+
MultilineMethodCallIndentation:
|
|
68
|
+
Enabled: false
|
|
69
|
+
|
|
70
|
+
MutableConstant:
|
|
71
|
+
Enabled: false
|
|
72
|
+
|
|
73
|
+
RedundantBlockCall:
|
|
74
|
+
Enabled: false
|
|
75
|
+
|
|
76
|
+
RedundantMerge:
|
|
77
|
+
Enabled: false
|
|
78
|
+
|
|
79
|
+
RedundantParentheses:
|
|
80
|
+
Enabled: false
|
|
81
|
+
|
|
82
|
+
StringLiterals:
|
|
83
|
+
Enabled: false
|
|
84
|
+
|
|
85
|
+
SignalException:
|
|
86
|
+
Enabled: false
|
|
87
|
+
|
|
88
|
+
TimesMap:
|
|
89
|
+
Enabled: false
|
|
90
|
+
|
|
91
|
+
UnneededDisable:
|
|
92
|
+
Enabled: false
|
|
93
|
+
|
|
94
|
+
UnneededInterpolation:
|
|
95
|
+
Enabled: false
|
|
96
|
+
|
|
97
|
+
UselessAccessModifier:
|
|
98
|
+
Enabled: false
|
|
99
|
+
|
|
100
|
+
Style/PerlBackrefs:
|
|
101
|
+
Enabled: false
|
data/.travis.yml
ADDED
data/.yardopts
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
--template-path doc/templates
|
|
2
|
+
--plugin rspec
|
|
3
|
+
--template default
|
|
4
|
+
--protected
|
|
5
|
+
--no-private
|
|
6
|
+
--verbose
|
|
7
|
+
--markup markdown
|
|
8
|
+
--markup-provider redcarpet
|
|
9
|
+
--asset doc/css:css
|
|
10
|
+
--asset doc/images:images
|
|
11
|
+
--asset doc/js:js
|
|
12
|
+
--readme doc/pages/HOMEPAGE.md
|
|
13
|
+
--hide-void-return
|
|
14
|
+
--exclude LICENSE
|
|
15
|
+
--no-cache
|
|
16
|
+
--output-dir doc/html
|
|
17
|
+
lib/**/*.rb
|
|
18
|
+
ext/**/*{.m,.c}
|
|
19
|
+
spec/**/*_spec.rb
|
|
20
|
+
-
|
|
21
|
+
README.md
|
|
22
|
+
doc/pages/**/*.md
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,272 @@
|
|
|
1
|
+
# GoodData Ruby SDK Changelog
|
|
2
|
+
## 1.0.0
|
|
3
|
+
- TMA-575: Add support for raw export-report API
|
|
4
|
+
- TMA-738: Update highline to v2
|
|
5
|
+
- TMA-711: segments filter works correctly in users brick
|
|
6
|
+
- TMA-662: Users Brick passes with empty input source
|
|
7
|
+
- Rename travis.yml to .travis.yml
|
|
8
|
+
|
|
9
|
+
## 0.6.54
|
|
10
|
+
- Generating changelog automatically from git
|
|
11
|
+
- Fix resolving dataproduct
|
|
12
|
+
- TMA-685: User filters and users bricks support data product
|
|
13
|
+
- TMA-700: Fix executing empty report
|
|
14
|
+
- TMA-696: Handle status 200 with no content type
|
|
15
|
+
- TMA-632: Fix result for sync_domain_client_workspaces
|
|
16
|
+
- TMA-680: Add option include_computed_attributes
|
|
17
|
+
- mdidtouri spec has correct data types
|
|
18
|
+
- TMA-686: filtering segments in release brick
|
|
19
|
+
- TMA-663: synchronize_user_filters does not fail if the client set is empty
|
|
20
|
+
- TMA-299: Data Product used in bricks
|
|
21
|
+
- removed unused class params_inspect_middleware
|
|
22
|
+
- Update list of dependencies
|
|
23
|
+
- TMA-666: Generate junit-formatted test results
|
|
24
|
+
- simplecov has to be initialized before any other code
|
|
25
|
+
- enabling code coverage calculation during tests
|
|
26
|
+
- TMA-366: Indicate replacement for technical_user
|
|
27
|
+
|
|
28
|
+
## 0.6.53
|
|
29
|
+
- TMA-522 - Rollout: Incorrect CLIENT_ID assigned to client schedule
|
|
30
|
+
|
|
31
|
+
## 0.6.52
|
|
32
|
+
- Add support for computed attribute in blueprint
|
|
33
|
+
- Fix bug with transfering schedules without their state
|
|
34
|
+
- Support segment-specific production tags (TMA-309)
|
|
35
|
+
- Rewrite deprecated schedule parameter "GRAPH" (TMA-453)
|
|
36
|
+
- Add parameter HTTP_LOGGING to LoggerMiddleware
|
|
37
|
+
- Resolve also hidden reference parameters (TMA-411)
|
|
38
|
+
- Support integer type id in Domain#clients (TMA-450)
|
|
39
|
+
- Support urn for date dimension (TMA-221)
|
|
40
|
+
- Implement "skip_actions" for LCM2
|
|
41
|
+
- Support MAQL DIFF API (TMA-219)
|
|
42
|
+
- Support for restricted flag
|
|
43
|
+
- Fix deployment via SDK on Windows
|
|
44
|
+
|
|
45
|
+
## 0.6.50
|
|
46
|
+
- Add support for Email Notification Rules on Process
|
|
47
|
+
- Add support for exclude_schedules option in Project#export_clone
|
|
48
|
+
- Add support for cross_data_center_export option in Project#export_clone
|
|
49
|
+
- Support for Automated Data Distribution in project
|
|
50
|
+
- Added Dockefile for easy build of dockerized gooddata-ruby
|
|
51
|
+
- Handle export/import async task errors (TMA-231)
|
|
52
|
+
- Support for custom color palette
|
|
53
|
+
- Support for trasfering attribute drill paths
|
|
54
|
+
- Implemented basic version of LCM2
|
|
55
|
+
- Add more logging for user, user filter management
|
|
56
|
+
|
|
57
|
+
## 0.6.49
|
|
58
|
+
- Implement Helpers::GD_MAX_RETRY to allow max retries override
|
|
59
|
+
|
|
60
|
+
## 0.6.48
|
|
61
|
+
- Fix jruby issue with uninitialized constant GoodData::Rest::Connection::ConnectionHelper
|
|
62
|
+
|
|
63
|
+
## 0.6.47
|
|
64
|
+
- Support for GD_MAX_RETRY environment variable for external manual override of maximum retry attempts
|
|
65
|
+
- Updated dependencies (gems)
|
|
66
|
+
- Do not log params if JSON parsing fails
|
|
67
|
+
|
|
68
|
+
## 0.6.46
|
|
69
|
+
- Fixed transfer_label_types, use target client for lookup
|
|
70
|
+
|
|
71
|
+
## 0.6.45
|
|
72
|
+
- Fixed transfer_everything when LDMs are the same
|
|
73
|
+
|
|
74
|
+
## 0.6.44
|
|
75
|
+
- Fixed the tests
|
|
76
|
+
- The MAQL execution now throws an exception if there is an error
|
|
77
|
+
- The authentication is made via tokens not cookies
|
|
78
|
+
|
|
79
|
+
## 0.6.26
|
|
80
|
+
- There is first implementation of transfering ETLs
|
|
81
|
+
- Fixed bug with getting clients from domain
|
|
82
|
+
- Temporary workaround for problem on API when it fails with 500 when you are trying to read changes of provision clients when nothing was provisioned
|
|
83
|
+
- Added option to not delete projects when updating clients in segments
|
|
84
|
+
|
|
85
|
+
## 0.6.24
|
|
86
|
+
- Fixed problem with validElements causing 500
|
|
87
|
+
|
|
88
|
+
## 0.6.23
|
|
89
|
+
- Fixed typo sometimes causing crash of ReportDefinition#replace
|
|
90
|
+
|
|
91
|
+
## 0.6.22
|
|
92
|
+
- Added rake task (license:add) for automatic license headers generating
|
|
93
|
+
- Handle situation when upload_status.json does not exist
|
|
94
|
+
- Connect using SSO - GoodData#connect_sso
|
|
95
|
+
- Added Measure semantics, alias methods metrics to measure (ie. interpolate_metric -> interpolate_measure)
|
|
96
|
+
- rake tasks license:check, license:report & license:info for automated license reporting added
|
|
97
|
+
- Fixed a typo in labels
|
|
98
|
+
- Executions are paging + are implemented as lazy enumerators
|
|
99
|
+
- Fixed after getter in schedule
|
|
100
|
+
- Blueprint works with deprecated labels
|
|
101
|
+
- Metadata object has new methods for working with unlisted attribute
|
|
102
|
+
- Metadata method deprecated= now accepts and return true/false
|
|
103
|
+
- Included date_facts in building a manifest
|
|
104
|
+
- Using API for user provisioning by login
|
|
105
|
+
- Multiple data sets upload Project#upload_multiple
|
|
106
|
+
- GoodData::MdObject.json is assignable now (using attr_accessor)
|
|
107
|
+
- Added method for updating report definition in easy way - GoodData::Report#update_definiton(opts, &block)
|
|
108
|
+
- Added more logging around connecting to server. Cleaning up staging information. Adding tests to make
|
|
109
|
+
- Middlewares are transforming params to Ruby hash (useful for executors when they pass Java Hash instance)
|
|
110
|
+
- Cleaning up way Data permissions work with errors so we can update Bricks
|
|
111
|
+
- Fixed Project#browser_url
|
|
112
|
+
- Increased max count of retries for 429 - Too Many Requests
|
|
113
|
+
- Fixed potentional crash of ReportDefinition#replace
|
|
114
|
+
- Updated dependencies (gems)
|
|
115
|
+
|
|
116
|
+
## 0.6.21
|
|
117
|
+
- Consolidated error reporting for Domain#create_users & Project#import_users
|
|
118
|
+
- Removed superfluous error messages on 401
|
|
119
|
+
- Fixed bug with rich params when it could happen that hidden params got deleted on schedule save
|
|
120
|
+
|
|
121
|
+
## 0.6.20
|
|
122
|
+
- added iterators for retrieval of project, domain, and group objects
|
|
123
|
+
- use query resource inlining for retrieving user filters
|
|
124
|
+
- fixed default parameters from ~/.gooddata file (auth token, server)
|
|
125
|
+
- added project WebDav deprecation warning
|
|
126
|
+
- removed dependency on Active Support gem
|
|
127
|
+
|
|
128
|
+
## 0.6.19
|
|
129
|
+
- major (not backward compatible) blueprint refactoring
|
|
130
|
+
- added environment parameter to the project creation
|
|
131
|
+
- added HTTP retry strategy with exponential wait times and maximum retries set to 10
|
|
132
|
+
- set max concurrent platform connections set to 20 per session
|
|
133
|
+
- set socket timeout to 1 minute
|
|
134
|
+
|
|
135
|
+
## 0.6.18
|
|
136
|
+
- added support for the HYPERLINK label type in blueprint
|
|
137
|
+
- fixed method Schedule#create doesn't set schedule name
|
|
138
|
+
- added method "error?" to the class "ExecutionDetail"
|
|
139
|
+
- added blueprint support for folders
|
|
140
|
+
- added ability to change SSO provider for existing platform user
|
|
141
|
+
- added schedules and executions convenience methods
|
|
142
|
+
|
|
143
|
+
## 0.6.17
|
|
144
|
+
- added validation of the blueprint datatypes (e.g. INTEGER -> INT, allow mixed case etc.)
|
|
145
|
+
- improved the data loading logging and error handling
|
|
146
|
+
- added date dimension switching
|
|
147
|
+
- switched to the new asynchronous ETL pull resource
|
|
148
|
+
- added specification of date reference's format in blueprint
|
|
149
|
+
- added HTTP logging oneliner
|
|
150
|
+
|
|
151
|
+
## 0.6.16
|
|
152
|
+
- fixed SSL certificate validation (verify_ssl option in the GoodData.connect)
|
|
153
|
+
- logging changes: separated the HTTP and application logging to different levels, added platform request ID
|
|
154
|
+
- fixed the WebDav URI bootstrap to work with the EU datacenter
|
|
155
|
+
- added driver parameter for Vertica based project creation
|
|
156
|
+
|
|
157
|
+
## 0.6.15
|
|
158
|
+
|
|
159
|
+
- Adding users now accepts more variants of providing users
|
|
160
|
+
- Import users is not importing users to domain automatically. There is app in appstore that should help you with various ways of importing users
|
|
161
|
+
- Speed improvements for adding users
|
|
162
|
+
- Fixed listing facts/attributes on the dataset
|
|
163
|
+
- Corrected fixed limit on listing users from domain. Paging is handled by different parameter
|
|
164
|
+
- Replacing value in metric/attribute should be more resilient
|
|
165
|
+
|
|
166
|
+
## 0.6.14
|
|
167
|
+
|
|
168
|
+
- Project update from blueprint does not fail when MAQL chunks are empty.
|
|
169
|
+
- You can call migrate_datasets with dry_run to obtain MAQL chunks.
|
|
170
|
+
- Fix of title generation in blueprint from wire.
|
|
171
|
+
|
|
172
|
+
## 0.6.13
|
|
173
|
+
|
|
174
|
+
- Fixed TT problems
|
|
175
|
+
- Fixed process redeployment helpers
|
|
176
|
+
- Rubocop compliance with the latest version
|
|
177
|
+
- MD datasets are now available
|
|
178
|
+
- SSL set to verify none for now. We will make it more secure in next version.
|
|
179
|
+
- Changed limit on users pulled from domain. Will change it in the future so there is no fixed limit.
|
|
180
|
+
|
|
181
|
+
## 0.6.12
|
|
182
|
+
|
|
183
|
+
- Ability to create a Data Warehouse (ADS)
|
|
184
|
+
- Retry all requests 3 times when SystemCallError, RestClient::InternalServerError or RestClient::RequestTimeout
|
|
185
|
+
- Automatic 429/TooManyRequests Handler
|
|
186
|
+
- When creating user login and email can be different now
|
|
187
|
+
- Automatic client disconnect at_exit of ruby script
|
|
188
|
+
- When creating user login and email can be different now
|
|
189
|
+
- Fixed Domain#add_user (GH issue #354)
|
|
190
|
+
- Support for GoodData.connect ENV['GD_GEM_USER'], ENV['GD_GEM_PASSWORD']
|
|
191
|
+
- Added Schedule#execute(:wait => true|false) option
|
|
192
|
+
- Merge GoodData::Rest::Connection and GoodData::Rest::Connection::RestClientConnection
|
|
193
|
+
- Unified expection handler for REST API and WebDav Access (using GoodData::Rest::Connection.retryable)
|
|
194
|
+
- GoodData#stats_on, GoodData#stats_off, GoodData::Rest::Client#stats_on, GoodData#stats_off
|
|
195
|
+
- GoodData::Mixin::MdObjectQuery#using now accepts :full => true|false option
|
|
196
|
+
- GoodData::MdObject#[] automatically returns proper type (ie. GoodData::Report)
|
|
197
|
+
- Improved user management
|
|
198
|
+
- Added simple GoodData::Dimension
|
|
199
|
+
|
|
200
|
+
## 0.6.11
|
|
201
|
+
|
|
202
|
+
- Ability to download deployed process
|
|
203
|
+
- Added locking objects capabilities
|
|
204
|
+
- Added removing color mapping form a report definition
|
|
205
|
+
- Report defintions are deleted along with a report
|
|
206
|
+
- Report definitions are deleted along with a report
|
|
207
|
+
- Improved process deployment and schedules
|
|
208
|
+
- Parameters in processes and schedules are now able to take complex parameters
|
|
209
|
+
- #create_metric is significantly faster
|
|
210
|
+
- Pretty_expression for metric should not fail on missing data
|
|
211
|
+
- Extended notation can be switched off when using create_metric
|
|
212
|
+
- Implemented retry on connection related issues
|
|
213
|
+
- All executions should use latest resource version
|
|
214
|
+
- Uploading files to webdav should use streaming and be more memory efficient
|
|
215
|
+
- Ability to pass absolute path to file upload
|
|
216
|
+
- Allowing special chars in uploaded file
|
|
217
|
+
- GooddataMiddleware doesn't require username+password, when it has SST
|
|
218
|
+
|
|
219
|
+
## 0.6.10
|
|
220
|
+
|
|
221
|
+
- Fixed client default missing in ProjectMetadata
|
|
222
|
+
- Listing schedules on processes is working
|
|
223
|
+
- Scrubing params in logs is back
|
|
224
|
+
- Added ProjectMetadata helpers on project
|
|
225
|
+
- Listing processes on client works as expected
|
|
226
|
+
- Schedule can be enabled/disabled
|
|
227
|
+
- Added pselect helper function
|
|
228
|
+
|
|
229
|
+
## 0.6.9
|
|
230
|
+
|
|
231
|
+
- Fixing issues with creating models.
|
|
232
|
+
- Adding couple more helpers for report/metric computation
|
|
233
|
+
- Rewriting several full_* specs to use the new syntax
|
|
234
|
+
|
|
235
|
+
## 0.6.8
|
|
236
|
+
|
|
237
|
+
- REST Factory - See [PR #224](https://github.com/gooddata/gooddata-ruby/pull/224)
|
|
238
|
+
- Replace on report definitions allows to swap attributes, metrics and other things in report definitions
|
|
239
|
+
- Fixed bug in clone so you can clone projects without data
|
|
240
|
+
- Many map call on REST happen in parallel
|
|
241
|
+
- Query requests (all attributes, all metrics etc) are happening in parallel and full: true is now the default
|
|
242
|
+
- Computing an a report which returns no results does not fail but returns nil
|
|
243
|
+
- Refactored handling of all various asynchronous resources into 2 methods
|
|
244
|
+
- added ability to log in with only SST token
|
|
245
|
+
- added with_connection
|
|
246
|
+
- ability to deploy just one file, zipped files or directory
|
|
247
|
+
|
|
248
|
+
## 0.6.7
|
|
249
|
+
|
|
250
|
+
- Fixed the scaffolding templates to take advantage of new syntax (missing references in dataset refs)
|
|
251
|
+
- Fixing inclusion of extensions when using CLI
|
|
252
|
+
- Fixed pollers and added/fixed tests for schedules and processes
|
|
253
|
+
- Added with_connection which automatically disconnects when you are done
|
|
254
|
+
|
|
255
|
+
## 0.6.6
|
|
256
|
+
|
|
257
|
+
- Various fixes
|
|
258
|
+
|
|
259
|
+
## 0.6.5
|
|
260
|
+
|
|
261
|
+
- Mixins
|
|
262
|
+
|
|
263
|
+
## 0.6.4
|
|
264
|
+
|
|
265
|
+
- Ability to get blueprint directly through API. This way you can work with projects that was not created using SDK
|
|
266
|
+
- Added basis for GD_LINT that checks your project for typical problems
|
|
267
|
+
|
|
268
|
+
## 0.6.3
|
|
269
|
+
|
|
270
|
+
- Able to do save_as on metadata objects (Report, Metric, Dashboard)
|
|
271
|
+
- Model is now not created through build and update if it is not passing validations
|
|
272
|
+
- Added a setter for identifier on Metadata Object
|