pulp_rpm_client 3.17.20 → 3.18.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (92) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +10 -4
  3. data/docs/AcsRpmApi.md +11 -13
  4. data/docs/ContentAdvisoriesApi.md +8 -8
  5. data/docs/ContentDistributionTreesApi.md +8 -8
  6. data/docs/ContentModulemdDefaultsApi.md +13 -29
  7. data/docs/ContentModulemdObsoletesApi.md +192 -0
  8. data/docs/ContentModulemdsApi.md +13 -41
  9. data/docs/ContentPackagecategoriesApi.md +8 -8
  10. data/docs/ContentPackageenvironmentsApi.md +8 -8
  11. data/docs/ContentPackagegroupsApi.md +8 -8
  12. data/docs/ContentPackagelangpacksApi.md +8 -8
  13. data/docs/ContentPackagesApi.md +12 -12
  14. data/docs/ContentRepoMetadataFilesApi.md +8 -8
  15. data/docs/DistributionsRpmApi.md +8 -8
  16. data/docs/PaginatedrpmModulemdObsoleteResponseList.md +23 -0
  17. data/docs/PatchedrpmRpmRepository.md +1 -1
  18. data/docs/PublicationsRpmApi.md +8 -8
  19. data/docs/RemotesRpmApi.md +8 -8
  20. data/docs/RemotesUlnApi.md +8 -8
  21. data/docs/RepositoriesRpmApi.md +8 -8
  22. data/docs/RepositoriesRpmVersionsApi.md +8 -8
  23. data/docs/RpmModulemd.md +8 -12
  24. data/docs/RpmModulemdDefaults.md +4 -12
  25. data/docs/RpmModulemdDefaultsResponse.md +0 -14
  26. data/docs/RpmModulemdObsolete.md +35 -0
  27. data/docs/RpmModulemdObsoleteResponse.md +37 -0
  28. data/docs/RpmModulemdResponse.md +5 -15
  29. data/docs/RpmPackage.md +1 -1
  30. data/docs/RpmRpmPublication.md +1 -1
  31. data/docs/RpmRpmPublicationResponse.md +1 -1
  32. data/docs/RpmRpmRepository.md +1 -1
  33. data/docs/RpmRpmRepositoryResponse.md +1 -1
  34. data/lib/pulp_rpm_client/api/acs_rpm_api.rb +16 -24
  35. data/lib/pulp_rpm_client/api/content_advisories_api.rb +12 -12
  36. data/lib/pulp_rpm_client/api/content_distribution_trees_api.rb +12 -12
  37. data/lib/pulp_rpm_client/api/content_modulemd_defaults_api.rb +23 -69
  38. data/lib/pulp_rpm_client/api/content_modulemd_obsoletes_api.rb +238 -0
  39. data/lib/pulp_rpm_client/api/content_modulemds_api.rb +23 -107
  40. data/lib/pulp_rpm_client/api/content_packagecategories_api.rb +12 -12
  41. data/lib/pulp_rpm_client/api/content_packageenvironments_api.rb +12 -12
  42. data/lib/pulp_rpm_client/api/content_packagegroups_api.rb +12 -12
  43. data/lib/pulp_rpm_client/api/content_packagelangpacks_api.rb +12 -12
  44. data/lib/pulp_rpm_client/api/content_packages_api.rb +20 -24
  45. data/lib/pulp_rpm_client/api/content_repo_metadata_files_api.rb +12 -12
  46. data/lib/pulp_rpm_client/api/distributions_rpm_api.rb +12 -12
  47. data/lib/pulp_rpm_client/api/publications_rpm_api.rb +12 -12
  48. data/lib/pulp_rpm_client/api/remotes_rpm_api.rb +12 -12
  49. data/lib/pulp_rpm_client/api/remotes_uln_api.rb +12 -12
  50. data/lib/pulp_rpm_client/api/repositories_rpm_api.rb +12 -12
  51. data/lib/pulp_rpm_client/api/repositories_rpm_versions_api.rb +12 -12
  52. data/lib/pulp_rpm_client/models/paginatedrpm_modulemd_obsolete_response_list.rb +237 -0
  53. data/lib/pulp_rpm_client/models/patchedrpm_rpm_repository.rb +1 -1
  54. data/lib/pulp_rpm_client/models/rpm_modulemd.rb +83 -78
  55. data/lib/pulp_rpm_client/models/rpm_modulemd_defaults.rb +38 -78
  56. data/lib/pulp_rpm_client/models/rpm_modulemd_defaults_response.rb +1 -71
  57. data/lib/pulp_rpm_client/models/rpm_modulemd_obsolete.rb +464 -0
  58. data/lib/pulp_rpm_client/models/rpm_modulemd_obsolete_response.rb +332 -0
  59. data/lib/pulp_rpm_client/models/rpm_modulemd_response.rb +30 -74
  60. data/lib/pulp_rpm_client/models/rpm_package.rb +3 -12
  61. data/lib/pulp_rpm_client/models/rpm_rpm_publication.rb +1 -1
  62. data/lib/pulp_rpm_client/models/rpm_rpm_publication_response.rb +1 -1
  63. data/lib/pulp_rpm_client/models/rpm_rpm_repository.rb +1 -1
  64. data/lib/pulp_rpm_client/models/rpm_rpm_repository_response.rb +1 -1
  65. data/lib/pulp_rpm_client/version.rb +1 -1
  66. data/lib/pulp_rpm_client.rb +4 -0
  67. data/spec/api/acs_rpm_api_spec.rb +4 -5
  68. data/spec/api/content_advisories_api_spec.rb +4 -4
  69. data/spec/api/content_distribution_trees_api_spec.rb +4 -4
  70. data/spec/api/content_modulemd_defaults_api_spec.rb +5 -12
  71. data/spec/api/content_modulemd_obsoletes_api_spec.rb +80 -0
  72. data/spec/api/content_modulemds_api_spec.rb +5 -18
  73. data/spec/api/content_packagecategories_api_spec.rb +4 -4
  74. data/spec/api/content_packageenvironments_api_spec.rb +4 -4
  75. data/spec/api/content_packagegroups_api_spec.rb +4 -4
  76. data/spec/api/content_packagelangpacks_api_spec.rb +4 -4
  77. data/spec/api/content_packages_api_spec.rb +5 -5
  78. data/spec/api/content_repo_metadata_files_api_spec.rb +4 -4
  79. data/spec/api/distributions_rpm_api_spec.rb +4 -4
  80. data/spec/api/publications_rpm_api_spec.rb +4 -4
  81. data/spec/api/remotes_rpm_api_spec.rb +4 -4
  82. data/spec/api/remotes_uln_api_spec.rb +4 -4
  83. data/spec/api/repositories_rpm_api_spec.rb +4 -4
  84. data/spec/api/repositories_rpm_versions_api_spec.rb +4 -4
  85. data/spec/models/paginatedrpm_modulemd_obsolete_response_list_spec.rb +59 -0
  86. data/spec/models/rpm_modulemd_defaults_response_spec.rb +0 -42
  87. data/spec/models/rpm_modulemd_defaults_spec.rb +4 -28
  88. data/spec/models/rpm_modulemd_obsolete_response_spec.rb +101 -0
  89. data/spec/models/rpm_modulemd_obsolete_spec.rb +95 -0
  90. data/spec/models/rpm_modulemd_response_spec.rb +11 -41
  91. data/spec/models/rpm_modulemd_spec.rb +12 -24
  92. metadata +86 -70
