pulp_ansible_client 0.29.6 → 0.29.7

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 (40) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/docs/AnsibleAnsibleRepository.md +2 -0
  4. data/docs/AnsibleAnsibleRepositoryResponse.md +2 -0
  5. data/docs/AnsibleCollectionVersionResponse.md +8 -8
  6. data/docs/AnsibleGitRemote.md +24 -24
  7. data/docs/AnsibleGitRemoteResponse.md +24 -24
  8. data/docs/AnsibleRoleResponse.md +8 -8
  9. data/docs/ContentCollectionVersionsApi.md +8 -8
  10. data/docs/PatchedansibleAnsibleRepository.md +2 -0
  11. data/docs/PatchedansibleGitRemote.md +24 -24
  12. data/docs/RepositoriesAnsibleApi.md +18 -2
  13. data/docs/Repository.md +2 -0
  14. data/docs/RepositoryResponse.md +2 -0
  15. data/lib/pulp_ansible_client/api/content_collection_versions_api.rb +12 -12
  16. data/lib/pulp_ansible_client/api/repositories_ansible_api.rb +27 -3
  17. data/lib/pulp_ansible_client/models/ansible_ansible_repository.rb +27 -1
  18. data/lib/pulp_ansible_client/models/ansible_ansible_repository_response.rb +27 -1
  19. data/lib/pulp_ansible_client/models/ansible_collection_version_response.rb +35 -35
  20. data/lib/pulp_ansible_client/models/ansible_git_remote.rb +241 -241
  21. data/lib/pulp_ansible_client/models/ansible_git_remote_response.rb +156 -156
  22. data/lib/pulp_ansible_client/models/ansible_role_response.rb +35 -35
  23. data/lib/pulp_ansible_client/models/patchedansible_ansible_repository.rb +27 -1
  24. data/lib/pulp_ansible_client/models/patchedansible_git_remote.rb +231 -231
  25. data/lib/pulp_ansible_client/models/repository.rb +27 -1
  26. data/lib/pulp_ansible_client/models/repository_response.rb +27 -1
  27. data/lib/pulp_ansible_client/version.rb +1 -1
  28. data/spec/api/content_collection_versions_api_spec.rb +4 -4
  29. data/spec/api/repositories_ansible_api_spec.rb +9 -1
  30. data/spec/models/ansible_ansible_repository_response_spec.rb +6 -0
  31. data/spec/models/ansible_ansible_repository_spec.rb +6 -0
  32. data/spec/models/ansible_collection_version_response_spec.rb +6 -6
  33. data/spec/models/ansible_git_remote_response_spec.rb +19 -19
  34. data/spec/models/ansible_git_remote_spec.rb +20 -20
  35. data/spec/models/ansible_role_response_spec.rb +6 -6
  36. data/spec/models/patchedansible_ansible_repository_spec.rb +6 -0
  37. data/spec/models/patchedansible_git_remote_spec.rb +20 -20
  38. data/spec/models/repository_response_spec.rb +6 -0
  39. data/spec/models/repository_spec.rb +6 -0
  40. metadata +126 -126
@@ -27,6 +27,9 @@ module PulpAnsibleClient
27
27
  # Retain X versions of the repository. Default is null which retains all versions.
28
28
  attr_accessor :retain_repo_versions
29
29
 
30
+ # Retain X checkpoint publications for the repository. Default is null which retains all checkpoints.
31
+ attr_accessor :retain_checkpoints
32
+
30
33
  # An optional remote to use by default when syncing.
31
34
  attr_accessor :remote
32
35
 
@@ -37,6 +40,7 @@ module PulpAnsibleClient
37
40
  :'name' => :'name',
38
41
  :'description' => :'description',
39
42
  :'retain_repo_versions' => :'retain_repo_versions',
43
+ :'retain_checkpoints' => :'retain_checkpoints',
40
44
  :'remote' => :'remote'
41
45
  }
42
46
  end
@@ -53,6 +57,7 @@ module PulpAnsibleClient
53
57
  :'name' => :'String',
54
58
  :'description' => :'String',
55
59
  :'retain_repo_versions' => :'Integer',
60
+ :'retain_checkpoints' => :'Integer',
56
61
  :'remote' => :'String'
57
62
  }
58
63
  end
@@ -62,6 +67,7 @@ module PulpAnsibleClient
62
67
  Set.new([
63
68
  :'description',
64
69
  :'retain_repo_versions',
70
+ :'retain_checkpoints',
65
71
  :'remote'
66
72
  ])
67
73
  end
