pulp_container_client 2.27.2 → 2.27.4

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 (56) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/docs/ContainerContainerDistribution.md +6 -6
  4. data/docs/ContainerContainerDistributionResponse.md +14 -12
  5. data/docs/ContainerContainerPullThroughDistribution.md +8 -6
  6. data/docs/ContainerContainerPullThroughDistributionResponse.md +16 -12
  7. data/docs/ContainerContainerPushRepository.md +8 -6
  8. data/docs/ContainerContainerPushRepositoryResponse.md +16 -14
  9. data/docs/ContainerContainerRepository.md +2 -0
  10. data/docs/ContainerContainerRepositoryResponse.md +2 -0
  11. data/docs/PatchedcontainerContainerDistribution.md +6 -6
  12. data/docs/PatchedcontainerContainerPullThroughDistribution.md +8 -6
  13. data/docs/PatchedcontainerContainerPushRepository.md +8 -6
  14. data/docs/PatchedcontainerContainerRepository.md +2 -0
  15. data/docs/RepositoriesContainerApi.md +18 -2
  16. data/docs/RepositoriesContainerPushApi.md +18 -2
  17. data/lib/pulp_container_client/api/repositories_container_api.rb +27 -3
  18. data/lib/pulp_container_client/api/repositories_container_push_api.rb +27 -3
  19. data/lib/pulp_container_client/models/container_container_distribution.rb +29 -29
  20. data/lib/pulp_container_client/models/container_container_distribution_response.rb +63 -53
  21. data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +39 -28
  22. data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +73 -52
  23. data/lib/pulp_container_client/models/container_container_pull_through_remote.rb +15 -0
  24. data/lib/pulp_container_client/models/container_container_pull_through_remote_response.rb +15 -0
  25. data/lib/pulp_container_client/models/container_container_push_repository.rb +81 -40
  26. data/lib/pulp_container_client/models/container_container_push_repository_response.rb +100 -59
  27. data/lib/pulp_container_client/models/container_container_remote.rb +15 -0
  28. data/lib/pulp_container_client/models/container_container_remote_response.rb +15 -0
  29. data/lib/pulp_container_client/models/container_container_repository.rb +42 -1
  30. data/lib/pulp_container_client/models/container_container_repository_response.rb +42 -1
  31. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +27 -27
  32. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +38 -27
  33. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_remote.rb +15 -0
  34. data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +77 -36
  35. data/lib/pulp_container_client/models/patchedcontainer_container_remote.rb +15 -0
  36. data/lib/pulp_container_client/models/patchedcontainer_container_repository.rb +42 -1
  37. data/lib/pulp_container_client/models/set_label.rb +0 -11
  38. data/lib/pulp_container_client/models/set_label_response.rb +0 -21
  39. data/lib/pulp_container_client/models/unset_label.rb +0 -11
  40. data/lib/pulp_container_client/models/unset_label_response.rb +0 -21
  41. data/lib/pulp_container_client/version.rb +1 -1
  42. data/spec/api/repositories_container_api_spec.rb +9 -1
  43. data/spec/api/repositories_container_push_api_spec.rb +9 -1
  44. data/spec/models/container_container_distribution_response_spec.rb +16 -10
  45. data/spec/models/container_container_distribution_spec.rb +7 -7
  46. data/spec/models/container_container_pull_through_distribution_response_spec.rb +21 -9
  47. data/spec/models/container_container_pull_through_distribution_spec.rb +12 -6
  48. data/spec/models/container_container_push_repository_response_spec.rb +16 -10
  49. data/spec/models/container_container_push_repository_spec.rb +10 -4
  50. data/spec/models/container_container_repository_response_spec.rb +6 -0
  51. data/spec/models/container_container_repository_spec.rb +6 -0
  52. data/spec/models/patchedcontainer_container_distribution_spec.rb +7 -7
  53. data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +12 -6
  54. data/spec/models/patchedcontainer_container_push_repository_spec.rb +10 -4
  55. data/spec/models/patchedcontainer_container_repository_spec.rb +6 -0
  56. metadata +60 -60
@@ -89,11 +89,6 @@ module PulpContainerClient
89
89
  invalid_properties.push('invalid value for "key", the character length must be great than or equal to 1.')
