pulp_ansible_client 0.13.0 → 0.13.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +5 -7
  3. data/docs/AnsibleAnsibleRepository.md +1 -1
  4. data/docs/AnsibleAnsibleRepositoryResponse.md +1 -1
  5. data/docs/AnsibleCollectionVersion.md +3 -3
  6. data/docs/AnsibleGitRemote.md +26 -26
  7. data/docs/AnsibleGitRemoteResponse.md +24 -24
  8. data/docs/ContentCollectionVersionsApi.md +3 -3
  9. data/docs/PatchedansibleAnsibleRepository.md +1 -1
  10. data/docs/PatchedansibleGitRemote.md +26 -26
  11. data/docs/Repair.md +17 -0
  12. data/docs/RepositoriesAnsibleVersionsApi.md +4 -4
  13. data/lib/pulp_ansible_client/api/content_collection_versions_api.rb +3 -3
  14. data/lib/pulp_ansible_client/api/repositories_ansible_versions_api.rb +9 -9
  15. data/lib/pulp_ansible_client/models/ansible_ansible_repository.rb +3 -1
  16. data/lib/pulp_ansible_client/models/ansible_ansible_repository_response.rb +3 -1
  17. data/lib/pulp_ansible_client/models/ansible_collection_version.rb +11 -11
  18. data/lib/pulp_ansible_client/models/ansible_git_remote.rb +220 -220
  19. data/lib/pulp_ansible_client/models/ansible_git_remote_response.rb +128 -128
  20. data/lib/pulp_ansible_client/models/patchedansible_ansible_repository.rb +3 -1
  21. data/lib/pulp_ansible_client/models/patchedansible_git_remote.rb +215 -215
  22. data/lib/pulp_ansible_client/models/{repository_version.rb → repair.rb} +13 -12
  23. data/lib/pulp_ansible_client/version.rb +1 -1
  24. data/lib/pulp_ansible_client.rb +1 -3
  25. data/spec/api/content_collection_versions_api_spec.rb +1 -1
  26. data/spec/api/repositories_ansible_versions_api_spec.rb +1 -1
  27. data/spec/models/ansible_collection_version_spec.rb +2 -2
  28. data/spec/models/ansible_git_remote_response_spec.rb +17 -17
  29. data/spec/models/ansible_git_remote_spec.rb +19 -19
  30. data/spec/models/patchedansible_git_remote_spec.rb +19 -19
  31. data/spec/models/{repository_version_spec.rb → repair_spec.rb} +7 -7
  32. metadata +102 -110
  33. data/docs/ContentSummary.md +0 -21
  34. data/docs/KeyringEnum.md +0 -16
  35. data/docs/RepositoryVersion.md +0 -17
  36. data/lib/pulp_ansible_client/models/content_summary.rb +0 -246
  37. data/lib/pulp_ansible_client/models/keyring_enum.rb +0 -40
  38. data/spec/models/content_summary_spec.rb +0 -53
  39. data/spec/models/keyring_enum_spec.rb +0 -35
@@ -13,22 +13,21 @@ OpenAPI Generator version: 4.3.1
13
13
  require 'date'
14
14
 
15
15
  module PulpAnsibleClient
16
- # Base serializer for use with :class:`pulpcore.app.models.Model` This ensures that all Serializers provide values for the 'pulp_href` field. The class provides a default for the ``ref_name`` attribute in the ModelSerializers's ``Meta`` class. This ensures that the OpenAPI definitions of plugins are namespaced properly.
17
- class RepositoryVersion
18
- # A repository version whose content was used as the initial set of content for this repository version
19
- attr_accessor :base_version
16
+ class Repair
17
+ # Will verify that the checksum of all stored files matches what saved in the database. Otherwise only the existence of the files will be checked. Enabled by default
18
+ attr_accessor :verify_checksums
20
19
 
21
20
  # Attribute mapping from ruby-style variable name to JSON key.
22
21
  def self.attribute_map
23
22
  {
24
- :'base_version' => :'base_version'
23
+ :'verify_checksums' => :'verify_checksums'
25
24
  }
26
25
  end
27
26
 
28
27
  # Attribute type mapping.
29
28
  def self.openapi_types
30
29
  {
31
- :'base_version' => :'String'
30
+ :'verify_checksums' => :'Boolean'
32
31
  }
33
32
  end
34
33
 
@@ -42,19 +41,21 @@ module PulpAnsibleClient
42
41
  # @param [Hash] attributes Model attributes in the form of hash
43
42
  def initialize(attributes = {})
