pulp_container_client 2.1.1 → 2.1.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 (73) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +13 -13
  3. data/docs/ContainerContainerDistribution.md +3 -3
  4. data/docs/ContainerContainerDistributionResponse.md +6 -6
  5. data/docs/ContentBlobsApi.md +2 -2
  6. data/docs/ContentManifestsApi.md +2 -2
  7. data/docs/ContentTagsApi.md +2 -2
  8. data/docs/ContentguardsContentRedirectApi.md +2 -2
  9. data/docs/DistributionsContainerApi.md +2 -2
  10. data/docs/{PaginatedcontainerBlobResponseList.md → InlineResponse200.md} +4 -4
  11. data/docs/{PaginatedcontainerManifestResponseList.md → InlineResponse2001.md} +4 -4
  12. data/docs/{PaginatedcontainerTagResponseList.md → InlineResponse2002.md} +4 -4
  13. data/docs/{PaginatedcontainerContentRedirectContentGuardResponseList.md → InlineResponse2003.md} +4 -4
  14. data/docs/{PaginatedcontainerContainerDistributionResponseList.md → InlineResponse2004.md} +4 -4
  15. data/docs/{PaginatedcontainerContainerRemoteResponseList.md → InlineResponse2005.md} +4 -4
  16. data/docs/{PaginatedcontainerContainerRepositoryResponseList.md → InlineResponse2006.md} +4 -4
  17. data/docs/{PaginatedcontainerContainerPushRepositoryResponseList.md → InlineResponse2007.md} +4 -4
  18. data/docs/{PaginatedRepositoryVersionResponseList.md → InlineResponse2008.md} +4 -4
  19. data/docs/PatchedcontainerContainerDistribution.md +3 -3
  20. data/docs/RemotesContainerApi.md +2 -2
  21. data/docs/RepositoriesContainerApi.md +2 -2
  22. data/docs/RepositoriesContainerPushApi.md +2 -2
  23. data/docs/RepositoriesContainerVersionsApi.md +4 -4
  24. data/lib/pulp_container_client.rb +9 -9
  25. data/lib/pulp_container_client/api/content_blobs_api.rb +3 -3
  26. data/lib/pulp_container_client/api/content_manifests_api.rb +3 -3
  27. data/lib/pulp_container_client/api/content_tags_api.rb +3 -3
  28. data/lib/pulp_container_client/api/contentguards_content_redirect_api.rb +3 -3
  29. data/lib/pulp_container_client/api/distributions_container_api.rb +3 -3
  30. data/lib/pulp_container_client/api/remotes_container_api.rb +3 -3
  31. data/lib/pulp_container_client/api/repositories_container_api.rb +3 -3
  32. data/lib/pulp_container_client/api/repositories_container_push_api.rb +3 -3
  33. data/lib/pulp_container_client/api/repositories_container_versions_api.rb +6 -6
  34. data/lib/pulp_container_client/models/container_container_distribution.rb +11 -11
  35. data/lib/pulp_container_client/models/container_container_distribution_response.rb +24 -24
  36. data/lib/pulp_container_client/models/{paginatedcontainer_blob_response_list.rb → inline_response200.rb} +3 -3
  37. data/lib/pulp_container_client/models/{paginatedcontainer_manifest_response_list.rb → inline_response2001.rb} +3 -3
  38. data/lib/pulp_container_client/models/{paginatedcontainer_tag_response_list.rb → inline_response2002.rb} +3 -3
  39. data/lib/pulp_container_client/models/{paginatedcontainer_content_redirect_content_guard_response_list.rb → inline_response2003.rb} +3 -3
  40. data/lib/pulp_container_client/models/{paginatedcontainer_container_distribution_response_list.rb → inline_response2004.rb} +3 -3
  41. data/lib/pulp_container_client/models/{paginatedcontainer_container_remote_response_list.rb → inline_response2005.rb} +3 -3
  42. data/lib/pulp_container_client/models/{paginatedcontainer_container_repository_response_list.rb → inline_response2006.rb} +3 -3
  43. data/lib/pulp_container_client/models/{paginatedcontainer_container_push_repository_response_list.rb → inline_response2007.rb} +3 -3
  44. data/lib/pulp_container_client/models/{paginated_repository_version_response_list.rb → inline_response2008.rb} +3 -3
  45. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +11 -11
  46. data/lib/pulp_container_client/version.rb +1 -1
  47. data/spec/api/content_blobs_api_spec.rb +1 -1
  48. data/spec/api/content_manifests_api_spec.rb +1 -1
  49. data/spec/api/content_tags_api_spec.rb +1 -1
  50. data/spec/api/contentguards_content_redirect_api_spec.rb +1 -1
  51. data/spec/api/distributions_container_api_spec.rb +1 -1
  52. data/spec/api/remotes_container_api_spec.rb +1 -1
  53. data/spec/api/repositories_container_api_spec.rb +1 -1
  54. data/spec/api/repositories_container_push_api_spec.rb +1 -1
  55. data/spec/api/repositories_container_versions_api_spec.rb +2 -2
  56. data/spec/models/container_container_distribution_response_spec.rb +4 -4
  57. data/spec/models/container_container_distribution_spec.rb +3 -3
  58. data/spec/models/{paginatedcontainer_tag_response_list_spec.rb → inline_response2001_spec.rb} +6 -6
  59. data/spec/models/{paginatedcontainer_blob_response_list_spec.rb → inline_response2002_spec.rb} +6 -6
  60. data/spec/models/{paginated_repository_version_response_list_spec.rb → inline_response2003_spec.rb} +6 -6
  61. data/spec/models/{paginatedcontainer_manifest_response_list_spec.rb → inline_response2004_spec.rb} +6 -6
  62. data/spec/models/inline_response2005_spec.rb +59 -0
  63. data/spec/models/inline_response2006_spec.rb +59 -0
  64. data/spec/models/inline_response2007_spec.rb +59 -0
  65. data/spec/models/inline_response2008_spec.rb +59 -0
  66. data/spec/models/inline_response200_spec.rb +59 -0
  67. data/spec/models/patchedcontainer_container_distribution_spec.rb +3 -3
  68. metadata +66 -66
  69. data/spec/models/paginatedcontainer_container_distribution_response_list_spec.rb +0 -59
  70. data/spec/models/paginatedcontainer_container_push_repository_response_list_spec.rb +0 -59
  71. data/spec/models/paginatedcontainer_container_remote_response_list_spec.rb +0 -59
  72. data/spec/models/paginatedcontainer_container_repository_response_list_spec.rb +0 -59
  73. data/spec/models/paginatedcontainer_content_redirect_content_guard_response_list_spec.rb +0 -59
