pulp_container_client 2.11.0.dev1640488314 → 2.11.0.dev1640661049

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of pulp_container_client might be problematic. Click here for more details.

@@ -15,51 +15,51 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # Serializer for Container Push Repositories.
17
17
  class ContainerContainerPushRepositoryResponse
18
+ attr_accessor :latest_version_href
19
+
18
20
  # A unique name for this repository.
19
21
  attr_accessor :name
20
22
 
21
- attr_accessor :pulp_labels
23
+ attr_accessor :pulp_href
24
+
25
+ # Timestamp of creation.
26
+ attr_accessor :pulp_created
27
+
28
+ attr_accessor :versions_href
22
29
 
23
30
  # Retain X versions of the repository. Default is null which retains all versions. This is provided as a tech preview in Pulp 3 and may change in the future.
24
31
  attr_accessor :retain_repo_versions
25
32
 
26
- attr_accessor :versions_href
33
+ attr_accessor :pulp_labels
27
34
 
28
35
  # An optional description.
29
36
  attr_accessor :description
30
37
 
31
- attr_accessor :latest_version_href
32
-
33
- # Timestamp of creation.
34
- attr_accessor :pulp_created
35
-
36
- attr_accessor :pulp_href
37
-
38
38
  # Attribute mapping from ruby-style variable name to JSON key.
39
39
  def self.attribute_map
40
40
  {
41
- :'name' => :'name',
42
- :'pulp_labels' => :'pulp_labels',
43
- :'retain_repo_versions' => :'retain_repo_versions',
44
- :'versions_href' => :'versions_href',
45
- :'description' => :'description',
46
41
  :'latest_version_href' => :'latest_version_href',
42
+ :'name' => :'name',
43
+ :'pulp_href' => :'pulp_href',
47
44
  :'pulp_created' => :'pulp_created',
48
- :'pulp_href' => :'pulp_href'
45
+ :'versions_href' => :'versions_href',
46
+ :'retain_repo_versions' => :'retain_repo_versions',
47
+ :'pulp_labels' => :'pulp_labels',
48
+ :'description' => :'description'
49
49
  }
50
50
  end
51
51
 
52
52
  # Attribute type mapping.
53
53
  def self.openapi_types
54
54
  {
55
- :'name' => :'String',
56
- :'pulp_labels' => :'Object',
57
- :'retain_repo_versions' => :'Integer',
58
- :'versions_href' => :'String',
59
- :'description' => :'String',
60
55
  :'latest_version_href' => :'String',
56
+ :'name' => :'String',
57
+ :'pulp_href' => :'String',
61
58
  :'pulp_created' => :'DateTime',
62
- :'pulp_href' => :'String'
59
+ :'versions_href' => :'String',
60
+ :'retain_repo_versions' => :'Integer',
61
+ :'pulp_labels' => :'Object',
62
+ :'description' => :'String'
63
63
  }
64
64
  end
65
65
 
@@ -67,7 +67,7 @@ module PulpContainerClient
67
67
  def self.openapi_nullable
68
68
  Set.new([
69
69
  :'retain_repo_versions',
70
- :'description',
70
+ :'description'
71
71
  ])
72
72
  end
73
73
 
@@ -86,36 +86,36 @@ module PulpContainerClient
86
86
  h[k.to_sym] = v
87
87
  }
88
88
 
89
+ if attributes.key?(:'latest_version_href')
90
+ self.latest_version_href = attributes[:'latest_version_href']
91
+ end
92
+
89
93
  if attributes.key?(:'name')
90
94
  self.name = attributes[:'name']
91
95
  end
92
96
 
93
- if attributes.key?(:'pulp_labels')
94
- self.pulp_labels = attributes[:'pulp_labels']
97
+ if attributes.key?(:'pulp_href')
98
+ self.pulp_href = attributes[:'pulp_href']
95
99
  end
96
100
 
97
- if attributes.key?(:'retain_repo_versions')
98
- self.retain_repo_versions = attributes[:'retain_repo_versions']
101
+ if attributes.key?(:'pulp_created')
102
+ self.pulp_created = attributes[:'pulp_created']
99
103
  end
100
104
 
101
105
  if attributes.key?(:'versions_href')