44
43
  if (!attributes.is_a?(Hash))
45
- fail ArgumentError, "The input argument (attributes) must be a hash in `PulpAnsibleClient::RepositoryVersion` initialize method"
44
+ fail ArgumentError, "The input argument (attributes) must be a hash in `PulpAnsibleClient::Repair` initialize method"
46
45
  end
47
46
 
48
47
  # check to see if the attribute exists and convert string to symbol for hash key
49
48
  attributes = attributes.each_with_object({}) { |(k, v), h|
50
49
  if (!self.class.attribute_map.key?(k.to_sym))
51
- fail ArgumentError, "`#{k}` is not a valid attribute in `PulpAnsibleClient::RepositoryVersion`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
50
+ fail ArgumentError, "`#{k}` is not a valid attribute in `PulpAnsibleClient::Repair`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
52
51
  end
53
52
  h[k.to_sym] = v
54
53
  }
55
54
 
56
- if attributes.key?(:'base_version')
57
- self.base_version = attributes[:'base_version']
55
+ if attributes.key?(:'verify_checksums')
56
+ self.verify_checksums = attributes[:'verify_checksums']
57
+ else
58
+ self.verify_checksums = true
58
59
  end
59
60
  end
60
61
 
@@ -76,7 +77,7 @@ module PulpAnsibleClient
76
77
  def ==(o)
77
78
  return true if self.equal?(o)
78
79
  self.class == o.class &&
79
- base_version == o.base_version
80
+ verify_checksums == o.verify_checksums
80
81
  end
81
82
 
82
83
  # @see the `==` method
@@ -88,7 +89,7 @@ module PulpAnsibleClient
88
89
  # Calculates hash code according to all attributes.
89
90
  # @return [Integer] Hash code
90
91
  def hash
91
- [base_version].hash
92
+ [verify_checksums].hash
92
93
  end
93
94
 
94
95
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.3.1
11
11
  =end
12
12
 
13
13
  module PulpAnsibleClient
14
- VERSION = '0.13.0'
14
+ VERSION = '0.13.1'
15
15
  end
@@ -49,7 +49,6 @@ require 'pulp_ansible_client/models/collection_response'
49
49
  require 'pulp_ansible_client/models/collection_version_docs_response'
50
50
  require 'pulp_ansible_client/models/collection_version_list_response'
51
51
  require 'pulp_ansible_client/models/collection_version_response'
52
- require 'pulp_ansible_client/models/content_summary'
53
52
  require 'pulp_ansible_client/models/content_summary_response'
54
53
  require 'pulp_ansible_client/models/copy'
55
54
  require 'pulp_ansible_client/models/galaxy_collection'
@@ -57,7 +56,6 @@ require 'pulp_ansible_client/models/galaxy_collection_response'
57
56
  require 'pulp_ansible_client/models/galaxy_collection_version_response'
58
57
  require 'pulp_ansible_client/models/galaxy_role_response'
59
58
  require 'pulp_ansible_client/models/galaxy_role_version_response'
60
- require 'pulp_ansible_client/models/keyring_enum'
61
59
  require 'pulp_ansible_client/models/paginated_collection_response_list'
62
60
  require 'pulp_ansible_client/models/paginated_collection_response_list_links'
63
61
  require 'pulp_ansible_client/models/paginated_collection_response_list_meta'
@@ -83,9 +81,9 @@ require 'pulp_ansible_client/models/patchedansible_collection_remote'
83
81
  require 'pulp_ansible_client/models/patchedansible_git_remote'
84
82
  require 'pulp_ansible_client/models/patchedansible_role_remote'
85
83
  require 'pulp_ansible_client/models/policy_enum'
84
+ require 'pulp_ansible_client/models/repair'
86
85
  require 'pulp_ansible_client/models/repo_metadata_response'
87
86
  require 'pulp_ansible_client/models/repository_add_remove_content'
88
- require 'pulp_ansible_client/models/repository_version'
89
87
  require 'pulp_ansible_client/models/repository_version_response'
90
88
  require 'pulp_ansible_client/models/tag_response'
91
89
  require 'pulp_ansible_client/models/unpaginated_collection_version_response'
@@ -39,8 +39,8 @@ describe 'ContentCollectionVersionsApi' do
39
39
  # @param namespace The namespace of the collection.
40
40
  # @param version The version of the collection.
41
41
  # @param [Hash] opts the optional parameters
42
- # @option opts [File] :file An uploaded file that may be turned into the artifact of the content unit.
43
42
  # @option opts [String] :repository A URI of a repository the new content unit should be associated with.
