Sha256: d65c1b750ce38efade25d97e4fd18f1e081334f14d081e4287d16b0f39524c54
Contents?: true
Size: 1.55 KB
Versions: 47
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
47 entries across 47 versions & 5 rubygems