102
106
  self.versions_href = attributes[:'versions_href']
103
107
  end
104
108
 
105
- if attributes.key?(:'description')
106
- self.description = attributes[:'description']
107
- end
108
-
109
- if attributes.key?(:'latest_version_href')
110
- self.latest_version_href = attributes[:'latest_version_href']
109
+ if attributes.key?(:'retain_repo_versions')
110
+ self.retain_repo_versions = attributes[:'retain_repo_versions']
111
111
  end
112
112
 
113
- if attributes.key?(:'pulp_created')
114
- self.pulp_created = attributes[:'pulp_created']
113
+ if attributes.key?(:'pulp_labels')
114
+ self.pulp_labels = attributes[:'pulp_labels']
115
115
  end
116
116
 
117
- if attributes.key?(:'pulp_href')
118
- self.pulp_href = attributes[:'pulp_href']
117
+ if attributes.key?(:'description')
118
+ self.description = attributes[:'description']
119
119
  end
120
120
  end
121
121
 
@@ -157,14 +157,14 @@ module PulpContainerClient
157
157
  def ==(o)
158
158
  return true if self.equal?(o)
159
159
  self.class == o.class &&
160
- name == o.name &&
161
- pulp_labels == o.pulp_labels &&
162
- retain_repo_versions == o.retain_repo_versions &&
163
- versions_href == o.versions_href &&
164
- description == o.description &&
165
160
  latest_version_href == o.latest_version_href &&
161
+ name == o.name &&
162
+ pulp_href == o.pulp_href &&
166
163
  pulp_created == o.pulp_created &&
167
- pulp_href == o.pulp_href
164
+ versions_href == o.versions_href &&
165
+ retain_repo_versions == o.retain_repo_versions &&
166
+ pulp_labels == o.pulp_labels &&
167
+ description == o.description
168
168
  end
169
169
 
170
170
  # @see the `==` method
@@ -176,7 +176,7 @@ module PulpContainerClient
176
176
  # Calculates hash code according to all attributes.
177
177
  # @return [Integer] Hash code
178
178
  def hash
179
- [name, pulp_labels, retain_repo_versions, versions_href, description, latest_version_href, pulp_created, pulp_href].hash
179
+ [latest_version_href, name, pulp_href, pulp_created, versions_href, retain_repo_versions, pulp_labels, description].hash
180
180
  end
181
181
 
182
182
  # Builds the object from hash
@@ -15,19 +15,19 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # A serializer for ContainerDistribution.
17
17
  class PatchedcontainerContainerDistribution
18
+ # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
19
+ attr_accessor :base_path
20
+
18
21
  # A unique name. Ex, `rawhide` and `stable`.
19
22
  attr_accessor :name
20
23
 
21
- attr_accessor :pulp_labels
24
+ # An optional content-guard. If none is specified, a default one will be used.
25
+ attr_accessor :content_guard
22
26
 
23
27
  # The latest RepositoryVersion for this Repository will be served.
24
28
  attr_accessor :repository
25
29
 
26
- # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
27
- attr_accessor :base_path
28
-
29
- # An optional content-guard. If none is specified, a default one will be used.
30
- attr_accessor :content_guard
30
+ attr_accessor :pulp_labels
31
31
 
32
32
  # RepositoryVersion to be served
33
33
  attr_accessor :repository_version
@@ -41,11 +41,11 @@ module PulpContainerClient
41
41
  # Attribute mapping from ruby-style variable name to JSON key.
42
42
  def self.attribute_map
