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

Version Path
fog-1.22.0 tests/aws/requests/data_pipeline/helper.rb
fog-1.21.0 tests/aws/requests/data_pipeline/helper.rb
fog-maestrodev-1.20.0.20140305101839 tests/aws/requests/data_pipeline/helper.rb
fog-maestrodev-1.20.0.20140305101305 tests/aws/requests/data_pipeline/helper.rb
fog-maestrodev-1.19.0.20140212012611 tests/aws/requests/data_pipeline/helper.rb
fog-1.20.0 tests/aws/requests/data_pipeline/helper.rb
fog-maestrodev-1.19.0.20140110004459 tests/aws/requests/data_pipeline/helper.rb
fog-maestrodev-1.19.0.20140110003812 tests/aws/requests/data_pipeline/helper.rb
fog-maestrodev-1.19.0.20140109202555 tests/aws/requests/data_pipeline/helper.rb
fog-maestrodev-1.19.0.20140107192102 tests/aws/requests/data_pipeline/helper.rb
fog-maestrodev-1.19.0.20140107142106 tests/aws/requests/data_pipeline/helper.rb
fog-maestrodev-1.19.0.20131219203941 tests/aws/requests/data_pipeline/helper.rb
fog-maestrodev-1.18.0.20131219193542 tests/aws/requests/data_pipeline/helper.rb
fog-1.19.0 tests/aws/requests/data_pipeline/helper.rb
fog-maestrodev-1.18.0.20131219033443 tests/aws/requests/data_pipeline/helper.rb
fog-maestrodev-1.18.0.20131219032002 tests/aws/requests/data_pipeline/helper.rb
fog-maestrodev-1.18.0.20131219030716 tests/aws/requests/data_pipeline/helper.rb
fog-maestrodev-1.18.0.20131219022322 tests/aws/requests/data_pipeline/helper.rb
fog-maestrodev-1.18.0.20131218202447 tests/aws/requests/data_pipeline/helper.rb
fog-maestrodev-1.18.0.20131209091424 tests/aws/requests/data_pipeline/helper.rb