pulp_container_client 2.20.6 → 2.20.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (94) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +7 -6
  3. data/docs/ContainerContainerDistribution.md +5 -5
  4. data/docs/ContainerContainerDistributionResponse.md +9 -9
  5. data/docs/ContainerContainerPullThroughDistribution.md +5 -5
  6. data/docs/ContainerContainerPullThroughDistributionResponse.md +9 -9
  7. data/docs/ContainerContainerPullThroughRemote.md +1 -1
  8. data/docs/ContainerContainerPullThroughRemoteResponse.md +1 -1
  9. data/docs/ContainerContainerPushRepository.md +7 -7
  10. data/docs/ContainerContainerPushRepositoryResponse.md +12 -12
  11. data/docs/ContainerContainerRemote.md +1 -1
  12. data/docs/ContainerContainerRemoteResponse.md +1 -1
  13. data/docs/ContentBlobsApi.md +4 -0
  14. data/docs/ContentManifestsApi.md +4 -0
  15. data/docs/ContentSignaturesApi.md +4 -0
  16. data/docs/ContentTagsApi.md +4 -0
  17. data/docs/DistributionsContainerApi.md +56 -16
  18. data/docs/DistributionsPullThroughApi.md +56 -16
  19. data/docs/OCIBuildImage.md +1 -1
  20. data/docs/PatchedcontainerContainerDistribution.md +5 -5
  21. data/docs/PatchedcontainerContainerPullThroughDistribution.md +5 -5
  22. data/docs/PatchedcontainerContainerPullThroughRemote.md +1 -1
  23. data/docs/PatchedcontainerContainerPushRepository.md +7 -7
  24. data/docs/PatchedcontainerContainerRemote.md +1 -1
  25. data/docs/{Policy762Enum.md → Policy692Enum.md} +2 -2
  26. data/docs/{Policy8e2Enum.md → Policy7e0Enum.md} +2 -2
  27. data/docs/PulpContainerNamespacesApi.md +32 -8
  28. data/docs/RemotesContainerApi.md +56 -16
  29. data/docs/RemotesPullThroughApi.md +56 -16
  30. data/docs/RepositoriesContainerApi.md +108 -34
  31. data/docs/RepositoriesContainerPushApi.md +62 -18
  32. data/docs/RepositoriesContainerPushVersionsApi.md +16 -4
  33. data/docs/RepositoriesContainerVersionsApi.md +16 -4
  34. data/docs/TokenApi.md +13 -3
  35. data/lib/pulp_container_client/api/content_blobs_api.rb +6 -0
  36. data/lib/pulp_container_client/api/content_manifests_api.rb +6 -0
  37. data/lib/pulp_container_client/api/content_signatures_api.rb +6 -0
  38. data/lib/pulp_container_client/api/content_tags_api.rb +6 -0
  39. data/lib/pulp_container_client/api/distributions_container_api.rb +36 -0
  40. data/lib/pulp_container_client/api/distributions_pull_through_api.rb +36 -0
  41. data/lib/pulp_container_client/api/pulp_container_namespaces_api.rb +24 -0
  42. data/lib/pulp_container_client/api/remotes_container_api.rb +36 -0
  43. data/lib/pulp_container_client/api/remotes_pull_through_api.rb +36 -0
  44. data/lib/pulp_container_client/api/repositories_container_api.rb +65 -2
  45. data/lib/pulp_container_client/api/repositories_container_push_api.rb +39 -0
  46. data/lib/pulp_container_client/api/repositories_container_push_versions_api.rb +12 -0
  47. data/lib/pulp_container_client/api/repositories_container_versions_api.rb +12 -0
  48. data/lib/pulp_container_client/api/token_api.rb +9 -0
  49. data/lib/pulp_container_client/models/container_container_distribution.rb +22 -22
  50. data/lib/pulp_container_client/models/container_container_distribution_response.rb +42 -42
  51. data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +22 -22
  52. data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +42 -42
  53. data/lib/pulp_container_client/models/container_container_pull_through_remote.rb +1 -1
  54. data/lib/pulp_container_client/models/container_container_pull_through_remote_response.rb +1 -1
  55. data/lib/pulp_container_client/models/container_container_push_repository.rb +44 -44
  56. data/lib/pulp_container_client/models/container_container_push_repository_response.rb +49 -49
  57. data/lib/pulp_container_client/models/container_container_remote.rb +1 -1
  58. data/lib/pulp_container_client/models/container_container_remote_response.rb +1 -1
  59. data/lib/pulp_container_client/models/oci_build_image.rb +1 -1
  60. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +22 -22
  61. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +22 -22
  62. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_remote.rb +1 -1
  63. data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +44 -44
  64. data/lib/pulp_container_client/models/patchedcontainer_container_remote.rb +1 -1
  65. data/lib/pulp_container_client/models/{policy762_enum.rb → policy692_enum.rb} +3 -3
  66. data/lib/pulp_container_client/models/{policy8e2_enum.rb → policy7e0_enum.rb} +3 -3
  67. data/lib/pulp_container_client/version.rb +1 -1
  68. data/lib/pulp_container_client.rb +2 -2
  69. data/spec/api/content_blobs_api_spec.rb +2 -0
  70. data/spec/api/content_manifests_api_spec.rb +2 -0
  71. data/spec/api/content_signatures_api_spec.rb +2 -0
  72. data/spec/api/content_tags_api_spec.rb +2 -0
  73. data/spec/api/distributions_container_api_spec.rb +12 -0
  74. data/spec/api/distributions_pull_through_api_spec.rb +12 -0
  75. data/spec/api/pulp_container_namespaces_api_spec.rb +8 -0
  76. data/spec/api/remotes_container_api_spec.rb +12 -0
  77. data/spec/api/remotes_pull_through_api_spec.rb +12 -0
  78. data/spec/api/repositories_container_api_spec.rb +22 -1
  79. data/spec/api/repositories_container_push_api_spec.rb +13 -0
  80. data/spec/api/repositories_container_push_versions_api_spec.rb +4 -0
  81. data/spec/api/repositories_container_versions_api_spec.rb +4 -0
  82. data/spec/api/token_api_spec.rb +3 -0
  83. data/spec/models/container_container_distribution_response_spec.rb +8 -8
  84. data/spec/models/container_container_distribution_spec.rb +6 -6
  85. data/spec/models/container_container_pull_through_distribution_response_spec.rb +8 -8
  86. data/spec/models/container_container_pull_through_distribution_spec.rb +6 -6
  87. data/spec/models/container_container_push_repository_response_spec.rb +10 -10
  88. data/spec/models/container_container_push_repository_spec.rb +4 -4
  89. data/spec/models/patchedcontainer_container_distribution_spec.rb +6 -6
  90. data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +6 -6
  91. data/spec/models/patchedcontainer_container_push_repository_spec.rb +4 -4
  92. data/spec/models/{policy762_enum_spec.rb → policy692_enum_spec.rb} +6 -6
  93. data/spec/models/{policy8e2_enum_spec.rb → policy7e0_enum_spec.rb} +6 -6
  94. metadata +67 -67
