pulp_maven_client 0.12.0 → 0.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/docs/ContentArtifactApi.md +6 -6
  4. data/docs/DistributionsMavenApi.md +4 -4
  5. data/docs/MavenMavenArtifact.md +2 -0
  6. data/docs/MavenMavenDistribution.md +2 -0
  7. data/docs/MavenMavenDistributionResponse.md +4 -0
  8. data/docs/MavenMavenRemote.md +6 -6
  9. data/docs/MavenMavenRemoteResponse.md +9 -9
  10. data/docs/MavenMavenRepository.md +2 -0
  11. data/docs/MavenMavenRepositoryResponse.md +2 -0
  12. data/docs/PatchedmavenMavenDistribution.md +2 -0
  13. data/docs/PatchedmavenMavenRemote.md +6 -6
  14. data/docs/PatchedmavenMavenRepository.md +2 -0
  15. data/docs/RepositoriesMavenApi.md +20 -4
  16. data/lib/pulp_maven_client/api/content_artifact_api.rb +6 -6
  17. data/lib/pulp_maven_client/api/distributions_maven_api.rb +4 -4
  18. data/lib/pulp_maven_client/api/repositories_maven_api.rb +29 -5
  19. data/lib/pulp_maven_client/models/maven_maven_artifact.rb +11 -1
  20. data/lib/pulp_maven_client/models/maven_maven_distribution.rb +12 -1
  21. data/lib/pulp_maven_client/models/maven_maven_distribution_response.rb +22 -1
  22. data/lib/pulp_maven_client/models/maven_maven_remote.rb +48 -33
  23. data/lib/pulp_maven_client/models/maven_maven_remote_response.rb +64 -49
  24. data/lib/pulp_maven_client/models/maven_maven_repository.rb +42 -1
  25. data/lib/pulp_maven_client/models/maven_maven_repository_response.rb +42 -1
  26. data/lib/pulp_maven_client/models/patchedmaven_maven_distribution.rb +12 -1
  27. data/lib/pulp_maven_client/models/patchedmaven_maven_remote.rb +48 -33
  28. data/lib/pulp_maven_client/models/patchedmaven_maven_repository.rb +42 -1
  29. data/lib/pulp_maven_client/models/set_label.rb +0 -11
  30. data/lib/pulp_maven_client/models/set_label_response.rb +0 -21
  31. data/lib/pulp_maven_client/models/unset_label.rb +0 -11
  32. data/lib/pulp_maven_client/models/unset_label_response.rb +0 -21
  33. data/lib/pulp_maven_client/version.rb +1 -1
  34. data/spec/api/content_artifact_api_spec.rb +3 -3
  35. data/spec/api/distributions_maven_api_spec.rb +2 -2
  36. data/spec/api/repositories_maven_api_spec.rb +10 -2
  37. data/spec/models/maven_maven_artifact_spec.rb +6 -0
  38. data/spec/models/maven_maven_distribution_response_spec.rb +12 -0
  39. data/spec/models/maven_maven_distribution_spec.rb +6 -0
  40. data/spec/models/maven_maven_remote_response_spec.rb +10 -10
  41. data/spec/models/maven_maven_remote_spec.rb +17 -17
  42. data/spec/models/maven_maven_repository_response_spec.rb +6 -0
  43. data/spec/models/maven_maven_repository_spec.rb +6 -0
  44. data/spec/models/patchedmaven_maven_distribution_spec.rb +6 -0
  45. data/spec/models/patchedmaven_maven_remote_spec.rb +17 -17
  46. data/spec/models/patchedmaven_maven_repository_spec.rb +6 -0
  47. metadata +24 -24
@@ -78,11 +78,6 @@ module PulpMavenClient
78
78
  invalid_properties.push('invalid value for "key", the character length must be great than or equal to 1.')
79
79
  end
80
80
 
81
- pattern = Regexp.new(/^[-a-zA-Z0-9_]+$/)
82
- if @key !~ pattern
83
- invalid_properties.push("invalid value for \"key\", must conform to the pattern #{pattern}.")
84
- end
85
-
86
81
  invalid_properties
87
82
  end
88
83
 
@@ -92,7 +87,6 @@ module PulpMavenClient
92
87
  warn '[DEPRECATED] the `valid?` method is obsolete'
93
88
  return false if @key.nil?
94
89
  return false if @key.to_s.length < 1
95
- return false if @key !~ Regexp.new(/^[-a-zA-Z0-9_]+$/)
96
90
  true
