pulp_ansible_client 0.24.1 → 0.24.2

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 (74) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +14 -4
  3. data/docs/AnsibleAnsibleCollectionDeprecated.md +2 -0
  4. data/docs/AnsibleAnsibleCollectionDeprecatedResponse.md +2 -0
  5. data/docs/AnsibleCollectionVersionResponse.md +8 -6
  6. data/docs/AnsibleCollectionVersionSignatureResponse.md +2 -0
  7. data/docs/AnsibleGitRemote.md +26 -26
  8. data/docs/AnsibleGitRemoteResponse.md +28 -28
  9. data/docs/AnsibleRole.md +2 -0
  10. data/docs/AnsibleRoleResponse.md +8 -6
  11. data/docs/ContentCollectionDeprecationsApi.md +148 -0
  12. data/docs/ContentCollectionMarksApi.md +150 -2
  13. data/docs/ContentCollectionSignaturesApi.md +152 -2
  14. data/docs/ContentCollectionVersionsApi.md +156 -6
  15. data/docs/ContentNamespacesApi.md +4 -2
  16. data/docs/ContentRolesApi.md +150 -2
  17. data/docs/PatchedansibleGitRemote.md +26 -26
  18. data/docs/PulpAnsibleApiV3CollectionsVersionsApi.md +4 -2
  19. data/docs/PulpAnsibleApiV3NamespacesApi.md +2 -2
  20. data/docs/PulpAnsibleApiV3PluginAnsibleContentCollectionsIndexVersionsApi.md +4 -2
  21. data/docs/PulpAnsibleApiV3PluginAnsibleContentNamespacesApi.md +2 -2
  22. data/docs/PulpAnsibleDefaultApiV3CollectionsVersionsApi.md +4 -2
  23. data/docs/PulpAnsibleDefaultApiV3NamespacesApi.md +2 -2
  24. data/docs/PulpAnsibleDefaultApiV3PluginAnsibleContentCollectionsIndexVersionsApi.md +4 -2
  25. data/docs/PulpAnsibleDefaultApiV3PluginAnsibleContentNamespacesApi.md +2 -2
  26. data/docs/RemotesGitApi.md +2 -2
  27. data/lib/pulp_ansible_client/api/content_collection_deprecations_api.rb +151 -0
  28. data/lib/pulp_ansible_client/api/content_collection_marks_api.rb +154 -3
  29. data/lib/pulp_ansible_client/api/content_collection_signatures_api.rb +157 -3
  30. data/lib/pulp_ansible_client/api/content_collection_versions_api.rb +163 -9
  31. data/lib/pulp_ansible_client/api/content_namespaces_api.rb +6 -3
  32. data/lib/pulp_ansible_client/api/content_roles_api.rb +154 -3
  33. data/lib/pulp_ansible_client/api/pulp_ansible_api_v3_collections_versions_api.rb +6 -3
  34. data/lib/pulp_ansible_client/api/pulp_ansible_api_v3_namespaces_api.rb +3 -3
  35. data/lib/pulp_ansible_client/api/pulp_ansible_api_v3_plugin_ansible_content_collections_index_versions_api.rb +6 -3
  36. data/lib/pulp_ansible_client/api/pulp_ansible_api_v3_plugin_ansible_content_namespaces_api.rb +3 -3
  37. data/lib/pulp_ansible_client/api/pulp_ansible_default_api_v3_collections_versions_api.rb +6 -3
  38. data/lib/pulp_ansible_client/api/pulp_ansible_default_api_v3_namespaces_api.rb +3 -3
  39. data/lib/pulp_ansible_client/api/pulp_ansible_default_api_v3_plugin_ansible_content_collections_index_versions_api.rb +6 -3
  40. data/lib/pulp_ansible_client/api/pulp_ansible_default_api_v3_plugin_ansible_content_namespaces_api.rb +3 -3
  41. data/lib/pulp_ansible_client/models/ansible_ansible_collection_deprecated.rb +13 -1
  42. data/lib/pulp_ansible_client/models/ansible_ansible_collection_deprecated_response.rb +13 -1
  43. data/lib/pulp_ansible_client/models/ansible_collection_version_response.rb +36 -24
  44. data/lib/pulp_ansible_client/models/ansible_collection_version_signature_response.rb +13 -1
  45. data/lib/pulp_ansible_client/models/ansible_git_remote.rb +219 -219
  46. data/lib/pulp_ansible_client/models/ansible_git_remote_response.rb +148 -148
  47. data/lib/pulp_ansible_client/models/ansible_role.rb +13 -1
  48. data/lib/pulp_ansible_client/models/ansible_role_response.rb +39 -27
  49. data/lib/pulp_ansible_client/models/patchedansible_git_remote.rb +209 -209
  50. data/lib/pulp_ansible_client/version.rb +1 -1
  51. data/spec/api/content_collection_deprecations_api_spec.rb +27 -0
  52. data/spec/api/content_collection_marks_api_spec.rb +28 -1
  53. data/spec/api/content_collection_signatures_api_spec.rb +29 -1
  54. data/spec/api/content_collection_versions_api_spec.rb +31 -3
  55. data/spec/api/content_namespaces_api_spec.rb +2 -1
  56. data/spec/api/content_roles_api_spec.rb +28 -1
  57. data/spec/api/pulp_ansible_api_v3_collections_versions_api_spec.rb +2 -1
  58. data/spec/api/pulp_ansible_api_v3_namespaces_api_spec.rb +1 -1
  59. data/spec/api/pulp_ansible_api_v3_plugin_ansible_content_collections_index_versions_api_spec.rb +2 -1
  60. data/spec/api/pulp_ansible_api_v3_plugin_ansible_content_namespaces_api_spec.rb +1 -1
  61. data/spec/api/pulp_ansible_default_api_v3_collections_versions_api_spec.rb +2 -1
  62. data/spec/api/pulp_ansible_default_api_v3_namespaces_api_spec.rb +1 -1
  63. data/spec/api/pulp_ansible_default_api_v3_plugin_ansible_content_collections_index_versions_api_spec.rb +2 -1
  64. data/spec/api/pulp_ansible_default_api_v3_plugin_ansible_content_namespaces_api_spec.rb +1 -1
  65. data/spec/models/ansible_ansible_collection_deprecated_response_spec.rb +6 -0
  66. data/spec/models/ansible_ansible_collection_deprecated_spec.rb +6 -0
  67. data/spec/models/ansible_collection_version_response_spec.rb +10 -4
  68. data/spec/models/ansible_collection_version_signature_response_spec.rb +6 -0
  69. data/spec/models/ansible_git_remote_response_spec.rb +19 -19
  70. data/spec/models/ansible_git_remote_spec.rb +17 -17
  71. data/spec/models/ansible_role_response_spec.rb +11 -5
  72. data/spec/models/ansible_role_spec.rb +6 -0
  73. data/spec/models/patchedansible_git_remote_spec.rb +17 -17
  74. metadata +123 -123