@@ -15,69 +15,69 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # Serializer for Container Push Repositories.
17
17
  class ContainerContainerPushRepositoryResponse
18
- attr_accessor :latest_version_href
19
-
20
- # Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same.
21
- attr_accessor :pulp_last_updated
18
+ attr_accessor :versions_href
22
19
 
23
- # A unique name for this repository.
24
- attr_accessor :name
20
+ # A reference to an associated signing service.
21
+ attr_accessor :manifest_signing_service
25
22
 
26
23
  # An optional description.
27
24
  attr_accessor :description
28
25
 
29
- attr_accessor :versions_href
26
+ attr_accessor :latest_version_href
27
+
28
+ # A unique name for this repository.
29
+ attr_accessor :name
30
+
31
+ # Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same.
32
+ attr_accessor :pulp_last_updated
30
33
 
31
34
  # Timestamp of creation.
32
35
  attr_accessor :pulp_created
33
36
 
34
- # A reference to an associated signing service.
35
- attr_accessor :manifest_signing_service
37
+ attr_accessor :pulp_labels
36
38
 
37
39
  # Retain X versions of the repository. Default is null which retains all versions.
38
40
  attr_accessor :retain_repo_versions
39
41
 
40
42
  attr_accessor :pulp_href
41
43
 
42
- attr_accessor :pulp_labels
43
-
44
44
  # Attribute mapping from ruby-style variable name to JSON key.
