katello_api 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. data/Gemfile +8 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +53 -0
  4. data/Rakefile +2 -0
  5. data/katello_api.gemspec +25 -0
  6. data/lib/katello_api/base.rb +134 -0
  7. data/lib/katello_api/config.yml +6 -0
  8. data/lib/katello_api/resources/activation_key.rb +104 -0
  9. data/lib/katello_api/resources/architecture.rb +64 -0
  10. data/lib/katello_api/resources/changeset.rb +83 -0
  11. data/lib/katello_api/resources/changesets_content.rb +149 -0
  12. data/lib/katello_api/resources/compute_resource.rb +82 -0
  13. data/lib/katello_api/resources/config_template.rb +92 -0
  14. data/lib/katello_api/resources/content_view.rb +55 -0
  15. data/lib/katello_api/resources/content_view_definition.rb +107 -0
  16. data/lib/katello_api/resources/crl.rb +19 -0
  17. data/lib/katello_api/resources/distribution.rb +29 -0
  18. data/lib/katello_api/resources/distributor.rb +112 -0
  19. data/lib/katello_api/resources/domain.rb +71 -0
  20. data/lib/katello_api/resources/environment.rb +106 -0
  21. data/lib/katello_api/resources/erratum.rb +33 -0
  22. data/lib/katello_api/resources/gpg_key.rb +78 -0
  23. data/lib/katello_api/resources/hardware_model.rb +70 -0
  24. data/lib/katello_api/resources/organization.rb +64 -0
  25. data/lib/katello_api/resources/package.rb +42 -0
  26. data/lib/katello_api/resources/permission.rb +57 -0
  27. data/lib/katello_api/resources/ping.rb +37 -0
  28. data/lib/katello_api/resources/product.rb +119 -0
  29. data/lib/katello_api/resources/provider.rb +151 -0
  30. data/lib/katello_api/resources/repository.rb +128 -0
  31. data/lib/katello_api/resources/repository_set.rb +45 -0
  32. data/lib/katello_api/resources/role.rb +74 -0
  33. data/lib/katello_api/resources/role_ldap_group.rb +41 -0
  34. data/lib/katello_api/resources/smart_proxy.rb +67 -0
  35. data/lib/katello_api/resources/statu.rb +19 -0
  36. data/lib/katello_api/resources/subnet.rb +64 -0
  37. data/lib/katello_api/resources/subscription.rb +64 -0
  38. data/lib/katello_api/resources/sync.rb +49 -0
  39. data/lib/katello_api/resources/sync_plan.rb +78 -0
  40. data/lib/katello_api/resources/system.rb +226 -0
  41. data/lib/katello_api/resources/system_group.rb +136 -0
  42. data/lib/katello_api/resources/system_group_erratum.rb +34 -0
  43. data/lib/katello_api/resources/system_group_package.rb +49 -0
  44. data/lib/katello_api/resources/system_package.rb +45 -0
  45. data/lib/katello_api/resources/task.rb +30 -0
  46. data/lib/katello_api/resources/template.rb +107 -0
  47. data/lib/katello_api/resources/templates_content.rb +143 -0
  48. data/lib/katello_api/resources/uebercert.rb +20 -0
  49. data/lib/katello_api/resources/user.rb +113 -0
  50. data/lib/katello_api/rest_client_oauth.rb +19 -0
  51. data/lib/katello_api/version.rb +3 -0
  52. data/lib/katello_api.rb +23 -0
  53. metadata +160 -0