97
91
  end
98
92
 
@@ -107,11 +101,6 @@ module PulpMavenClient
107
101
  fail ArgumentError, 'invalid value for "key", the character length must be great than or equal to 1.'
108
102
  end
109
103
 
110
- pattern = Regexp.new(/^[-a-zA-Z0-9_]+$/)
111
- if key !~ pattern
112
- fail ArgumentError, "invalid value for \"key\", must conform to the pattern #{pattern}."
113
- end
114
-
115
104
  @key = key
116
105
  end
117
106
 
@@ -82,11 +82,6 @@ module PulpMavenClient
82
82
  invalid_properties.push('invalid value for "key", key cannot be nil.')
83
83
  end
84
84
 
85
- pattern = Regexp.new(/^[-a-zA-Z0-9_]+$/)
86
- if @key !~ pattern
87
- invalid_properties.push("invalid value for \"key\", must conform to the pattern #{pattern}.")
88
- end
89
-
90
85
  invalid_properties
91
86
  end
92
87
 
@@ -95,25 +90,9 @@ module PulpMavenClient
95
90
  def valid?
96
91
  warn '[DEPRECATED] the `valid?` method is obsolete'
97
92
  return false if @key.nil?
98
- return false if @key !~ Regexp.new(/^[-a-zA-Z0-9_]+$/)
99
93
  true
100
94
  end
101
95
 
102
- # Custom attribute writer method with validation
103
- # @param [Object] key Value to be assigned
104
- def key=(key)
105
- if key.nil?
106
- fail ArgumentError, 'key cannot be nil'
107
- end
108
-
109
- pattern = Regexp.new(/^[-a-zA-Z0-9_]+$/)
110
- if key !~ pattern
111
- fail ArgumentError, "invalid value for \"key\", must conform to the pattern #{pattern}."
112
- end
113
-
114
- @key = key
115
- end
116
-
117
96
  # Checks equality by comparing each attribute.
118
97
  # @param [Object] Object to be compared
119
98
  def ==(o)
@@ -11,5 +11,5 @@ Generator version: 7.10.0
11
11
  =end
12
12
 
13
13
  module PulpMavenClient
14
- VERSION = '0.12.0'
14
+ VERSION = '0.13.0'
15
15
  end
@@ -62,9 +62,9 @@ describe 'ContentArtifactApi' do
62
62
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
63
63
  # @option opts [String] :pulp_label_select Filter labels by search string
64
64
  # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
65
- # @option opts [String] :repository_version Repository Version referenced by HREF/PRN
66
- # @option opts [String] :repository_version_added Repository Version referenced by HREF/PRN
67
- # @option opts [String] :repository_version_removed Repository Version referenced by HREF/PRN
65
+ # @option opts [String] :repository_version
66
+ # @option opts [String] :repository_version_added
67
+ # @option opts [String] :repository_version_removed
68
68
  # @option opts [String] :version Filter results where version matches value
69
69
  # @option opts [Array<String>] :fields A list of fields to include in the response.
70
70
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
@@ -85,8 +85,8 @@ describe 'DistributionsMavenApi' do
85
85
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
86
86
  # @option opts [String] :pulp_label_select Filter labels by search string
87
87
  # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
88
- # @option opts [String] :repository Filter results where repository matches value
89
- # @option opts [Array<String>] :repository__in Filter results where repository is in a comma-separated list of values
88
+ # @option opts [String] :repository
89
+ # @option opts [Array<String>] :repository__in
90
90
  # @option opts [String] :with_content Filter distributions based on the content served by them
91
91
  # @option opts [Array<String>] :fields A list of fields to include in the response.
92
92
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
@@ -89,13 +89,21 @@ describe 'RepositoriesMavenApi' do
89
89
  # @option opts [String] :name__regex Filter results where name matches regex value
90
90
  # @option opts [String] :name__startswith Filter results where name starts with value
91
91
  # @option opts [Integer] :offset The initial index from which to return the results.
