Sha256: 0025285aa76089748ec4478d65096b0deff3bdb26053b3faa973ede5ef8255bf

Contents?: true

Size: 1.56 KB

Versions: 7

Compression:

Stored size: 1.56 KB

Contents

# encoding: UTF-8
#
# Copyright (c) 2010-2017 GoodData Corporation. All rights reserved.
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.

require_relative 'base_action'

module GoodData
  module LCM2
    class EnsureDataProduct < BaseAction
      DESCRIPTION = 'Creates the DataProduct if it does not exist yet'

      PARAMS = define_params(self) do
        description 'client to connect to GD'
        param :gdc_gd_client, instance_of(Type::GdClientType), required: true

        description 'DataProduct to ensure'
        param :data_product, instance_of(Type::StringType), required: false
      end

      RESULT_HEADER = [
        :data_product
      ]

      class << self
        def call(params)
          params = params.to_hash
          client = params.gdc_gd_client
          domain_name = params.organization || params.domain
          domain = client.domain(domain_name) || fail("Invalid domain name specified - #{domain_name}")

          if params.key?(:data_product)
            begin
              data_product = domain.data_products(params.data_product)
            rescue RestClient::BadRequest
              params.gdc_logger.info "Can not find DataProduct #{params.data_product}, creating it instead"
              data_product = domain.create_data_product(id: params.data_product)
            end
          end

          {
            results: [
              {
                data_product: data_product
              }
            ]
          }
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
gooddata-1.0.2-java lib/gooddata/lcm/actions/ensure_data_product.rb
gooddata-1.0.2 lib/gooddata/lcm/actions/ensure_data_product.rb
gooddata-1.0.1 lib/gooddata/lcm/actions/ensure_data_product.rb
gooddata-1.0.1-java lib/gooddata/lcm/actions/ensure_data_product.rb
gooddata-1.0.0-java lib/gooddata/lcm/actions/ensure_data_product.rb
gooddata-1.0.0 lib/gooddata/lcm/actions/ensure_data_product.rb
gooddata-0.6.54 lib/gooddata/lcm/actions/ensure_data_product.rb