45
45
  def self.attribute_map
46
46
  {
47
+ :'versions_href' => :'versions_href',
48
+ :'manifest_signing_service' => :'manifest_signing_service',
49
+ :'description' => :'description',
47
50
  :'latest_version_href' => :'latest_version_href',
48
- :'pulp_last_updated' => :'pulp_last_updated',
49
51
  :'name' => :'name',
50
- :'description' => :'description',
51
- :'versions_href' => :'versions_href',
52
+ :'pulp_last_updated' => :'pulp_last_updated',
52
53
  :'pulp_created' => :'pulp_created',
53
- :'manifest_signing_service' => :'manifest_signing_service',
54
+ :'pulp_labels' => :'pulp_labels',
54
55
  :'retain_repo_versions' => :'retain_repo_versions',
55
- :'pulp_href' => :'pulp_href',
56
- :'pulp_labels' => :'pulp_labels'
56
+ :'pulp_href' => :'pulp_href'
57
57
  }
58
58
  end
59
59
 
60
60
  # Attribute type mapping.
61
61
  def self.openapi_types
62
62
  {
63
+ :'versions_href' => :'String',
64
+ :'manifest_signing_service' => :'String',
65
+ :'description' => :'String',
63
66
  :'latest_version_href' => :'String',
64
- :'pulp_last_updated' => :'DateTime',
65
67
  :'name' => :'String',
66
- :'description' => :'String',
67
- :'versions_href' => :'String',
68
+ :'pulp_last_updated' => :'DateTime',
68
69
  :'pulp_created' => :'DateTime',
69
- :'manifest_signing_service' => :'String',
70
+ :'pulp_labels' => :'Hash<String, String>',
70
71
  :'retain_repo_versions' => :'Integer',
71
- :'pulp_href' => :'String',
72
- :'pulp_labels' => :'Hash<String, String>'
72
+ :'pulp_href' => :'String'
73
73
  }
74
74
  end
75
75
 
76
76
  # List of attributes with nullable: true
77
77
  def self.openapi_nullable
78
78
  Set.new([
79
- :'description',
80
79
  :'manifest_signing_service',
80
+ :'description',
81
81
  :'retain_repo_versions',
82
82
  ])
83
83
  end
@@ -97,32 +97,38 @@ module PulpContainerClient
97
97
  h[k.to_sym] = v
98
98
  }
99
99
 
100
- if attributes.key?(:'latest_version_href')
101
- self.latest_version_href = attributes[:'latest_version_href']
102
- end
103
-
104
- if attributes.key?(:'pulp_last_updated')
105
- self.pulp_last_updated = attributes[:'pulp_last_updated']
100
+ if attributes.key?(:'versions_href')
101
+ self.versions_href = attributes[:'versions_href']
106
102
  end
107
103
 
108
- if attributes.key?(:'name')
109
- self.name = attributes[:'name']
104
+ if attributes.key?(:'manifest_signing_service')
105
+ self.manifest_signing_service = attributes[:'manifest_signing_service']
110
106
  end
111
107
 
112
108
  if attributes.key?(:'description')
113
109
  self.description = attributes[:'description']
114
110
  end
115
111
 
116
- if attributes.key?(:'versions_href')
117
- self.versions_href = attributes[:'versions_href']
112
+ if attributes.key?(:'latest_version_href')
113
+ self.latest_version_href = attributes[:'latest_version_href']
114
+ end
115
+
116
+ if attributes.key?(:'name')
117
+ self.name = attributes[:'name']
118
+ end
119
+
120
+ if attributes.key?(:'pulp_last_updated')
121
+ self.pulp_last_updated = attributes[:'pulp_last_updated']
118
122
  end
119
123
 
120
124
  if attributes.key?(:'pulp_created')
121
125
  self.pulp_created = attributes[:'pulp_created']
122
126
  end
123
127
 
124
- if attributes.key?(:'manifest_signing_service')
125
- self.manifest_signing_service = attributes[:'manifest_signing_service']
128
+ if attributes.key?(:'pulp_labels')
129
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
130
+ self.pulp_labels = value
131
+ end
126
132
  end