@@ -13,7 +13,7 @@ OpenAPI Generator version: 4.2.3
13
13
  require 'date'
14
14
 
15
15
  module PulpContainerClient
16
- class PaginatedcontainerBlobResponseList
16
+ class InlineResponse200
17
17
  attr_accessor :count
18
18
 
19
19
  attr_accessor :_next
@@ -54,13 +54,13 @@ module PulpContainerClient
54
54
  # @param [Hash] attributes Model attributes in the form of hash
55
55
  def initialize(attributes = {})
56
56
  if (!attributes.is_a?(Hash))
57
- fail ArgumentError, "The input argument (attributes) must be a hash in `PulpContainerClient::PaginatedcontainerBlobResponseList` initialize method"
57
+ fail ArgumentError, "The input argument (attributes) must be a hash in `PulpContainerClient::InlineResponse200` initialize method"
58
58
  end
59
59
 
60
60
  # check to see if the attribute exists and convert string to symbol for hash key
61
61
  attributes = attributes.each_with_object({}) { |(k, v), h|
62
62
  if (!self.class.attribute_map.key?(k.to_sym))
63
- fail ArgumentError, "`#{k}` is not a valid attribute in `PulpContainerClient::PaginatedcontainerBlobResponseList`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
63
+ fail ArgumentError, "`#{k}` is not a valid attribute in `PulpContainerClient::InlineResponse200`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
64
64
  end
65
65
  h[k.to_sym] = v
66
66
  }