43
+ # @option opts [File] :file An uploaded file that may be turned into the artifact of the content unit.
44
44
  # @return [AsyncOperationResponse]
45
45
  describe 'create test' do
46
46
  it 'should work' do
@@ -92,7 +92,7 @@ describe 'RepositoriesAnsibleVersionsApi' do
92
92
  # unit tests for repair
93
93
  # Trigger an asynchronous task to repair a repository version.
94
94
  # @param ansible_ansible_repository_version_href
95
- # @param repository_version
95
+ # @param repair
96
96
  # @param [Hash] opts the optional parameters
97
97
  # @return [AsyncOperationResponse]
98
98
  describe 'repair test' do
@@ -32,13 +32,13 @@ describe 'AnsibleCollectionVersion' do
32
32
  expect(@instance).to be_instance_of(PulpAnsibleClient::AnsibleCollectionVersion)
33
33
  end
34
34
  end
35
- describe 'test attribute "file"' do
35
+ describe 'test attribute "repository"' do
36
36
  it 'should work' do
37
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "repository"' do
41
+ describe 'test attribute "file"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
@@ -32,97 +32,97 @@ describe 'AnsibleGitRemoteResponse' do
32
32
  expect(@instance).to be_instance_of(PulpAnsibleClient::AnsibleGitRemoteResponse)
33
33
  end
34
34
  end
35
- describe 'test attribute "tls_validation"' do
35
+ describe 'test attribute "proxy_url"' do
36
36
  it 'should work' do
37
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "pulp_created"' do
41
+ describe 'test attribute "total_timeout"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "pulp_labels"' do
47
+ describe 'test attribute "name"' do
48
48
  it 'should work' do
49
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "max_retries"' do
53
+ describe 'test attribute "headers"' do
54
54
  it 'should work' do
55
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
56
  end
57
57
  end
58
58
 
59
- describe 'test attribute "total_timeout"' do
59
+ describe 'test attribute "pulp_labels"' do
60
60
  it 'should work' do
61
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
62
  end
63
63
  end
64
64
 
65
- describe 'test attribute "proxy_url"' do
65
+ describe 'test attribute "client_cert"' do
66
66
  it 'should work' do
67
67
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
68
  end
69
69
  end
70
70
 
71
- describe 'test attribute "ca_cert"' do
71
+ describe 'test attribute "sock_connect_timeout"' do
72
72
  it 'should work' do
73
73
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
74
  end
75
75
  end
76
76
 
77
- describe 'test attribute "rate_limit"' do
77
+ describe 'test attribute "sock_read_timeout"' do
78
78
  it 'should work' do
79
79
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
80
  end
81
81
  end
82
82
 
83
- describe 'test attribute "sock_connect_timeout"' do
83
+ describe 'test attribute "pulp_href"' do
84
84
  it 'should work' do
85
85
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
86
86
  end
87
87
  end
88
88
 
89
- describe 'test attribute "headers"' do
89
+ describe 'test attribute "max_retries"' do
90
90
  it 'should work' do
91
91
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
92
92
  end
93
93
  end
94
94
 
95
- describe 'test attribute "download_concurrency"' do
95
+ describe 'test attribute "ca_cert"' do
96
96
  it 'should work' do
97
97
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
98
98
  end
99
99
  end
100
100
 
101
- describe 'test attribute "pulp_href"' do
101
+ describe 'test attribute "tls_validation"' do
102
102
  it 'should work' do
103
103
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
104
104
  end
105
105
  end
106
106
 
107
- describe 'test attribute "pulp_last_updated"' do
107
+ describe 'test attribute "download_concurrency"' do
108
108
  it 'should work' do
109
109
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
110
110
  end
111
111
  end
112
112
 
113
- describe 'test attribute "sock_read_timeout"' do
113
+ describe 'test attribute "rate_limit"' do
114
114
  it 'should work' do
115
115
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
116
116
  end
117
117
  end
118
118
 
119
- describe 'test attribute "client_cert"' do
119
+ describe 'test attribute "connect_timeout"' do
120
120
  it 'should work' do
121
121
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
122
122
  end
123
123
  end
124
124
 
125
- describe 'test attribute "connect_timeout"' do
125
+ describe 'test attribute "pulp_created"' do
126
126
  it 'should work' do
127
127
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
128
128
  end
@@ -134,7 +134,7 @@ describe 'AnsibleGitRemoteResponse' do
134
134
  end
135
135
  end
136
136
 