@@ -101,6 +107,10 @@ module PulpAnsibleClient
101
107
  self.retain_repo_versions = attributes[:'retain_repo_versions']
102
108
  end
103
109
 
110
+ if attributes.key?(:'retain_checkpoints')
111
+ self.retain_checkpoints = attributes[:'retain_checkpoints']
112
+ end
113
+
104
114
  if attributes.key?(:'remote')
105
115
  self.remote = attributes[:'remote']
106
116
  end
@@ -127,6 +137,10 @@ module PulpAnsibleClient
127
137
  invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
128
138
  end
129
139
 
140
+ if !@retain_checkpoints.nil? && @retain_checkpoints < 1
141
+ invalid_properties.push('invalid value for "retain_checkpoints", must be greater than or equal to 1.')
142
+ end
143
+
130
144
  invalid_properties
131
145
  end
132
146
 
@@ -138,6 +152,7 @@ module PulpAnsibleClient
138
152
  return false if @name.to_s.length < 1
139
153
  return false if !@description.nil? && @description.to_s.length < 1
140
154
  return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
155
+ return false if !@retain_checkpoints.nil? && @retain_checkpoints < 1
141
156
  true
142
157
  end
143
158
 
@@ -175,6 +190,16 @@ module PulpAnsibleClient
175
190
  @retain_repo_versions = retain_repo_versions
176
191
  end
177
192
 
193
+ # Custom attribute writer method with validation
194
+ # @param [Object] retain_checkpoints Value to be assigned
195
+ def retain_checkpoints=(retain_checkpoints)
196
+ if !retain_checkpoints.nil? && retain_checkpoints < 1
197
+ fail ArgumentError, 'invalid value for "retain_checkpoints", must be greater than or equal to 1.'
198
+ end
199
+
200
+ @retain_checkpoints = retain_checkpoints
201
+ end
202
+
178
203
  # Checks equality by comparing each attribute.
179
204
  # @param [Object] Object to be compared
180
205
  def ==(o)
@@ -184,6 +209,7 @@ module PulpAnsibleClient
184
209
  name == o.name &&
185
210
  description == o.description &&
186
211
  retain_repo_versions == o.retain_repo_versions &&
212
+ retain_checkpoints == o.retain_checkpoints &&
187
213
  remote == o.remote
188
214
  end
189
215
 
@@ -196,7 +222,7 @@ module PulpAnsibleClient
196
222
  # Calculates hash code according to all attributes.
197
223
  # @return [Integer] Hash code
198
224
  def hash
199
- [pulp_labels, name, description, retain_repo_versions, remote].hash
225
+ [pulp_labels, name, description, retain_repo_versions, retain_checkpoints, remote].hash
200
226
  end
201
227
 
202
228
  # Builds the object from hash
@@ -42,6 +42,9 @@ module PulpAnsibleClient
42
42
  # Retain X versions of the repository. Default is null which retains all versions.
43
43
  attr_accessor :retain_repo_versions
44
44
 
45
+ # Retain X checkpoint publications for the repository. Default is null which retains all checkpoints.
46
+ attr_accessor :retain_checkpoints
47
+
45
48
  # An optional remote to use by default when syncing.
46
49
  attr_accessor :remote
47
50
 
@@ -58,6 +61,7 @@ module PulpAnsibleClient
58
61
  :'name' => :'name',
59
62
  :'description' => :'description',
60
63
  :'retain_repo_versions' => :'retain_repo_versions',
64
+ :'retain_checkpoints' => :'retain_checkpoints',
61
65
  :'remote' => :'remote'
62
66
  }
63
67
  end
@@ -80,6 +84,7 @@ module PulpAnsibleClient
80
84
  :'name' => :'String',
81
85
  :'description' => :'String',
82
86
  :'retain_repo_versions' => :'Integer',
87
+ :'retain_checkpoints' => :'Integer',
83
88
  :'remote' => :'String'
84
89
  }
85
90
  end
@@ -89,6 +94,7 @@ module PulpAnsibleClient
89
94
  Set.new([
90
95
  :'description',
91
96
  :'retain_repo_versions',
97
+ :'retain_checkpoints',
92
98
  :'remote'
93
99
  ])
94
100
  end
@@ -152,6 +158,10 @@ module PulpAnsibleClient
152
158
  self.retain_repo_versions = attributes[:'retain_repo_versions']
153
159
  end
154
160
 
161
+ if attributes.key?(:'retain_checkpoints')
162
+ self.retain_checkpoints = attributes[:'retain_checkpoints']
163
+ end
164
+
155
165
  if attributes.key?(:'remote')
