Sha256: c52b6dbe4385584a326386aea581d895f3f9d9f9da0697e6704ccbeb7e617ac2

Contents?: true

Size: 1.73 KB

Versions: 32

Compression:

Stored size: 1.73 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" => [
          {
            "fields" => [
              {
                '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,
          }
        ],
        "parameterObjects" => Fog::Nullable::Array,
        "parameterValues" => Fog::Nullable::Array,
      }
    end
  end
end

Version data entries

32 entries across 30 versions & 2 rubygems

Version Path
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-aws-2.0.1/tests/requests/data_pipeline/helper.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-aws-2.0.1/tests/requests/data_pipeline/helper.rb
fog-aws-3.0.0 tests/requests/data_pipeline/helper.rb
fog-aws-2.0.1 tests/requests/data_pipeline/helper.rb
fog-aws-2.0.0 tests/requests/data_pipeline/helper.rb
fog-aws-1.4.1 tests/requests/data_pipeline/helper.rb
fog-aws-1.4.0 tests/requests/data_pipeline/helper.rb
fog-aws-1.3.0 tests/requests/data_pipeline/helper.rb
fog-aws-1.2.1 tests/requests/data_pipeline/helper.rb
fog-aws-1.2.0 tests/requests/data_pipeline/helper.rb
fog-aws-1.1.0 tests/requests/data_pipeline/helper.rb
fog-aws-1.0.0 tests/requests/data_pipeline/helper.rb