137
- describe 'test attribute "name"' do
137
+ describe 'test attribute "pulp_last_updated"' do
138
138
  it 'should work' do
139
139
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
140
140
  end
@@ -32,109 +32,109 @@ describe 'AnsibleGitRemote' do
32
32
  expect(@instance).to be_instance_of(PulpAnsibleClient::AnsibleGitRemote)
33
33
  end
34
34
  end
35
- describe 'test attribute "tls_validation"' do
35
+ describe 'test attribute "proxy_url"' do
36
36
  it 'should work' do
37
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "proxy_password"' do
41
+ describe 'test attribute "total_timeout"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "pulp_labels"' do
47
+ describe 'test attribute "name"' do
48
48
  it 'should work' do
49
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "max_retries"' do
53
+ describe 'test attribute "headers"' do
54
54
  it 'should work' do
55
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
56
  end
57
57
  end
58
58
 
59
- describe 'test attribute "total_timeout"' do
59
+ describe 'test attribute "pulp_labels"' do
60
60
  it 'should work' do
61
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
62
  end
63
63
  end
64
64
 
65
- describe 'test attribute "proxy_url"' do
65
+ describe 'test attribute "client_cert"' do
66
66
  it 'should work' do
67
67
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
68
  end
69
69
  end
70
70
 
71
- describe 'test attribute "ca_cert"' do
71
+ describe 'test attribute "sock_connect_timeout"' do
72
72
  it 'should work' do
73
73
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
74
  end
75
75
  end
76
76
 
77
- describe 'test attribute "client_key"' do
77
+ describe 'test attribute "sock_read_timeout"' do
78
78
  it 'should work' do
79
79
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
80
  end
81
81
  end
82
82
 
83
- describe 'test attribute "rate_limit"' do
83
+ describe 'test attribute "proxy_password"' do
84
84
  it 'should work' do
85
85
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
86
86
  end
87
87
  end
88
88
 
89
- describe 'test attribute "sock_connect_timeout"' do
89
+ describe 'test attribute "max_retries"' do
90
90
  it 'should work' do
91
91
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
92
92
  end
93
93
  end
94
94
 
95
- describe 'test attribute "headers"' do
95
+ describe 'test attribute "ca_cert"' do
96
96
  it 'should work' do
97
97
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
98
98
  end
99
99
  end
100
100
 
101
- describe 'test attribute "username"' do
101
+ describe 'test attribute "tls_validation"' do
102
102
  it 'should work' do
103
103
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
104
104
  end
105
105
  end
106
106
 
107
- describe 'test attribute "download_concurrency"' do
107
+ describe 'test attribute "client_key"' do
108
108
  it 'should work' do
109
109
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
110
110
  end
111
111
  end
112
112
 
113
- describe 'test attribute "password"' do
113
+ describe 'test attribute "download_concurrency"' do
114
114
  it 'should work' do
115
115
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
116
116
  end
117
117
  end
118
118
 
119
- describe 'test attribute "proxy_username"' do
119
+ describe 'test attribute "username"' do
120
120
  it 'should work' do
121
121
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
122
122
  end
123
123
  end
124
124
 
125
- describe 'test attribute "sock_read_timeout"' do
125
+ describe 'test attribute "rate_limit"' do
126
126
  it 'should work' do
127
127
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
128
128
  end
129
129
  end
130
130
 
131
- describe 'test attribute "client_cert"' do
131
+ describe 'test attribute "connect_timeout"' do
132
132
  it 'should work' do
133
133
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
134
134
  end
135
135
  end
136
136
 
137
- describe 'test attribute "connect_timeout"' do
137
+ describe 'test attribute "proxy_username"' do
138
138
  it 'should work' do
139
139
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
140
140
  end
@@ -146,7 +146,7 @@ describe 'AnsibleGitRemote' do
146
146
  end
147
147
  end
148
148
 
149
- describe 'test attribute "name"' do
149
+ describe 'test attribute "password"' do
150
150
  it 'should work' do
151
151
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
152
152
  end
@@ -32,109 +32,109 @@ describe 'PatchedansibleGitRemote' do
32
32
  expect(@instance).to be_instance_of(PulpAnsibleClient::PatchedansibleGitRemote)
33
33
  end
34
34
  end
35
- describe 'test attribute "tls_validation"' do
35
+ describe 'test attribute "proxy_url"' do
36
36
  it 'should work' do
37
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "proxy_password"' do
41
+ describe 'test attribute "total_timeout"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "pulp_labels"' do
47
+ describe 'test attribute "name"' do
48
48
  it 'should work' do
