pulp_maven_client 0.2.0b1.dev01595620836 → 0.2.0b1.dev01596139522

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of pulp_maven_client might be problematic. Click here for more details.

Files changed (92) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +24 -13
  3. data/docs/ContentArtifactApi.md +32 -32
  4. data/docs/ContentSummary.md +3 -3
  5. data/docs/ContentSummaryResponse.md +21 -0
  6. data/docs/DistributionsMavenApi.md +104 -56
  7. data/docs/InlineResponse200.md +3 -3
  8. data/docs/InlineResponse2001.md +3 -3
  9. data/docs/InlineResponse2002.md +3 -3
  10. data/docs/InlineResponse2003.md +3 -3
  11. data/docs/InlineResponse2004.md +3 -3
  12. data/docs/MavenMavenArtifact.md +3 -13
  13. data/docs/MavenMavenArtifactResponse.md +29 -0
  14. data/docs/MavenMavenDistribution.md +1 -7
  15. data/docs/MavenMavenDistributionResponse.md +29 -0
  16. data/docs/MavenMavenRemote.md +2 -8
  17. data/docs/MavenMavenRemoteResponse.md +43 -0
  18. data/docs/MavenMavenRepository.md +4 -10
  19. data/docs/MavenMavenRepositoryResponse.md +29 -0
  20. data/docs/PatchedmavenMavenDistribution.md +23 -0
  21. data/docs/PatchedmavenMavenRemote.md +37 -0
  22. data/docs/PatchedmavenMavenRepository.md +21 -0
  23. data/docs/PolicyEnum.md +16 -0
  24. data/docs/RemotesMavenApi.md +121 -61
  25. data/docs/RepositoriesMavenApi.md +73 -49
  26. data/docs/RepositoriesMavenVersionsApi.md +90 -58
  27. data/docs/RepositoryVersion.md +1 -9
  28. data/docs/RepositoryVersionResponse.md +25 -0
  29. data/lib/pulp_maven_client.rb +12 -2
  30. data/lib/pulp_maven_client/api/content_artifact_api.rb +44 -44
  31. data/lib/pulp_maven_client/api/distributions_maven_api.rb +131 -68
  32. data/lib/pulp_maven_client/api/remotes_maven_api.rb +159 -78
  33. data/lib/pulp_maven_client/api/repositories_maven_api.rb +89 -62
  34. data/lib/pulp_maven_client/api/repositories_maven_versions_api.rb +119 -74
  35. data/lib/pulp_maven_client/api_client.rb +2 -2
  36. data/lib/pulp_maven_client/api_error.rb +2 -2
  37. data/lib/pulp_maven_client/configuration.rb +3 -3
  38. data/lib/pulp_maven_client/models/async_operation_response.rb +3 -2
  39. data/lib/pulp_maven_client/models/content_summary.rb +9 -15
  40. data/lib/pulp_maven_client/models/content_summary_response.rb +240 -0
  41. data/lib/pulp_maven_client/models/inline_response200.rb +3 -13
  42. data/lib/pulp_maven_client/models/inline_response2001.rb +3 -13
  43. data/lib/pulp_maven_client/models/inline_response2002.rb +3 -13
  44. data/lib/pulp_maven_client/models/inline_response2003.rb +3 -13
  45. data/lib/pulp_maven_client/models/inline_response2004.rb +3 -13
  46. data/lib/pulp_maven_client/models/maven_maven_artifact.rb +14 -117
  47. data/lib/pulp_maven_client/models/maven_maven_artifact_response.rb +272 -0
  48. data/lib/pulp_maven_client/models/maven_maven_distribution.rb +4 -85
  49. data/lib/pulp_maven_client/models/maven_maven_distribution_response.rb +279 -0
  50. data/lib/pulp_maven_client/models/maven_maven_remote.rb +5 -197
  51. data/lib/pulp_maven_client/models/maven_maven_remote_response.rb +368 -0
  52. data/lib/pulp_maven_client/models/maven_maven_repository.rb +18 -78
  53. data/lib/pulp_maven_client/models/maven_maven_repository_response.rb +271 -0
  54. data/lib/pulp_maven_client/models/patchedmaven_maven_distribution.rb +240 -0
  55. data/lib/pulp_maven_client/models/patchedmaven_maven_remote.rb +329 -0
  56. data/lib/pulp_maven_client/models/patchedmaven_maven_repository.rb +229 -0
  57. data/lib/pulp_maven_client/models/policy_enum.rb +36 -0
  58. data/lib/pulp_maven_client/models/repository_version.rb +7 -43
  59. data/lib/pulp_maven_client/models/repository_version_response.rb +246 -0
  60. data/lib/pulp_maven_client/version.rb +3 -3
  61. data/pulp_maven_client.gemspec +4 -4
  62. data/spec/api/content_artifact_api_spec.rb +14 -14
  63. data/spec/api/distributions_maven_api_spec.rb +39 -18
  64. data/spec/api/remotes_maven_api_spec.rb +48 -21
  65. data/spec/api/repositories_maven_api_spec.rb +24 -15
  66. data/spec/api/repositories_maven_versions_api_spec.rb +38 -23
  67. data/spec/api_client_spec.rb +2 -2
  68. data/spec/configuration_spec.rb +2 -2
  69. data/spec/models/async_operation_response_spec.rb +2 -2
  70. data/spec/models/content_summary_response_spec.rb +53 -0
  71. data/spec/models/content_summary_spec.rb +2 -2
  72. data/spec/models/inline_response2001_spec.rb +2 -2
  73. data/spec/models/inline_response2002_spec.rb +2 -2
  74. data/spec/models/inline_response2003_spec.rb +2 -2
  75. data/spec/models/inline_response2004_spec.rb +2 -2
  76. data/spec/models/inline_response200_spec.rb +2 -2
  77. data/spec/models/maven_maven_artifact_response_spec.rb +77 -0
  78. data/spec/models/maven_maven_artifact_spec.rb +3 -33
  79. data/spec/models/maven_maven_distribution_response_spec.rb +77 -0
  80. data/spec/models/maven_maven_distribution_spec.rb +2 -20
  81. data/spec/models/maven_maven_remote_response_spec.rb +119 -0
  82. data/spec/models/maven_maven_remote_spec.rb +2 -24
  83. data/spec/models/maven_maven_repository_response_spec.rb +77 -0
  84. data/spec/models/maven_maven_repository_spec.rb +5 -23
  85. data/spec/models/patchedmaven_maven_distribution_spec.rb +59 -0
  86. data/spec/models/patchedmaven_maven_remote_spec.rb +101 -0
  87. data/spec/models/patchedmaven_maven_repository_spec.rb +53 -0
  88. data/spec/models/policy_enum_spec.rb +35 -0
  89. data/spec/models/repository_version_response_spec.rb +65 -0
  90. data/spec/models/repository_version_spec.rb +2 -26
  91. data/spec/spec_helper.rb +2 -2
  92. metadata +44 -4