92
- # @option opts [Array<String>] :ordering Ordering * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;pulp_labels&#x60; - Pulp labels * &#x60;-pulp_labels&#x60; - Pulp labels (descending) * &#x60;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;next_version&#x60; - Next version * &#x60;-next_version&#x60; - Next version (descending) * &#x60;retain_repo_versions&#x60; - Retain repo versions * &#x60;-retain_repo_versions&#x60; - Retain repo versions (descending) * &#x60;user_hidden&#x60; - User hidden * &#x60;-user_hidden&#x60; - User hidden (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
92
+ # @option opts [Array<String>] :ordering Ordering * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;pulp_labels&#x60; - Pulp labels * &#x60;-pulp_labels&#x60; - Pulp labels (descending) * &#x60;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;next_version&#x60; - Next version * &#x60;-next_version&#x60; - Next version (descending) * &#x60;retain_repo_versions&#x60; - Retain repo versions * &#x60;-retain_repo_versions&#x60; - Retain repo versions (descending) * &#x60;retain_checkpoints&#x60; - Retain checkpoints * &#x60;-retain_checkpoints&#x60; - Retain checkpoints (descending) * &#x60;user_hidden&#x60; - User hidden * &#x60;-user_hidden&#x60; - User hidden (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
93
93
  # @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
94
94
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
95
95
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
96
96
  # @option opts [String] :pulp_label_select Filter labels by search string
97
97
  # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
98
- # @option opts [String] :remote Foreign Key referenced by HREF
98
+ # @option opts [String] :remote
99
+ # @option opts [Integer] :retain_checkpoints Filter results where retain_checkpoints matches value
100
+ # @option opts [Integer] :retain_checkpoints__gt Filter results where retain_checkpoints is greater than value
101
+ # @option opts [Integer] :retain_checkpoints__gte Filter results where retain_checkpoints is greater than or equal to value
102
+ # @option opts [Boolean] :retain_checkpoints__isnull Filter results where retain_checkpoints has a null value
103
+ # @option opts [Integer] :retain_checkpoints__lt Filter results where retain_checkpoints is less than value
104
+ # @option opts [Integer] :retain_checkpoints__lte Filter results where retain_checkpoints is less than or equal to value
105
+ # @option opts [Integer] :retain_checkpoints__ne Filter results where retain_checkpoints not equal to value
106
+ # @option opts [Array<Integer>] :retain_checkpoints__range Filter results where retain_checkpoints is between two comma separated values
99
107
  # @option opts [Integer] :retain_repo_versions Filter results where retain_repo_versions matches value
100
108
  # @option opts [Integer] :retain_repo_versions__gt Filter results where retain_repo_versions is greater than value
101
109
  # @option opts [Integer] :retain_repo_versions__gte Filter results where retain_repo_versions is greater than or equal to value
@@ -33,6 +33,12 @@ describe PulpMavenClient::MavenMavenArtifact do
33
33
  end
34
34
  end
35
35
 
36
+ describe 'test attribute "overwrite"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
36
42
  describe 'test attribute "pulp_labels"' do
37
43
  it 'should work' do
38
44
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -69,6 +69,12 @@ describe PulpMavenClient::MavenMavenDistributionResponse do
69
69
  end
70
70
  end
71
71
 
72
+ describe 'test attribute "content_guard_prn"' do
73
+ it 'should work' do
74
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
75
+ end
76
+ end
77
+
72
78
  describe 'test attribute "no_content_change_since"' do
73
79
  it 'should work' do
74
80
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -99,6 +105,12 @@ describe PulpMavenClient::MavenMavenDistributionResponse do
99
105
  end
100
106
  end
101
107
 
108
+ describe 'test attribute "repository_version"' do
109
+ it 'should work' do
110
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
111
+ end
112
+ end
113
+
102
114
  describe 'test attribute "remote"' do
103
115
  it 'should work' do
104
116
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -63,6 +63,12 @@ describe PulpMavenClient::MavenMavenDistribution do
63
63
  end
64
64
  end
65
65
 
66
+ describe 'test attribute "repository_version"' do
67
+ it 'should work' do
68
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
69
+ end
70
+ end
71
+
66
72
  describe 'test attribute "remote"' do
67
73
  it 'should work' do
68
74
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -63,49 +63,49 @@ describe PulpMavenClient::MavenMavenRemoteResponse do
63
63
  end
64
64
  end
65
65
 
66
- describe 'test attribute "ca_cert"' do
66
+ describe 'test attribute "pulp_labels"' do
67
67
  it 'should work' do
68
68
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
69
69
  end
70
70
  end
71
71
 
72
- describe 'test attribute "client_cert"' do
72
+ describe 'test attribute "policy"' do
73
73
  it 'should work' do
74
74
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
75
75
  end
76
76
  end
77
77
 
78
- describe 'test attribute "tls_validation"' do
78
+ describe 'test attribute "hidden_fields"' do
79
79
  it 'should work' do