90
90
  end
91
91
 
92
- pattern = Regexp.new(/^[-a-zA-Z0-9_]+$/)
93
- if @key !~ pattern
94
- invalid_properties.push("invalid value for \"key\", must conform to the pattern #{pattern}.")
95
- end
96
-
97
92
  invalid_properties
98
93
  end
99
94
 
@@ -103,7 +98,6 @@ module PulpContainerClient
103
98
  warn '[DEPRECATED] the `valid?` method is obsolete'
104
99
  return false if @key.nil?
105
100
  return false if @key.to_s.length < 1
106
- return false if @key !~ Regexp.new(/^[-a-zA-Z0-9_]+$/)
107
101
  true
108
102
  end
109
103
 
@@ -118,11 +112,6 @@ module PulpContainerClient
118
112
  fail ArgumentError, 'invalid value for "key", the character length must be great than or equal to 1.'
119
113
  end
120
114
 
121
- pattern = Regexp.new(/^[-a-zA-Z0-9_]+$/)
122
- if key !~ pattern
123
- fail ArgumentError, "invalid value for \"key\", must conform to the pattern #{pattern}."
124
- end
125
-
126
115
  @key = key
127
116
  end
128
117
 
@@ -85,11 +85,6 @@ module PulpContainerClient
85
85
  invalid_properties.push('invalid value for "key", key cannot be nil.')
86
86
  end
87
87
 
88
- pattern = Regexp.new(/^[-a-zA-Z0-9_]+$/)
89
- if @key !~ pattern
90
- invalid_properties.push("invalid value for \"key\", must conform to the pattern #{pattern}.")
91
- end
92
-
93
88
  invalid_properties
94
89
  end
95
90
 
@@ -98,25 +93,9 @@ module PulpContainerClient
98
93
  def valid?
99
94
  warn '[DEPRECATED] the `valid?` method is obsolete'
100
95
  return false if @key.nil?
101
- return false if @key !~ Regexp.new(/^[-a-zA-Z0-9_]+$/)
102
96
  true
103
97
  end
104
98
 
105
- # Custom attribute writer method with validation
106
- # @param [Object] key Value to be assigned
107
- def key=(key)
108
- if key.nil?
109
- fail ArgumentError, 'key cannot be nil'
110
- end
111
-
112
- pattern = Regexp.new(/^[-a-zA-Z0-9_]+$/)
113
- if key !~ pattern
114
- fail ArgumentError, "invalid value for \"key\", must conform to the pattern #{pattern}."
115
- end
116
-
117
- @key = key
118
- end
119
-
120
99
  # Checks equality by comparing each attribute.
121
100
  # @param [Object] Object to be compared
122
101
  def ==(o)
@@ -78,11 +78,6 @@ module PulpContainerClient
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 PulpContainerClient
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 PulpContainerClient
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 PulpContainerClient
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 PulpContainerClient
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 PulpContainerClient
14
- VERSION = '2.27.2'
14
+ VERSION = '2.27.4'
15
15
  end
@@ -148,13 +148,21 @@ describe 'RepositoriesContainerApi' do
148
148
  # @option opts [String] :name__regex Filter results where name matches regex value
149
149
  # @option opts [String] :name__startswith Filter results where name starts with value
150
150
  # @option opts [Integer] :offset The initial index from which to return the results.
151
- # @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)
151
+ # @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)
152
152
  # @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
153
153
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
154
154
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
155
155
  # @option opts [String] :pulp_label_select Filter labels by search string
156
156
  # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
157
157
  # @option opts [String] :remote
158
+ # @option opts [Integer] :retain_checkpoints Filter results where retain_checkpoints matches value
159
+ # @option opts [Integer] :retain_checkpoints__gt Filter results where retain_checkpoints is greater than value
160
+ # @option opts [Integer] :retain_checkpoints__gte Filter results where retain_checkpoints is greater than or equal to value
161
+ # @option opts [Boolean] :retain_checkpoints__isnull Filter results where retain_checkpoints has a null value
162
+ # @option opts [Integer] :retain_checkpoints__lt Filter results where retain_checkpoints is less than value
163
+ # @option opts [Integer] :retain_checkpoints__lte Filter results where retain_checkpoints is less than or equal to value
164
+ # @option opts [Integer] :retain_checkpoints__ne Filter results where retain_checkpoints not equal to value
165
+ # @option opts [Array<Integer>] :retain_checkpoints__range Filter results where retain_checkpoints is between two comma separated values
158
166
  # @option opts [Integer] :retain_repo_versions Filter results where retain_repo_versions matches value