@@ -0,0 +1,101 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #Fetch, Upload, Organize, and Distribute Software Packages
5
+
6
+ The version of the OpenAPI document: v3
7
+ Contact: pulp-list@redhat.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.3.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for PulpRpmClient::RpmModulemdObsoleteResponse
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'RpmModulemdObsoleteResponse' do
21
+ before do
22
+ # run before each test
23
+ @instance = PulpRpmClient::RpmModulemdObsoleteResponse.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of RpmModulemdObsoleteResponse' do
31
+ it 'should create an instance of RpmModulemdObsoleteResponse' do
32
+ expect(@instance).to be_instance_of(PulpRpmClient::RpmModulemdObsoleteResponse)
33
+ end
34
+ end
35
+ describe 'test attribute "pulp_href"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "pulp_created"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ describe 'test attribute "modified"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
53
+ describe 'test attribute "module_name"' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
59
+ describe 'test attribute "module_stream"' do
60
+ it 'should work' do
61
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
+ end
63
+ end
64
+
65
+ describe 'test attribute "message"' do
66
+ it 'should work' do
67
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
+ end
69
+ end
70
+
71
+ describe 'test attribute "override_previous"' do
72
+ it 'should work' do
73
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
+ end
75
+ end
76
+
77
+ describe 'test attribute "module_context"' do
78
+ it 'should work' do
79
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
+ end
81
+ end
82
+
83
+ describe 'test attribute "eol_date"' do
84
+ it 'should work' do
85
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
86
+ end
87
+ end
88
+
89
+ describe 'test attribute "obsoleted_by_module_name"' do
90
+ it 'should work' do
91
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
92
+ end
93
+ end
94
+
95
+ describe 'test attribute "obsoleted_by_module_stream"' do
96
+ it 'should work' do
97
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
98
+ end
99
+ end
100
+
101
+ end
@@ -0,0 +1,95 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #Fetch, Upload, Organize, and Distribute Software Packages
5
+
6
+ The version of the OpenAPI document: v3
7
+ Contact: pulp-list@redhat.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.3.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for PulpRpmClient::RpmModulemdObsolete
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'RpmModulemdObsolete' do
21
+ before do
22
+ # run before each test
23
+ @instance = PulpRpmClient::RpmModulemdObsolete.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of RpmModulemdObsolete' do
31
+ it 'should create an instance of RpmModulemdObsolete' do
32
+ expect(@instance).to be_instance_of(PulpRpmClient::RpmModulemdObsolete)
33
+ end
34
+ end
35
+ describe 'test attribute "modified"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "module_name"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ describe 'test attribute "module_stream"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
53
+ describe 'test attribute "message"' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
59
+ describe 'test attribute "override_previous"' do
60
+ it 'should work' do
61
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
+ end
63
+ end
64
+
65
+ describe 'test attribute "module_context"' do
66
+ it 'should work' do
67
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
+ end
69
+ end
70
+
71
+ describe 'test attribute "eol_date"' do
72
+ it 'should work' do
73
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
+ end
75
+ end
76
+
77
+ describe 'test attribute "obsoleted_by_module_name"' do
78
+ it 'should work' do
79
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
+ end
81
+ end
82
+
83
+ describe 'test attribute "obsoleted_by_module_stream"' do
84
+ it 'should work' do
85
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
86
+ end
87
+ end
88
+
89
+ describe 'test attribute "snippet"' do
90
+ it 'should work' do
91
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
92
+ end
93
+ end
94
+
95
+ end
@@ -44,97 +44,67 @@ describe 'RpmModulemdResponse' do
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "md5"' do
48
- it 'should work' do
49
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
- end
51
- end
52
-
53
- describe 'test attribute "sha1"' do
54
- it 'should work' do
55
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
- end
57
- end
58
-
59
- describe 'test attribute "sha224"' do
60
- it 'should work' do
61
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
- end
63
- end
64
-
65
- describe 'test attribute "sha256"' do
66
- it 'should work' do
67
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
- end
69
- end
70
-
71
- describe 'test attribute "sha384"' do
72
- it 'should work' do
73
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
- end
75
- end
76
-
77
- describe 'test attribute "sha512"' do
47
+ describe 'test attribute "name"' do
78
48
  it 'should work' do