@@ -13,7 +13,7 @@ OpenAPI Generator version: 4.2.3
13
13
  require 'date'
14
14
 
15
15
  module PulpContainerClient
16
- class PaginatedcontainerManifestResponseList
16
+ class InlineResponse2001
17
17
  attr_accessor :count
18
18
 
19
19
  attr_accessor :_next
@@ -54,13 +54,13 @@ module PulpContainerClient
54
54
  # @param [Hash] attributes Model attributes in the form of hash
55
55
  def initialize(attributes = {})
56
56
  if (!attributes.is_a?(Hash))
57
- fail ArgumentError, "The input argument (attributes) must be a hash in `PulpContainerClient::PaginatedcontainerManifestResponseList` initialize method"
57
+ fail ArgumentError, "The input argument (attributes) must be a hash in `PulpContainerClient::InlineResponse2001` initialize method"
58
58
  end
59
59
 
60
60
  # check to see if the attribute exists and convert string to symbol for hash key
61
61
  attributes = attributes.each_with_object({}) { |(k, v), h|
62
62
  if (!self.class.attribute_map.key?(k.to_sym))
63
- fail ArgumentError, "`#{k}` is not a valid attribute in `PulpContainerClient::PaginatedcontainerManifestResponseList`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
63
+ fail ArgumentError, "`#{k}` is not a valid attribute in `PulpContainerClient::InlineResponse2001`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
64
64
  end
65
65
  h[k.to_sym] = v
66
66
  }
@@ -13,7 +13,7 @@ OpenAPI Generator version: 4.2.3
13
13
  require 'date'
14
14
 
15
15
  module PulpContainerClient
16
- class PaginatedcontainerTagResponseList
16
+ class InlineResponse2002
17
17
  attr_accessor :count
18
18
 
19
19
  attr_accessor :_next
@@ -54,13 +54,13 @@ module PulpContainerClient
54
54
  # @param [Hash] attributes Model attributes in the form of hash
55
55
  def initialize(attributes = {})
56
56
  if (!attributes.is_a?(Hash))
57
- fail ArgumentError, "The input argument (attributes) must be a hash in `PulpContainerClient::PaginatedcontainerTagResponseList` initialize method"
57
+ fail ArgumentError, "The input argument (attributes) must be a hash in `PulpContainerClient::InlineResponse2002` initialize method"
58
58
  end
59
59
 
60
60
  # check to see if the attribute exists and convert string to symbol for hash key
61
61
  attributes = attributes.each_with_object({}) { |(k, v), h|
62
62
  if (!self.class.attribute_map.key?(k.to_sym))
63
- fail ArgumentError, "`#{k}` is not a valid attribute in `PulpContainerClient::PaginatedcontainerTagResponseList`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
63
+ fail ArgumentError, "`#{k}` is not a valid attribute in `PulpContainerClient::InlineResponse2002`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
64
64
  end
65
65
  h[k.to_sym] = v
66
66
  }
@@ -13,7 +13,7 @@ OpenAPI Generator version: 4.2.3
13
13
  require 'date'
14
14
 
15
15
  module PulpContainerClient
16
- class PaginatedcontainerContentRedirectContentGuardResponseList
16
+ class InlineResponse2003
17
17
  attr_accessor :count
18
18
 
19
19
  attr_accessor :_next
@@ -54,13 +54,13 @@ module PulpContainerClient
54
54
  # @param [Hash] attributes Model attributes in the form of hash
55
55
  def initialize(attributes = {})
56
56
  if (!attributes.is_a?(Hash))
57
- fail ArgumentError, "The input argument (attributes) must be a hash in `PulpContainerClient::PaginatedcontainerContentRedirectContentGuardResponseList` initialize method"
57
+ fail ArgumentError, "The input argument (attributes) must be a hash in `PulpContainerClient::InlineResponse2003` initialize method"
58
58
  end
59
59
 
60
60
  # check to see if the attribute exists and convert string to symbol for hash key
