Sha256: 507be1a4ef84c925da4267857b3ada9f2d2abd6d6e4c50cd075f81a8ad7ad7dc
Contents?: true
Size: 1.55 KB
Versions: 40
Compression:
Stored size: 1.55 KB
Contents
class AWS module DataPipeline module Formats BASIC = { 'pipelineId' => String, } FIELDS = [ { "key" => String, "refValue" => Fog::Nullable::String, "stringValue" => Fog::Nullable::String, } ] LIST_PIPELINES = { "hasMoreResults" => Fog::Nullable::Boolean, "marker" => Fog::Nullable::String, "pipelineIdList" => [ { "id" => String, "name" => String, } ] } QUERY_OBJECTS = { "hasMoreResults" => Fog::Nullable::Boolean, "marker" => Fog::Nullable::String, "ids" => Fog::Nullable::Array, } DESCRIBE_OBJECTS = { "hasMoreResults" => Fog::Nullable::Boolean, "marker" => Fog::Nullable::String, "pipelineObjects" => [ { 'id' => String, 'name' => String, 'fields' => FIELDS, } ] } DESCRIBE_PIPELINES = { "pipelineDescriptionList" => [ { "description" => Fog::Nullable::String, "name" => String, "pipelineId" => String, "fields" => FIELDS, } ] } PUT_PIPELINE_DEFINITION = { "errored" => Fog::Boolean, "validationErrors" => Fog::Nullable::Array, } GET_PIPELINE_DEFINITION = { "pipelineObjects" => [ { "id" => String, "name" => String, "fields" => FIELDS, } ] } end end end
Version data entries
40 entries across 40 versions & 2 rubygems