79
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
50
  end
81
51
  end
82
52
 
83
- describe 'test attribute "artifact"' do
53
+ describe 'test attribute "stream"' do
84
54
  it 'should work' do
85
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
86
56
  end
87
57
  end
88
58
 
89
- describe 'test attribute "name"' do
59
+ describe 'test attribute "version"' do
90
60
  it 'should work' do
91
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
92
62
  end
93
63
  end
94
64
 
95
- describe 'test attribute "stream"' do
65
+ describe 'test attribute "static_context"' do
96
66
  it 'should work' do
97
67
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
98
68
  end
99
69
  end
100
70
 
101
- describe 'test attribute "version"' do
71
+ describe 'test attribute "context"' do
102
72
  it 'should work' do
103
73
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
104
74
  end
105
75
  end
106
76
 
107
- describe 'test attribute "static_context"' do
77
+ describe 'test attribute "arch"' do
108
78
  it 'should work' do
109
79
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
110
80
  end
111
81
  end
112
82
 
113
- describe 'test attribute "context"' do
83
+ describe 'test attribute "artifacts"' do
114
84
  it 'should work' do
115
85
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
116
86
  end
117
87
  end
118
88
 
119
- describe 'test attribute "arch"' do
89
+ describe 'test attribute "dependencies"' do
120
90
  it 'should work' do