@@ -0,0 +1,107 @@
1
+ module KatelloApi
2
+ module Resources
3
+ class Template < KatelloApi::Base
4
+ def self.doc
5
+ @doc ||= KatelloApi.doc['resources']["templates"]
6
+ end
7
+
8
+ # @param [Hash] params a hash of params to be passed to the service
9
+ # @option params [String] environment_id environment numeric identifier
10
+ # @option params [String] name system template identifier
11
+ #
12
+ # @param [Hash] headers additional http headers
13
+ def index(params = { }, headers = { })
14
+ check_params params, :allowed => true, :method => __method__
15
+ url, params = fill_params_in_url "/api/environments/:environment_id/templates", params
16
+ call(:"get", url, params, headers)
17
+ end
18
+
19
+ # @param [Hash] params a hash of params to be passed to the service
20
+ # @option params [String] id system template numeric identifier
21
+ #
22
+ # @param [Hash] headers additional http headers
23
+ def show(params = { }, headers = { })
24
+ check_params params, :allowed => true, :method => __method__
25
+ url, params = fill_params_in_url "/api/templates/:id", params
26
+ call(:"get", url, params, headers)
27
+ end
28
+
29
+ # @param [Hash] params a hash of params to be passed to the service
30
+ # @option params [String] environment_id environment numeric identifier
31
+ # @option params [Hash] template
32
+ # allowed keys are:
33
+ # * description [String, nil] template description ,
34
+ # * name [String] new template name ,
35
+ # * parent_id [String, nil] parent template numeric identifier ,
36
+ #
37
+ # @param [Hash] headers additional http headers
38
+ def create(params = { }, headers = { })
39
+ check_params params, :allowed => true, :method => __method__
40
+ url, params = fill_params_in_url "/api/templates", params
41
+ call(:"post", url, params, headers)
42
+ end
43
+
44
+ # @param [Hash] params a hash of params to be passed to the service
45
+ # @option params [String] id template numeric identifier
46
+ # @option params [Hash] template
47
+ # allowed keys are:
48
+ # * description [String, nil] template description ,
49
+ # * name [String] new template name ,
50
+ # * parent_id [String, nil] parent template numeric identifier ,
51
+ #
52
+ # @param [Hash] headers additional http headers
53
+ def update(params = { }, headers = { })
54
+ check_params params, :allowed => true, :method => __method__
55
+ url, params = fill_params_in_url "/api/templates/:id", params
56
+ call(:"put", url, params, headers)
57
+ end
58
+
59
+ # @param [Hash] params a hash of params to be passed to the service
60
+ # @option params [String] id template numeric identifier
61
+ #
62
+ # @param [Hash] headers additional http headers
63
+ def destroy(params = { }, headers = { })
64
+ check_params params, :allowed => true, :method => __method__
65
+ url, params = fill_params_in_url "/api/templates/:id", params
66
+ call(:"delete", url, params, headers)
67
+ end
68
+
69
+ # @param [Hash] params a hash of params to be passed to the service
70
+ # @option params [String] environment_id environment numeric identifier
71
+ # @option params [Hash] template
72
+ # allowed keys are:
73
+ # * description [String, nil] template description ,
74
+ # * name [String] new template name ,
75
+ # * parent_id [String, nil] parent template numeric identifier ,
76
+ # @option params [String] template_file template file to import
77
+ #
78
+ # @param [Hash] headers additional http headers
79
+ def import(params = { }, headers = { })
80
+ check_params params, :allowed => true, :method => __method__
81
+ url, params = fill_params_in_url "/api/templates/import", params
82
+ call(:"post", url, params, headers)
83
+ end
84
+
85
+ # @param [Hash] params a hash of params to be passed to the service
86
+ # @option params [String] id template numeric identifier
87
+ #
88
+ # @param [Hash] headers additional http headers
89
+ def validate(params = { }, headers = { })
90
+ check_params params, :allowed => true, :method => __method__
91
+ url, params = fill_params_in_url "/api/templates/:id/validate", params
92
+ call(:"get", url, params, headers)
93
+ end
94
+
95
+ # @param [Hash] params a hash of params to be passed to the service
96
+ # @option params [String] id template numeric identifier
97
+ #
98
+ # @param [Hash] headers additional http headers
99
+ def export(params = { }, headers = { })
100
+ check_params params, :allowed => true, :method => __method__
101
+ url, params = fill_params_in_url "/api/templates/:id/export", params
102
+ call(:"get", url, params, headers)
103
+ end
104
+
105
+ end
106
+ end
107
+ end
@@ -0,0 +1,143 @@
1
+ module KatelloApi
2
+ module Resources
3
+ class TemplatesContent < KatelloApi::Base
4
+ def self.doc
5
+ @doc ||= KatelloApi.doc['resources']["templates_content"]
6
+ end
7
+
8
+ # @param [Hash] params a hash of params to be passed to the service
9
+ # @option params [String] name package identifier
10
+ # @option params [String] template_id template numeric identifier
11
+ #
12
+ # @param [Hash] headers additional http headers
13
+ def add_package(params = { }, headers = { })
14
+ check_params params, :allowed => true, :method => __method__
15
+ url, params = fill_params_in_url "/api/templates/:template_id/packages", params
16
+ call(:"post", url, params, headers)
17
+ end
18
+
19
+ # @param [Hash] params a hash of params to be passed to the service
20
+ # @option params [String] id package identifier
21
+ # @option params [String] template_id template numeric identifier
22
+ #
23
+ # @param [Hash] headers additional http headers
24
+ def remove_package(params = { }, headers = { })
25
+ check_params params, :allowed => true, :method => __method__
26
+ url, params = fill_params_in_url "/api/templates/:template_id/packages/:id", params
27
+ call(:"delete", url, params, headers)
28
+ end
29
+
30
+ # @param [Hash] params a hash of params to be passed to the service
31
+ # @option params [String] name parameter identifier
32
+ # @option params [String] template_id template numeric identifier
33
+ # @option params [String] value parameter value
34
+ #
35
+ # @param [Hash] headers additional http headers
36
+ def add_parameter(params = { }, headers = { })
37
+ check_params params, :allowed => true, :method => __method__
38
+ url, params = fill_params_in_url "/api/templates/:template_id/parameters", params
39
+ call(:"post", url, params, headers)
40
+ end
41
+
42
+ # @param [Hash] params a hash of params to be passed to the service
43
+ # @option params [String] id parameter identifier
44
+ # @option params [String] template_id template numeric identifier
45
+ #
46
+ # @param [Hash] headers additional http headers
47
+ def remove_parameter(params = { }, headers = { })
48
+ check_params params, :allowed => true, :method => __method__
49
+ url, params = fill_params_in_url "/api/templates/:template_id/parameters/:id", params
50
+ call(:"delete", url, params, headers)
51
+ end
52
+
53
+ # @param [Hash] params a hash of params to be passed to the service
54
+ # @option params [String] name package group identifier
55
+ # @option params [String] template_id template numeric identifier
56
+ #
57
+ # @param [Hash] headers additional http headers
58
+ def add_package_group(params = { }, headers = { })
59
+ check_params params, :allowed => true, :method => __method__
60
+ url, params = fill_params_in_url "/api/templates/:template_id/package_groups", params
61
+ call(:"post", url, params, headers)
62
+ end
63
+
64
+ # @param [Hash] params a hash of params to be passed to the service
65
+ # @option params [String] id package group identifier
66
+ # @option params [String] template_id template numeric identifier
67
+ #
68
+ # @param [Hash] headers additional http headers
69
+ def remove_package_group(params = { }, headers = { })
70
+ check_params params, :allowed => true, :method => __method__
71
+ url, params = fill_params_in_url "/api/templates/:template_id/package_groups/:id", params
72
+ call(:"delete", url, params, headers)
73
+ end
74
+
75
+ # @param [Hash] params a hash of params to be passed to the service
76
+ # @option params [String] name package group category identifier
77
+ # @option params [String] template_id template numeric identifier
78
+ #
79
+ # @param [Hash] headers additional http headers
80
+ def add_package_group_category(params = { }, headers = { })
81
+ check_params params, :allowed => true, :method => __method__
82
+ url, params = fill_params_in_url "/api/templates/:template_id/package_group_categories", params
83
+ call(:"post", url, params, headers)
84
+ end
85
+
86
+ # @param [Hash] params a hash of params to be passed to the service
87
+ # @option params [String] id package group category identifier
88
+ # @option params [String] template_id template numeric identifier
89
+ #
90
+ # @param [Hash] headers additional http headers
91
+ def remove_package_group_category(params = { }, headers = { })
92
+ check_params params, :allowed => true, :method => __method__
93
+ url, params = fill_params_in_url "/api/templates/:template_id/package_group_categories/:id", params
94
+ call(:"delete", url, params, headers)
95
+ end
96
+
97
+ # @param [Hash] params a hash of params to be passed to the service
98
+ # @option params [String] id distribution identifier
99
+ # @option params [String] template_id template numeric identifier
100
+ #
101
+ # @param [Hash] headers additional http headers
102
+ def add_distribution(params = { }, headers = { })
103
+ check_params params, :allowed => true, :method => __method__
104
+ url, params = fill_params_in_url "/api/templates/:template_id/distributions", params
105
+ call(:"post", url, params, headers)
106
+ end
107
+
108
+ # @param [Hash] params a hash of params to be passed to the service
109
+ # @option params [String] id distribution identifier
110
+ # @option params [String] template_id template numeric identifier
111
+ #
112
+ # @param [Hash] headers additional http headers
113
+ def remove_distribution(params = { }, headers = { })
114
+ check_params params, :allowed => true, :method => __method__
115
+ url, params = fill_params_in_url "/api/templates/:template_id/distributions/:id", params
116
+ call(:"delete", url, params, headers)
117
+ end
118
+
119
+ # @param [Hash] params a hash of params to be passed to the service
120
+ # @option params [String] id repository numeric identifier
121
+ # @option params [String] template_id template numeric identifier
122
+ #
123
+ # @param [Hash] headers additional http headers
124
+ def add_repo(params = { }, headers = { })
125
+ check_params params, :allowed => true, :method => __method__
126
+ url, params = fill_params_in_url "/api/templates/:template_id/repositories", params
127
+ call(:"post", url, params, headers)
128
+ end
129
+
130
+ # @param [Hash] params a hash of params to be passed to the service
131
+ # @option params [String] id repository numeric identifier
132
+ # @option params [String] template_id template numeric identifier
133
+ #
134
+ # @param [Hash] headers additional http headers
135
+ def remove_repo(params = { }, headers = { })
136
+ check_params params, :allowed => true, :method => __method__
137
+ url, params = fill_params_in_url "/api/templates/:template_id/repositories/:id", params
138
+ call(:"delete", url, params, headers)
139
+ end
140
+
141
+ end
142
+ end
143
+ end
@@ -0,0 +1,20 @@
1
+ module KatelloApi
2
+ module Resources
3
+ class Uebercert < KatelloApi::Base
4
+ def self.doc
5
+ @doc ||= KatelloApi.doc['resources']["uebercerts"]
6
+ end
7
+
8
+ # @param [Hash] params a hash of params to be passed to the service
9
+ # @option params [String] regenerate when set to ‘true’ certificate will be re-issued
10
+ #
11
+ # @param [Hash] headers additional http headers
12
+ def show(params = { }, headers = { })
13
+ check_params params, :allowed => true, :method => __method__
14
+ url, params = fill_params_in_url "/api/organizations/:organization_id/uebercert", params
15
+ call(:"get", url, params, headers)
16
+ end
17
+
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,113 @@
1
+ module KatelloApi
2
+ module Resources
3
+ class User < KatelloApi::Base
4
+ def self.doc
5
+ @doc ||= KatelloApi.doc['resources']["users"]
6
+ end
7
+
8
+ # @param [Hash] params a hash of params to be passed to the service
9
+ # @option params [String] disabled filter by disabled flag
10
+ # @option params [String] email filter by email
11
+ # @option params [String] username filter by username
12
+ #
13
+ # @param [Hash] headers additional http headers
14
+ def index(params = { }, headers = { })
15
+ check_params params, :allowed => true, :method => __method__
16
+ url, params = fill_params_in_url "/api/users", params
17
+ call(:"get", url, params, headers)
18
+ end
19
+
20
+ # @param [Hash] params a hash of params to be passed to the service
21
+ #
22
+ # @param [Hash] headers additional http headers
23
+ def show(params = { }, headers = { })
24
+ check_params params, :allowed => false, :method => __method__
25
+ url, params = fill_params_in_url "/api/users/:id", params
26
+ call(:"get", url, params, headers)
27
+ end
28
+
29
+ # @param [Hash] params a hash of params to be passed to the service
30
+ # @option params [Numeric, nil] default_environment_id
31
+ # @option params [String, nil] disabled
32
+ # @option params [String] email
33
+ # @option params [String] password
34
+ # @option params [String] username
35
+ #
36
+ # @param [Hash] headers additional http headers
37
+ def create(params = { }, headers = { })
38
+ check_params params, :allowed => true, :method => __method__
39
+ url, params = fill_params_in_url "/api/users", params
40
+ call(:"post", url, params, headers)
41
+ end
42
+
43
+ # @param [Hash] params a hash of params to be passed to the service
44
+ # @option params [Numeric, nil] default_environment_id
45
+ # @option params [String, nil] disabled
46
+ # @option params [String] email
47
+ # @option params [String] password
48
+ #
49
+ # @param [Hash] headers additional http headers
50
+ def update(params = { }, headers = { })
51
+ check_params params, :allowed => true, :method => __method__
52
+ url, params = fill_params_in_url "/api/users/:id", params
53
+ call(:"put", url, params, headers)
54
+ end
55
+
56
+ # @param [Hash] params a hash of params to be passed to the service
57
+ #
58
+ # @param [Hash] headers additional http headers
59
+ def destroy(params = { }, headers = { })
60
+ check_params params, :allowed => false, :method => __method__
61
+ url, params = fill_params_in_url "/api/users/:id", params
62
+ call(:"delete", url, params, headers)
63
+ end
64
+
65
+ # @param [Hash] params a hash of params to be passed to the service
66
+ #
67
+ # @param [Hash] headers additional http headers
68
+ def list_roles(params = { }, headers = { })
69
+ check_params params, :allowed => false, :method => __method__
70
+ url, params = fill_params_in_url "/api/users/:user_id/roles", params
71
+ call(:"get", url, params, headers)
72
+ end
73
+
74
+ # @param [Hash] params a hash of params to be passed to the service
75
+ #
76
+ # @param [Hash] headers additional http headers
77
+ def sync_ldap_roles(params = { }, headers = { })
78
+ check_params params, :allowed => false, :method => __method__
79
+ url, params = fill_params_in_url "/api/users/sync_ldap_roles", params
80
+ call(:"get", url, params, headers)
81
+ end
82
+
83
+ # @param [Hash] params a hash of params to be passed to the service
84
+ # @option params [Numeric] role_id
85
+ #
86
+ # @param [Hash] headers additional http headers
87
+ def add_role(params = { }, headers = { })
88
+ check_params params, :allowed => true, :method => __method__
89
+ url, params = fill_params_in_url "/api/users/:user_id/roles", params
90
+ call(:"post", url, params, headers)
91
+ end
92
+
93
+ # @param [Hash] params a hash of params to be passed to the service
94
+ #
95
+ # @param [Hash] headers additional http headers
96
+ def remove_role(params = { }, headers = { })
97
+ check_params params, :allowed => false, :method => __method__
98
+ url, params = fill_params_in_url "/api/users/:user_id/roles/:id", params
99
+ call(:"delete", url, params, headers)
100
+ end
101
+
102
+ # @param [Hash] params a hash of params to be passed to the service
103
+ #
104
+ # @param [Hash] headers additional http headers
105
+ def report(params = { }, headers = { })
106
+ check_params params, :allowed => false, :method => __method__
107
+ url, params = fill_params_in_url "/api/users/report", params
108
+ call(:"get", url, params, headers)
109
+ end
110
+
111
+ end
112
+ end
113
+ end
@@ -0,0 +1,19 @@
1
+ unless RestClient.const_defined? :OAUTH_EXTENSION
2
+ RestClient::OAUTH_EXTENSION = lambda do |request, args|
3
+ if args[:oauth]
4
+ uri = URI.parse args[:url]
5
+ default_options = { :site => "#{uri.scheme}://#{uri.host}:#{uri.port.to_s}",
6
+ :request_token_path => "",
7
+ :authorize_path => "",
8
+ :access_token_path => "" }
9
+ options = default_options.merge args[:oauth][:options] || { }
10
+ consumer = OAuth::Consumer.new(args[:oauth][:consumer_key], args[:oauth][:consumer_secret], options)
11
+
12
+ consumer.sign!(request)
13
+ end
14
+ end
15
+ end
16
+
17
+ unless RestClient.before_execution_procs.include? RestClient::OAUTH_EXTENSION
18
+ RestClient.add_before_execution_proc &RestClient::OAUTH_EXTENSION
19
+ end
@@ -0,0 +1,3 @@
1
+ module KatelloApi
2
+ VERSION = "0.0.1" unless defined? KatelloApi::VERSION
3
+ end
@@ -0,0 +1,23 @@
1
+ require 'json'
2
+ require 'yaml'
3
+
4
+ module KatelloApi
5
+ def self.client_config
6
+ @client_config ||= YAML.load_file("#{root}/katello_api/config.yml")
7
+ end
8
+
9
+ def self.root
10
+ @root ||= File.expand_path(File.dirname(__FILE__))
11
+ end
12
+
13
+ def self.doc
14
+ @doc ||= File.open("#{root}/katello_api/documentation.json", 'r') do |f|
15
+ JSON.load(f.read)['docs']
16
+ end
17
+ end
18
+ end
19
+
20
+ require 'katello_api/base'
21
+ require 'katello_api/version'
22
+ resource_files = Dir[File.expand_path("#{KatelloApi.root}/katello_api/resources/*.rb", __FILE__)]
23
+ resource_files.each { |f| require f }
metadata ADDED
@@ -0,0 +1,160 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: katello_api
3
+ version: !ruby/object:Gem::Version
4
+ hash: 29
5
+ prerelease:
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 1
10
+ version: 0.0.1
11
+ platform: ruby
12
+ authors:
13
+ - Katello
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2013-03-13 00:00:00 Z
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: json
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ none: false
25
+ requirements:
26
+ - - ">="
27
+ - !ruby/object:Gem::Version
28
+ hash: 3
29
+ segments:
30
+ - 0
31
+ version: "0"
32
+ type: :runtime
33
+ version_requirements: *id001
34
+ - !ruby/object:Gem::Dependency
35
+ name: rest-client
36
+ prerelease: false
37
+ requirement: &id002 !ruby/object:Gem::Requirement
38
+ none: false
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ hash: 13
43
+ segments:
44
+ - 1
45
+ - 6
46
+ - 1
47
+ version: 1.6.1
48
+ type: :runtime
49
+ version_requirements: *id002
50
+ - !ruby/object:Gem::Dependency
51
+ name: oauth
52
+ prerelease: false
53
+ requirement: &id003 !ruby/object:Gem::Requirement
54
+ none: false
55
+ requirements:
56
+ - - ">="
57
+ - !ruby/object:Gem::Version
58
+ hash: 3
59
+ segments:
60
+ - 0
61
+ version: "0"
62
+ type: :runtime
63
+ version_requirements: *id003
64
+ description: Helps you to use Katello's API calls from your app
65
+ email:
66
+ - katello-devel@redhat.com
67
+ executables: []
68
+
69
+ extensions: []
70
+
71
+ extra_rdoc_files: []
72
+
73
+ files:
74
+ - Gemfile
75
+ - MIT-LICENSE
76
+ - README.rdoc
77
+ - Rakefile
78
+ - katello_api.gemspec
79
+ - lib/katello_api.rb
80
+ - lib/katello_api/base.rb
81
+ - lib/katello_api/config.yml
82
+ - lib/katello_api/resources/activation_key.rb
83
+ - lib/katello_api/resources/architecture.rb
84
+ - lib/katello_api/resources/changeset.rb
85
+ - lib/katello_api/resources/changesets_content.rb
86
+ - lib/katello_api/resources/compute_resource.rb
87
+ - lib/katello_api/resources/config_template.rb
88
+ - lib/katello_api/resources/content_view.rb
89
+ - lib/katello_api/resources/content_view_definition.rb
90
+ - lib/katello_api/resources/crl.rb
91
+ - lib/katello_api/resources/distribution.rb
92
+ - lib/katello_api/resources/distributor.rb
93
+ - lib/katello_api/resources/domain.rb
94
+ - lib/katello_api/resources/environment.rb
95
+ - lib/katello_api/resources/erratum.rb
96
+ - lib/katello_api/resources/gpg_key.rb
97
+ - lib/katello_api/resources/hardware_model.rb
98
+ - lib/katello_api/resources/organization.rb
99
+ - lib/katello_api/resources/package.rb
100
+ - lib/katello_api/resources/permission.rb
101
+ - lib/katello_api/resources/ping.rb
102
+ - lib/katello_api/resources/product.rb
103
+ - lib/katello_api/resources/provider.rb
104
+ - lib/katello_api/resources/repository.rb
105
+ - lib/katello_api/resources/repository_set.rb
106
+ - lib/katello_api/resources/role.rb
107
+ - lib/katello_api/resources/role_ldap_group.rb
108
+ - lib/katello_api/resources/smart_proxy.rb
109
+ - lib/katello_api/resources/statu.rb
110
+ - lib/katello_api/resources/subnet.rb
111
+ - lib/katello_api/resources/subscription.rb
112
+ - lib/katello_api/resources/sync.rb
113
+ - lib/katello_api/resources/sync_plan.rb
114
+ - lib/katello_api/resources/system.rb
115
+ - lib/katello_api/resources/system_group.rb
116
+ - lib/katello_api/resources/system_group_erratum.rb
117
+ - lib/katello_api/resources/system_group_package.rb
118
+ - lib/katello_api/resources/system_package.rb
119
+ - lib/katello_api/resources/task.rb
120
+ - lib/katello_api/resources/template.rb
121
+ - lib/katello_api/resources/templates_content.rb
122
+ - lib/katello_api/resources/uebercert.rb
123
+ - lib/katello_api/resources/user.rb
124
+ - lib/katello_api/rest_client_oauth.rb
125
+ - lib/katello_api/version.rb
126
+ homepage: http://github.com/katello/Katello
127
+ licenses: []
128
+
129
+ post_install_message:
130
+ rdoc_options: []
131
+
132
+ require_paths:
133
+ - lib
134
+ required_ruby_version: !ruby/object:Gem::Requirement
135
+ none: false
136
+ requirements:
137
+ - - ">="
138
+ - !ruby/object:Gem::Version
139
+ hash: 3
140
+ segments:
141
+ - 0
142
+ version: "0"
143
+ required_rubygems_version: !ruby/object:Gem::Requirement
144
+ none: false
145
+ requirements:
146
+ - - ">="
147
+ - !ruby/object:Gem::Version
148
+ hash: 3
149
+ segments:
150
+ - 0
151
+ version: "0"
152
+ requirements: []
153
+
154
+ rubyforge_project:
155
+ rubygems_version: 1.8.25
156
+ signing_key:
157
+ specification_version: 3
158
+ summary: Ruby bindings for Katello's rest API
159
+ test_files: []
160
+