127
133
 
128
134
  if attributes.key?(:'retain_repo_versions')
@@ -132,12 +138,6 @@ module PulpContainerClient
132
138
  if attributes.key?(:'pulp_href')
133
139
  self.pulp_href = attributes[:'pulp_href']
134
140
  end
135
-
136
- if attributes.key?(:'pulp_labels')
137
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
138
- self.pulp_labels = value
139
- end
140
- end
141
141
  end
142
142
 
143
143
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -178,16 +178,16 @@ module PulpContainerClient
178
178
  def ==(o)
179
179
  return true if self.equal?(o)
180
180
  self.class == o.class &&
181
+ versions_href == o.versions_href &&
182
+ manifest_signing_service == o.manifest_signing_service &&
183
+ description == o.description &&
181
184
  latest_version_href == o.latest_version_href &&
182
- pulp_last_updated == o.pulp_last_updated &&
183
185
  name == o.name &&
184
- description == o.description &&
185
- versions_href == o.versions_href &&
186
+ pulp_last_updated == o.pulp_last_updated &&
186
187
  pulp_created == o.pulp_created &&
187
- manifest_signing_service == o.manifest_signing_service &&
188
+ pulp_labels == o.pulp_labels &&
188
189
  retain_repo_versions == o.retain_repo_versions &&
189
- pulp_href == o.pulp_href &&
190
- pulp_labels == o.pulp_labels
190
+ pulp_href == o.pulp_href
191
191
  end
192
192
 
193
193
  # @see the `==` method
@@ -199,7 +199,7 @@ module PulpContainerClient
199
199
  # Calculates hash code according to all attributes.
200
200
  # @return [Integer] Hash code
201
201
  def hash
202
- [latest_version_href, pulp_last_updated, name, description, versions_href, pulp_created, manifest_signing_service, retain_repo_versions, pulp_href, pulp_labels].hash
202
+ [versions_href, manifest_signing_service, description, latest_version_href, name, pulp_last_updated, pulp_created, pulp_labels, retain_repo_versions, pulp_href].hash
203
203
  end
204
204
 
205
205
  # Builds the object from hash
@@ -137,7 +137,7 @@ module PulpContainerClient
137
137
  :'pulp_labels' => :'Hash<String, String>',
138
138
  :'download_concurrency' => :'Integer',
139
139
  :'max_retries' => :'Integer',
140
- :'policy' => :'Policy762Enum',
140
+ :'policy' => :'Policy692Enum',
141
141
  :'total_timeout' => :'Float',
142
142
  :'connect_timeout' => :'Float',
143
143
  :'sock_connect_timeout' => :'Float',
@@ -130,7 +130,7 @@ module PulpContainerClient
130
130
  :'pulp_labels' => :'Hash<String, String>',
131
131
  :'download_concurrency' => :'Integer',
132
132
  :'max_retries' => :'Integer',
133
- :'policy' => :'Policy762Enum',
133
+ :'policy' => :'Policy692Enum',
134
134
  :'total_timeout' => :'Float',
135
135
  :'connect_timeout' => :'Float',
136
136
  :'sock_connect_timeout' => :'Float',
@@ -43,7 +43,7 @@ module PulpContainerClient
43
43
  :'containerfile_artifact' => :'String',
44
44
  :'containerfile' => :'File',
45
45
  :'tag' => :'String',
46
- :'artifacts' => :'Object'
46
+ :'artifacts' => :'AnyType'
47
47
  }
48
48
  end
49
49
 
@@ -15,6 +15,9 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # A serializer for ContainerDistribution.
17
17
  class PatchedcontainerContainerDistribution
18
+ # Whether this distribution should be shown in the content app.
19
+ attr_accessor :hidden
20
+
18
21
  # An optional content-guard. If none is specified, a default one will be used.
19
22
  attr_accessor :content_guard
20
23
 
@@ -24,14 +27,11 @@ module PulpContainerClient
24
27
  # The latest RepositoryVersion for this Repository will be served.
25
28
  attr_accessor :repository
26
29
 
30
+ attr_accessor :pulp_labels
31
+
27
32
  # 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