121
91
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
122
92
  end
123
93
  end
124
94
 
125
- describe 'test attribute "artifacts"' do
95
+ describe 'test attribute "packages"' do
126
96
  it 'should work' do
127
97
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
128
98
  end
129
99
  end
130
100
 
131
- describe 'test attribute "dependencies"' do
101
+ describe 'test attribute "profiles"' do
132
102
  it 'should work' do
133
103
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
134
104
  end
135
105
  end
136
106
 
137
- describe 'test attribute "packages"' do
107
+ describe 'test attribute "description"' do
138
108
  it 'should work' do
139
109
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
140
110
  end
@@ -32,85 +32,73 @@ describe 'RpmModulemd' do
32
32
  expect(@instance).to be_instance_of(PulpRpmClient::RpmModulemd)
33
33
  end
34
34
  end
35
- describe 'test attribute "artifact"' do
36
- it 'should work' do
37
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
- end
39
- end
40
-
41
- describe 'test attribute "relative_path"' do
42
- it 'should work' do
43
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
- end
45
- end
46
-
47
- describe 'test attribute "file"' do
35
+ describe 'test attribute "name"' do
48
36
  it 'should work' do
49
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
38
  end
51
39
  end
52
40
 
53
- describe 'test attribute "repository"' do
41
+ describe 'test attribute "stream"' do
54
42
  it 'should work' do
55
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
44
  end
57
45
  end
58
46
 
59
- describe 'test attribute "upload"' do
47
+ describe 'test attribute "version"' do
60
48
  it 'should work' do
61
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
50
  end
63
51
  end
64
52
 
65
- describe 'test attribute "name"' do
53
+ describe 'test attribute "static_context"' do
66
54
  it 'should work' do
67
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
56
  end
69
57
  end
70
58
 
71
- describe 'test attribute "stream"' do
59
+ describe 'test attribute "context"' do
72
60
  it 'should work' do
73
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
62
  end
75
63
  end
76
64
 
77
- describe 'test attribute "version"' do
65
+ describe 'test attribute "arch"' do
78
66
  it 'should work' do
79
67
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
68
  end
81
69
  end
82
70
 
83
- describe 'test attribute "static_context"' do
71
+ describe 'test attribute "artifacts"' do
84
72
  it 'should work' do
85
73
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
86
74
  end
87
75
  end
88
76
 
89
- describe 'test attribute "context"' do
77
+ describe 'test attribute "dependencies"' do
90
78
  it 'should work' do
91
79
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
92
80
  end
93
81
  end
94
82
 
95
- describe 'test attribute "arch"' do
83
+ describe 'test attribute "packages"' do
96
84
  it 'should work' do
97
85
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
98
86
  end
99
87
  end
100
88
 
101
- describe 'test attribute "artifacts"' do
89
+ describe 'test attribute "snippet"' do
102
90
  it 'should work' do
103
91
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
104
92
  end
105
93
  end
106
94
 
107
- describe 'test attribute "dependencies"' do
95
+ describe 'test attribute "profiles"' do
108
96
  it 'should work' do
109
97
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
110
98
  end
111
99
  end
112
100
 
113
- describe 'test attribute "packages"' do
101
+ describe 'test attribute "description"' do
114
102
  it 'should work' do
115
103
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
116
104
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pulp_rpm_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.17.20
4
+ version: 3.18.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-10-13 00:00:00.000000000 Z
11
+ date: 2022-09-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -89,6 +89,7 @@ files:
89
89
  - docs/ContentAdvisoriesApi.md
90
90
  - docs/ContentDistributionTreesApi.md
91
91
  - docs/ContentModulemdDefaultsApi.md