43
43
  {
44
- :'name' => :'name',
45
- :'pulp_labels' => :'pulp_labels',
46
- :'repository' => :'repository',
47
44
  :'base_path' => :'base_path',
45
+ :'name' => :'name',
48
46
  :'content_guard' => :'content_guard',
47
+ :'repository' => :'repository',
48
+ :'pulp_labels' => :'pulp_labels',
49
49
  :'repository_version' => :'repository_version',
50
50
  :'private' => :'private',
51
51
  :'description' => :'description'
@@ -55,11 +55,11 @@ module PulpContainerClient
55
55
  # Attribute type mapping.
56
56
  def self.openapi_types
57
57
  {
58
- :'name' => :'String',
59
- :'pulp_labels' => :'Object',
60
- :'repository' => :'String',
61
58
  :'base_path' => :'String',
59
+ :'name' => :'String',
62
60
  :'content_guard' => :'String',
61
+ :'repository' => :'String',
62
+ :'pulp_labels' => :'Object',
63
63
  :'repository_version' => :'String',
64
64
  :'private' => :'Boolean',
65
65
  :'description' => :'String'
@@ -90,24 +90,24 @@ module PulpContainerClient
90
90
  h[k.to_sym] = v
91
91
  }
92
92
 
93
+ if attributes.key?(:'base_path')
94
+ self.base_path = attributes[:'base_path']
95
+ end
96
+
93
97
  if attributes.key?(:'name')
94
98
  self.name = attributes[:'name']
95
99
  end
96
100
 
97
- if attributes.key?(:'pulp_labels')
98
- self.pulp_labels = attributes[:'pulp_labels']
101
+ if attributes.key?(:'content_guard')
102
+ self.content_guard = attributes[:'content_guard']
99
103
  end
100
104
 
101
105
  if attributes.key?(:'repository')
102
106
  self.repository = attributes[:'repository']
103
107
  end
104
108
 
105
- if attributes.key?(:'base_path')
106
- self.base_path = attributes[:'base_path']
107
- end
108
-
109
- if attributes.key?(:'content_guard')
110
- self.content_guard = attributes[:'content_guard']
109
+ if attributes.key?(:'pulp_labels')
110
+ self.pulp_labels = attributes[:'pulp_labels']
111
111
  end
112
112
 
113
113
  if attributes.key?(:'repository_version')
@@ -127,14 +127,14 @@ module PulpContainerClient
127
127
  # @return Array for valid properties with the reasons
128
128
  def list_invalid_properties
129
129
  invalid_properties = Array.new
130
- if !@name.nil? && @name.to_s.length < 1
131
- invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
132
- end
133
-
134
130
  if !@base_path.nil? && @base_path.to_s.length < 1
135
131
  invalid_properties.push('invalid value for "base_path", the character length must be great than or equal to 1.')
136
132
  end
137
133
 
134
+ if !@name.nil? && @name.to_s.length < 1
135
+ invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
136
+ end
137
+
138
138
  if !@description.nil? && @description.to_s.length < 1
139
139
  invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
140
140
  end
@@ -145,22 +145,12 @@ module PulpContainerClient
145
145
  # Check to see if the all the properties in the model are valid
146
146
  # @return true if the model is valid
147
147
  def valid?
148
- return false if !@name.nil? && @name.to_s.length < 1
149
148
  return false if !@base_path.nil? && @base_path.to_s.length < 1
149
+ return false if !@name.nil? && @name.to_s.length < 1
150
150
  return false if !@description.nil? && @description.to_s.length < 1
151
151
  true
152
152
  end
153
153
 
154
- # Custom attribute writer method with validation
155
- # @param [Object] name Value to be assigned
156
- def name=(name)
157
- if !name.nil? && name.to_s.length < 1
158
- fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
159
- end
160
-
161
- @name = name
162
- end
163
-
164
154
  # Custom attribute writer method with validation
165
155
  # @param [Object] base_path Value to be assigned
166
156
  def base_path=(base_path)
@@ -171,6 +161,16 @@ module PulpContainerClient
171
161
  @base_path = base_path
172
162
  end
173
163
 
164
+ # Custom attribute writer method with validation
165
+ # @param [Object] name Value to be assigned
166
+ def name=(name)
167
+ if !name.nil? && name.to_s.length < 1
168
+ fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
169
+ end
170
+
171
+ @name = name
172
+ end
173
+
174
174
  # Custom attribute writer method with validation
175
175
  # @param [Object] description Value to be assigned
176
176
  def description=(description)
@@ -186,11 +186,11 @@ module PulpContainerClient
186
186
  def ==(o)
187
187
  return true if self.equal?(o)
188
188
  self.class == o.class &&
189
- name == o.name &&
190
- pulp_labels == o.pulp_labels &&
191
- repository == o.repository &&
192
189
  base_path == o.base_path &&
190
+ name == o.name &&
193
191
  content_guard == o.content_guard &&
192
+ repository == o.repository &&
193
+ pulp_labels == o.pulp_labels &&
194
194
  repository_version == o.repository_version &&
195
195
  private == o.private &&
196
196
  description == o.description
@@ -205,7 +205,7 @@ module PulpContainerClient
205
205
  # Calculates hash code according to all attributes.
206
206
  # @return [Integer] Hash code
207
207
  def hash
208
- [name, pulp_labels, repository, base_path, content_guard, repository_version, private, description].hash
208
+ [base_path, name, content_guard, repository, pulp_labels, repository_version, private, description].hash
209
209
  end
210
210
 
211
211
  # Builds the object from hash
@@ -18,11 +18,11 @@ module PulpContainerClient
18
18
  # A unique name for this repository.
19
19
  attr_accessor :name
20
20
 
21
- attr_accessor :pulp_labels
22
-
23
21
  # Retain X versions of the repository. Default is null which retains all versions. This is provided as a tech preview in Pulp 3 and may change in the future.
24
22
  attr_accessor :retain_repo_versions
25
23
 
24
+ attr_accessor :pulp_labels
25
+
26
26
  # An optional description.
27
27
  attr_accessor :description
28
28
 
@@ -30,8 +30,8 @@ module PulpContainerClient
30
30
  def self.attribute_map
31
31
  {
32
32
  :'name' => :'name',
33
- :'pulp_labels' => :'pulp_labels',
34
33
  :'retain_repo_versions' => :'retain_repo_versions',
34
+ :'pulp_labels' => :'pulp_labels',
35
35
  :'description' => :'description'
36
36
  }
37
37
  end
@@ -40,8 +40,8 @@ module PulpContainerClient
40
40
  def self.openapi_types
41
41
  {
42
42
  :'name' => :'String',
43
- :'pulp_labels' => :'Object',
44
43
  :'retain_repo_versions' => :'Integer',
44
+ :'pulp_labels' => :'Object',
45
45
  :'description' => :'String'
46
46
  }
47
47
  end
@@ -73,14 +73,14 @@ module PulpContainerClient
73
73
  self.name = attributes[:'name']
74
74
  end
75
75
 
76
- if attributes.key?(:'pulp_labels')
77
- self.pulp_labels = attributes[:'pulp_labels']
78
- end
79
-
80
76
  if attributes.key?(:'retain_repo_versions')
81
77
  self.retain_repo_versions = attributes[:'retain_repo_versions']
82
78
  end
83
79
 
80
+ if attributes.key?(:'pulp_labels')
81
+ self.pulp_labels = attributes[:'pulp_labels']
82
+ end
83
+
84
84
  if attributes.key?(:'description')
85
85
  self.description = attributes[:'description']
86
86
  end
@@ -150,8 +150,8 @@ module PulpContainerClient
150
150
  return true if self.equal?(o)
151
151
  self.class == o.class &&
152
152
  name == o.name &&
153
- pulp_labels == o.pulp_labels &&
154
153
  retain_repo_versions == o.retain_repo_versions &&
154
+ pulp_labels == o.pulp_labels &&
155
155
  description == o.description
156
156
  end
157
157
 
@@ -164,7 +164,7 @@ module PulpContainerClient
164
164
  # Calculates hash code according to all attributes.
165
165
  # @return [Integer] Hash code
166
166
  def hash
167
- [name, pulp_labels, retain_repo_versions, description].hash
167
+ [name, retain_repo_versions, pulp_labels, description].hash
168
168
  end
169
169
 
170
170
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.3.1
11
11
  =end
12
12
 
13
13
  module PulpContainerClient
14
- VERSION = '2.11.0.dev1640488314'
14
+ VERSION = '2.11.0.dev1640661049'
15
15
  end
@@ -32,43 +32,43 @@ describe 'ContainerContainerDistributionResponse' do
32
32
  expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerDistributionResponse)