156
166
  self.remote = attributes[:'remote']
157
167
  end
@@ -170,6 +180,10 @@ module PulpAnsibleClient
170
180
  invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
171
181
  end
172
182
 
183
+ if !@retain_checkpoints.nil? && @retain_checkpoints < 1
184
+ invalid_properties.push('invalid value for "retain_checkpoints", must be greater than or equal to 1.')
185
+ end
186
+
173
187
  invalid_properties
174
188
  end
175
189
 
@@ -179,6 +193,7 @@ module PulpAnsibleClient
179
193
  warn '[DEPRECATED] the `valid?` method is obsolete'
180
194
  return false if @name.nil?
181
195
  return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
196
+ return false if !@retain_checkpoints.nil? && @retain_checkpoints < 1
182
197
  true
183
198
  end
184
199
 
@@ -192,6 +207,16 @@ module PulpAnsibleClient
192
207
  @retain_repo_versions = retain_repo_versions
193
208
  end
194
209
 
210
+ # Custom attribute writer method with validation
211
+ # @param [Object] retain_checkpoints Value to be assigned
212
+ def retain_checkpoints=(retain_checkpoints)
213
+ if !retain_checkpoints.nil? && retain_checkpoints < 1
214
+ fail ArgumentError, 'invalid value for "retain_checkpoints", must be greater than or equal to 1.'
215
+ end
216
+
217
+ @retain_checkpoints = retain_checkpoints
218
+ end
219
+
195
220
  # Checks equality by comparing each attribute.
196
221
  # @param [Object] Object to be compared
197
222
  def ==(o)
@@ -207,6 +232,7 @@ module PulpAnsibleClient
207
232
  name == o.name &&
208
233
  description == o.description &&
209
234
  retain_repo_versions == o.retain_repo_versions &&
235
+ retain_checkpoints == o.retain_checkpoints &&
210
236
  remote == o.remote
211
237
  end
212
238
 
@@ -219,7 +245,7 @@ module PulpAnsibleClient
219
245
  # Calculates hash code according to all attributes.
220
246
  # @return [Integer] Hash code
221
247
  def hash
222
- [pulp_href, prn, pulp_created, pulp_last_updated, versions_href, pulp_labels, latest_version_href, name, description, retain_repo_versions, remote].hash
248
+ [pulp_href, prn, pulp_created, pulp_last_updated, versions_href, pulp_labels, latest_version_href, name, description, retain_repo_versions, retain_checkpoints, remote].hash
223
249
  end
224
250
 
225
251
  # Builds the object from hash
@@ -11,5 +11,5 @@ Generator version: 7.10.0
11
11
  =end
12
12
 
13
13
  module PulpAnsibleClient
14
- VERSION = '0.29.6'
14
+ VERSION = '0.29.7'
15
15
  end
@@ -37,13 +37,13 @@ describe 'ContentCollectionVersionsApi' do
37
37
  # Trigger an asynchronous task to create content,optionally create new repository version.
38
38
  # @param [Hash] opts the optional parameters
39
39
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
40
- # @option opts [Hash<String, String>] :pulp_labels A dictionary of arbitrary key/value pairs used to describe a specific Content instance.
40
+ # @option opts [String] :file_url A url that Pulp can download and turn into the content unit.
41
+ # @option opts [RemoteNetworkConfig] :downloader_config Configuration for the download process (e.g., proxies, auth, timeouts). Only applicable when providing a &#39;file_url.
41
42
  # @option opts [File] :file An uploaded file that may be turned into the content unit.
42
- # @option opts [String] :upload An uncommitted upload that may be turned into the content unit.
43
+ # @option opts [Hash<String, String>] :pulp_labels A dictionary of arbitrary key/value pairs used to describe a specific Content instance.
43
44
  # @option opts [String] :repository A URI of a repository the new content unit should be associated with.
44
- # @option opts [RemoteNetworkConfig] :downloader_config Configuration for the download process (e.g., proxies, auth, timeouts). Only applicable when providing a &#39;file_url.
45
- # @option opts [String] :file_url A url that Pulp can download and turn into the content unit.
46
45
  # @option opts [String] :artifact Artifact file representing the physical content
46
+ # @option opts [String] :upload An uncommitted upload that may be turned into the content unit.
47
47
  # @option opts [String] :expected_name The name of the collection.
48
48
  # @option opts [String] :expected_namespace The namespace of the collection.
49
49
  # @option opts [String] :expected_version The version of the collection.