92
+ - docs/ContentModulemdObsoletesApi.md
92
93
  - docs/ContentModulemdsApi.md
93
94
  - docs/ContentPackagecategoriesApi.md
94
95
  - docs/ContentPackageenvironmentsApi.md
@@ -105,6 +106,7 @@ files:
105
106
  - docs/PaginatedRepositoryVersionResponseList.md
106
107
  - docs/PaginatedrpmDistributionTreeResponseList.md
107
108
  - docs/PaginatedrpmModulemdDefaultsResponseList.md
109
+ - docs/PaginatedrpmModulemdObsoleteResponseList.md
108
110
  - docs/PaginatedrpmModulemdResponseList.md
109
111
  - docs/PaginatedrpmPackageCategoryResponseList.md
110
112
  - docs/PaginatedrpmPackageEnvironmentResponseList.md
@@ -139,6 +141,8 @@ files:
139
141
  - docs/RpmModulemd.md
140
142
  - docs/RpmModulemdDefaults.md
141
143
  - docs/RpmModulemdDefaultsResponse.md
144
+ - docs/RpmModulemdObsolete.md
145
+ - docs/RpmModulemdObsoleteResponse.md
142
146
  - docs/RpmModulemdResponse.md
143
147
  - docs/RpmPackage.md
144
148
  - docs/RpmPackageCategoryResponse.md
@@ -173,6 +177,7 @@ files:
173
177
  - lib/pulp_rpm_client/api/content_advisories_api.rb
174
178
  - lib/pulp_rpm_client/api/content_distribution_trees_api.rb
175
179
  - lib/pulp_rpm_client/api/content_modulemd_defaults_api.rb
180
+ - lib/pulp_rpm_client/api/content_modulemd_obsoletes_api.rb
176
181
  - lib/pulp_rpm_client/api/content_modulemds_api.rb
177
182
  - lib/pulp_rpm_client/api/content_packagecategories_api.rb
178
183
  - lib/pulp_rpm_client/api/content_packageenvironments_api.rb
@@ -204,6 +209,7 @@ files:
204
209
  - lib/pulp_rpm_client/models/paginated_repository_version_response_list.rb
205
210
  - lib/pulp_rpm_client/models/paginatedrpm_distribution_tree_response_list.rb
206
211
  - lib/pulp_rpm_client/models/paginatedrpm_modulemd_defaults_response_list.rb
212
+ - lib/pulp_rpm_client/models/paginatedrpm_modulemd_obsolete_response_list.rb
207
213
  - lib/pulp_rpm_client/models/paginatedrpm_modulemd_response_list.rb
208
214
  - lib/pulp_rpm_client/models/paginatedrpm_package_category_response_list.rb
209
215
  - lib/pulp_rpm_client/models/paginatedrpm_package_environment_response_list.rb
@@ -231,6 +237,8 @@ files:
231
237
  - lib/pulp_rpm_client/models/rpm_modulemd.rb
232
238
  - lib/pulp_rpm_client/models/rpm_modulemd_defaults.rb
233
239
  - lib/pulp_rpm_client/models/rpm_modulemd_defaults_response.rb
240
+ - lib/pulp_rpm_client/models/rpm_modulemd_obsolete.rb
241
+ - lib/pulp_rpm_client/models/rpm_modulemd_obsolete_response.rb
234
242
  - lib/pulp_rpm_client/models/rpm_modulemd_response.rb
235
243
  - lib/pulp_rpm_client/models/rpm_package.rb
236
244
  - lib/pulp_rpm_client/models/rpm_package_category_response.rb
@@ -266,6 +274,7 @@ files:
266
274
  - spec/api/content_advisories_api_spec.rb
267
275
  - spec/api/content_distribution_trees_api_spec.rb
268
276
  - spec/api/content_modulemd_defaults_api_spec.rb
277
+ - spec/api/content_modulemd_obsoletes_api_spec.rb
269
278
  - spec/api/content_modulemds_api_spec.rb
270
279
  - spec/api/content_packagecategories_api_spec.rb
271
280
  - spec/api/content_packageenvironments_api_spec.rb
@@ -296,6 +305,7 @@ files:
296
305
  - spec/models/paginated_repository_version_response_list_spec.rb
