Sha256: ffb6d93c2ded4e6efab62798580c9569e4d8f28631c958f4884565e94aee4de0
Contents?: true
Size: 775 Bytes
Versions: 77
Compression:
Stored size: 775 Bytes
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_type' require_relative 'complex' module GoodData module LCM2 module Type class TokensType < ComplexType CATEGORY = :complex PARAMS = define_type(self) do description 'Postgres Token' param :pg, instance_of(Type::StringType), required: false description 'Vertica Token' param :vertica, instance_of(Type::StringType), required: false end def check(value) BaseType.check_params(PARAMS, value) end end end end end
Version data entries
77 entries across 77 versions & 1 rubygems