49
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "max_retries"' do
53
+ describe 'test attribute "headers"' do
54
54
  it 'should work' do
55
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
56
  end
57
57
  end
58
58
 
59
- describe 'test attribute "total_timeout"' do
59
+ describe 'test attribute "pulp_labels"' do
60
60
  it 'should work' do
61
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
62
  end
63
63
  end
64
64
 
65
- describe 'test attribute "proxy_url"' do
65
+ describe 'test attribute "client_cert"' do
66
66
  it 'should work' do
67
67
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
68
  end
69
69
  end
70
70
 
71
- describe 'test attribute "ca_cert"' do
71
+ describe 'test attribute "sock_connect_timeout"' do
72
72
  it 'should work' do
73
73
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
74
  end
75
75
  end
76
76
 
77
- describe 'test attribute "client_key"' do
77
+ describe 'test attribute "sock_read_timeout"' do
78
78
  it 'should work' do
79
79
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
80
  end
81
81
  end
82
82
 
83
- describe 'test attribute "rate_limit"' do
83
+ describe 'test attribute "proxy_password"' do
84
84
  it 'should work' do
85
85
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
86
86
  end
87
87
  end
88
88
 
89
- describe 'test attribute "sock_connect_timeout"' do
89
+ describe 'test attribute "max_retries"' do
90
90
  it 'should work' do
91
91
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
92
92
  end
93
93
  end
94
94
 
95
- describe 'test attribute "headers"' do
95
+ describe 'test attribute "ca_cert"' do
96
96
  it 'should work' do
97
97
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
98
98
  end
99
99
  end
100
100
 
101
- describe 'test attribute "username"' do
101
+ describe 'test attribute "tls_validation"' do
102
102
  it 'should work' do
103
103
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
104
104
  end
105
105
  end
106
106
 
107
- describe 'test attribute "download_concurrency"' do
107
+ describe 'test attribute "client_key"' do
108
108
  it 'should work' do
109
109
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
110
110
  end
111
111
  end
112
112
 
113
- describe 'test attribute "password"' do
113
+ describe 'test attribute "download_concurrency"' do
114
114
  it 'should work' do
115
115
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
116
116
  end
117
117
  end
118
118
 
119
- describe 'test attribute "proxy_username"' do
119
+ describe 'test attribute "username"' do
120
120
  it 'should work' do
121
121
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
122
122
  end
123
123
  end
124
124
 
125
- describe 'test attribute "sock_read_timeout"' do
125
+ describe 'test attribute "rate_limit"' do
126
126
  it 'should work' do
127
127
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
128
128
  end
129
129
  end
130
130
 
131
- describe 'test attribute "client_cert"' do
131
+ describe 'test attribute "connect_timeout"' do
132
132
  it 'should work' do
133
133
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
134
134
  end
135
135
  end
136
136
 
137
- describe 'test attribute "connect_timeout"' do
137
+ describe 'test attribute "proxy_username"' do
138
138
  it 'should work' do
139
139
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
140
140
  end
@@ -146,7 +146,7 @@ describe 'PatchedansibleGitRemote' do
146
146
  end
147
147
  end
148
148
 
149
- describe 'test attribute "name"' do
149
+ describe 'test attribute "password"' do
150
150
  it 'should work' do
151
151
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
152
152
  end
@@ -14,25 +14,25 @@ require 'spec_helper'
14
14
  require 'json'
15
15
  require 'date'
16
16
 
17
- # Unit tests for PulpAnsibleClient::RepositoryVersion
17
+ # Unit tests for PulpAnsibleClient::Repair
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
- describe 'RepositoryVersion' do
20
+ describe 'Repair' do
21
21
  before do
22
22
  # run before each test
23
- @instance = PulpAnsibleClient::RepositoryVersion.new
23
+ @instance = PulpAnsibleClient::Repair.new
24
24
  end
25
25
 
26
26
  after do
27
27
  # run after each test
28
28
  end
29
29
 
30
- describe 'test an instance of RepositoryVersion' do
31
- it 'should create an instance of RepositoryVersion' do
32
- expect(@instance).to be_instance_of(PulpAnsibleClient::RepositoryVersion)
30
+ describe 'test an instance of Repair' do
31
+ it 'should create an instance of Repair' do
32
+ expect(@instance).to be_instance_of(PulpAnsibleClient::Repair)
33
33
  end
34
34
  end
35
- describe 'test attribute "base_version"' do
35
+ describe 'test attribute "verify_checksums"' do
36
36
  it 'should work' do
37
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
38
  end