159
167
  # @option opts [Integer] :retain_repo_versions__gt Filter results where retain_repo_versions is greater than value
160
168
  # @option opts [Integer] :retain_repo_versions__gte Filter results where retain_repo_versions is greater than or equal to value
@@ -63,13 +63,21 @@ describe 'RepositoriesContainerPushApi' do
63
63
  # @option opts [String] :name__regex Filter results where name matches regex value
64
64
  # @option opts [String] :name__startswith Filter results where name starts with value
65
65
  # @option opts [Integer] :offset The initial index from which to return the results.
66
- # @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)
66
+ # @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)
67
67
  # @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
68
68
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
69
69
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
70
70
  # @option opts [String] :pulp_label_select Filter labels by search string
71
71
  # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
72
72
  # @option opts [String] :remote
73
+ # @option opts [Integer] :retain_checkpoints Filter results where retain_checkpoints matches value
74
+ # @option opts [Integer] :retain_checkpoints__gt Filter results where retain_checkpoints is greater than value
75
+ # @option opts [Integer] :retain_checkpoints__gte Filter results where retain_checkpoints is greater than or equal to value
76
+ # @option opts [Boolean] :retain_checkpoints__isnull Filter results where retain_checkpoints has a null value
77
+ # @option opts [Integer] :retain_checkpoints__lt Filter results where retain_checkpoints is less than value
78
+ # @option opts [Integer] :retain_checkpoints__lte Filter results where retain_checkpoints is less than or equal to value
79
+ # @option opts [Integer] :retain_checkpoints__ne Filter results where retain_checkpoints not equal to value
80
+ # @option opts [Array<Integer>] :retain_checkpoints__range Filter results where retain_checkpoints is between two comma separated values
73
81
  # @option opts [Integer] :retain_repo_versions Filter results where retain_repo_versions matches value
74
82
  # @option opts [Integer] :retain_repo_versions__gt Filter results where retain_repo_versions is greater than value
75
83
  # @option opts [Integer] :retain_repo_versions__gte Filter results where retain_repo_versions is greater than or equal to value
@@ -33,61 +33,61 @@ describe PulpContainerClient::ContainerContainerDistributionResponse do
33
33
  end
34
34
  end
35
35
 
36
- describe 'test attribute "pulp_created"' do
36
+ describe 'test attribute "prn"' 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 "hidden"' do
42
+ describe 'test attribute "base_path"' 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 "base_path"' do
48
+ describe 'test attribute "name"' 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 "content_guard"' 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 "repository"' do
60
+ describe 'test attribute "content_guard_prn"' 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 "content_guard"' 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 "pulp_last_updated"' do
72
+ describe 'test attribute "pulp_href"' 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 "pulp_labels"' do
78
+ describe 'test attribute "pulp_created"' 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 "pulp_href"' 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 "name"' do
90
+ describe 'test attribute "repository"' 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
@@ -99,6 +99,12 @@ describe PulpContainerClient::ContainerContainerDistributionResponse do
99
99
  end
100
100
  end
101
101
 
102
+ describe 'test attribute "hidden"' do
103
+ it 'should work' do
104
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
105
+ end
106
+ end
107
+
102
108
  describe 'test attribute "registry_path"' do
103
109
  it 'should work' do
104
110
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -27,43 +27,43 @@ describe PulpContainerClient::ContainerContainerDistribution do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "hidden"' do
30
+ describe 'test attribute "base_path"' 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 "base_path"' do
36
+ describe 'test attribute "name"' 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 "repository"' do
42
+ describe 'test attribute "content_guard"' 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 "content_guard"' 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 "pulp_labels"' do
54
+ describe 'test attribute "repository"' 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 "name"' do
60
+ describe 'test attribute "repository_version"' 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 "repository_version"' do
66
+ describe 'test attribute "hidden"' 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
@@ -33,37 +33,49 @@ describe PulpContainerClient::ContainerContainerPullThroughDistributionResponse
33
33
  end