297
306
  - spec/models/paginatedrpm_distribution_tree_response_list_spec.rb
298
307
  - spec/models/paginatedrpm_modulemd_defaults_response_list_spec.rb
308
+ - spec/models/paginatedrpm_modulemd_obsolete_response_list_spec.rb
299
309
  - spec/models/paginatedrpm_modulemd_response_list_spec.rb
300
310
  - spec/models/paginatedrpm_package_category_response_list_spec.rb
301
311
  - spec/models/paginatedrpm_package_environment_response_list_spec.rb
@@ -322,6 +332,8 @@ files:
322
332
  - spec/models/rpm_distribution_tree_response_spec.rb
323
333
  - spec/models/rpm_modulemd_defaults_response_spec.rb
324
334
  - spec/models/rpm_modulemd_defaults_spec.rb
335
+ - spec/models/rpm_modulemd_obsolete_response_spec.rb
336
+ - spec/models/rpm_modulemd_obsolete_spec.rb
325
337
  - spec/models/rpm_modulemd_response_spec.rb
326
338
  - spec/models/rpm_modulemd_spec.rb
327
339
  - spec/models/rpm_package_category_response_spec.rb
@@ -377,94 +389,98 @@ signing_key:
377
389
  specification_version: 4
378
390
  summary: Pulp 3 API Ruby Gem
379
391
  test_files:
380
- - spec/api/content_packagegroups_api_spec.rb
392
+ - spec/api/content_packagecategories_api_spec.rb
393
+ - spec/api/content_packages_api_spec.rb
394
+ - spec/api/content_packageenvironments_api_spec.rb
381
395
  - spec/api/rpm_comps_api_spec.rb
396
+ - spec/api/acs_rpm_api_spec.rb
397
+ - spec/api/rpm_copy_api_spec.rb
398
+ - spec/api/content_repo_metadata_files_api_spec.rb
399
+ - spec/api/remotes_rpm_api_spec.rb
382
400
  - spec/api/repositories_rpm_api_spec.rb
383
- - spec/api/content_modulemds_api_spec.rb
384
- - spec/api/content_packages_api_spec.rb
385
- - spec/api/content_packagecategories_api_spec.rb
386
- - spec/api/content_modulemd_defaults_api_spec.rb
401
+ - spec/api/content_advisories_api_spec.rb
387
402
  - spec/api/remotes_uln_api_spec.rb
403
+ - spec/api/repositories_rpm_versions_api_spec.rb
388
404
  - spec/api/publications_rpm_api_spec.rb
389
- - spec/api/content_repo_metadata_files_api_spec.rb
405
+ - spec/api/content_modulemds_api_spec.rb
390
406
  - spec/api/distributions_rpm_api_spec.rb
391
- - spec/api/repositories_rpm_versions_api_spec.rb
392
- - spec/api/content_packageenvironments_api_spec.rb
393
- - spec/api/rpm_copy_api_spec.rb
394
- - spec/api/content_distribution_trees_api_spec.rb
395
- - spec/api/content_advisories_api_spec.rb
396
- - spec/api/remotes_rpm_api_spec.rb
407
+ - spec/api/content_modulemd_obsoletes_api_spec.rb
408
+ - spec/api/content_modulemd_defaults_api_spec.rb
397
409
  - spec/api/content_packagelangpacks_api_spec.rb
398
- - spec/api/acs_rpm_api_spec.rb
410
+ - spec/api/content_packagegroups_api_spec.rb
411
+ - spec/api/content_distribution_trees_api_spec.rb
399
412
  - spec/api_client_spec.rb
400
413
  - spec/configuration_spec.rb
414
+ - spec/models/paginatedrpm_rpm_remote_response_list_spec.rb
415
+ - spec/models/paginatedrpm_repo_metadata_file_response_list_spec.rb
416
+ - spec/models/paginatedrpm_uln_remote_response_list_spec.rb
417
+ - spec/models/rpm_package_response_spec.rb
418
+ - spec/models/rpm_update_collection_response_spec.rb
419
+ - spec/models/paginatedrpm_rpm_alternate_content_source_response_list_spec.rb
420
+ - spec/models/image_response_spec.rb
421
+ - spec/models/patchedrpm_rpm_alternate_content_source_spec.rb
422
+ - spec/models/paginatedrpm_modulemd_defaults_response_list_spec.rb
423
+ - spec/models/async_operation_response_spec.rb
424
+ - spec/models/patchedrpm_rpm_repository_spec.rb
425
+ - spec/models/rpm_repository_sync_url_spec.rb
426
+ - spec/models/rpm_rpm_publication_spec.rb
427
+ - spec/models/rpm_rpm_remote_spec.rb
401
428
  - spec/models/rpm_repo_metadata_file_response_spec.rb
