Sha256: 1aa3cec62bb98971b1ca0de68b3256fac27eed648826b4d0566fea35a0e942d4
Contents?: true
Size: 1.69 KB
Versions: 2
Compression:
Stored size: 1.69 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 SynchronizeNewSegments < BaseAction DESCRIPTION = 'Synchronize New Segments' PARAMS = define_params(self) do description 'Client Used for Connecting to GD' param :gdc_gd_client, instance_of(Type::GdClientType), required: true description 'Organization Name' param :organization, instance_of(Type::StringType), required: true description 'Segments to manage' param :segments, array_of(instance_of(Type::SegmentType)), required: true end class << self def call(params) client = params.gdc_gd_client domain_name = params.organization || params.domain domain = client.domain(domain_name) || fail("Invalid domain name specified - #{domain_name}") domain_segments = domain.segments params.segments.pmap do |segment_in| segment_id = segment_in.segment_id segment = domain_segments.find do |ds| ds.segment_id == segment_id end if segment_in.is_new segment.synchronize_clients { segment: segment_id, new: true, synchronized: true } else { segment: segment_id, new: false, synchronized: false } end end end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
gooddata-0.6.53 | lib/gooddata/lcm/actions/synchronize_new_segments.rb |
gooddata-0.6.52 | lib/gooddata/lcm/actions/synchronize_new_segments.rb |