@@ -1,10 +1,10 @@
1
1
  =begin
2
2
  #Pulp 3 API
3
3
 
4
- #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ #Fetch, Upload, Organize, and Distribute Software Packages
5
5
 
6
6
  The version of the OpenAPI document: v3
7
-
7
+ Contact: pulp-list@redhat.com
8
8
  Generated by: https://openapi-generator.tech
9
9
  OpenAPI Generator version: 4.2.3
10
10
 
@@ -35,7 +35,7 @@ describe 'DistributionsMavenApi' do
35
35
  # unit tests for create
36
36
  # Create a maven distribution
37
37
  # Trigger an asynchronous create task
38
- # @param data
38
+ # @param maven_maven_distribution
39
39
  # @param [Hash] opts the optional parameters
40
40
  # @return [AsyncOperationResponse]
41
41
  describe 'create test' do
@@ -47,8 +47,15 @@ describe 'DistributionsMavenApi' do
47
47
  # unit tests for delete
48
48
  # Delete a maven distribution
49
49
  # Trigger an asynchronous delete task
50
- # @param maven_distribution_href URI of Maven Distribution. e.g.: /pulp/api/v3/distributions/maven/maven/1/
50
+ # @param maven_distribution_href
51
51
  # @param [Hash] opts the optional parameters