402
- - spec/models/paginatedrpm_package_langpacks_response_list_spec.rb
403
- - spec/models/paginatedrpm_rpm_repository_response_list_spec.rb
404
- - spec/models/comps_xml_spec.rb
405
- - spec/models/content_summary_response_spec.rb
406
- - spec/models/rpm_modulemd_spec.rb
407
- - spec/models/rpm_update_record_spec.rb
408
- - spec/models/rpm_package_category_response_spec.rb
409
429
  - spec/models/paginatedrpm_distribution_tree_response_list_spec.rb
410
- - spec/models/repair_spec.rb
411
- - spec/models/copy_spec.rb
430
+ - spec/models/rpm_uln_remote_response_spec.rb
431
+ - spec/models/paginatedrpm_package_langpacks_response_list_spec.rb
412
432
  - spec/models/rpm_rpm_alternate_content_source_response_spec.rb
413
- - spec/models/paginatedrpm_modulemd_defaults_response_list_spec.rb
414
- - spec/models/rpm_rpm_repository_spec.rb
415
- - spec/models/rpm_package_response_spec.rb
416
- - spec/models/paginatedrpm_package_environment_response_list_spec.rb
417
- - spec/models/artifact_response_spec.rb
418
- - spec/models/paginated_repository_version_response_list_spec.rb
433
+ - spec/models/repository_version_response_spec.rb
419
434
  - spec/models/rpm_modulemd_response_spec.rb
435
+ - spec/models/rpm_update_record_spec.rb
436
+ - spec/models/rpm_package_langpacks_response_spec.rb
437
+ - spec/models/checksum_response_spec.rb
438
+ - spec/models/paginatedrpm_package_category_response_list_spec.rb
439
+ - spec/models/paginatedrpm_rpm_distribution_response_list_spec.rb
440
+ - spec/models/repair_spec.rb
441
+ - spec/models/rpm_distribution_tree_response_spec.rb
442
+ - spec/models/paginatedrpm_package_group_response_list_spec.rb
443
+ - spec/models/rpm_uln_remote_spec.rb
444
+ - spec/models/paginatedrpm_rpm_publication_response_list_spec.rb
445
+ - spec/models/patchedrpm_uln_remote_spec.rb
420
446
  - spec/models/variant_response_spec.rb
421
447
  - spec/models/rpm_modulemd_defaults_spec.rb
448
+ - spec/models/rpm_rpm_alternate_content_source_spec.rb
422
449
  - spec/models/addon_response_spec.rb
423
- - spec/models/policy_enum_spec.rb
424
- - spec/models/repository_add_remove_content_spec.rb
425
- - spec/models/patchedrpm_uln_remote_spec.rb
426
- - spec/models/paginatedrpm_rpm_alternate_content_source_response_list_spec.rb
427
- - spec/models/paginatedrpm_package_group_response_list_spec.rb
428
- - spec/models/rpm_update_collection_spec.rb
429
- - spec/models/rpm_package_environment_response_spec.rb
430
- - spec/models/paginatedrpm_modulemd_response_list_spec.rb
431
- - spec/models/image_response_spec.rb
432
- - spec/models/rpm_rpm_distribution_response_spec.rb
433
- - spec/models/paginatedrpm_rpm_distribution_response_list_spec.rb
434
- - spec/models/rpm_package_spec.rb
435
- - spec/models/paginatedrpm_package_category_response_list_spec.rb
436
- - spec/models/rpm_package_langpacks_response_spec.rb
437
- - spec/models/checksum_response_spec.rb
438
- - spec/models/rpm_update_collection_response_spec.rb
450
+ - spec/models/rpm_rpm_repository_spec.rb
451
+ - spec/models/comps_xml_spec.rb
439
452
  - spec/models/rpm_rpm_publication_response_spec.rb
440
- - spec/models/metadata_checksum_type_enum_spec.rb
441
- - spec/models/paginatedrpm_update_record_response_list_spec.rb
453
+ - spec/models/rpm_package_spec.rb
454
+ - spec/models/paginatedrpm_package_response_list_spec.rb
455
+ - spec/models/rpm_modulemd_obsolete_spec.rb
456
+ - spec/models/rpm_rpm_distribution_response_spec.rb
442
457
  - spec/models/rpm_rpm_remote_response_spec.rb
443
- - spec/models/rpm_update_record_response_spec.rb
444
- - spec/models/skip_types_enum_spec.rb
445
- - spec/models/paginatedrpm_rpm_publication_response_list_spec.rb
446
- - spec/models/patchedrpm_rpm_alternate_content_source_spec.rb
447
- - spec/models/rpm_rpm_alternate_content_source_spec.rb
448
- - spec/models/rpm_uln_remote_spec.rb
449
- - spec/models/rpm_repository_sync_url_spec.rb
450
- - spec/models/patchedrpm_rpm_remote_spec.rb
451
- - spec/models/rpm_rpm_publication_spec.rb
458
+ - spec/models/policy_enum_spec.rb
452
459
  - spec/models/rpm_rpm_repository_response_spec.rb
453
- - spec/models/rpm_uln_remote_response_spec.rb
454
- - spec/models/task_group_operation_response_spec.rb
455
- - spec/models/rpm_distribution_tree_response_spec.rb
456
- - spec/models/patchedrpm_rpm_distribution_spec.rb
457
- - spec/models/rpm_rpm_remote_spec.rb
458
- - spec/models/repository_version_response_spec.rb
459
- - spec/models/paginatedrpm_package_response_list_spec.rb
460
- - spec/models/rpm_package_group_response_spec.rb
460
+ - spec/models/patchedrpm_rpm_remote_spec.rb
461
461
  - spec/models/package_checksum_type_enum_spec.rb
462
- - spec/models/paginatedrpm_uln_remote_response_list_spec.rb
463
- - spec/models/paginatedrpm_rpm_remote_response_list_spec.rb
462
+ - spec/models/artifact_response_spec.rb
463
+ - spec/models/paginated_repository_version_response_list_spec.rb
464
464
  - spec/models/rpm_modulemd_defaults_response_spec.rb
465
- - spec/models/async_operation_response_spec.rb
465
+ - spec/models/patchedrpm_rpm_distribution_spec.rb
466
+ - spec/models/metadata_checksum_type_enum_spec.rb
467
+ - spec/models/paginatedrpm_package_environment_response_list_spec.rb
466
468
  - spec/models/sync_policy_enum_spec.rb
467
- - spec/models/paginatedrpm_repo_metadata_file_response_list_spec.rb
469
+ - spec/models/skip_types_enum_spec.rb
470
+ - spec/models/rpm_package_group_response_spec.rb
471
+ - spec/models/rpm_package_environment_response_spec.rb
472
+ - spec/models/paginatedrpm_rpm_repository_response_list_spec.rb
468
473
  - spec/models/rpm_rpm_distribution_spec.rb
469
- - spec/models/patchedrpm_rpm_repository_spec.rb
474
+ - spec/models/rpm_update_record_response_spec.rb
475
+ - spec/models/rpm_package_category_response_spec.rb
476
+ - spec/models/task_group_operation_response_spec.rb
477
+ - spec/models/rpm_modulemd_spec.rb
478
+ - spec/models/paginatedrpm_modulemd_obsolete_response_list_spec.rb
479
+ - spec/models/paginatedrpm_update_record_response_list_spec.rb
480
+ - spec/models/repository_add_remove_content_spec.rb
481
+ - spec/models/copy_spec.rb
482
+ - spec/models/paginatedrpm_modulemd_response_list_spec.rb
483
+ - spec/models/content_summary_response_spec.rb
484
+ - spec/models/rpm_update_collection_spec.rb
485
+ - spec/models/rpm_modulemd_obsolete_response_spec.rb
470
486
  - spec/spec_helper.rb