33
  attr_accessor :base_path
29
34
 
30
- # Whether this distribution should be shown in the content app.
31
- attr_accessor :hidden
32
-
33
- attr_accessor :pulp_labels
34
-
35
35
  # RepositoryVersion to be served
36
36
  attr_accessor :repository_version
37
37
 
@@ -44,12 +44,12 @@ module PulpContainerClient
44
44
  # Attribute mapping from ruby-style variable name to JSON key.
45
45
  def self.attribute_map
46
46
  {
47
+ :'hidden' => :'hidden',
47
48
  :'content_guard' => :'content_guard',
48
49
  :'name' => :'name',
49
50
  :'repository' => :'repository',
50
- :'base_path' => :'base_path',
51
- :'hidden' => :'hidden',
52
51
  :'pulp_labels' => :'pulp_labels',
52
+ :'base_path' => :'base_path',
53
53
  :'repository_version' => :'repository_version',
54
54
  :'private' => :'private',
55
55
  :'description' => :'description'
@@ -59,12 +59,12 @@ module PulpContainerClient
59
59
  # Attribute type mapping.
60
60
  def self.openapi_types
61
61
  {
62
+ :'hidden' => :'Boolean',
62
63
  :'content_guard' => :'String',
63
64
  :'name' => :'String',
64
65
  :'repository' => :'String',
65
- :'base_path' => :'String',
66
- :'hidden' => :'Boolean',
67
66
  :'pulp_labels' => :'Hash<String, String>',
67
+ :'base_path' => :'String',
68
68
  :'repository_version' => :'String',
69
69
  :'private' => :'Boolean',
70
70
  :'description' => :'String'
@@ -95,6 +95,12 @@ module PulpContainerClient
95
95
  h[k.to_sym] = v
96
96
  }
97
97
 
98
+ if attributes.key?(:'hidden')
99
+ self.hidden = attributes[:'hidden']
100
+ else
101
+ self.hidden = false
102
+ end
103
+
98
104
  if attributes.key?(:'content_guard')
99
105
  self.content_guard = attributes[:'content_guard']
100
106
  end
@@ -107,22 +113,16 @@ module PulpContainerClient
107
113
  self.repository = attributes[:'repository']
108
114
  end
109
115
 
110
- if attributes.key?(:'base_path')
111
- self.base_path = attributes[:'base_path']
112
- end
113
-
114
- if attributes.key?(:'hidden')
115
- self.hidden = attributes[:'hidden']
116
- else
117
- self.hidden = false
118
- end
119
-
120
116
  if attributes.key?(:'pulp_labels')
121
117
  if (value = attributes[:'pulp_labels']).is_a?(Hash)
122
118
  self.pulp_labels = value
123
119
  end
124
120
  end
125
121
 
122
+ if attributes.key?(:'base_path')
123
+ self.base_path = attributes[:'base_path']
124
+ end
125
+
126
126
  if attributes.key?(:'repository_version')
127
127
  self.repository_version = attributes[:'repository_version']
128
128
  end
@@ -199,12 +199,12 @@ module PulpContainerClient
199
199
  def ==(o)
200
200
  return true if self.equal?(o)
201
201
  self.class == o.class &&
202
+ hidden == o.hidden &&
202
203
  content_guard == o.content_guard &&
203
204
  name == o.name &&
204
205
  repository == o.repository &&
205
- base_path == o.base_path &&
206
- hidden == o.hidden &&
207
206
  pulp_labels == o.pulp_labels &&
207
+ base_path == o.base_path &&
208
208
  repository_version == o.repository_version &&
209
209
  private == o.private &&
210
210
  description == o.description
@@ -219,7 +219,7 @@ module PulpContainerClient
219
219
  # Calculates hash code according to all attributes.
220
220
  # @return [Integer] Hash code
221
221
  def hash
222
- [content_guard, name, repository, base_path, hidden, pulp_labels, repository_version, private, description].hash
222
+ [hidden, content_guard, name, repository, pulp_labels, base_path, repository_version, private, description].hash
223
223
  end
224
224
 
225
225
  # Builds the object from hash
@@ -15,6 +15,9 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # A serializer for a specialized pull-through distribution referencing sub-distributions.
17
17
  class PatchedcontainerContainerPullThroughDistribution
18
+ # Whether this distribution should be shown in the content app.
19
+ attr_accessor :hidden
20
+
18
21
  # An optional content-guard. If none is specified, a default one will be used.
19
22
  attr_accessor :content_guard
20
23
 
@@ -24,14 +27,11 @@ module PulpContainerClient
24
27
  # The latest RepositoryVersion for this Repository will be served.
25
28
  attr_accessor :repository
26
29
 
30
+ attr_accessor :pulp_labels
31
+
27
32
  # 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
33
  attr_accessor :base_path
29
34
 
30
- # Whether this distribution should be shown in the content app.
31
- attr_accessor :hidden
32
-
33
- attr_accessor :pulp_labels
34
-
35
35
  # Remote that can be used to fetch content when using pull-through caching.
36
36
  attr_accessor :remote
37
37
 
@@ -47,12 +47,12 @@ module PulpContainerClient
47
47
  # Attribute mapping from ruby-style variable name to JSON key.
48
48
  def self.attribute_map
49
49
  {
50
+ :'hidden' => :'hidden',
50
51
  :'content_guard' => :'content_guard',
51
52
  :'name' => :'name',
52
53
  :'repository' => :'repository',
53
- :'base_path' => :'base_path',
54
- :'hidden' => :'hidden',
55
54
  :'pulp_labels' => :'pulp_labels',
55
+ :'base_path' => :'base_path',
56
56
  :'remote' => :'remote',
57
57
  :'distributions' => :'distributions',
58
58
  :'private' => :'private',
@@ -63,12 +63,12 @@ module PulpContainerClient
63
63
  # Attribute type mapping.
64
64
  def self.openapi_types
65
65
  {
66
+ :'hidden' => :'Boolean',
66
67
  :'content_guard' => :'String',
67
68
  :'name' => :'String',
68
69
  :'repository' => :'String',
69
- :'base_path' => :'String',
70
- :'hidden' => :'Boolean',
71
70
  :'pulp_labels' => :'Hash<String, String>',
71
+ :'base_path' => :'String',
72
72
  :'remote' => :'String',
73
73
  :'distributions' => :'Array<String>',
74
74
  :'private' => :'Boolean',
@@ -99,6 +99,12 @@ module PulpContainerClient
99
99
  h[k.to_sym] = v
100
100
  }
101
101
 
102
+ if attributes.key?(:'hidden')
103
+ self.hidden = attributes[:'hidden']
104
+ else
105
+ self.hidden = false
106
+ end
107
+
102
108
  if attributes.key?(:'content_guard')
103
109
  self.content_guard = attributes[:'content_guard']
104
110
  end
@@ -111,22 +117,16 @@ module PulpContainerClient
111
117
  self.repository = attributes[:'repository']
112
118
  end
113
119
 
114
- if attributes.key?(:'base_path')
115
- self.base_path = attributes[:'base_path']
116
- end
117
-
118
- if attributes.key?(:'hidden')
119
- self.hidden = attributes[:'hidden']
120
- else
121
- self.hidden = false
122
- end
123
-
124
120
  if attributes.key?(:'pulp_labels')
125
121
  if (value = attributes[:'pulp_labels']).is_a?(Hash)
126
122
  self.pulp_labels = value
127
123
  end
128
124
  end
129
125
 
126
+ if attributes.key?(:'base_path')
127
+ self.base_path = attributes[:'base_path']
128
+ end
129
+
130
130
  if attributes.key?(:'remote')
131
131
  self.remote = attributes[:'remote']
132
132
  end
@@ -209,12 +209,12 @@ module PulpContainerClient
209
209
  def ==(o)
210
210
  return true if self.equal?(o)
211
211
  self.class == o.class &&
212
+ hidden == o.hidden &&
212
213
  content_guard == o.content_guard &&
213
214
  name == o.name &&
214
215
  repository == o.repository &&
215
- base_path == o.base_path &&
216
- hidden == o.hidden &&
217
216
  pulp_labels == o.pulp_labels &&
217
+ base_path == o.base_path &&
218
218
  remote == o.remote &&
219
219
  distributions == o.distributions &&
220
220
  private == o.private &&
@@ -230,7 +230,7 @@ module PulpContainerClient
230
230
  # Calculates hash code according to all attributes.
231
231
  # @return [Integer] Hash code
232
232
  def hash
233
- [content_guard, name, repository, base_path, hidden, pulp_labels, remote, distributions, private, description].hash
233
+ [hidden, content_guard, name, repository, pulp_labels, base_path, remote, distributions, private, description].hash
234
234
  end
235
235
 
236
236
  # Builds the object from hash
@@ -120,7 +120,7 @@ module PulpContainerClient
120
120
  :'pulp_labels' => :'Hash<String, String>',
121
121
  :'download_concurrency' => :'Integer',
122
122
  :'max_retries' => :'Integer',
123
- :'policy' => :'Policy8e2Enum',
123
+ :'policy' => :'Policy7e0Enum',
124
124
  :'total_timeout' => :'Float',
125
125
  :'connect_timeout' => :'Float',
126
126
  :'sock_connect_timeout' => :'Float',
@@ -15,48 +15,48 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # Serializer for Container Push Repositories.
17
17
  class PatchedcontainerContainerPushRepository
18
- # A unique name for this repository.
19
- attr_accessor :name
18
+ # A reference to an associated signing service.
19
+ attr_accessor :manifest_signing_service
20
20
 
21
21
  # An optional description.
22
22
  attr_accessor :description
23
23
 
24
- # A reference to an associated signing service.
25
- attr_accessor :manifest_signing_service
24
+ # A unique name for this repository.
25
+ attr_accessor :name
26
+
27
+ attr_accessor :pulp_labels
26
28
 
27
29
  # Retain X versions of the repository. Default is null which retains all versions.
28
30
  attr_accessor :retain_repo_versions
29
31
 
30
- attr_accessor :pulp_labels
31
-
32
32
  # Attribute mapping from ruby-style variable name to JSON key.
33
33
  def self.attribute_map
34
34
  {
35
- :'name' => :'name',
36
- :'description' => :'description',
37
35
  :'manifest_signing_service' => :'manifest_signing_service',
38
- :'retain_repo_versions' => :'retain_repo_versions',
39
- :'pulp_labels' => :'pulp_labels'
36
+ :'description' => :'description',
37
+ :'name' => :'name',
38
+ :'pulp_labels' => :'pulp_labels',
39
+ :'retain_repo_versions' => :'retain_repo_versions'
40
40
  }
41
41
  end
42
42
 
43
43
  # Attribute type mapping.
44
44
  def self.openapi_types
45
45
  {
46
- :'name' => :'String',
47
- :'description' => :'String',
48
46
  :'manifest_signing_service' => :'String',
49
- :'retain_repo_versions' => :'Integer',
50
- :'pulp_labels' => :'Hash<String, String>'
47
+ :'description' => :'String',
48
+ :'name' => :'String',
49
+ :'pulp_labels' => :'Hash<String, String>',
50
+ :'retain_repo_versions' => :'Integer'
51
51
  }
52
52
  end
53
53
 
54
54
  # List of attributes with nullable: true
55
55
  def self.openapi_nullable
56
56
  Set.new([
57
- :'description',
58
57
  :'manifest_signing_service',
59
- :'retain_repo_versions',
58
+ :'description',
59
+ :'retain_repo_versions'
60
60
  ])
61
61
  end
62
62
 
@@ -75,20 +75,16 @@ module PulpContainerClient
75
75
  h[k.to_sym] = v
76
76
  }
77
77
 
78
- if attributes.key?(:'name')
79
- self.name = attributes[:'name']
78
+ if attributes.key?(:'manifest_signing_service')
79
+ self.manifest_signing_service = attributes[:'manifest_signing_service']
80
80
  end
81
81
 
82
82
  if attributes.key?(:'description')
83
83
  self.description = attributes[:'description']
84
84
  end
85
85
 
86
- if attributes.key?(:'manifest_signing_service')
87
- self.manifest_signing_service = attributes[:'manifest_signing_service']
88
- end
89
-
90
- if attributes.key?(:'retain_repo_versions')
91
- self.retain_repo_versions = attributes[:'retain_repo_versions']
86
+ if attributes.key?(:'name')
87
+ self.name = attributes[:'name']
92
88
  end
93
89
 
94
90
  if attributes.key?(:'pulp_labels')
@@ -96,20 +92,24 @@ module PulpContainerClient
96
92
  self.pulp_labels = value
97
93
  end
98
94
  end
95
+
96
+ if attributes.key?(:'retain_repo_versions')
97
+ self.retain_repo_versions = attributes[:'retain_repo_versions']
98
+ end
99
99
  end
100
100
 
101
101
  # Show invalid properties with the reasons. Usually used together with valid?
102
102
  # @return Array for valid properties with the reasons
103
103
  def list_invalid_properties
104
104
  invalid_properties = Array.new
105
- if !@name.nil? && @name.to_s.length < 1
106
- invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
107
- end
108
-
109
105
  if !@description.nil? && @description.to_s.length < 1
110
106
  invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
111
107
  end
112
108
 
109
+ if !@name.nil? && @name.to_s.length < 1
110
+ invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
111
+ end
112
+
113
113
  if !@retain_repo_versions.nil? && @retain_repo_versions < 1
114
114
  invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
115
115
  end
@@ -120,22 +120,12 @@ module PulpContainerClient
120
120
  # Check to see if the all the properties in the model are valid
121
121
  # @return true if the model is valid
122
122
  def valid?
123
- return false if !@name.nil? && @name.to_s.length < 1
124
123
  return false if !@description.nil? && @description.to_s.length < 1
124
+ return false if !@name.nil? && @name.to_s.length < 1
125
125
  return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
126
126
  true
127
127
  end
128
128
 
129
- # Custom attribute writer method with validation
130
- # @param [Object] name Value to be assigned
131
- def name=(name)
132
- if !name.nil? && name.to_s.length < 1
133
- fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
134
- end
135
-
136
- @name = name
137
- end
138
-
139
129
  # Custom attribute writer method with validation
140
130
  # @param [Object] description Value to be assigned
141
131
  def description=(description)
@@ -146,6 +136,16 @@ module PulpContainerClient
146
136
  @description = description
147
137
  end
148
138
 
139
+ # Custom attribute writer method with validation
140
+ # @param [Object] name Value to be assigned
141
+ def name=(name)
142
+ if !name.nil? && name.to_s.length < 1
143
+ fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
144
+ end
145
+
146
+ @name = name
147
+ end
148
+
149
149
  # Custom attribute writer method with validation
150
150
  # @param [Object] retain_repo_versions Value to be assigned
151
151
  def retain_repo_versions=(retain_repo_versions)
@@ -161,11 +161,11 @@ module PulpContainerClient
161
161
  def ==(o)
162
162
  return true if self.equal?(o)
163
163
  self.class == o.class &&
164
- name == o.name &&
165
- description == o.description &&
166
164
  manifest_signing_service == o.manifest_signing_service &&
167
- retain_repo_versions == o.retain_repo_versions &&
168
- pulp_labels == o.pulp_labels
165
+ description == o.description &&
166
+ name == o.name &&
167
+ pulp_labels == o.pulp_labels &&
168
+ retain_repo_versions == o.retain_repo_versions
169
169
  end
170
170
 
171
171
  # @see the `==` method
@@ -177,7 +177,7 @@ module PulpContainerClient
177
177
  # Calculates hash code according to all attributes.
178
178
  # @return [Integer] Hash code
179
179
  def hash
180
- [name, description, manifest_signing_service, retain_repo_versions, pulp_labels].hash
180
+ [manifest_signing_service, description, name, pulp_labels, retain_repo_versions].hash
181
181
  end
182
182
 
183
183
  # Builds the object from hash
@@ -137,7 +137,7 @@ module PulpContainerClient
137
137
  :'pulp_labels' => :'Hash<String, String>',
138
138
  :'download_concurrency' => :'Integer',
139
139
  :'max_retries' => :'Integer',
140
- :'policy' => :'Policy762Enum',
140
+ :'policy' => :'Policy692Enum',
141
141
  :'total_timeout' => :'Float',
142
142
  :'connect_timeout' => :'Float',
143
143
  :'sock_connect_timeout' => :'Float',