52
+ # @option opts [String] :base_path base_path
53
+ # @option opts [String] :base_path__contains base_path__contains
54
+ # @option opts [String] :base_path__icontains base_path__icontains
55
+ # @option opts [String] :base_path__in base_path__in
56
+ # @option opts [String] :name name
57
+ # @option opts [String] :name__in name__in
58
+ # @option opts [String] :ordering Which field to use when ordering the results.
52
59
  # @return [AsyncOperationResponse]
53
60
  describe 'delete test' do
54
61
  it 'should work' do
@@ -60,15 +67,15 @@ describe 'DistributionsMavenApi' do
60
67
  # List maven distributions
61
68
  # ViewSet for Maven Distributions.
62
69
  # @param [Hash] opts the optional parameters
63
- # @option opts [String] :ordering Which field to use when ordering the results.
64
- # @option opts [String] :name
65
- # @option opts [String] :name__in Filter results where name is in a comma-separated list of values
66
- # @option opts [String] :base_path
67
- # @option opts [String] :base_path__contains Filter results where base_path contains value
68
- # @option opts [String] :base_path__icontains Filter results where base_path contains value
69
- # @option opts [String] :base_path__in Filter results where base_path is in a comma-separated list of values
70
+ # @option opts [String] :base_path base_path
71
+ # @option opts [String] :base_path__contains base_path__contains
72
+ # @option opts [String] :base_path__icontains base_path__icontains
73
+ # @option opts [String] :base_path__in base_path__in
70
74
  # @option opts [Integer] :limit Number of results to return per page.
75
+ # @option opts [String] :name name
76
+ # @option opts [String] :name__in name__in
71
77
  # @option opts [Integer] :offset The initial index from which to return the results.
78
+ # @option opts [String] :ordering Which field to use when ordering the results.
72
79
  # @option opts [String] :fields A list of fields to include in the response.
73
80
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
74
81
  # @return [InlineResponse2001]
@@ -79,11 +86,18 @@ describe 'DistributionsMavenApi' do
79
86
  end
80
87
 
81
88
  # unit tests for partial_update
82
- # Partially update a maven distribution
89
+ # Update a maven distribution
83
90
  # Trigger an asynchronous partial update task
84
- # @param maven_distribution_href URI of Maven Distribution. e.g.: /pulp/api/v3/distributions/maven/maven/1/
85
- # @param data
91
+ # @param maven_distribution_href
92
+ # @param patchedmaven_maven_distribution
86
93
  # @param [Hash] opts the optional parameters
94
+ # @option opts [String] :base_path base_path
95
+ # @option opts [String] :base_path__contains base_path__contains
96
+ # @option opts [String] :base_path__icontains base_path__icontains
97
+ # @option opts [String] :base_path__in base_path__in
98
+ # @option opts [String] :name name
99
+ # @option opts [String] :name__in name__in
100
+ # @option opts [String] :ordering Which field to use when ordering the results.
87
101
  # @return [AsyncOperationResponse]
88
102
  describe 'partial_update test' do
89
103
  it 'should work' do
@@ -94,11 +108,11 @@ describe 'DistributionsMavenApi' do
94
108
  # unit tests for read
95
109
  # Inspect a maven distribution
96
110
  # ViewSet for Maven Distributions.
97
- # @param maven_distribution_href URI of Maven Distribution. e.g.: /pulp/api/v3/distributions/maven/maven/1/
111
+ # @param maven_distribution_href
98
112
  # @param [Hash] opts the optional parameters
99
113
  # @option opts [String] :fields A list of fields to include in the response.
100
114
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
101
- # @return [MavenMavenDistribution]
115
+ # @return [MavenMavenDistributionResponse]
102
116
  describe 'read test' do