80
80
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
81
81
  end
82
82
  end
83
83
 
84
- describe 'test attribute "proxy_url"' do
84
+ describe 'test attribute "ca_cert"' do
85
85
  it 'should work' do
86
86
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
87
87
  end
88
88
  end
89
89
 
90
- describe 'test attribute "pulp_labels"' do
90
+ describe 'test attribute "client_cert"' do
91
91
  it 'should work' do
92
92
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
93
93
  end
94
94
  end
95
95
 
96
- describe 'test attribute "download_concurrency"' do
96
+ describe 'test attribute "tls_validation"' do
97
97
  it 'should work' do
98
98
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
99
99
  end
100
100
  end
101
101
 
102
- describe 'test attribute "max_retries"' do
102
+ describe 'test attribute "proxy_url"' do
103
103
  it 'should work' do
104
104
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
105
105
  end
106
106
  end
107
107
 
108
- describe 'test attribute "policy"' do
108
+ describe 'test attribute "max_retries"' do
109
109
  it 'should work' do
110
110
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
111
111
  end
@@ -141,13 +141,13 @@ describe PulpMavenClient::MavenMavenRemoteResponse do
141
141
  end
142
142
  end
143
143
 
144
- describe 'test attribute "rate_limit"' do
144
+ describe 'test attribute "download_concurrency"' do
145
145
  it 'should work' do
146
146
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
147
147
  end
148
148
  end
149
149
 
150
- describe 'test attribute "hidden_fields"' do
150
+ describe 'test attribute "rate_limit"' do
151
151
  it 'should work' do
152
152
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
153
153
  end
@@ -39,67 +39,67 @@ describe PulpMavenClient::MavenMavenRemote do
39
39
  end
40
40
  end
41
41
 
42
- describe 'test attribute "ca_cert"' do
42
+ describe 'test attribute "pulp_labels"' do
43
43
  it 'should work' do
44
44
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
45
  end
46
46
  end
47
47
 
48
- describe 'test attribute "client_cert"' do
48
+ describe 'test attribute "policy"' do
49
49
  it 'should work' do
50
50
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
51
  end
52
52
  end
53
53
 
54
- describe 'test attribute "client_key"' do
54
+ describe 'test attribute "ca_cert"' do
55
55
  it 'should work' do
56
56
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
57
  end
58
58
  end
59
59
 
60
- describe 'test attribute "tls_validation"' do
60
+ describe 'test attribute "client_cert"' do
61
61
  it 'should work' do
62
62
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
63
63
  end
64
64
  end
65
65
 
66
- describe 'test attribute "proxy_url"' do
66
+ describe 'test attribute "client_key"' do
67
67
  it 'should work' do
68
68
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
69
69
  end
70
70
  end
71
71
 
72
- describe 'test attribute "proxy_username"' do
72
+ describe 'test attribute "tls_validation"' do
73
73
  it 'should work' do
74
74
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
75
75
  end
76
76
  end
77
77
 
78
- describe 'test attribute "proxy_password"' do
78
+ describe 'test attribute "proxy_url"' do
79
79
  it 'should work' do
80
80
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
81
81
  end
82
82
  end
83
83
 
84
- describe 'test attribute "username"' do
84
+ describe 'test attribute "proxy_username"' do
85
85
  it 'should work' do
86
86
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
87
87
  end
88
88
  end
89
89
 
90
- describe 'test attribute "password"' do
90
+ describe 'test attribute "proxy_password"' do
91
91
  it 'should work' do
92
92
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
93
93
  end
94
94
  end
95
95
 
96
- describe 'test attribute "pulp_labels"' do
96
+ describe 'test attribute "username"' do
97
97
  it 'should work' do
98
98
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
99
99
  end
100
100
  end
101
101
 
102
- describe 'test attribute "download_concurrency"' do
102
+ describe 'test attribute "password"' do
103
103
  it 'should work' do
104
104
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
105
105
  end
@@ -111,12 +111,6 @@ describe PulpMavenClient::MavenMavenRemote do
111
111
  end
112
112
  end
113
113
 
114
- describe 'test attribute "policy"' do
115
- it 'should work' do
116
- # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
117
- end
118
- end
119
-
120
114
  describe 'test attribute "total_timeout"' do
121
115
  it 'should work' do
122
116
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -147,6 +141,12 @@ describe PulpMavenClient::MavenMavenRemote do
147
141
  end
148
142
  end