34
34
  end
35
35
 
36
- describe 'test attribute "pulp_created"' do
36
+ describe 'test attribute "prn"' 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 "hidden"' do
42
+ describe 'test attribute "base_path"' 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 "base_path"' do
48
+ describe 'test attribute "name"' 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 "content_guard"' 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 "repository"' do
60
+ describe 'test attribute "content_guard_prn"' 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 "content_guard"' do
66
+ describe 'test attribute "pulp_labels"' 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
+
72
+ describe 'test attribute "pulp_href"' 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
+
78
+ describe 'test attribute "pulp_created"' do
67
79
  it 'should work' do
68
80
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
69
81
  end
@@ -75,19 +87,19 @@ describe PulpContainerClient::ContainerContainerPullThroughDistributionResponse
75
87
  end
76
88
  end
77
89
 
78
- describe 'test attribute "pulp_labels"' do
90
+ describe 'test attribute "repository"' do
79
91
  it 'should work' do
80
92
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
81
93
  end
82
94
  end
83
95
 
84
- describe 'test attribute "pulp_href"' do
96
+ describe 'test attribute "repository_version"' do
85
97
  it 'should work' do
86
98
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
87
99
  end
88
100
  end
89
101
 
90
- describe 'test attribute "name"' do
102
+ describe 'test attribute "hidden"' do
91
103
  it 'should work' do
92
104
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
93
105
  end
@@ -27,37 +27,43 @@ describe PulpContainerClient::ContainerContainerPullThroughDistribution do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "hidden"' do
30
+ describe 'test attribute "base_path"' 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 "base_path"' do
36
+ describe 'test attribute "name"' 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 "repository"' do
42
+ describe 'test attribute "content_guard"' 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 "content_guard"' 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 "pulp_labels"' do
54
+ describe 'test attribute "repository"' 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 "name"' do
60
+ describe 'test attribute "repository_version"' do
61
+ it 'should work' do
62
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
63
+ end
64
+ end
65
+
66
+ describe 'test attribute "hidden"' do
61
67
  it 'should work' do
62
68
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
63
69
  end
@@ -27,25 +27,25 @@ describe PulpContainerClient::ContainerContainerPushRepositoryResponse do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "description"' 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_created"' do
36
+ describe 'test attribute "latest_version_href"' 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 "retain_repo_versions"' do
42
+ describe 'test attribute "name"' 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 "prn"' do
48
+ describe 'test attribute "manifest_signing_service"' 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
@@ -57,37 +57,43 @@ describe PulpContainerClient::ContainerContainerPushRepositoryResponse do
57
57
  end
58
58
  end
59
59
 
60
- describe 'test attribute "pulp_last_updated"' do
60
+ describe 'test attribute "pulp_labels"' 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 "pulp_labels"' do
66
+ describe 'test attribute "pulp_href"' 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 "pulp_href"' do
72
+ describe 'test attribute "pulp_created"' 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 "latest_version_href"' do
78
+ describe 'test attribute "pulp_last_updated"' 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 "manifest_signing_service"' do
84
+ describe 'test attribute "description"' 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 "name"' do
90
+ describe 'test attribute "retain_repo_versions"' 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
+
96
+ describe 'test attribute "retain_checkpoints"' do
91
97
  it 'should work' do
92
98
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
93
99
  end
@@ -27,13 +27,13 @@ describe PulpContainerClient::ContainerContainerPushRepository do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "description"' do
30
+ describe 'test attribute "name"' 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 "retain_repo_versions"' do
36
+ describe 'test attribute "manifest_signing_service"' 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,13 +45,19 @@ describe PulpContainerClient::ContainerContainerPushRepository do
45
45
  end
46
46
  end
47
47
 
48
- describe 'test attribute "manifest_signing_service"' do
48
+ describe 'test attribute "description"' 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 "name"' do
54
+ describe 'test attribute "retain_repo_versions"' 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 "retain_checkpoints"' 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
@@ -87,6 +87,12 @@ describe PulpContainerClient::ContainerContainerRepositoryResponse 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 PulpContainerClient::ContainerContainerRepository 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/