103
117
  it 'should work' do
104
118
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -108,9 +122,16 @@ describe 'DistributionsMavenApi' do
108
122
  # unit tests for update
109
123
  # Update a maven distribution
110
124
  # Trigger an asynchronous update task
111
- # @param maven_distribution_href URI of Maven Distribution. e.g.: /pulp/api/v3/distributions/maven/maven/1/
112
- # @param data
125
+ # @param maven_distribution_href
126
+ # @param maven_maven_distribution
113
127
  # @param [Hash] opts the optional parameters
128
+ # @option opts [String] :base_path base_path
129
+ # @option opts [String] :base_path__contains base_path__contains
130
+ # @option opts [String] :base_path__icontains base_path__icontains
131
+ # @option opts [String] :base_path__in base_path__in
132
+ # @option opts [String] :name name
133
+ # @option opts [String] :name__in name__in
134
+ # @option opts [String] :ordering Which field to use when ordering the results.
114
135
  # @return [AsyncOperationResponse]
115
136
  describe 'update test' do
116
137
  it 'should work' do
@@ -1,10 +1,10 @@
1
1
  =begin
2
2
  #Pulp 3 API
3
3
 
4
- #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ #Fetch, Upload, Organize, and Distribute Software Packages
5
5
 
6
6
  The version of the OpenAPI document: v3
7
-
7
+ Contact: pulp-list@redhat.com
8
8
  Generated by: https://openapi-generator.tech
9
9
  OpenAPI Generator version: 4.2.3
10
10
 
@@ -35,9 +35,9 @@ describe 'RemotesMavenApi' do
35
35
  # unit tests for create
36
36
  # Create a maven remote
37
37
  # A ViewSet for MavenRemote.
38
- # @param data
38
+ # @param maven_maven_remote
39
39
  # @param [Hash] opts the optional parameters
40
- # @return [MavenMavenRemote]
40
+ # @return [MavenMavenRemoteResponse]
41
41
  describe 'create test' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -47,8 +47,17 @@ describe 'RemotesMavenApi' do
47
47
  # unit tests for delete
48
48
  # Delete a maven remote
49
49
  # Trigger an asynchronous delete task
50
- # @param maven_remote_href URI of Maven Remote. e.g.: /pulp/api/v3/remotes/maven/maven/1/
50
+ # @param maven_remote_href
51
51
  # @param [Hash] opts the optional parameters
52
+ # @option opts [String] :name name
53
+ # @option opts [String] :name__in name__in
54
+ # @option opts [String] :ordering Which field to use when ordering the results.
55
+ # @option opts [String] :pulp_last_updated pulp_last_updated
56
+ # @option opts [String] :pulp_last_updated__gt pulp_last_updated__gt
57
+ # @option opts [String] :pulp_last_updated__gte pulp_last_updated__gte
58
+ # @option opts [String] :pulp_last_updated__lt pulp_last_updated__lt
59
+ # @option opts [String] :pulp_last_updated__lte pulp_last_updated__lte
60
+ # @option opts [String] :pulp_last_updated__range pulp_last_updated__range
52
61
  # @return [AsyncOperationResponse]
53
62
  describe 'delete test' do
54
63
  it 'should work' do
@@ -60,17 +69,17 @@ describe 'RemotesMavenApi' do
60
69
  # List maven remotes
61
70
  # A ViewSet for MavenRemote.
62
71
  # @param [Hash] opts the optional parameters
63
- # @option opts [String] :ordering Which field to use when ordering the results.
64
- # @option opts [String] :name
65
- # @option opts [String] :name__in Filter results where name is in a comma-separated list of values
66
- # @option opts [String] :pulp_last_updated__lt Filter results where pulp_last_updated is less than value
67
- # @option opts [String] :pulp_last_updated__lte Filter results where pulp_last_updated is less than or equal to value
68
- # @option opts [String] :pulp_last_updated__gt Filter results where pulp_last_updated is greater than value
69
- # @option opts [String] :pulp_last_updated__gte Filter results where pulp_last_updated is greater than or equal to value
70
- # @option opts [String] :pulp_last_updated__range Filter results where pulp_last_updated is between two comma separated values
71
- # @option opts [String] :pulp_last_updated ISO 8601 formatted dates are supported
72
72
  # @option opts [Integer] :limit Number of results to return per page.