149
143
 
144
+ describe 'test attribute "download_concurrency"' do
145
+ it 'should work' do
146
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
147
+ end
148
+ end
149
+
150
150
  describe 'test attribute "rate_limit"' do
151
151
  it 'should work' do
152
152
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -87,6 +87,12 @@ describe PulpMavenClient::MavenMavenRepositoryResponse do
87
87
  end
88
88
  end
89
89
 
90
+ describe 'test attribute "retain_checkpoints"' do
91
+ it 'should work' do
92
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
93
+ end
94
+ end
95
+
90
96
  describe 'test attribute "remote"' do
91
97
  it 'should work' do
92
98
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -51,6 +51,12 @@ describe PulpMavenClient::MavenMavenRepository do
51
51
  end
52
52
  end
53
53
 
54
+ describe 'test attribute "retain_checkpoints"' do
55
+ it 'should work' do
56
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
+ end
58
+ end
59
+
54
60
  describe 'test attribute "remote"' do
55
61
  it 'should work' do
56
62
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -63,6 +63,12 @@ describe PulpMavenClient::PatchedmavenMavenDistribution do
63
63
  end
64
64
  end
65
65
 
66
+ describe 'test attribute "repository_version"' do
67
+ it 'should work' do
68
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
69
+ end
70
+ end
71
+
66
72
  describe 'test attribute "remote"' do
67
73
  it 'should work' do
68
74
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -39,67 +39,67 @@ describe PulpMavenClient::PatchedmavenMavenRemote do
39
39
  end
40
40
  end
41
41
 
42
- describe 'test attribute "ca_cert"' do
42
+ describe 'test attribute "pulp_labels"' do
43
43
  it 'should work' do
44
44
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
45
  end
46
46
  end
47
47
 
48
- describe 'test attribute "client_cert"' do
48
+ describe 'test attribute "policy"' do
49
49
  it 'should work' do
50
50
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
51
  end
52
52
  end
53
53
 
54
- describe 'test attribute "client_key"' do
54
+ describe 'test attribute "ca_cert"' do
55
55
  it 'should work' do
56
56
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
57
  end
58
58
  end
59
59
 
60
- describe 'test attribute "tls_validation"' do
60
+ describe 'test attribute "client_cert"' do
61
61
  it 'should work' do
62
62
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
63
63
  end
64
64
  end
65
65
 
66
- describe 'test attribute "proxy_url"' do
66
+ describe 'test attribute "client_key"' do
67
67
  it 'should work' do
68
68
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
69
69
  end
70
70
  end
71
71
 
72
- describe 'test attribute "proxy_username"' do
72
+ describe 'test attribute "tls_validation"' do
73
73
  it 'should work' do
74
74
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
75
75
  end
76
76
  end
77
77
 
78
- describe 'test attribute "proxy_password"' do
78
+ describe 'test attribute "proxy_url"' do
79
79
  it 'should work' do
80
80
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
81
81
  end
82
82
  end
83
83
 
84
- describe 'test attribute "username"' do
84
+ describe 'test attribute "proxy_username"' do
85
85
  it 'should work' do
86
86
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
87
87
  end
88
88
  end
89
89
 
90
- describe 'test attribute "password"' do
90
+ describe 'test attribute "proxy_password"' do
91
91
  it 'should work' do
92
92
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
93
93
  end
94
94
  end
95
95
 
96
- describe 'test attribute "pulp_labels"' do
96
+ describe 'test attribute "username"' do
97
97
  it 'should work' do
98
98
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
99
99
  end
100
100
  end
101
101
 
102
- describe 'test attribute "download_concurrency"' do
102
+ describe 'test attribute "password"' do
103
103
  it 'should work' do
104
104
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
105
105
  end
@@ -111,12 +111,6 @@ describe PulpMavenClient::PatchedmavenMavenRemote do
111
111
  end
112
112
  end
113
113
 
114
- describe 'test attribute "policy"' do
115
- it 'should work' do
116
- # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
117
- end
118
- end
119
-
120
114
  describe 'test attribute "total_timeout"' do
121
115
  it 'should work' do
122
116
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -147,6 +141,12 @@ describe PulpMavenClient::PatchedmavenMavenRemote do
147
141
  end
148
142
  end
149
143
 
144
+ describe 'test attribute "download_concurrency"' do
145
+ it 'should work' do
146
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
147
+ end
148
+ end
149
+
150
150
  describe 'test attribute "rate_limit"' do