@@ -102,13 +102,21 @@ describe 'RepositoriesAnsibleApi' do
102
102
  # @option opts [String] :name__regex Filter results where name matches regex value
103
103
  # @option opts [String] :name__startswith Filter results where name starts with value
104
104
  # @option opts [Integer] :offset The initial index from which to return the results.
105
- # @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)
105
+ # @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)
106
106
  # @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
107
107
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
108
108
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
109
109
  # @option opts [String] :pulp_label_select Filter labels by search string
110
110
  # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
111
111
  # @option opts [String] :remote
112
+ # @option opts [Integer] :retain_checkpoints Filter results where retain_checkpoints matches value
113
+ # @option opts [Integer] :retain_checkpoints__gt Filter results where retain_checkpoints is greater than value
114
+ # @option opts [Integer] :retain_checkpoints__gte Filter results where retain_checkpoints is greater than or equal to value
115
+ # @option opts [Boolean] :retain_checkpoints__isnull Filter results where retain_checkpoints has a null value
116
+ # @option opts [Integer] :retain_checkpoints__lt Filter results where retain_checkpoints is less than value
117
+ # @option opts [Integer] :retain_checkpoints__lte Filter results where retain_checkpoints is less than or equal to value
118
+ # @option opts [Integer] :retain_checkpoints__ne Filter results where retain_checkpoints not equal to value
119
+ # @option opts [Array<Integer>] :retain_checkpoints__range Filter results where retain_checkpoints is between two comma separated values
112
120
  # @option opts [Integer] :retain_repo_versions Filter results where retain_repo_versions matches value
113
121
  # @option opts [Integer] :retain_repo_versions__gt Filter results where retain_repo_versions is greater than value
114
122
  # @option opts [Integer] :retain_repo_versions__gte Filter results where retain_repo_versions is greater than or equal to value
@@ -87,6 +87,12 @@ describe PulpAnsibleClient::AnsibleAnsibleRepositoryResponse 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 PulpAnsibleClient::AnsibleAnsibleRepository 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/
@@ -27,7 +27,7 @@ describe PulpAnsibleClient::AnsibleCollectionVersionResponse do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "pulp_labels"' do
30
+ describe 'test attribute "prn"' do
31
31
  it 'should work' do
32
32
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
33
  end
@@ -39,31 +39,31 @@ describe PulpAnsibleClient::AnsibleCollectionVersionResponse do
39
39
  end
40
40
  end
41
41
 
42
- describe 'test attribute "pulp_href"' do
42
+ describe 'test attribute "pulp_last_updated"' 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 "pulp_last_updated"' do
48
+ describe 'test attribute "pulp_labels"' 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 "prn"' do
54
+ describe 'test attribute "vuln_report"' 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 "artifact"' do
60
+ describe 'test attribute "pulp_href"' 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 "vuln_report"' do
66
+ describe 'test attribute "artifact"' 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
@@ -27,13 +27,13 @@ describe PulpAnsibleClient::AnsibleGitRemoteResponse do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "pulp_labels"' do
30
+ describe 'test attribute "prn"' do
31
31
  it 'should work' do
32
32
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
33
  end
34
34
  end
35
35
 
36
- describe 'test attribute "pulp_last_updated"' do
36
+ describe 'test attribute "rate_limit"' do
37
37
  it 'should work' do
38
38
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
39
  end
@@ -45,103 +45,103 @@ describe PulpAnsibleClient::AnsibleGitRemoteResponse do
45
45
  end
46
46
  end
47
47
 
48
- describe 'test attribute "client_cert"' do
48
+ describe 'test attribute "total_timeout"' 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 "connect_timeout"' do
54
+ describe 'test attribute "name"' 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 "hidden_fields"' 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 "headers"' do
66
+ describe 'test attribute "ca_cert"' 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 "hidden_fields"' do
72
+ describe 'test attribute "download_concurrency"' 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 "total_timeout"' do
78
+ describe 'test attribute "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 "sock_connect_timeout"' do
84
+ describe 'test attribute "client_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_created"' do
90
+ describe 'test attribute "tls_validation"' 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 "proxy_url"' do
96
+ describe 'test attribute "headers"' 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 "sock_read_timeout"' do
102
+ describe 'test attribute "pulp_created"' 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 "pulp_href"' do
108
+ describe 'test attribute "proxy_url"' 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
112
112
  end
113
113
 
114
- describe 'test attribute "download_concurrency"' do
114
+ describe 'test attribute "pulp_last_updated"' do
115
115
  it 'should work' do