73
+ # @option opts [String] :name name
74
+ # @option opts [String] :name__in name__in
73
75
  # @option opts [Integer] :offset The initial index from which to return the results.
76
+ # @option opts [String] :ordering Which field to use when ordering the results.
77
+ # @option opts [String] :pulp_last_updated pulp_last_updated
78
+ # @option opts [String] :pulp_last_updated__gt pulp_last_updated__gt
79
+ # @option opts [String] :pulp_last_updated__gte pulp_last_updated__gte
80
+ # @option opts [String] :pulp_last_updated__lt pulp_last_updated__lt
81
+ # @option opts [String] :pulp_last_updated__lte pulp_last_updated__lte
82
+ # @option opts [String] :pulp_last_updated__range pulp_last_updated__range
74
83
  # @option opts [String] :fields A list of fields to include in the response.
75
84
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
76
85
  # @return [InlineResponse2002]
@@ -81,11 +90,20 @@ describe 'RemotesMavenApi' do
81
90
  end
82
91
 
83
92
  # unit tests for partial_update
84
- # Partially update a maven remote
93
+ # Update a maven remote
85
94
  # Trigger an asynchronous partial update task
86
- # @param maven_remote_href URI of Maven Remote. e.g.: /pulp/api/v3/remotes/maven/maven/1/
87
- # @param data
95
+ # @param maven_remote_href
96
+ # @param patchedmaven_maven_remote
88
97
  # @param [Hash] opts the optional parameters
98
+ # @option opts [String] :name name
99
+ # @option opts [String] :name__in name__in
100
+ # @option opts [String] :ordering Which field to use when ordering the results.
101
+ # @option opts [String] :pulp_last_updated pulp_last_updated
102
+ # @option opts [String] :pulp_last_updated__gt pulp_last_updated__gt
103
+ # @option opts [String] :pulp_last_updated__gte pulp_last_updated__gte
104
+ # @option opts [String] :pulp_last_updated__lt pulp_last_updated__lt
105
+ # @option opts [String] :pulp_last_updated__lte pulp_last_updated__lte
106
+ # @option opts [String] :pulp_last_updated__range pulp_last_updated__range
89
107
  # @return [AsyncOperationResponse]
90
108
  describe 'partial_update test' do
91
109
  it 'should work' do
@@ -96,11 +114,11 @@ describe 'RemotesMavenApi' do
96
114
  # unit tests for read
97
115
  # Inspect a maven remote
98
116
  # A ViewSet for MavenRemote.
99
- # @param maven_remote_href URI of Maven Remote. e.g.: /pulp/api/v3/remotes/maven/maven/1/
117
+ # @param maven_remote_href
100
118
  # @param [Hash] opts the optional parameters
101
119
  # @option opts [String] :fields A list of fields to include in the response.
102
120
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
103
- # @return [MavenMavenRemote]
121
+ # @return [MavenMavenRemoteResponse]
104
122
  describe 'read test' do
105
123
  it 'should work' do
106
124
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -110,9 +128,18 @@ describe 'RemotesMavenApi' do
110
128
  # unit tests for update
111
129
  # Update a maven remote
112
130
  # Trigger an asynchronous update task
113
- # @param maven_remote_href URI of Maven Remote. e.g.: /pulp/api/v3/remotes/maven/maven/1/
114
- # @param data
131
+ # @param maven_remote_href
132
+ # @param maven_maven_remote
115
133
  # @param [Hash] opts the optional parameters
