Class: GoodData::LCM2::Type::SynchronizationInfoType

Inherits:
ComplexType show all
Defined in:
lib/gooddata/lcm/types/complex/synchronization_info.rb

Constant Summary collapse

CATEGORY =
:complex
PARAMS =
define_type(self) do
  description 'From which project'
  param :from, instance_of(Type::StringType), required: true

  description 'To which projects'
  param :to, array_of(instance_of(Type::HashType)), required: true

  description 'Uri of the source output stage. It must be in the same domain as the target project.'
  param :ads_output_stage_uri, instance_of(Type::StringType), required: false

  description 'Custom prefix for the target output stage.'
  param :ads_output_stage_prefix, instance_of(Type::StringType), required: false
end

Constants included from Dsl::Dsl

Dsl::Dsl::DEFAULT_OPTS, Dsl::Dsl::TYPES

Instance Method Summary collapse

Methods inherited from ComplexType

#to_s

Methods inherited from BaseType

check_params, #to_s

Methods included from Dsl::Dsl

#define_params, #define_type, #process

Instance Method Details

#check(value) ⇒ Object



32
33
34
# File 'lib/gooddata/lcm/types/complex/synchronization_info.rb', line 32

def check(value)
  BaseType.check_params(PARAMS, value)
end