33
33
  end
34
34
  end
35
- describe 'test attribute "name"' do
35
+ describe 'test attribute "base_path"' do
36
36
  it 'should work' do
37
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "pulp_labels"' do
41
+ describe 'test attribute "name"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "repository"' do
47
+ describe 'test attribute "pulp_href"' do
48
48
  it 'should work' do
49
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "base_path"' do
53
+ describe 'test attribute "pulp_created"' 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 "pulp_created"' do
59
+ describe 'test attribute "content_guard"' do
60
60
  it 'should work' do
61
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
62
  end
63
63
  end
64
64
 
65
- describe 'test attribute "pulp_href"' do
65
+ describe 'test attribute "repository"' do
66
66
  it 'should work' do
67
67
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
68
  end
69
69
  end
70
70
 
71
- describe 'test attribute "content_guard"' do
71
+ describe 'test attribute "pulp_labels"' 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
@@ -32,31 +32,31 @@ describe 'ContainerContainerDistribution' do
32
32
  expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerDistribution)
33
33
  end
34
34
  end
35
- describe 'test attribute "name"' do
35
+ describe 'test attribute "base_path"' do
36
36
  it 'should work' do
37
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "pulp_labels"' do
41
+ describe 'test attribute "name"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "repository"' do
47
+ describe 'test attribute "content_guard"' do
48
48
  it 'should work' do