134
+ # @option opts [String] :name name
135
+ # @option opts [String] :name__in name__in
136
+ # @option opts [String] :ordering Which field to use when ordering the results.
137
+ # @option opts [String] :pulp_last_updated pulp_last_updated
138
+ # @option opts [String] :pulp_last_updated__gt pulp_last_updated__gt
139
+ # @option opts [String] :pulp_last_updated__gte pulp_last_updated__gte
140
+ # @option opts [String] :pulp_last_updated__lt pulp_last_updated__lt
141
+ # @option opts [String] :pulp_last_updated__lte pulp_last_updated__lte
142
+ # @option opts [String] :pulp_last_updated__range pulp_last_updated__range
116
143
  # @return [AsyncOperationResponse]
117
144
  describe 'update test' do
118
145
  it 'should work' do
@@ -1,10 +1,10 @@
1
1
  =begin
2
2
  #Pulp 3 API
3
3
 
4
- #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ #Fetch, Upload, Organize, and Distribute Software Packages
5
5
 
6
6
  The version of the OpenAPI document: v3
7
-
7
+ Contact: pulp-list@redhat.com
8
8
  Generated by: https://openapi-generator.tech
9
9
  OpenAPI Generator version: 4.2.3
10
10
 
@@ -35,9 +35,9 @@ describe 'RepositoriesMavenApi' do
35
35
  # unit tests for create
36
36
  # Create a maven repository
37
37
  # A ViewSet for MavenRemote.
38
- # @param data
38
+ # @param maven_maven_repository
39
39
  # @param [Hash] opts the optional parameters
40
- # @return [MavenMavenRepository]
40
+ # @return [MavenMavenRepositoryResponse]
41
41
  describe 'create test' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -47,8 +47,11 @@ describe 'RepositoriesMavenApi' do
47
47
  # unit tests for delete
48
48
  # Delete a maven repository
49
49
  # Trigger an asynchronous delete task
50
- # @param maven_repository_href URI of Maven Repository. e.g.: /pulp/api/v3/repositories/maven/maven/1/
50
+ # @param maven_repository_href
51
51
  # @param [Hash] opts the optional parameters
52
+ # @option opts [String] :name name
53
+ # @option opts [String] :name__in name__in
54
+ # @option opts [String] :ordering Which field to use when ordering the results.
52
55
  # @return [AsyncOperationResponse]
53
56
  describe 'delete test' do
54
57
  it 'should work' do
@@ -60,11 +63,11 @@ describe 'RepositoriesMavenApi' do
60
63
  # List maven repositorys
61
64
  # A ViewSet for MavenRemote.
62
65
  # @param [Hash] opts the optional parameters
63
- # @option opts [String] :ordering Which field to use when ordering the results.
64
- # @option opts [String] :name
65
- # @option opts [String] :name__in Filter results where name is in a comma-separated list of values
66
66
  # @option opts [Integer] :limit Number of results to return per page.
67
+ # @option opts [String] :name name
68
+ # @option opts [String] :name__in name__in
67
69
  # @option opts [Integer] :offset The initial index from which to return the results.
70
+ # @option opts [String] :ordering Which field to use when ordering the results.
68
71
  # @option opts [String] :fields A list of fields to include in the response.
69
72
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
70
73
  # @return [InlineResponse2003]
@@ -75,11 +78,14 @@ describe 'RepositoriesMavenApi' do
75
78
  end
76
79
 
77
80
  # unit tests for partial_update
78
- # Partially update a maven repository
81
+ # Update a maven repository
79
82
  # Trigger an asynchronous partial update task
80
- # @param maven_repository_href URI of Maven Repository. e.g.: /pulp/api/v3/repositories/maven/maven/1/
81
- # @param data
83
+ # @param maven_repository_href
84
+ # @param patchedmaven_maven_repository
82
85
  # @param [Hash] opts the optional parameters
86
+ # @option opts [String] :name name
87
+ # @option opts [String] :name__in name__in
88
+ # @option opts [String] :ordering Which field to use when ordering the results.
83
89
  # @return [AsyncOperationResponse]
84
90
  describe 'partial_update test' do
85
91
  it 'should work' do
@@ -90,11 +96,11 @@ describe 'RepositoriesMavenApi' do
90
96
  # unit tests for read
91
97
  # Inspect a maven repository
92
98
  # A ViewSet for MavenRemote.
93
- # @param maven_repository_href URI of Maven Repository. e.g.: /pulp/api/v3/repositories/maven/maven/1/
99
+ # @param maven_repository_href
94
100
  # @param [Hash] opts the optional parameters
95
101
  # @option opts [String] :fields A list of fields to include in the response.
96
102
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
97
- # @return [MavenMavenRepository]
103
+ # @return [MavenMavenRepositoryResponse]
98
104
  describe 'read test' do
99
105
  it 'should work' do
100
106
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -104,9 +110,12 @@ describe 'RepositoriesMavenApi' do
104
110
  # unit tests for update
105
111
  # Update a maven repository
106
112
  # Trigger an asynchronous update task
107
- # @param maven_repository_href URI of Maven Repository. e.g.: /pulp/api/v3/repositories/maven/maven/1/
108
- # @param data
113
+ # @param maven_repository_href
114
+ # @param maven_maven_repository
109
115
  # @param [Hash] opts the optional parameters
116
+ # @option opts [String] :name name
117
+ # @option opts [String] :name__in name__in
118
+ # @option opts [String] :ordering Which field to use when ordering the results.
110
119
  # @return [AsyncOperationResponse]
111
120
  describe 'update test' do
112
121
  it 'should work' do
@@ -1,10 +1,10 @@
1
1
  =begin
2
2
  #Pulp 3 API
3
3
 
4
- #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ #Fetch, Upload, Organize, and Distribute Software Packages
5
5
 
6
6
  The version of the OpenAPI document: v3
7
-
7
+ Contact: pulp-list@redhat.com
8
8
  Generated by: https://openapi-generator.tech
9
9
  OpenAPI Generator version: 4.2.3
10
10
 
@@ -35,8 +35,23 @@ describe 'RepositoriesMavenVersionsApi' do
35
35
  # unit tests for delete
36
36
  # Delete a repository version
37
37
  # Trigger an asynchronous task to delete a repositroy version.
38
- # @param maven_repository_version_href URI of Repository Version. e.g.: /pulp/api/v3/repositories/maven/maven/1/versions/1/
38
+ # @param maven_repository_version_href
39
39
  # @param [Hash] opts the optional parameters
40
+ # @option opts [String] :content content
41
+ # @option opts [String] :content__in content__in
42
+ # @option opts [String] :number number
43
+ # @option opts [String] :number__gt number__gt
44
+ # @option opts [String] :number__gte number__gte
45
+ # @option opts [String] :number__lt number__lt
46
+ # @option opts [String] :number__lte number__lte
47
+ # @option opts [String] :number__range number__range
48
+ # @option opts [String] :ordering Which field to use when ordering the results.
49
+ # @option opts [String] :pulp_created pulp_created
50
+ # @option opts [String] :pulp_created__gt pulp_created__gt
51
+ # @option opts [String] :pulp_created__gte pulp_created__gte
52
+ # @option opts [String] :pulp_created__lt pulp_created__lt
53
+ # @option opts [String] :pulp_created__lte pulp_created__lte
54
+ # @option opts [String] :pulp_created__range pulp_created__range
40
55
  # @return [AsyncOperationResponse]
41
56
  describe 'delete test' do
42
57
  it 'should work' do
@@ -47,25 +62,25 @@ describe 'RepositoriesMavenVersionsApi' do
47
62
  # unit tests for list
48
63
  # List repository versions
49
64
  # MavenRepositoryVersion represents a single Maven repository version.
50
- # @param maven_repository_href URI of Maven Repository. e.g.: /pulp/api/v3/repositories/maven/maven/1/
65
+ # @param maven_repository_version_href
51
66
  # @param [Hash] opts the optional parameters