@@ -27,79 +27,79 @@ describe PulpAnsibleClient::AnsibleGitRemoteResponse do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "max_retries"' do
30
+ describe 'test attribute "sock_connect_timeout"' 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 "name"' do
36
+ describe 'test attribute "ca_cert"' 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 "pulp_labels"' do
42
+ describe 'test attribute "hidden_fields"' 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 "sock_connect_timeout"' do
48
+ describe 'test attribute "rate_limit"' 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 "url"' 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 "pulp_created"' 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 "connect_timeout"' 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 "total_timeout"' do
72
+ describe 'test attribute "headers"' 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 "hidden_fields"' do
78
+ describe 'test attribute "tls_validation"' 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 "prn"' do
84
+ describe 'test attribute "pulp_last_updated"' 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_last_updated"' do
90
+ describe 'test attribute "proxy_url"' 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 "client_cert"' do
96
+ describe 'test attribute "pulp_href"' 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 "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
@@ -111,37 +111,37 @@ describe PulpAnsibleClient::AnsibleGitRemoteResponse do
111
111
  end
112
112
  end
113
113
 
114
- describe 'test attribute "url"' do
114
+ describe 'test attribute "download_concurrency"' 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 "ca_cert"' do
120
+ describe 'test attribute "prn"' 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 "proxy_url"' do
126
+ describe 'test attribute "max_retries"' 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 "pulp_created"' do
132
+ describe 'test attribute "name"' 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 "pulp_href"' do
138
+ describe 'test attribute "total_timeout"' 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 "rate_limit"' do
144
+ describe 'test attribute "pulp_labels"' 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,37 +27,37 @@ describe PulpAnsibleClient::AnsibleGitRemote do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "password"' do
30
+ describe 'test attribute "sock_connect_timeout"' 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 "ca_cert"' 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 "name"' do
42
+ describe 'test attribute "rate_limit"' 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_labels"' do
48
+ describe 'test attribute "url"' 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 "proxy_username"' do
54
+ describe 'test attribute "password"' 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 "sock_connect_timeout"' do
60
+ describe 'test attribute "proxy_password"' 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
@@ -69,19 +69,19 @@ describe PulpAnsibleClient::AnsibleGitRemote do
69
69
  end