49
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "base_path"' do
53
+ describe 'test attribute "repository"' 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 "content_guard"' do
59
+ describe 'test attribute "pulp_labels"' do
60
60
  it 'should work' do
61
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
62
  end
@@ -32,49 +32,49 @@ describe 'ContainerContainerPushRepositoryResponse' do
32
32
  expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerPushRepositoryResponse)
33
33
  end
34
34
  end
35
- describe 'test attribute "name"' do
35
+ describe 'test attribute "latest_version_href"' do
36
36
  it 'should work' do
37
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "pulp_labels"' do
41
+ describe 'test attribute "name"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "retain_repo_versions"' do
47
+ describe 'test attribute "pulp_href"' do
48
48
  it 'should work' do
49
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "versions_href"' do
53
+ describe 'test attribute "pulp_created"' 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 "description"' do
59
+ describe 'test attribute "versions_href"' do
60
60
  it 'should work' do
61
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
62
  end
63
63
  end
64
64
 
65
- describe 'test attribute "latest_version_href"' do
65
+ describe 'test attribute "retain_repo_versions"' do
66
66
  it 'should work' do
67
67
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
68
  end
69
69
  end
70
70
 
71
- describe 'test attribute "pulp_created"' do
71
+ describe 'test attribute "pulp_labels"' do
72
72
  it 'should work' do
73
73
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
74
  end
75
75
  end
76
76
 
77
- describe 'test attribute "pulp_href"' do
77
+ describe 'test attribute "description"' do
78
78
  it 'should work' do
79
79
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
80
  end
@@ -38,13 +38,13 @@ describe 'ContainerContainerPushRepository' do
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "pulp_labels"' do
41
+ describe 'test attribute "retain_repo_versions"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "retain_repo_versions"' do
47
+ describe 'test attribute "pulp_labels"' do
48
48
  it 'should work' do
49
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
50
  end
@@ -32,31 +32,31 @@ describe 'PatchedcontainerContainerDistribution' do
32
32
  expect(@instance).to be_instance_of(PulpContainerClient::PatchedcontainerContainerDistribution)
33
33
  end
34
34
  end
35
- describe 'test attribute "name"' do
35
+ describe 'test attribute "base_path"' do
36
36
  it 'should work' do
37
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "pulp_labels"' do
41
+ describe 'test attribute "name"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "repository"' do
47
+ describe 'test attribute "content_guard"' do
48
48
  it 'should work' do
49
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "base_path"' do
53
+ describe 'test attribute "repository"' 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 "content_guard"' do
59
+ describe 'test attribute "pulp_labels"' do
60
60
  it 'should work' do
61
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
62
  end
@@ -38,13 +38,13 @@ describe 'PatchedcontainerContainerPushRepository' do
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "pulp_labels"' do
41
+ describe 'test attribute "retain_repo_versions"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "retain_repo_versions"' do
47
+ describe 'test attribute "pulp_labels"' do
48
48
  it 'should work' do
49
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
50
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pulp_container_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.11.0.dev1640488314
4
+ version: 2.11.0.dev1640661049
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-12-26 00:00:00.000000000 Z
11
+ date: 2021-12-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday