pulp_rpm_client 3.30.2 → 3.31.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.
- checksums.yaml +4 -4
- data/README.md +9 -5
- data/docs/AcsRpmApi.md +64 -28
- data/docs/ContentAdvisoriesApi.md +22 -8
- data/docs/ContentDistributionTreesApi.md +20 -8
- data/docs/ContentModulemdDefaultsApi.md +28 -12
- data/docs/ContentModulemdObsoletesApi.md +28 -12
- data/docs/ContentModulemdsApi.md +28 -12
- data/docs/ContentPackagecategoriesApi.md +20 -8
- data/docs/ContentPackageenvironmentsApi.md +20 -8
- data/docs/ContentPackagegroupsApi.md +20 -8
- data/docs/ContentPackagelangpacksApi.md +20 -8
- data/docs/ContentPackagesApi.md +105 -8
- data/docs/ContentRepoMetadataFilesApi.md +20 -8
- data/docs/DistributionsRpmApi.md +72 -32
- data/docs/PublicationsRpmApi.md +40 -16
- data/docs/RemotesRpmApi.md +72 -32
- data/docs/RemotesUlnApi.md +72 -32
- data/docs/RepositoriesRpmApi.md +88 -40
- data/docs/RepositoriesRpmVersionsApi.md +20 -8
- data/docs/RpmCompsApi.md +2 -0
- data/docs/RpmCopyApi.md +8 -4
- data/docs/RpmPruneApi.md +8 -4
- data/lib/pulp_rpm_client/api/acs_rpm_api.rb +33 -0
- data/lib/pulp_rpm_client/api/content_advisories_api.rb +15 -0
- data/lib/pulp_rpm_client/api/content_distribution_trees_api.rb +12 -0
- data/lib/pulp_rpm_client/api/content_modulemd_defaults_api.rb +15 -0
- data/lib/pulp_rpm_client/api/content_modulemd_obsoletes_api.rb +15 -0
- data/lib/pulp_rpm_client/api/content_modulemds_api.rb +15 -0
- data/lib/pulp_rpm_client/api/content_packagecategories_api.rb +12 -0
- data/lib/pulp_rpm_client/api/content_packageenvironments_api.rb +12 -0
- data/lib/pulp_rpm_client/api/content_packagegroups_api.rb +12 -0
- data/lib/pulp_rpm_client/api/content_packagelangpacks_api.rb +12 -0
- data/lib/pulp_rpm_client/api/content_packages_api.rb +99 -0
- data/lib/pulp_rpm_client/api/content_repo_metadata_files_api.rb +12 -0
- data/lib/pulp_rpm_client/api/distributions_rpm_api.rb +36 -0
- data/lib/pulp_rpm_client/api/publications_rpm_api.rb +24 -0
- data/lib/pulp_rpm_client/api/remotes_rpm_api.rb +36 -0
- data/lib/pulp_rpm_client/api/remotes_uln_api.rb +36 -0
- data/lib/pulp_rpm_client/api/repositories_rpm_api.rb +42 -0
- data/lib/pulp_rpm_client/api/repositories_rpm_versions_api.rb +12 -0
- data/lib/pulp_rpm_client/api/rpm_comps_api.rb +3 -0
- data/lib/pulp_rpm_client/api/rpm_copy_api.rb +3 -0
- data/lib/pulp_rpm_client/api/rpm_prune_api.rb +3 -0
- data/lib/pulp_rpm_client/version.rb +1 -1
- data/spec/api/acs_rpm_api_spec.rb +11 -0
- data/spec/api/content_advisories_api_spec.rb +5 -0
- data/spec/api/content_distribution_trees_api_spec.rb +4 -0
- data/spec/api/content_modulemd_defaults_api_spec.rb +5 -0
- data/spec/api/content_modulemd_obsoletes_api_spec.rb +5 -0
- data/spec/api/content_modulemds_api_spec.rb +5 -0
- data/spec/api/content_packagecategories_api_spec.rb +4 -0
- data/spec/api/content_packageenvironments_api_spec.rb +4 -0
- data/spec/api/content_packagegroups_api_spec.rb +4 -0
- data/spec/api/content_packagelangpacks_api_spec.rb +4 -0
- data/spec/api/content_packages_api_spec.rb +22 -0
- data/spec/api/content_repo_metadata_files_api_spec.rb +4 -0
- data/spec/api/distributions_rpm_api_spec.rb +12 -0
- data/spec/api/publications_rpm_api_spec.rb +8 -0
- data/spec/api/remotes_rpm_api_spec.rb +12 -0
- data/spec/api/remotes_uln_api_spec.rb +12 -0
- data/spec/api/repositories_rpm_api_spec.rb +14 -0
- data/spec/api/repositories_rpm_versions_api_spec.rb +4 -0
- data/spec/api/rpm_comps_api_spec.rb +1 -0
- data/spec/api/rpm_copy_api_spec.rb +1 -0
- data/spec/api/rpm_prune_api_spec.rb +1 -0
- metadata +82 -82
@@ -37,6 +37,7 @@ describe 'ContentModulemdDefaultsApi' do
|
|
37
37
|
# Trigger an asynchronous task to create content,optionally create new repository version.
|
38
38
|
# @param rpm_modulemd_defaults
|
39
39
|
# @param [Hash] opts the optional parameters
|
40
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
40
41
|
# @return [AsyncOperationResponse]
|
41
42
|
describe 'create test' do
|
42
43
|
it 'should work' do
|
@@ -48,6 +49,7 @@ describe 'ContentModulemdDefaultsApi' do
|
|
48
49
|
# List modulemd defaultss
|
49
50
|
# ViewSet for Modulemd.
|
50
51
|
# @param [Hash] opts the optional parameters
|
52
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
51
53
|
# @option opts [Integer] :limit Number of results to return per page.
|
52
54
|
# @option opts [String] :_module Filter results where module matches value
|
53
55
|
# @option opts [Array<String>] :module__in Filter results where module is in a comma-separated list of values
|
@@ -79,6 +81,7 @@ describe 'ContentModulemdDefaultsApi' do
|
|
79
81
|
# ViewSet for Modulemd.
|
80
82
|
# @param rpm_modulemd_defaults_href
|
81
83
|
# @param [Hash] opts the optional parameters
|
84
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
82
85
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
83
86
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
84
87
|
# @return [RpmModulemdDefaultsResponse]
|
@@ -94,6 +97,7 @@ describe 'ContentModulemdDefaultsApi' do
|
|
94
97
|
# @param rpm_modulemd_defaults_href
|
95
98
|
# @param set_label
|
96
99
|
# @param [Hash] opts the optional parameters
|
100
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
97
101
|
# @return [SetLabelResponse]
|
98
102
|
describe 'set_label test' do
|
99
103
|
it 'should work' do
|
@@ -107,6 +111,7 @@ describe 'ContentModulemdDefaultsApi' do
|
|
107
111
|
# @param rpm_modulemd_defaults_href
|
108
112
|
# @param unset_label
|
109
113
|
# @param [Hash] opts the optional parameters
|
114
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
110
115
|
# @return [UnsetLabelResponse]
|
111
116
|
describe 'unset_label test' do
|
112
117
|
it 'should work' do
|
@@ -37,6 +37,7 @@ describe 'ContentModulemdObsoletesApi' do
|
|
37
37
|
# Trigger an asynchronous task to create content,optionally create new repository version.
|
38
38
|
# @param rpm_modulemd_obsolete
|
39
39
|
# @param [Hash] opts the optional parameters
|
40
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
40
41
|
# @return [AsyncOperationResponse]
|
41
42
|
describe 'create test' do
|
42
43
|
it 'should work' do
|
@@ -48,6 +49,7 @@ describe 'ContentModulemdObsoletesApi' do
|
|
48
49
|
# List modulemd obsoletes
|
49
50
|
# ViewSet for Modulemd.
|
50
51
|
# @param [Hash] opts the optional parameters
|
52
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
51
53
|
# @option opts [Integer] :limit Number of results to return per page.
|
52
54
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
53
55
|
# @option opts [Array<String>] :ordering Ordering * `pk` - Pk * `-pk` - Pk (descending)
|
@@ -74,6 +76,7 @@ describe 'ContentModulemdObsoletesApi' do
|
|
74
76
|
# ViewSet for Modulemd.
|
75
77
|
# @param rpm_modulemd_obsolete_href
|
76
78
|
# @param [Hash] opts the optional parameters
|
79
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
77
80
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
78
81
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
79
82
|
# @return [RpmModulemdObsoleteResponse]
|
@@ -89,6 +92,7 @@ describe 'ContentModulemdObsoletesApi' do
|
|
89
92
|
# @param rpm_modulemd_obsolete_href
|
90
93
|
# @param set_label
|
91
94
|
# @param [Hash] opts the optional parameters
|
95
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
92
96
|
# @return [SetLabelResponse]
|
93
97
|
describe 'set_label test' do
|
94
98
|
it 'should work' do
|
@@ -102,6 +106,7 @@ describe 'ContentModulemdObsoletesApi' do
|
|
102
106
|
# @param rpm_modulemd_obsolete_href
|
103
107
|
# @param unset_label
|
104
108
|
# @param [Hash] opts the optional parameters
|
109
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
105
110
|
# @return [UnsetLabelResponse]
|
106
111
|
describe 'unset_label test' do
|
107
112
|
it 'should work' do
|
@@ -37,6 +37,7 @@ describe 'ContentModulemdsApi' do
|
|
37
37
|
# Trigger an asynchronous task to create content,optionally create new repository version.
|
38
38
|
# @param rpm_modulemd
|
39
39
|
# @param [Hash] opts the optional parameters
|
40
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
40
41
|
# @return [AsyncOperationResponse]
|
41
42
|
describe 'create test' do
|
42
43
|
it 'should work' do
|
@@ -48,6 +49,7 @@ describe 'ContentModulemdsApi' do
|
|
48
49
|
# List modulemds
|
49
50
|
# ViewSet for Modulemd.
|
50
51
|
# @param [Hash] opts the optional parameters
|
52
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
51
53
|
# @option opts [String] :arch Filter results where arch matches value
|
52
54
|
# @option opts [Array<String>] :arch__in Filter results where arch is in a comma-separated list of values
|
53
55
|
# @option opts [String] :context Filter results where context matches value
|
@@ -85,6 +87,7 @@ describe 'ContentModulemdsApi' do
|
|
85
87
|
# ViewSet for Modulemd.
|
86
88
|
# @param rpm_modulemd_href
|
87
89
|
# @param [Hash] opts the optional parameters
|
90
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
88
91
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
89
92
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
90
93
|
# @return [RpmModulemdResponse]
|
@@ -100,6 +103,7 @@ describe 'ContentModulemdsApi' do
|
|
100
103
|
# @param rpm_modulemd_href
|
101
104
|
# @param set_label
|
102
105
|
# @param [Hash] opts the optional parameters
|
106
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
103
107
|
# @return [SetLabelResponse]
|
104
108
|
describe 'set_label test' do
|
105
109
|
it 'should work' do
|
@@ -113,6 +117,7 @@ describe 'ContentModulemdsApi' do
|
|
113
117
|
# @param rpm_modulemd_href
|
114
118
|
# @param unset_label
|
115
119
|
# @param [Hash] opts the optional parameters
|
120
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
116
121
|
# @return [UnsetLabelResponse]
|
117
122
|
describe 'unset_label test' do
|
118
123
|
it 'should work' do
|
@@ -36,6 +36,7 @@ describe 'ContentPackagecategoriesApi' do
|
|
36
36
|
# List package categorys
|
37
37
|
# PackageCategory ViewSet.
|
38
38
|
# @param [Hash] opts the optional parameters
|
39
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
39
40
|
# @option opts [Integer] :limit Number of results to return per page.
|
40
41
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
41
42
|
# @option opts [Array<String>] :ordering Ordering * `pk` - Pk * `-pk` - Pk (descending)
|
@@ -62,6 +63,7 @@ describe 'ContentPackagecategoriesApi' do
|
|
62
63
|
# PackageCategory ViewSet.
|
63
64
|
# @param rpm_package_category_href
|
64
65
|
# @param [Hash] opts the optional parameters
|
66
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
65
67
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
66
68
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
67
69
|
# @return [RpmPackageCategoryResponse]
|
@@ -77,6 +79,7 @@ describe 'ContentPackagecategoriesApi' do
|
|
77
79
|
# @param rpm_package_category_href
|
78
80
|
# @param set_label
|
79
81
|
# @param [Hash] opts the optional parameters
|
82
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
80
83
|
# @return [SetLabelResponse]
|
81
84
|
describe 'set_label test' do
|
82
85
|
it 'should work' do
|
@@ -90,6 +93,7 @@ describe 'ContentPackagecategoriesApi' do
|
|
90
93
|
# @param rpm_package_category_href
|
91
94
|
# @param unset_label
|
92
95
|
# @param [Hash] opts the optional parameters
|
96
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
93
97
|
# @return [UnsetLabelResponse]
|
94
98
|
describe 'unset_label test' do
|
95
99
|
it 'should work' do
|
@@ -36,6 +36,7 @@ describe 'ContentPackageenvironmentsApi' do
|
|
36
36
|
# List package environments
|
37
37
|
# PackageEnvironment ViewSet.
|
38
38
|
# @param [Hash] opts the optional parameters
|
39
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
39
40
|
# @option opts [Integer] :limit Number of results to return per page.
|
40
41
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
41
42
|
# @option opts [Array<String>] :ordering Ordering * `pk` - Pk * `-pk` - Pk (descending)
|
@@ -62,6 +63,7 @@ describe 'ContentPackageenvironmentsApi' do
|
|
62
63
|
# PackageEnvironment ViewSet.
|
63
64
|
# @param rpm_package_environment_href
|
64
65
|
# @param [Hash] opts the optional parameters
|
66
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
65
67
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
66
68
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
67
69
|
# @return [RpmPackageEnvironmentResponse]
|
@@ -77,6 +79,7 @@ describe 'ContentPackageenvironmentsApi' do
|
|
77
79
|
# @param rpm_package_environment_href
|
78
80
|
# @param set_label
|
79
81
|
# @param [Hash] opts the optional parameters
|
82
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
80
83
|
# @return [SetLabelResponse]
|
81
84
|
describe 'set_label test' do
|
82
85
|
it 'should work' do
|
@@ -90,6 +93,7 @@ describe 'ContentPackageenvironmentsApi' do
|
|
90
93
|
# @param rpm_package_environment_href
|
91
94
|
# @param unset_label
|
92
95
|
# @param [Hash] opts the optional parameters
|
96
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
93
97
|
# @return [UnsetLabelResponse]
|
94
98
|
describe 'unset_label test' do
|
95
99
|
it 'should work' do
|
@@ -36,6 +36,7 @@ describe 'ContentPackagegroupsApi' do
|
|
36
36
|
# List package groups
|
37
37
|
# PackageGroup ViewSet.
|
38
38
|
# @param [Hash] opts the optional parameters
|
39
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
39
40
|
# @option opts [Integer] :limit Number of results to return per page.
|
40
41
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
41
42
|
# @option opts [Array<String>] :ordering Ordering * `pk` - Pk * `-pk` - Pk (descending)
|
@@ -62,6 +63,7 @@ describe 'ContentPackagegroupsApi' do
|
|
62
63
|
# PackageGroup ViewSet.
|
63
64
|
# @param rpm_package_group_href
|
64
65
|
# @param [Hash] opts the optional parameters
|
66
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
65
67
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
66
68
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
67
69
|
# @return [RpmPackageGroupResponse]
|
@@ -77,6 +79,7 @@ describe 'ContentPackagegroupsApi' do
|
|
77
79
|
# @param rpm_package_group_href
|
78
80
|
# @param set_label
|
79
81
|
# @param [Hash] opts the optional parameters
|
82
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
80
83
|
# @return [SetLabelResponse]
|
81
84
|
describe 'set_label test' do
|
82
85
|
it 'should work' do
|
@@ -90,6 +93,7 @@ describe 'ContentPackagegroupsApi' do
|
|
90
93
|
# @param rpm_package_group_href
|
91
94
|
# @param unset_label
|
92
95
|
# @param [Hash] opts the optional parameters
|
96
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
93
97
|
# @return [UnsetLabelResponse]
|
94
98
|
describe 'unset_label test' do
|
95
99
|
it 'should work' do
|
@@ -36,6 +36,7 @@ describe 'ContentPackagelangpacksApi' do
|
|
36
36
|
# List package langpackss
|
37
37
|
# PackageLangpacks ViewSet.
|
38
38
|
# @param [Hash] opts the optional parameters
|
39
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
39
40
|
# @option opts [Integer] :limit Number of results to return per page.
|
40
41
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
41
42
|
# @option opts [Array<String>] :ordering Ordering * `pk` - Pk * `-pk` - Pk (descending)
|
@@ -62,6 +63,7 @@ describe 'ContentPackagelangpacksApi' do
|
|
62
63
|
# PackageLangpacks ViewSet.
|
63
64
|
# @param rpm_package_langpacks_href
|
64
65
|
# @param [Hash] opts the optional parameters
|
66
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
65
67
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
66
68
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
67
69
|
# @return [RpmPackageLangpacksResponse]
|
@@ -77,6 +79,7 @@ describe 'ContentPackagelangpacksApi' do
|
|
77
79
|
# @param rpm_package_langpacks_href
|
78
80
|
# @param set_label
|
79
81
|
# @param [Hash] opts the optional parameters
|
82
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
80
83
|
# @return [SetLabelResponse]
|
81
84
|
describe 'set_label test' do
|
82
85
|
it 'should work' do
|
@@ -90,6 +93,7 @@ describe 'ContentPackagelangpacksApi' do
|
|
90
93
|
# @param rpm_package_langpacks_href
|
91
94
|
# @param unset_label
|
92
95
|
# @param [Hash] opts the optional parameters
|
96
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
93
97
|
# @return [UnsetLabelResponse]
|
94
98
|
describe 'unset_label test' do
|
95
99
|
it 'should work' do
|
@@ -36,6 +36,7 @@ describe 'ContentPackagesApi' do
|
|
36
36
|
# Create a package
|
37
37
|
# Trigger an asynchronous task to create an RPM package,optionally create new repository version.
|
38
38
|
# @param [Hash] opts the optional parameters
|
39
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
39
40
|
# @option opts [String] :repository A URI of a repository the new content unit should be associated with.
|
40
41
|
# @option opts [Hash<String, String>] :pulp_labels A dictionary of arbitrary key/value pairs used to describe a specific Content instance.
|
41
42
|
# @option opts [String] :artifact Artifact file representing the physical content
|
@@ -54,6 +55,7 @@ describe 'ContentPackagesApi' do
|
|
54
55
|
# List packages
|
55
56
|
# A ViewSet for Package. Define endpoint name which will appear in the API endpoint for this content type. For example:: http://pulp.example.com/pulp/api/v3/content/rpm/packages/ Also specify queryset and serializer for Package.
|
56
57
|
# @param [Hash] opts the optional parameters
|
58
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
57
59
|
# @option opts [String] :arch Filter results where arch matches value
|
58
60
|
# @option opts [String] :arch__contains Filter results where arch contains value
|
59
61
|
# @option opts [Array<String>] :arch__in Filter results where arch is in a comma-separated list of values
|
@@ -108,6 +110,7 @@ describe 'ContentPackagesApi' do
|
|
108
110
|
# A ViewSet for Package. Define endpoint name which will appear in the API endpoint for this content type. For example:: http://pulp.example.com/pulp/api/v3/content/rpm/packages/ Also specify queryset and serializer for Package.
|
109
111
|
# @param rpm_package_href
|
110
112
|
# @param [Hash] opts the optional parameters
|
113
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
111
114
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
112
115
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
113
116
|
# @return [RpmPackageResponse]
|
@@ -123,6 +126,7 @@ describe 'ContentPackagesApi' do
|
|
123
126
|
# @param rpm_package_href
|
124
127
|
# @param set_label
|
125
128
|
# @param [Hash] opts the optional parameters
|
129
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
126
130
|
# @return [SetLabelResponse]
|
127
131
|
describe 'set_label test' do
|
128
132
|
it 'should work' do
|
@@ -136,6 +140,7 @@ describe 'ContentPackagesApi' do
|
|
136
140
|
# @param rpm_package_href
|
137
141
|
# @param unset_label
|
138
142
|
# @param [Hash] opts the optional parameters
|
143
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
139
144
|
# @return [UnsetLabelResponse]
|
140
145
|
describe 'unset_label test' do
|
141
146
|
it 'should work' do
|
@@ -143,4 +148,21 @@ describe 'ContentPackagesApi' do
|
|
143
148
|
end
|
144
149
|
end
|
145
150
|
|
151
|
+
# unit tests for upload
|
152
|
+
# Upload an RPM package synchronously.
|
153
|
+
# Synchronously upload an RPM package.
|
154
|
+
# @param [Hash] opts the optional parameters
|
155
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
156
|
+
# @option opts [Hash<String, String>] :pulp_labels A dictionary of arbitrary key/value pairs used to describe a specific Content instance.
|
157
|
+
# @option opts [String] :artifact Artifact file representing the physical content
|
158
|
+
# @option opts [File] :file An uploaded file that may be turned into the content unit.
|
159
|
+
# @option opts [String] :upload An uncommitted upload that may be turned into the content unit.
|
160
|
+
# @option opts [String] :file_url A url that Pulp can download and turn into the content unit.
|
161
|
+
# @return [RpmPackageResponse]
|
162
|
+
describe 'upload test' do
|
163
|
+
it 'should work' do
|
164
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
165
|
+
end
|
166
|
+
end
|
167
|
+
|
146
168
|
end
|
@@ -36,6 +36,7 @@ describe 'ContentRepoMetadataFilesApi' do
|
|
36
36
|
# List repo metadata files
|
37
37
|
# RepoMetadataFile Viewset.
|
38
38
|
# @param [Hash] opts the optional parameters
|
39
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
39
40
|
# @option opts [Integer] :limit Number of results to return per page.
|
40
41
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
41
42
|
# @option opts [Array<String>] :ordering Ordering * `pk` - Pk * `-pk` - Pk (descending)
|
@@ -62,6 +63,7 @@ describe 'ContentRepoMetadataFilesApi' do
|
|
62
63
|
# RepoMetadataFile Viewset.
|
63
64
|
# @param rpm_repo_metadata_file_href
|
64
65
|
# @param [Hash] opts the optional parameters
|
66
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
65
67
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
66
68
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
67
69
|
# @return [RpmRepoMetadataFileResponse]
|
@@ -77,6 +79,7 @@ describe 'ContentRepoMetadataFilesApi' do
|
|
77
79
|
# @param rpm_repo_metadata_file_href
|
78
80
|
# @param set_label
|
79
81
|
# @param [Hash] opts the optional parameters
|
82
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
80
83
|
# @return [SetLabelResponse]
|
81
84
|
describe 'set_label test' do
|
82
85
|
it 'should work' do
|
@@ -90,6 +93,7 @@ describe 'ContentRepoMetadataFilesApi' do
|
|
90
93
|
# @param rpm_repo_metadata_file_href
|
91
94
|
# @param unset_label
|
92
95
|
# @param [Hash] opts the optional parameters
|
96
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
93
97
|
# @return [UnsetLabelResponse]
|
94
98
|
describe 'unset_label test' do
|
95
99
|
it 'should work' do
|
@@ -38,6 +38,7 @@ describe 'DistributionsRpmApi' do
|
|
38
38
|
# @param rpm_rpm_distribution_href
|
39
39
|
# @param nested_role
|
40
40
|
# @param [Hash] opts the optional parameters
|
41
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
41
42
|
# @return [NestedRoleResponse]
|
42
43
|
describe 'add_role test' do
|
43
44
|
it 'should work' do
|
@@ -50,6 +51,7 @@ describe 'DistributionsRpmApi' do
|
|
50
51
|
# Trigger an asynchronous create task
|
51
52
|
# @param rpm_rpm_distribution
|
52
53
|
# @param [Hash] opts the optional parameters
|
54
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
53
55
|
# @return [AsyncOperationResponse]
|
54
56
|
describe 'create test' do
|
55
57
|
it 'should work' do
|
@@ -62,6 +64,7 @@ describe 'DistributionsRpmApi' do
|
|
62
64
|
# Trigger an asynchronous delete task
|
63
65
|
# @param rpm_rpm_distribution_href
|
64
66
|
# @param [Hash] opts the optional parameters
|
67
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
65
68
|
# @return [AsyncOperationResponse]
|
66
69
|
describe 'delete test' do
|
67
70
|
it 'should work' do
|
@@ -73,6 +76,7 @@ describe 'DistributionsRpmApi' do
|
|
73
76
|
# List rpm distributions
|
74
77
|
# ViewSet for RPM Distributions.
|
75
78
|
# @param [Hash] opts the optional parameters
|
79
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
76
80
|
# @option opts [String] :base_path Filter results where base_path matches value
|
77
81
|
# @option opts [String] :base_path__contains Filter results where base_path contains value
|
78
82
|
# @option opts [String] :base_path__icontains Filter results where base_path contains value
|
@@ -112,6 +116,7 @@ describe 'DistributionsRpmApi' do
|
|
112
116
|
# List roles assigned to this object.
|
113
117
|
# @param rpm_rpm_distribution_href
|
114
118
|
# @param [Hash] opts the optional parameters
|
119
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
115
120
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
116
121
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
117
122
|
# @return [ObjectRolesResponse]
|
@@ -126,6 +131,7 @@ describe 'DistributionsRpmApi' do
|
|
126
131
|
# List permissions available to the current user on this object.
|
127
132
|
# @param rpm_rpm_distribution_href
|
128
133
|
# @param [Hash] opts the optional parameters
|
134
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
129
135
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
130
136
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
131
137
|
# @return [MyPermissionsResponse]
|
@@ -141,6 +147,7 @@ describe 'DistributionsRpmApi' do
|
|
141
147
|
# @param rpm_rpm_distribution_href
|
142
148
|
# @param patchedrpm_rpm_distribution
|
143
149
|
# @param [Hash] opts the optional parameters
|
150
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
144
151
|
# @return [AsyncOperationResponse]
|
145
152
|
describe 'partial_update test' do
|
146
153
|
it 'should work' do
|
@@ -153,6 +160,7 @@ describe 'DistributionsRpmApi' do
|
|
153
160
|
# ViewSet for RPM Distributions.
|
154
161
|
# @param rpm_rpm_distribution_href
|
155
162
|
# @param [Hash] opts the optional parameters
|
163
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
156
164
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
157
165
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
158
166
|
# @return [RpmRpmDistributionResponse]
|
@@ -168,6 +176,7 @@ describe 'DistributionsRpmApi' do
|
|
168
176
|
# @param rpm_rpm_distribution_href
|
169
177
|
# @param nested_role
|
170
178
|
# @param [Hash] opts the optional parameters
|
179
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
171
180
|
# @return [NestedRoleResponse]
|
172
181
|
describe 'remove_role test' do
|
173
182
|
it 'should work' do
|
@@ -181,6 +190,7 @@ describe 'DistributionsRpmApi' do
|
|
181
190
|
# @param rpm_rpm_distribution_href
|
182
191
|
# @param set_label
|
183
192
|
# @param [Hash] opts the optional parameters
|
193
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
184
194
|
# @return [SetLabelResponse]
|
185
195
|
describe 'set_label test' do
|
186
196
|
it 'should work' do
|
@@ -194,6 +204,7 @@ describe 'DistributionsRpmApi' do
|
|
194
204
|
# @param rpm_rpm_distribution_href
|
195
205
|
# @param unset_label
|
196
206
|
# @param [Hash] opts the optional parameters
|
207
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
197
208
|
# @return [UnsetLabelResponse]
|
198
209
|
describe 'unset_label test' do
|
199
210
|
it 'should work' do
|
@@ -207,6 +218,7 @@ describe 'DistributionsRpmApi' do
|
|
207
218
|
# @param rpm_rpm_distribution_href
|
208
219
|
# @param rpm_rpm_distribution
|
209
220
|
# @param [Hash] opts the optional parameters
|
221
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
210
222
|
# @return [AsyncOperationResponse]
|
211
223
|
describe 'update test' do
|
212
224
|
it 'should work' do
|
@@ -38,6 +38,7 @@ describe 'PublicationsRpmApi' do
|
|
38
38
|
# @param rpm_rpm_publication_href
|
39
39
|
# @param nested_role
|
40
40
|
# @param [Hash] opts the optional parameters
|
41
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
41
42
|
# @return [NestedRoleResponse]
|
42
43
|
describe 'add_role test' do
|
43
44
|
it 'should work' do
|
@@ -50,6 +51,7 @@ describe 'PublicationsRpmApi' do
|
|
50
51
|
# Trigger an asynchronous task to create a new RPM content publication.
|
51
52
|
# @param rpm_rpm_publication
|
52
53
|
# @param [Hash] opts the optional parameters
|
54
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
53
55
|
# @return [AsyncOperationResponse]
|
54
56
|
describe 'create test' do
|
55
57
|
it 'should work' do
|
@@ -62,6 +64,7 @@ describe 'PublicationsRpmApi' do
|
|
62
64
|
# ViewSet for Rpm Publications.
|
63
65
|
# @param rpm_rpm_publication_href
|
64
66
|
# @param [Hash] opts the optional parameters
|
67
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
65
68
|
# @return [nil]
|
66
69
|
describe 'delete test' do
|
67
70
|
it 'should work' do
|
@@ -73,6 +76,7 @@ describe 'PublicationsRpmApi' do
|
|
73
76
|
# List rpm publications
|
74
77
|
# ViewSet for Rpm Publications.
|
75
78
|
# @param [Hash] opts the optional parameters
|
79
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
76
80
|
# @option opts [Boolean] :checkpoint Filter results where checkpoint matches value
|
77
81
|
# @option opts [String] :content Content Unit referenced by HREF/PRN
|
78
82
|
# @option opts [Array<String>] :content__in Multiple values may be separated by commas.
|
@@ -106,6 +110,7 @@ describe 'PublicationsRpmApi' do
|
|
106
110
|
# List roles assigned to this object.
|
107
111
|
# @param rpm_rpm_publication_href
|
108
112
|
# @param [Hash] opts the optional parameters
|
113
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
109
114
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
110
115
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
111
116
|
# @return [ObjectRolesResponse]
|
@@ -120,6 +125,7 @@ describe 'PublicationsRpmApi' do
|
|
120
125
|
# List permissions available to the current user on this object.
|
121
126
|
# @param rpm_rpm_publication_href
|
122
127
|
# @param [Hash] opts the optional parameters
|
128
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
123
129
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
124
130
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
125
131
|
# @return [MyPermissionsResponse]
|
@@ -134,6 +140,7 @@ describe 'PublicationsRpmApi' do
|
|
134
140
|
# ViewSet for Rpm Publications.
|
135
141
|
# @param rpm_rpm_publication_href
|
136
142
|
# @param [Hash] opts the optional parameters
|
143
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
137
144
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
138
145
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
139
146
|
# @return [RpmRpmPublicationResponse]
|
@@ -149,6 +156,7 @@ describe 'PublicationsRpmApi' do
|
|
149
156
|
# @param rpm_rpm_publication_href
|
150
157
|
# @param nested_role
|
151
158
|
# @param [Hash] opts the optional parameters
|
159
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
152
160
|
# @return [NestedRoleResponse]
|
153
161
|
describe 'remove_role test' do
|
154
162
|
it 'should work' do
|
@@ -38,6 +38,7 @@ describe 'RemotesRpmApi' do
|
|
38
38
|
# @param rpm_rpm_remote_href
|
39
39
|
# @param nested_role
|
40
40
|
# @param [Hash] opts the optional parameters
|
41
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
41
42
|
# @return [NestedRoleResponse]
|
42
43
|
describe 'add_role test' do
|
43
44
|
it 'should work' do
|
@@ -50,6 +51,7 @@ describe 'RemotesRpmApi' do
|
|
50
51
|
# A ViewSet for RpmRemote.
|
51
52
|
# @param rpm_rpm_remote
|
52
53
|
# @param [Hash] opts the optional parameters
|
54
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
53
55
|
# @return [RpmRpmRemoteResponse]
|
54
56
|
describe 'create test' do
|
55
57
|
it 'should work' do
|
@@ -62,6 +64,7 @@ describe 'RemotesRpmApi' do
|
|
62
64
|
# Trigger an asynchronous delete task
|
63
65
|
# @param rpm_rpm_remote_href
|
64
66
|
# @param [Hash] opts the optional parameters
|
67
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
65
68
|
# @return [AsyncOperationResponse]
|
66
69
|
describe 'delete test' do
|
67
70
|
it 'should work' do
|
@@ -73,6 +76,7 @@ describe 'RemotesRpmApi' do
|
|
73
76
|
# List rpm remotes
|
74
77
|
# A ViewSet for RpmRemote.
|
75
78
|
# @param [Hash] opts the optional parameters
|
79
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
76
80
|
# @option opts [Integer] :limit Number of results to return per page.
|
77
81
|
# @option opts [String] :name Filter results where name matches value
|
78
82
|
# @option opts [String] :name__contains Filter results where name contains value
|
@@ -111,6 +115,7 @@ describe 'RemotesRpmApi' do
|
|
111
115
|
# List roles assigned to this object.
|
112
116
|
# @param rpm_rpm_remote_href
|
113
117
|
# @param [Hash] opts the optional parameters
|
118
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
114
119
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
115
120
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
116
121
|
# @return [ObjectRolesResponse]
|
@@ -125,6 +130,7 @@ describe 'RemotesRpmApi' do
|
|
125
130
|
# List permissions available to the current user on this object.
|
126
131
|
# @param rpm_rpm_remote_href
|
127
132
|
# @param [Hash] opts the optional parameters
|
133
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
128
134
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
129
135
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
130
136
|
# @return [MyPermissionsResponse]
|
@@ -140,6 +146,7 @@ describe 'RemotesRpmApi' do
|
|
140
146
|
# @param rpm_rpm_remote_href
|
141
147
|
# @param patchedrpm_rpm_remote
|
142
148
|
# @param [Hash] opts the optional parameters
|
149
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
143
150
|
# @return [AsyncOperationResponse]
|
144
151
|
describe 'partial_update test' do
|
145
152
|
it 'should work' do
|
@@ -152,6 +159,7 @@ describe 'RemotesRpmApi' do
|
|
152
159
|
# A ViewSet for RpmRemote.
|
153
160
|
# @param rpm_rpm_remote_href
|
154
161
|
# @param [Hash] opts the optional parameters
|
162
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
155
163
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
156
164
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
157
165
|
# @return [RpmRpmRemoteResponse]
|
@@ -167,6 +175,7 @@ describe 'RemotesRpmApi' do
|
|
167
175
|
# @param rpm_rpm_remote_href
|
168
176
|
# @param nested_role
|
169
177
|
# @param [Hash] opts the optional parameters
|
178
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
170
179
|
# @return [NestedRoleResponse]
|
171
180
|
describe 'remove_role test' do
|
172
181
|
it 'should work' do
|
@@ -180,6 +189,7 @@ describe 'RemotesRpmApi' do
|
|
180
189
|
# @param rpm_rpm_remote_href
|
181
190
|
# @param set_label
|
182
191
|
# @param [Hash] opts the optional parameters
|
192
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
183
193
|
# @return [SetLabelResponse]
|
184
194
|
describe 'set_label test' do
|
185
195
|
it 'should work' do
|
@@ -193,6 +203,7 @@ describe 'RemotesRpmApi' do
|
|
193
203
|
# @param rpm_rpm_remote_href
|
194
204
|
# @param unset_label
|
195
205
|
# @param [Hash] opts the optional parameters
|
206
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
196
207
|
# @return [UnsetLabelResponse]
|
197
208
|
describe 'unset_label test' do
|
198
209
|
it 'should work' do
|
@@ -206,6 +217,7 @@ describe 'RemotesRpmApi' do
|
|
206
217
|
# @param rpm_rpm_remote_href
|
207
218
|
# @param rpm_rpm_remote
|
208
219
|
# @param [Hash] opts the optional parameters
|
220
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
209
221
|
# @return [AsyncOperationResponse]
|
210
222
|
describe 'update test' do
|
211
223
|
it 'should work' do
|