116
116
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
117
117
  end
118
118
  end
119
119
 
120
- describe 'test attribute "name"' do
120
+ describe 'test attribute "sock_connect_timeout"' do
121
121
  it 'should work' do
122
122
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
123
123
  end
124
124
  end
125
125
 
126
- describe 'test attribute "rate_limit"' do
126
+ describe 'test attribute "sock_read_timeout"' do
127
127
  it 'should work' do
128
128
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
129
129
  end
130
130
  end
131
131
 
132
- describe 'test attribute "url"' do
132
+ describe 'test attribute "pulp_labels"' do
133
133
  it 'should work' do
134
134
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
135
135
  end
136
136
  end
137
137
 
138
- describe 'test attribute "prn"' do
138
+ describe 'test attribute "pulp_href"' do
139
139
  it 'should work' do
140
140
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
141
141
  end
142
142
  end
143
143
 
144
- describe 'test attribute "ca_cert"' do
144
+ describe 'test attribute "connect_timeout"' 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
@@ -27,121 +27,121 @@ describe PulpAnsibleClient::AnsibleGitRemote do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "pulp_labels"' do
30
+ describe 'test attribute "proxy_username"' do
31
31
  it 'should work' do
32
32
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
33
  end
34
34
  end
35
35
 
36
- describe 'test attribute "max_retries"' do
36
+ describe 'test attribute "rate_limit"' do
37
37
  it 'should work' do
38
38
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
39
  end
40
40
  end
41
41
 
42
- describe 'test attribute "client_key"' do
42
+ describe 'test attribute "max_retries"' 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 "username"' do
48
+ describe 'test attribute "total_timeout"' 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_cert"' do
54
+ describe 'test attribute "name"' 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 "connect_timeout"' do
60
+ describe 'test attribute "client_key"' 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 "tls_validation"' do
66
+ describe 'test attribute "ca_cert"' 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 "headers"' do
72
+ describe 'test attribute "download_concurrency"' 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 "total_timeout"' do
78
+ describe 'test attribute "proxy_password"' 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 "sock_connect_timeout"' do
84
+ describe 'test attribute "url"' 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 "proxy_password"' do
90
+ describe 'test attribute "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 "proxy_url"' 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 "sock_read_timeout"' do
102
+ describe 'test attribute "client_cert"' 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 "password"' do
108
+ describe 'test attribute "tls_validation"' 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
112
112
  end
113
113
 
114
- describe 'test attribute "download_concurrency"' do
114
+ describe 'test attribute "headers"' do
115
115
  it 'should work' do
116
116
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
117
117
  end
118
118
  end
119
119
 
120
- describe 'test attribute "name"' do
120
+ describe 'test attribute "proxy_url"' do
121
121
  it 'should work' do
122
122
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
123
123
  end
124
124
  end
125
125
 
126
- describe 'test attribute "rate_limit"' do
126
+ describe 'test attribute "sock_connect_timeout"' do
127
127
  it 'should work' do
128
128
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
129
129
  end
130
130
  end
131
131
 
132
- describe 'test attribute "proxy_username"' do
132
+ describe 'test attribute "sock_read_timeout"' do
133
133
  it 'should work' do
134
134
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
135
135
  end
136
136
  end
137
137
 
138
- describe 'test attribute "url"' do
138
+ describe 'test attribute "pulp_labels"' do
139
139
  it 'should work' do
140
140
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
141
141
  end
142
142
  end
143
143
 
144
- describe 'test attribute "ca_cert"' do
144
+ describe 'test attribute "connect_timeout"' 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
@@ -27,7 +27,7 @@ describe PulpAnsibleClient::AnsibleRoleResponse do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "pulp_labels"' do
30
+ describe 'test attribute "prn"' do
31
31
  it 'should work' do
32
32
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
33
  end
@@ -39,31 +39,31 @@ describe PulpAnsibleClient::AnsibleRoleResponse do
39
39
  end
40
40
  end
41
41
 
42
- describe 'test attribute "pulp_href"' do
42
+ describe 'test attribute "pulp_last_updated"' 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 "pulp_last_updated"' do
48
+ describe 'test attribute "pulp_labels"' 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 "prn"' do
54
+ describe 'test attribute "vuln_report"' 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 "artifact"' do
60
+ describe 'test attribute "pulp_href"' 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 "vuln_report"' do
66
+ describe 'test attribute "artifact"' 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
@@ -51,6 +51,12 @@ describe PulpAnsibleClient::PatchedansibleAnsibleRepository 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/