52
- # @option opts [String] :ordering Which field to use when ordering the results.
53
- # @option opts [Float] :number
54
- # @option opts [Float] :number__lt Filter results where number is less than value
55
- # @option opts [Float] :number__lte Filter results where number is less than or equal to value
56
- # @option opts [Float] :number__gt Filter results where number is greater than value
57
- # @option opts [Float] :number__gte Filter results where number is greater than or equal to value
58
- # @option opts [Float] :number__range Filter results where number is between two comma separated values
59
- # @option opts [String] :pulp_created__lt Filter results where pulp_created is less than value
60
- # @option opts [String] :pulp_created__lte Filter results where pulp_created is less than or equal to value
61
- # @option opts [String] :pulp_created__gt Filter results where pulp_created is greater than value
62
- # @option opts [String] :pulp_created__gte Filter results where pulp_created is greater than or equal to value
63
- # @option opts [String] :pulp_created__range Filter results where pulp_created is between two comma separated values
64
- # @option opts [String] :pulp_created ISO 8601 formatted dates are supported
65
- # @option opts [String] :content Content Unit referenced by HREF
66
- # @option opts [String] :content__in Content Unit referenced by HREF
67
+ # @option opts [String] :content content
68
+ # @option opts [String] :content__in content__in
67
69
  # @option opts [Integer] :limit Number of results to return per page.
70
+ # @option opts [String] :number number
71
+ # @option opts [String] :number__gt number__gt
72
+ # @option opts [String] :number__gte number__gte
73
+ # @option opts [String] :number__lt number__lt
74
+ # @option opts [String] :number__lte number__lte
75
+ # @option opts [String] :number__range number__range
68
76
  # @option opts [Integer] :offset The initial index from which to return the results.
77
+ # @option opts [String] :ordering Which field to use when ordering the results.
78
+ # @option opts [String] :pulp_created pulp_created
79
+ # @option opts [String] :pulp_created__gt pulp_created__gt
80
+ # @option opts [String] :pulp_created__gte pulp_created__gte
81
+ # @option opts [String] :pulp_created__lt pulp_created__lt
82
+ # @option opts [String] :pulp_created__lte pulp_created__lte
83
+ # @option opts [String] :pulp_created__range pulp_created__range
69
84
  # @option opts [String] :fields A list of fields to include in the response.
70
85
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
71
86
  # @return [InlineResponse2004]
@@ -78,11 +93,11 @@ describe 'RepositoriesMavenVersionsApi' do
78
93
  # unit tests for read
79
94
  # Inspect a repository version
80
95
  # MavenRepositoryVersion represents a single Maven repository version.
81
- # @param maven_repository_version_href URI of Repository Version. e.g.: /pulp/api/v3/repositories/maven/maven/1/versions/1/
96
+ # @param maven_repository_version_href
82
97
  # @param [Hash] opts the optional parameters
83
98
  # @option opts [String] :fields A list of fields to include in the response.
84
99
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
85
- # @return [RepositoryVersion]
100
+ # @return [RepositoryVersionResponse]
86
101
  describe 'read test' do
87
102
  it 'should work' do
88
103
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -91,8 +106,8 @@ describe 'RepositoriesMavenVersionsApi' do
91
106
 
92
107
  # unit tests for repair
93
108
  # Trigger an asynchronous task to repair a repositroy version.
94
- # @param maven_repository_version_href URI of Repository Version. e.g.: /pulp/api/v3/repositories/maven/maven/1/versions/1/
95
- # @param data
109
+ # @param maven_repository_version_href
110
+ # @param repository_version
96
111
  # @param [Hash] opts the optional parameters
97
112
  # @return [AsyncOperationResponse]
98
113
  describe 'repair test' do
@@ -1,10 +1,10 @@
1
1
  =begin
2
2
  #Pulp 3 API
3
3
 
4
- #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ #Fetch, Upload, Organize, and Distribute Software Packages
5
5
 
6
6
  The version of the OpenAPI document: v3
7
-
7
+ Contact: pulp-list@redhat.com
8
8
  Generated by: https://openapi-generator.tech
9
9
  OpenAPI Generator version: 4.2.3
10
10