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

Version Path
fog-aws-0.13.0 tests/requests/data_pipeline/helper.rb
fog-aws-0.12.0 tests/requests/data_pipeline/helper.rb
fog-aws-0.11.0 tests/requests/data_pipeline/helper.rb
fog-aws-0.10.0 tests/requests/data_pipeline/helper.rb
fog-aws-0.9.4 tests/requests/data_pipeline/helper.rb
fog-aws-0.9.3 tests/requests/data_pipeline/helper.rb
fog-aws-0.9.2 tests/requests/data_pipeline/helper.rb
fog-aws-0.9.1 tests/requests/data_pipeline/helper.rb
fog-aws-0.9.0 tests/requests/data_pipeline/helper.rb
fog-aws-0.8.1 tests/requests/data_pipeline/helper.rb
fog-aws-0.8.0 tests/requests/data_pipeline/helper.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-aws-0.7.5/tests/requests/data_pipeline/helper.rb
fog-aws-0.7.6 tests/requests/data_pipeline/helper.rb
fog-aws-0.7.5 tests/requests/data_pipeline/helper.rb
fog-aws-0.7.4 tests/requests/data_pipeline/helper.rb
fog-aws-0.7.3 tests/requests/data_pipeline/helper.rb
fog-aws-0.7.2 tests/requests/data_pipeline/helper.rb
fog-aws-0.6.0 tests/requests/data_pipeline/helper.rb
fog-aws-0.5.0 tests/requests/data_pipeline/helper.rb
fog-aws-0.4.1 tests/requests/data_pipeline/helper.rb