Class: KatelloApi::Resources::Changeset

Inherits:
Base
  • Object
show all
Defined in:
lib/katello_api/resources/changeset.rb

Constant Summary

Constants inherited from Base

Base::API_VERSION

Instance Attribute Summary

Attributes inherited from Base

#client, #config

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Base

#http_call, #initialize, method_doc, #perform_call, #validate_params!, validation_hash

Constructor Details

This class inherits a constructor from KatelloApi::Base

Class Method Details

.docObject



4
5
6
# File 'lib/katello_api/resources/changeset.rb', line 4

def self.doc
  @doc ||= KatelloApi.doc['resources']["changesets"]
end

Instance Method Details

#apply(params = {}, headers = {}) ⇒ Array

Returns First item: parsed data; second item: raw body.

Options Hash (params):

  • id (Object)

    Part of /api/changesets/:id/apply path



59
60
61
# File 'lib/katello_api/resources/changeset.rb', line 59

def apply(params = {}, headers = {})
  perform_call(__method__, params, headers)
end

#create(params = {}, headers = {}) ⇒ Array

Returns First item: parsed data; second item: raw body.

Options Hash (params):

  • environment_id (Object)

    Part of /api/environments/:environment_id/changesets path

  • changeset (Hash)

    allowed keys are:

    • description [String, nil] the description of the changeset

    • name [String] the name of the changeset

    • type [String]



50
51
52
# File 'lib/katello_api/resources/changeset.rb', line 50

def create(params = {}, headers = {})
  perform_call(__method__, params, headers)
end

#destroy(params = {}, headers = {}) ⇒ Array

Returns First item: parsed data; second item: raw body.

Options Hash (params):

  • id (Object)

    Part of /api/changesets/:id path



68
69
70
# File 'lib/katello_api/resources/changeset.rb', line 68

def destroy(params = {}, headers = {})
  perform_call(__method__, params, headers)
end

#index(params = {}, headers = {}) ⇒ Array

Returns First item: parsed data; second item: raw body.

Options Hash (params):

  • environment_id (Object)

    Part of /api/environments/:environment_id/changesets path

  • name (String)

    an optional changeset name to filter upon



14
15
16
# File 'lib/katello_api/resources/changeset.rb', line 14

def index(params = {}, headers = {})
  perform_call(__method__, params, headers)
end

#show(params = {}, headers = {}) ⇒ Array

Returns First item: parsed data; second item: raw body.

Options Hash (params):

  • id (Object)

    Part of /api/changesets/:id path



23
24
25
# File 'lib/katello_api/resources/changeset.rb', line 23

def show(params = {}, headers = {})
  perform_call(__method__, params, headers)
end

#update(params = {}, headers = {}) ⇒ Array

Returns First item: parsed data; second item: raw body.

Options Hash (params):

  • id (Object)

    Part of /api/changesets/:id path

  • changeset (Hash)

    allowed keys are:

    • description [String, nil] the description of the changeset

    • name [String] the name of the changeset



36
37
38
# File 'lib/katello_api/resources/changeset.rb', line 36

def update(params = {}, headers = {})
  perform_call(__method__, params, headers)
end