151
151
  it 'should work' do
152
152
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -51,6 +51,12 @@ describe PulpMavenClient::PatchedmavenMavenRepository do
51
51
  end
52
52
  end
53
53
 
54
+ describe 'test attribute "retain_checkpoints"' do
55
+ it 'should work' do
56
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
+ end
58
+ end
59
+
54
60
  describe 'test attribute "remote"' do
55
61
  it 'should work' do
56
62
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pulp_maven_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.0
4
+ version: 0.13.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: 2026-01-08 00:00:00.000000000 Z
11
+ date: 2026-06-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -218,37 +218,37 @@ signing_key:
218
218
  specification_version: 4
219
219
  summary: Pulp 3 API Ruby Gem
220
220
  test_files:
221
- - spec/api/remotes_maven_api_spec.rb
221
+ - spec/api/repositories_maven_api_spec.rb
222
+ - spec/api/distributions_maven_api_spec.rb
222
223
  - spec/api/content_artifact_api_spec.rb
223
- - spec/api/pulp_maven_api_spec.rb
224
+ - spec/api/remotes_maven_api_spec.rb
224
225
  - spec/api/repositories_maven_versions_api_spec.rb
225
- - spec/api/distributions_maven_api_spec.rb
226
- - spec/api/repositories_maven_api_spec.rb
227
- - spec/models/maven_maven_repository_spec.rb
228
- - spec/models/unset_label_response_spec.rb
226
+ - spec/api/pulp_maven_api_spec.rb
227
+ - spec/models/maven_maven_artifact_spec.rb
228
+ - spec/models/content_summary_response_spec.rb
229
229
  - spec/models/maven_maven_repository_response_spec.rb
230
- - spec/models/repository_version_response_spec.rb
230
+ - spec/models/unset_label_spec.rb
231
231
  - spec/models/paginatedmaven_maven_distribution_response_list_spec.rb
232
+ - spec/models/maven_maven_remote_response_hidden_fields_inner_spec.rb
233
+ - spec/models/maven_maven_remote_spec.rb
234
+ - spec/models/paginatedmaven_maven_remote_response_list_spec.rb
235
+ - spec/models/maven_maven_artifact_response_spec.rb
232
236
  - spec/models/set_label_spec.rb
237
+ - spec/models/maven_maven_repository_spec.rb
238
+ - spec/models/unset_label_response_spec.rb
233
239
  - spec/models/patchedmaven_maven_distribution_spec.rb
234
- - spec/models/paginatedmaven_maven_artifact_response_list_spec.rb
240
+ - spec/models/maven_maven_distribution_spec.rb
235
241
  - spec/models/paginated_repository_version_response_list_spec.rb
236
242
  - spec/models/repair_spec.rb
237
- - spec/models/maven_maven_distribution_spec.rb
243
+ - spec/models/maven_maven_distribution_response_spec.rb
238
244
  - spec/models/async_operation_response_spec.rb
239
- - spec/models/patchedmaven_maven_remote_spec.rb
240
- - spec/models/maven_maven_remote_response_hidden_fields_inner_spec.rb
241
- - spec/models/maven_maven_artifact_response_spec.rb
242
- - spec/models/set_label_response_spec.rb
243
- - spec/models/unset_label_spec.rb
244
- - spec/models/repository_add_cached_content_spec.rb
245
245
  - spec/models/policy_enum_spec.rb
246
- - spec/models/paginatedmaven_maven_remote_response_list_spec.rb
247
- - spec/models/maven_maven_artifact_spec.rb
248
- - spec/models/maven_maven_remote_response_spec.rb
249
- - spec/models/patchedmaven_maven_repository_spec.rb
250
- - spec/models/content_summary_response_spec.rb
246
+ - spec/models/repository_add_cached_content_spec.rb
247
+ - spec/models/set_label_response_spec.rb
251
248
  - spec/models/paginatedmaven_maven_repository_response_list_spec.rb
252
- - spec/models/maven_maven_distribution_response_spec.rb
253
- - spec/models/maven_maven_remote_spec.rb
249
+ - spec/models/patchedmaven_maven_repository_spec.rb
250
+ - spec/models/repository_version_response_spec.rb
251
+ - spec/models/paginatedmaven_maven_artifact_response_list_spec.rb
252
+ - spec/models/maven_maven_remote_response_spec.rb
253
+ - spec/models/patchedmaven_maven_remote_spec.rb
254
254
  - spec/spec_helper.rb