70
70
  end
71
71
 
72
- describe 'test attribute "tls_validation"' do
72
+ describe 'test attribute "headers"' 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 "headers"' do
78
+ describe 'test attribute "tls_validation"' 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 "total_timeout"' do
84
+ describe 'test attribute "proxy_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
@@ -99,49 +99,49 @@ describe PulpAnsibleClient::AnsibleGitRemote do
99
99
  end
100
100
  end
101
101
 
102
- describe 'test attribute "download_concurrency"' do
102
+ describe 'test attribute "sock_read_timeout"' 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 "sock_read_timeout"' do
108
+ describe 'test attribute "download_concurrency"' 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 "url"' do
114
+ describe 'test attribute "max_retries"' 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 "ca_cert"' do
120
+ describe 'test attribute "name"' 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 "proxy_url"' do
126
+ describe 'test attribute "total_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_password"' do
132
+ describe 'test attribute "username"' 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 "username"' do
138
+ describe 'test attribute "proxy_username"' 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 "rate_limit"' do
144
+ describe 'test attribute "pulp_labels"' 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,31 +27,37 @@ describe PulpAnsibleClient::AnsibleRoleResponse do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "pulp_last_updated"' do
30
+ describe 'test attribute "pulp_href"' 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 "prn"' do
36
+ describe 'test attribute "pulp_created"' 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 "pulp_created"' do
42
+ describe 'test attribute "artifact"' 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_href"' do
48
+ describe 'test attribute "prn"' 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 "artifact"' do
54
+ describe 'test attribute "pulp_last_updated"' 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
+
60
+ describe 'test attribute "pulp_labels"' do
55
61
  it 'should work' do
56
62
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
63
  end
@@ -39,6 +39,12 @@ describe PulpAnsibleClient::AnsibleRole do
39
39
  end
40
40
  end
41
41
 
42
+ describe 'test attribute "pulp_labels"' do
43
+ it 'should work' do
44
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
+ end
46
+ end
47
+
42
48
  describe 'test attribute "version"' do
43
49
  it 'should work' do
44
50
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -27,37 +27,37 @@ describe PulpAnsibleClient::PatchedansibleGitRemote do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "password"' do
30
+ describe 'test attribute "sock_connect_timeout"' 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 "ca_cert"' 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 "name"' do
42
+ describe 'test attribute "rate_limit"' 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_labels"' do
48
+ describe 'test attribute "url"' 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 "proxy_username"' do
54
+ describe 'test attribute "password"' 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 "sock_connect_timeout"' do
60
+ describe 'test attribute "proxy_password"' 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
@@ -69,19 +69,19 @@ describe PulpAnsibleClient::PatchedansibleGitRemote do
69
69
  end
70
70
  end
71
71
 
72
- describe 'test attribute "tls_validation"' do
72
+ describe 'test attribute "headers"' 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 "headers"' do
78
+ describe 'test attribute "tls_validation"' 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 "total_timeout"' do
84
+ describe 'test attribute "proxy_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
@@ -99,49 +99,49 @@ describe PulpAnsibleClient::PatchedansibleGitRemote do
99
99
  end
100
100
  end
101
101
 
102
- describe 'test attribute "download_concurrency"' do
102
+ describe 'test attribute "sock_read_timeout"' 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 "sock_read_timeout"' do
108
+ describe 'test attribute "download_concurrency"' 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 "url"' do
114
+ describe 'test attribute "max_retries"' 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 "ca_cert"' do
120
+ describe 'test attribute "name"' 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 "proxy_url"' do
126
+ describe 'test attribute "total_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_password"' do
132
+ describe 'test attribute "username"' 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 "username"' do
138
+ describe 'test attribute "proxy_username"' 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 "rate_limit"' do
144
+ describe 'test attribute "pulp_labels"' 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