61
61
  attributes = attributes.each_with_object({}) { |(k, v), h|
62
62
  if (!self.class.attribute_map.key?(k.to_sym))
63
- fail ArgumentError, "`#{k}` is not a valid attribute in `PulpContainerClient::PaginatedcontainerContentRedirectContentGuardResponseList`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
63
+ fail ArgumentError, "`#{k}` is not a valid attribute in `PulpContainerClient::InlineResponse2003`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
64
64
  end
65
65
  h[k.to_sym] = v
66
66
  }
@@ -13,7 +13,7 @@ OpenAPI Generator version: 4.2.3
13
13
  require 'date'
14
14
 
15
15
  module PulpContainerClient
16
- class PaginatedcontainerContainerDistributionResponseList
16
+ class InlineResponse2004
17
17
  attr_accessor :count
18
18
 
19
19
  attr_accessor :_next
@@ -54,13 +54,13 @@ module PulpContainerClient
54
54
  # @param [Hash] attributes Model attributes in the form of hash
55
55
  def initialize(attributes = {})
56
56
  if (!attributes.is_a?(Hash))
57
- fail ArgumentError, "The input argument (attributes) must be a hash in `PulpContainerClient::PaginatedcontainerContainerDistributionResponseList` initialize method"
57
+ fail ArgumentError, "The input argument (attributes) must be a hash in `PulpContainerClient::InlineResponse2004` initialize method"
58
58
  end
59
59
 
60
60
  # check to see if the attribute exists and convert string to symbol for hash key
61
61
  attributes = attributes.each_with_object({}) { |(k, v), h|
62
62
  if (!self.class.attribute_map.key?(k.to_sym))
63
- fail ArgumentError, "`#{k}` is not a valid attribute in `PulpContainerClient::PaginatedcontainerContainerDistributionResponseList`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
63
+ fail ArgumentError, "`#{k}` is not a valid attribute in `PulpContainerClient::InlineResponse2004`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
64
64
  end
65
65
  h[k.to_sym] = v
66
66
  }
@@ -13,7 +13,7 @@ OpenAPI Generator version: 4.2.3
13
13
  require 'date'
14
14
 
15
15
  module PulpContainerClient
16
- class PaginatedcontainerContainerRemoteResponseList
16
+ class InlineResponse2005
17
17
  attr_accessor :count
18
18
 
19
19
  attr_accessor :_next
@@ -54,13 +54,13 @@ module PulpContainerClient
54
54
  # @param [Hash] attributes Model attributes in the form of hash
55
55
  def initialize(attributes = {})
56
56
  if (!attributes.is_a?(Hash))
57
- fail ArgumentError, "The input argument (attributes) must be a hash in `PulpContainerClient::PaginatedcontainerContainerRemoteResponseList` initialize method"
57
+ fail ArgumentError, "The input argument (attributes) must be a hash in `PulpContainerClient::InlineResponse2005` initialize method"
58
58
  end
59
59
 
60
60
  # check to see if the attribute exists and convert string to symbol for hash key
61
61
  attributes = attributes.each_with_object({}) { |(k, v), h|
62
62
  if (!self.class.attribute_map.key?(k.to_sym))
63
- fail ArgumentError, "`#{k}` is not a valid attribute in `PulpContainerClient::PaginatedcontainerContainerRemoteResponseList`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
63
+ fail ArgumentError, "`#{k}` is not a valid attribute in `PulpContainerClient::InlineResponse2005`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
64
64
  end
65
65
  h[k.to_sym] = v
66
66
  }
@@ -13,7 +13,7 @@ OpenAPI Generator version: 4.2.3
13
13
  require 'date'
14
14
 
15
15
  module PulpContainerClient
16
- class PaginatedcontainerContainerRepositoryResponseList
16
+ class InlineResponse2006
17
17
  attr_accessor :count
18
18
 
19
19
  attr_accessor :_next
@@ -54,13 +54,13 @@ module PulpContainerClient
54
54
  # @param [Hash] attributes Model attributes in the form of hash
55
55
  def initialize(attributes = {})
56
56
  if (!attributes.is_a?(Hash))
57
- fail ArgumentError, "The input argument (attributes) must be a hash in `PulpContainerClient::PaginatedcontainerContainerRepositoryResponseList` initialize method"
57
+ fail ArgumentError, "The input argument (attributes) must be a hash in `PulpContainerClient::InlineResponse2006` initialize method"
58
58
  end
59
59
 
60
60
  # check to see if the attribute exists and convert string to symbol for hash key
61
61
  attributes = attributes.each_with_object({}) { |(k, v), h|
62
62
  if (!self.class.attribute_map.key?(k.to_sym))
63
- fail ArgumentError, "`#{k}` is not a valid attribute in `PulpContainerClient::PaginatedcontainerContainerRepositoryResponseList`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
63
+ fail ArgumentError, "`#{k}` is not a valid attribute in `PulpContainerClient::InlineResponse2006`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
64
64
  end
65
65
  h[k.to_sym] = v
66
66
  }
@@ -13,7 +13,7 @@ OpenAPI Generator version: 4.2.3
13
13
  require 'date'
14
14
 
15
15
  module PulpContainerClient
16
- class PaginatedcontainerContainerPushRepositoryResponseList
16
+ class InlineResponse2007
17
17
  attr_accessor :count
18
18
 
19
19
  attr_accessor :_next
@@ -54,13 +54,13 @@ module PulpContainerClient
54
54
  # @param [Hash] attributes Model attributes in the form of hash
55
55
  def initialize(attributes = {})
56
56
  if (!attributes.is_a?(Hash))
57
- fail ArgumentError, "The input argument (attributes) must be a hash in `PulpContainerClient::PaginatedcontainerContainerPushRepositoryResponseList` initialize method"
57
+ fail ArgumentError, "The input argument (attributes) must be a hash in `PulpContainerClient::InlineResponse2007` initialize method"
58
58
  end
59
59
 
60
60
  # check to see if the attribute exists and convert string to symbol for hash key
61
61
  attributes = attributes.each_with_object({}) { |(k, v), h|
62
62
  if (!self.class.attribute_map.key?(k.to_sym))
63
- fail ArgumentError, "`#{k}` is not a valid attribute in `PulpContainerClient::PaginatedcontainerContainerPushRepositoryResponseList`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
63
+ fail ArgumentError, "`#{k}` is not a valid attribute in `PulpContainerClient::InlineResponse2007`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
64
64
  end
65
65
  h[k.to_sym] = v
66
66
  }
@@ -13,7 +13,7 @@ OpenAPI Generator version: 4.2.3
13
13
  require 'date'
14
14
 
15
15
  module PulpContainerClient
16
- class PaginatedRepositoryVersionResponseList
16
+ class InlineResponse2008
17
17
  attr_accessor :count
18
18
 
19
19
  attr_accessor :_next
@@ -54,13 +54,13 @@ module PulpContainerClient
54
54
  # @param [Hash] attributes Model attributes in the form of hash
55
55
  def initialize(attributes = {})
56
56
  if (!attributes.is_a?(Hash))
57
- fail ArgumentError, "The input argument (attributes) must be a hash in `PulpContainerClient::PaginatedRepositoryVersionResponseList` initialize method"
57
+ fail ArgumentError, "The input argument (attributes) must be a hash in `PulpContainerClient::InlineResponse2008` initialize method"
58
58
  end
59
59
 
60
60
  # check to see if the attribute exists and convert string to symbol for hash key
61
61
  attributes = attributes.each_with_object({}) { |(k, v), h|
62
62
  if (!self.class.attribute_map.key?(k.to_sym))
63
- fail ArgumentError, "`#{k}` is not a valid attribute in `PulpContainerClient::PaginatedRepositoryVersionResponseList`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
63
+ fail ArgumentError, "`#{k}` is not a valid attribute in `PulpContainerClient::InlineResponse2008`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
64
64
  end
65
65
  h[k.to_sym] = v
66
66
  }
@@ -15,15 +15,15 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # A serializer for ContainerDistribution.
17
17
  class PatchedcontainerContainerDistribution
18
+ # An optional content-guard. If none is specified, a default one will be used.
19
+ attr_accessor :content_guard
20
+
18
21
  # The latest RepositoryVersion for this Repository will be served.
19
22
  attr_accessor :repository
20
23
 
21
24
  # A unique name. Ex, `rawhide` and `stable`.
22
25
  attr_accessor :name
23
26
 
24
- # An optional content-guard. If none is specified, a default one will be used.
25
- attr_accessor :content_guard
26
-
27
27
  # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
28
28
  attr_accessor :base_path
29
29
 
@@ -33,9 +33,9 @@ module PulpContainerClient
33
33
  # Attribute mapping from ruby-style variable name to JSON key.
34
34
  def self.attribute_map
35
35
  {
36
+ :'content_guard' => :'content_guard',
36
37
  :'repository' => :'repository',
37
38
  :'name' => :'name',
38
- :'content_guard' => :'content_guard',
39
39
  :'base_path' => :'base_path',
40
40
  :'repository_version' => :'repository_version'
41
41
  }
@@ -44,9 +44,9 @@ module PulpContainerClient
44
44
  # Attribute type mapping.
45
45
  def self.openapi_types
46
46
  {
47
+ :'content_guard' => :'String',
47
48
  :'repository' => :'String',
48
49
  :'name' => :'String',
49
- :'content_guard' => :'String',
50
50
  :'base_path' => :'String',
51
51
  :'repository_version' => :'String'
52
52
  }
@@ -75,6 +75,10 @@ module PulpContainerClient
75
75
  h[k.to_sym] = v
76
76
  }
77
77
 
78
+ if attributes.key?(:'content_guard')
79
+ self.content_guard = attributes[:'content_guard']
80
+ end
81
+
78
82
  if attributes.key?(:'repository')
79
83
  self.repository = attributes[:'repository']
80
84
  end
@@ -83,10 +87,6 @@ module PulpContainerClient
83
87
  self.name = attributes[:'name']
84
88
  end
85
89
 
86
- if attributes.key?(:'content_guard')
87
- self.content_guard = attributes[:'content_guard']
88
- end
89
-
90
90
  if attributes.key?(:'base_path')
91
91
  self.base_path = attributes[:'base_path']
92
92
  end
@@ -114,9 +114,9 @@ module PulpContainerClient
114
114
  def ==(o)
115
115
  return true if self.equal?(o)
116
116
  self.class == o.class &&
117
+ content_guard == o.content_guard &&
117
118
  repository == o.repository &&
118
119
  name == o.name &&
119
- content_guard == o.content_guard &&
120
120
  base_path == o.base_path &&
121
121
  repository_version == o.repository_version
122
122
  end
@@ -130,7 +130,7 @@ module PulpContainerClient
130
130
  # Calculates hash code according to all attributes.
131
131
  # @return [Integer] Hash code
132
132
  def hash
133
- [repository, name, content_guard, base_path, repository_version].hash
133
+ [content_guard, repository, name, base_path, repository_version].hash
134
134
  end
135
135
 
136
136
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.2.3
11
11
  =end
12
12
 
13
13
  module PulpContainerClient
14
- VERSION = '2.1.1'
14
+ VERSION = '2.1.2'
15
15
  end
@@ -47,7 +47,7 @@ describe 'ContentBlobsApi' do
47
47
  # @option opts [String] :repository_version_removed repository_version_removed
48
48
  # @option opts [String] :fields A list of fields to include in the response.
49
49
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
50
- # @return [PaginatedcontainerBlobResponseList]
50
+ # @return [InlineResponse200]
51
51
  describe 'list test' do
52
52
  it 'should work' do
53
53
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -47,7 +47,7 @@ describe 'ContentManifestsApi' do
47
47
  # @option opts [String] :repository_version_removed repository_version_removed
48
48
  # @option opts [String] :fields A list of fields to include in the response.
49
49
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
50
- # @return [PaginatedcontainerManifestResponseList]
50
+ # @return [InlineResponse2001]
51
51
  describe 'list test' do
52
52
  it 'should work' do
53
53
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -48,7 +48,7 @@ describe 'ContentTagsApi' do
48
48
  # @option opts [String] :repository_version_removed repository_version_removed
49
49
  # @option opts [String] :fields A list of fields to include in the response.
50
50
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
51
- # @return [PaginatedcontainerTagResponseList]
51
+ # @return [InlineResponse2002]
52
52
  describe 'list test' do
53
53
  it 'should work' do
54
54
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -67,7 +67,7 @@ describe 'ContentguardsContentRedirectApi' do
67
67
  # @option opts [String] :ordering Which field to use when ordering the results.
68
68
  # @option opts [String] :fields A list of fields to include in the response.
69
69
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
70
- # @return [PaginatedcontainerContentRedirectContentGuardResponseList]
70
+ # @return [InlineResponse2003]
71
71
  describe 'list test' do
72
72
  it 'should work' do
73
73
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -71,7 +71,7 @@ describe 'DistributionsContainerApi' do
71
71
  # @option opts [String] :ordering Which field to use when ordering the results.
72
72
  # @option opts [String] :fields A list of fields to include in the response.
73
73
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
74
- # @return [PaginatedcontainerContainerDistributionResponseList]
74
+ # @return [InlineResponse2004]
75
75
  describe 'list test' do
76
76
  it 'should work' do
77
77
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -73,7 +73,7 @@ describe 'RemotesContainerApi' do
73
73
  # @option opts [String] :pulp_last_updated__range pulp_last_updated__range
74
74
  # @option opts [String] :fields A list of fields to include in the response.
75
75
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
76
- # @return [PaginatedcontainerContainerRemoteResponseList]
76
+ # @return [InlineResponse2005]
77
77
  describe 'list test' do
78
78
  it 'should work' do
79
79
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -122,7 +122,7 @@ describe 'RepositoriesContainerApi' do
122
122
  # @option opts [String] :ordering Which field to use when ordering the results.
123
123
  # @option opts [String] :fields A list of fields to include in the response.
124
124
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
125
- # @return [PaginatedcontainerContainerRepositoryResponseList]
125
+ # @return [InlineResponse2006]
126
126
  describe 'list test' do
127
127
  it 'should work' do
128
128
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -67,7 +67,7 @@ describe 'RepositoriesContainerPushApi' do
67
67
  # @option opts [String] :ordering Which field to use when ordering the results.
68
68
  # @option opts [String] :fields A list of fields to include in the response.
69
69
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
70
- # @return [PaginatedcontainerContainerPushRepositoryResponseList]
70
+ # @return [InlineResponse2007]
71
71
  describe 'list test' do
72
72
  it 'should work' do
73
73
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -80,7 +80,7 @@ describe 'RepositoriesContainerVersionsApi' do
80
80
  # @option opts [String] :pulp_created__range pulp_created__range
81
81
  # @option opts [String] :fields A list of fields to include in the response.
82
82
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
83
- # @return [PaginatedRepositoryVersionResponseList]
83
+ # @return [InlineResponse2008]
84
84
  describe 'list test' do
85
85
  it 'should work' do
86
86
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -111,7 +111,7 @@ describe 'RepositoriesContainerVersionsApi' do
111
111
  # @option opts [String] :pulp_created__range pulp_created__range
112
112
  # @option opts [String] :fields A list of fields to include in the response.
113
113
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
114
- # @return [PaginatedRepositoryVersionResponseList]
114
+ # @return [InlineResponse2008]
115
115
  describe 'list_0 test' do
116
116
  it 'should work' do
117
117
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -32,7 +32,7 @@ describe 'ContainerContainerDistributionResponse' do
32
32
  expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerDistributionResponse)
33
33
  end
34
34
  end
35
- describe 'test attribute "pulp_href"' do
35
+ describe 'test attribute "content_guard"' 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
@@ -50,13 +50,13 @@ describe 'ContainerContainerDistributionResponse' do
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "content_guard"' do
53
+ describe 'test attribute "base_path"' 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 "base_path"' do
59
+ describe 'test attribute "pulp_created"' 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
@@ -68,7 +68,7 @@ describe 'ContainerContainerDistributionResponse' do
68
68
  end
69
69
  end
70
70
 
71
- describe 'test attribute "pulp_created"' do
71
+ describe 'test attribute "pulp_href"' 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