pulp_container_client 2.8.4 → 2.8.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.
- checksums.yaml +4 -4
- data/README.md +4 -4
- data/docs/ContainerContainerDistribution.md +7 -7
- data/docs/ContainerContainerDistributionResponse.md +9 -9
- data/docs/ContainerContainerPushRepository.md +4 -4
- data/docs/ContainerContainerPushRepositoryResponse.md +10 -10
- data/docs/PatchedcontainerContainerDistribution.md +7 -7
- data/docs/PatchedcontainerContainerPushRepository.md +4 -4
- data/lib/pulp_container_client/api_client.rb +1 -4
- data/lib/pulp_container_client/configuration.rb +1 -0
- data/lib/pulp_container_client/models/container_container_distribution.rb +32 -32
- data/lib/pulp_container_client/models/container_container_distribution_response.rb +39 -39
- data/lib/pulp_container_client/models/container_container_push_repository.rb +19 -19
- data/lib/pulp_container_client/models/container_container_push_repository_response.rb +40 -40
- data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +27 -27
- data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +14 -14
- data/lib/pulp_container_client/version.rb +1 -1
- data/pulp_container_client.gemspec +1 -1
- data/spec/models/container_container_distribution_response_spec.rb +7 -7
- data/spec/models/container_container_distribution_spec.rb +5 -5
- data/spec/models/container_container_push_repository_response_spec.rb +7 -7
- data/spec/models/container_container_push_repository_spec.rb +2 -2
- data/spec/models/patchedcontainer_container_distribution_spec.rb +5 -5
- data/spec/models/patchedcontainer_container_push_repository_spec.rb +2 -2
- metadata +46 -46
@@ -15,7 +15,8 @@ require 'date'
|
|
15
15
|
module PulpContainerClient
|
16
16
|
# Serializer for Container Push Repositories.
|
17
17
|
class ContainerContainerPushRepository
|
18
|
-
|
18
|
+
# A unique name for this repository.
|
19
|
+
attr_accessor :name
|
19
20
|
|
20
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.
|
21
22
|
attr_accessor :retain_repo_versions
|
@@ -23,26 +24,25 @@ module PulpContainerClient
|
|
23
24
|
# An optional description.
|
24
25
|
attr_accessor :description
|
25
26
|
|
26
|
-
|
27
|
-
attr_accessor :name
|
27
|
+
attr_accessor :pulp_labels
|
28
28
|
|
29
29
|
# Attribute mapping from ruby-style variable name to JSON key.
|
30
30
|
def self.attribute_map
|
31
31
|
{
|
32
|
-
:'
|
32
|
+
:'name' => :'name',
|
33
33
|
:'retain_repo_versions' => :'retain_repo_versions',
|
34
34
|
:'description' => :'description',
|
35
|
-
:'
|
35
|
+
:'pulp_labels' => :'pulp_labels'
|
36
36
|
}
|
37
37
|
end
|
38
38
|
|
39
39
|
# Attribute type mapping.
|
40
40
|
def self.openapi_types
|
41
41
|
{
|
42
|
-
:'
|
42
|
+
:'name' => :'String',
|
43
43
|
:'retain_repo_versions' => :'Integer',
|
44
44
|
:'description' => :'String',
|
45
|
-
:'
|
45
|
+
:'pulp_labels' => :'Object'
|
46
46
|
}
|
47
47
|
end
|
48
48
|
|
@@ -69,8 +69,8 @@ module PulpContainerClient
|
|
69
69
|
h[k.to_sym] = v
|
70
70
|
}
|
71
71
|
|
72
|
-
if attributes.key?(:'
|
73
|
-
self.
|
72
|
+
if attributes.key?(:'name')
|
73
|
+
self.name = attributes[:'name']
|
74
74
|
end
|
75
75
|
|
76
76
|
if attributes.key?(:'retain_repo_versions')
|
@@ -81,8 +81,8 @@ module PulpContainerClient
|
|
81
81
|
self.description = attributes[:'description']
|
82
82
|
end
|
83
83
|
|
84
|
-
if attributes.key?(:'
|
85
|
-
self.
|
84
|
+
if attributes.key?(:'pulp_labels')
|
85
|
+
self.pulp_labels = attributes[:'pulp_labels']
|
86
86
|
end
|
87
87
|
end
|
88
88
|
|
@@ -90,22 +90,22 @@ module PulpContainerClient
|
|
90
90
|
# @return Array for valid properties with the reasons
|
91
91
|
def list_invalid_properties
|
92
92
|
invalid_properties = Array.new
|
93
|
-
if !@retain_repo_versions.nil? && @retain_repo_versions < 1
|
94
|
-
invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
|
95
|
-
end
|
96
|
-
|
97
93
|
if @name.nil?
|
98
94
|
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
99
95
|
end
|
100
96
|
|
97
|
+
if !@retain_repo_versions.nil? && @retain_repo_versions < 1
|
98
|
+
invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
|
99
|
+
end
|
100
|
+
|
101
101
|
invalid_properties
|
102
102
|
end
|
103
103
|
|
104
104
|
# Check to see if the all the properties in the model are valid
|
105
105
|
# @return true if the model is valid
|
106
106
|
def valid?
|
107
|
-
return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
|
108
107
|
return false if @name.nil?
|
108
|
+
return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
|
109
109
|
true
|
110
110
|
end
|
111
111
|
|
@@ -124,10 +124,10 @@ module PulpContainerClient
|
|
124
124
|
def ==(o)
|
125
125
|
return true if self.equal?(o)
|
126
126
|
self.class == o.class &&
|
127
|
-
|
127
|
+
name == o.name &&
|
128
128
|
retain_repo_versions == o.retain_repo_versions &&
|
129
129
|
description == o.description &&
|
130
|
-
|
130
|
+
pulp_labels == o.pulp_labels
|
131
131
|
end
|
132
132
|
|
133
133
|
# @see the `==` method
|
@@ -139,7 +139,7 @@ module PulpContainerClient
|
|
139
139
|
# Calculates hash code according to all attributes.
|
140
140
|
# @return [Integer] Hash code
|
141
141
|
def hash
|
142
|
-
[
|
142
|
+
[name, retain_repo_versions, description, pulp_labels].hash
|
143
143
|
end
|
144
144
|
|
145
145
|
# Builds the object from hash
|
@@ -15,51 +15,51 @@ require 'date'
|
|
15
15
|
module PulpContainerClient
|
16
16
|
# Serializer for Container Push Repositories.
|
17
17
|
class ContainerContainerPushRepositoryResponse
|
18
|
-
attr_accessor :
|
18
|
+
attr_accessor :pulp_href
|
19
19
|
|
20
|
-
|
20
|
+
# A unique name for this repository.
|
21
|
+
attr_accessor :name
|
21
22
|
|
22
23
|
# 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.
|
23
24
|
attr_accessor :retain_repo_versions
|
24
25
|
|
25
|
-
attr_accessor :versions_href
|
26
|
-
|
27
26
|
# An optional description.
|
28
27
|
attr_accessor :description
|
29
28
|
|
30
|
-
attr_accessor :
|
29
|
+
attr_accessor :versions_href
|
31
30
|
|
32
31
|
# Timestamp of creation.
|
33
32
|
attr_accessor :pulp_created
|
34
33
|
|
35
|
-
|
36
|
-
|
34
|
+
attr_accessor :latest_version_href
|
35
|
+
|
36
|
+
attr_accessor :pulp_labels
|
37
37
|
|
38
38
|
# Attribute mapping from ruby-style variable name to JSON key.
|
39
39
|
def self.attribute_map
|
40
40
|
{
|
41
|
-
:'
|
42
|
-
:'
|
41
|
+
:'pulp_href' => :'pulp_href',
|
42
|
+
:'name' => :'name',
|
43
43
|
:'retain_repo_versions' => :'retain_repo_versions',
|
44
|
-
:'versions_href' => :'versions_href',
|
45
44
|
:'description' => :'description',
|
46
|
-
:'
|
45
|
+
:'versions_href' => :'versions_href',
|
47
46
|
:'pulp_created' => :'pulp_created',
|
48
|
-
:'
|
47
|
+
:'latest_version_href' => :'latest_version_href',
|
48
|
+
:'pulp_labels' => :'pulp_labels'
|
49
49
|
}
|
50
50
|
end
|
51
51
|
|
52
52
|
# Attribute type mapping.
|
53
53
|
def self.openapi_types
|
54
54
|
{
|
55
|
-
:'
|
56
|
-
:'
|
55
|
+
:'pulp_href' => :'String',
|
56
|
+
:'name' => :'String',
|
57
57
|
:'retain_repo_versions' => :'Integer',
|
58
|
-
:'versions_href' => :'String',
|
59
58
|
:'description' => :'String',
|
60
|
-
:'
|
59
|
+
:'versions_href' => :'String',
|
61
60
|
:'pulp_created' => :'DateTime',
|
62
|
-
:'
|
61
|
+
:'latest_version_href' => :'String',
|
62
|
+
:'pulp_labels' => :'Object'
|
63
63
|
}
|
64
64
|
end
|
65
65
|
|
@@ -86,36 +86,36 @@ module PulpContainerClient
|
|
86
86
|
h[k.to_sym] = v
|
87
87
|
}
|
88
88
|
|
89
|
-
if attributes.key?(:'
|
90
|
-
self.
|
89
|
+
if attributes.key?(:'pulp_href')
|
90
|
+
self.pulp_href = attributes[:'pulp_href']
|
91
91
|
end
|
92
92
|
|
93
|
-
if attributes.key?(:'
|
94
|
-
self.
|
93
|
+
if attributes.key?(:'name')
|
94
|
+
self.name = attributes[:'name']
|
95
95
|
end
|
96
96
|
|
97
97
|
if attributes.key?(:'retain_repo_versions')
|
98
98
|
self.retain_repo_versions = attributes[:'retain_repo_versions']
|
99
99
|
end
|
100
100
|
|
101
|
-
if attributes.key?(:'versions_href')
|
102
|
-
self.versions_href = attributes[:'versions_href']
|
103
|
-
end
|
104
|
-
|
105
101
|
if attributes.key?(:'description')
|
106
102
|
self.description = attributes[:'description']
|
107
103
|
end
|
108
104
|
|
109
|
-
if attributes.key?(:'
|
110
|
-
self.
|
105
|
+
if attributes.key?(:'versions_href')
|
106
|
+
self.versions_href = attributes[:'versions_href']
|
111
107
|
end
|
112
108
|
|
113
109
|
if attributes.key?(:'pulp_created')
|
114
110
|
self.pulp_created = attributes[:'pulp_created']
|
115
111
|
end
|
116
112
|
|
117
|
-
if attributes.key?(:'
|
118
|
-
self.
|
113
|
+
if attributes.key?(:'latest_version_href')
|
114
|
+
self.latest_version_href = attributes[:'latest_version_href']
|
115
|
+
end
|
116
|
+
|
117
|
+
if attributes.key?(:'pulp_labels')
|
118
|
+
self.pulp_labels = attributes[:'pulp_labels']
|
119
119
|
end
|
120
120
|
end
|
121
121
|
|
@@ -123,22 +123,22 @@ module PulpContainerClient
|
|
123
123
|
# @return Array for valid properties with the reasons
|
124
124
|
def list_invalid_properties
|
125
125
|
invalid_properties = Array.new
|
126
|
-
if !@retain_repo_versions.nil? && @retain_repo_versions < 1
|
127
|
-
invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
|
128
|
-
end
|
129
|
-
|
130
126
|
if @name.nil?
|
131
127
|
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
132
128
|
end
|
133
129
|
|
130
|
+
if !@retain_repo_versions.nil? && @retain_repo_versions < 1
|
131
|
+
invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
|
132
|
+
end
|
133
|
+
|
134
134
|
invalid_properties
|
135
135
|
end
|
136
136
|
|
137
137
|
# Check to see if the all the properties in the model are valid
|
138
138
|
# @return true if the model is valid
|
139
139
|
def valid?
|
140
|
-
return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
|
141
140
|
return false if @name.nil?
|
141
|
+
return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
|
142
142
|
true
|
143
143
|
end
|
144
144
|
|
@@ -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
|
-
|
161
|
-
|
160
|
+
pulp_href == o.pulp_href &&
|
161
|
+
name == o.name &&
|
162
162
|
retain_repo_versions == o.retain_repo_versions &&
|
163
|
-
versions_href == o.versions_href &&
|
164
163
|
description == o.description &&
|
165
|
-
|
164
|
+
versions_href == o.versions_href &&
|
166
165
|
pulp_created == o.pulp_created &&
|
167
|
-
|
166
|
+
latest_version_href == o.latest_version_href &&
|
167
|
+
pulp_labels == o.pulp_labels
|
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
|
-
[
|
179
|
+
[pulp_href, name, retain_repo_versions, description, versions_href, pulp_created, latest_version_href, pulp_labels].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
|
+
# An optional content-guard. If none is specified, a default one will be used.
|
19
|
+
attr_accessor :content_guard
|
20
|
+
|
21
|
+
# A unique name. Ex, `rawhide` and `stable`.
|
22
|
+
attr_accessor :name
|
23
|
+
|
18
24
|
# The latest RepositoryVersion for this Repository will be served.
|
19
25
|
attr_accessor :repository
|
20
26
|
|
21
|
-
attr_accessor :pulp_labels
|
22
|
-
|
23
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\")
|
24
28
|
attr_accessor :base_path
|
25
29
|
|
26
|
-
|
27
|
-
attr_accessor :name
|
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
|
+
:'content_guard' => :'content_guard',
|
45
|
+
:'name' => :'name',
|
44
46
|
:'repository' => :'repository',
|
45
|
-
:'pulp_labels' => :'pulp_labels',
|
46
47
|
:'base_path' => :'base_path',
|
47
|
-
:'
|
48
|
-
:'content_guard' => :'content_guard',
|
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
|
+
:'content_guard' => :'String',
|
59
|
+
:'name' => :'String',
|
58
60
|
:'repository' => :'String',
|
59
|
-
:'pulp_labels' => :'Object',
|
60
61
|
:'base_path' => :'String',
|
61
|
-
:'
|
62
|
-
:'content_guard' => :'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?(:'
|
94
|
-
self.
|
93
|
+
if attributes.key?(:'content_guard')
|
94
|
+
self.content_guard = attributes[:'content_guard']
|
95
95
|
end
|
96
96
|
|
97
|
-
if attributes.key?(:'
|
98
|
-
self.
|
97
|
+
if attributes.key?(:'name')
|
98
|
+
self.name = attributes[:'name']
|
99
99
|
end
|
100
100
|
|
101
|
-
if attributes.key?(:'
|
102
|
-
self.
|
101
|
+
if attributes.key?(:'repository')
|
102
|
+
self.repository = attributes[:'repository']
|
103
103
|
end
|
104
104
|
|
105
|
-
if attributes.key?(:'
|
106
|
-
self.
|
105
|
+
if attributes.key?(:'base_path')
|
106
|
+
self.base_path = attributes[:'base_path']
|
107
107
|
end
|
108
108
|
|
109
|
-
if attributes.key?(:'
|
110
|
-
self.
|
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')
|
@@ -141,11 +141,11 @@ module PulpContainerClient
|
|
141
141
|
def ==(o)
|
142
142
|
return true if self.equal?(o)
|
143
143
|
self.class == o.class &&
|
144
|
+
content_guard == o.content_guard &&
|
145
|
+
name == o.name &&
|
144
146
|
repository == o.repository &&
|
145
|
-
pulp_labels == o.pulp_labels &&
|
146
147
|
base_path == o.base_path &&
|
147
|
-
|
148
|
-
content_guard == o.content_guard &&
|
148
|
+
pulp_labels == o.pulp_labels &&
|
149
149
|
repository_version == o.repository_version &&
|
150
150
|
private == o.private &&
|
151
151
|
description == o.description
|
@@ -160,7 +160,7 @@ module PulpContainerClient
|
|
160
160
|
# Calculates hash code according to all attributes.
|
161
161
|
# @return [Integer] Hash code
|
162
162
|
def hash
|
163
|
-
[
|
163
|
+
[content_guard, name, repository, base_path, pulp_labels, repository_version, private, description].hash
|
164
164
|
end
|
165
165
|
|
166
166
|
# Builds the object from hash
|
@@ -15,7 +15,8 @@ require 'date'
|
|
15
15
|
module PulpContainerClient
|
16
16
|
# Serializer for Container Push Repositories.
|
17
17
|
class PatchedcontainerContainerPushRepository
|
18
|
-
|
18
|
+
# A unique name for this repository.
|
19
|
+
attr_accessor :name
|
19
20
|
|
20
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.
|
21
22
|
attr_accessor :retain_repo_versions
|
@@ -23,26 +24,25 @@ module PulpContainerClient
|
|
23
24
|
# An optional description.
|
24
25
|
attr_accessor :description
|
25
26
|
|
26
|
-
|
27
|
-
attr_accessor :name
|
27
|
+
attr_accessor :pulp_labels
|
28
28
|
|
29
29
|
# Attribute mapping from ruby-style variable name to JSON key.
|
30
30
|
def self.attribute_map
|
31
31
|
{
|
32
|
-
:'
|
32
|
+
:'name' => :'name',
|
33
33
|
:'retain_repo_versions' => :'retain_repo_versions',
|
34
34
|
:'description' => :'description',
|
35
|
-
:'
|
35
|
+
:'pulp_labels' => :'pulp_labels'
|
36
36
|
}
|
37
37
|
end
|
38
38
|
|
39
39
|
# Attribute type mapping.
|
40
40
|
def self.openapi_types
|
41
41
|
{
|
42
|
-
:'
|
42
|
+
:'name' => :'String',
|
43
43
|
:'retain_repo_versions' => :'Integer',
|
44
44
|
:'description' => :'String',
|
45
|
-
:'
|
45
|
+
:'pulp_labels' => :'Object'
|
46
46
|
}
|
47
47
|
end
|
48
48
|
|
@@ -69,8 +69,8 @@ module PulpContainerClient
|
|
69
69
|
h[k.to_sym] = v
|
70
70
|
}
|
71
71
|
|
72
|
-
if attributes.key?(:'
|
73
|
-
self.
|
72
|
+
if attributes.key?(:'name')
|
73
|
+
self.name = attributes[:'name']
|
74
74
|
end
|
75
75
|
|
76
76
|
if attributes.key?(:'retain_repo_versions')
|
@@ -81,8 +81,8 @@ module PulpContainerClient
|
|
81
81
|
self.description = attributes[:'description']
|
82
82
|
end
|
83
83
|
|
84
|
-
if attributes.key?(:'
|
85
|
-
self.
|
84
|
+
if attributes.key?(:'pulp_labels')
|
85
|
+
self.pulp_labels = attributes[:'pulp_labels']
|
86
86
|
end
|
87
87
|
end
|
88
88
|
|
@@ -119,10 +119,10 @@ module PulpContainerClient
|
|
119
119
|
def ==(o)
|
120
120
|
return true if self.equal?(o)
|
121
121
|
self.class == o.class &&
|
122
|
-
|
122
|
+
name == o.name &&
|
123
123
|
retain_repo_versions == o.retain_repo_versions &&
|
124
124
|
description == o.description &&
|
125
|
-
|
125
|
+
pulp_labels == o.pulp_labels
|
126
126
|
end
|
127
127
|
|
128
128
|
# @see the `==` method
|
@@ -134,7 +134,7 @@ module PulpContainerClient
|
|
134
134
|
# Calculates hash code according to all attributes.
|
135
135
|
# @return [Integer] Hash code
|
136
136
|
def hash
|
137
|
-
[
|
137
|
+
[name, retain_repo_versions, description, pulp_labels].hash
|
138
138
|
end
|
139
139
|
|
140
140
|
# Builds the object from hash
|
@@ -27,7 +27,7 @@ Gem::Specification.new do |s|
|
|
27
27
|
s.license = 'GPL-2.0+'
|
28
28
|
s.required_ruby_version = ">= 1.9"
|
29
29
|
|
30
|
-
s.add_runtime_dependency 'faraday', '~>
|
30
|
+
s.add_runtime_dependency 'faraday', '~> 0.17', '< 1.9.0'
|
31
31
|
s.add_runtime_dependency 'json', '~> 2.1', '>= 2.1.0'
|
32
32
|
|
33
33
|
s.add_development_dependency 'rspec', '~> 3.6', '>= 3.6.0'
|
@@ -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 "
|
35
|
+
describe 'test attribute "pulp_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 "
|
41
|
+
describe 'test attribute "content_guard"' 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 "
|
47
|
+
describe 'test attribute "name"' 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 "
|
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 "
|
59
|
+
describe 'test attribute "base_path"' 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 "
|
65
|
+
describe 'test attribute "pulp_created"' 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 "
|
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 "
|
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
|
39
39
|
end
|
40
40
|
|
41
|
-
describe 'test attribute "
|
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 "
|
47
|
+
describe 'test attribute "repository"' 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 "
|
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 "
|
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,13 +32,13 @@ describe 'ContainerContainerPushRepositoryResponse' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerPushRepositoryResponse)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
describe 'test attribute "
|
35
|
+
describe 'test attribute "pulp_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 "
|
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
|
@@ -50,31 +50,31 @@ describe 'ContainerContainerPushRepositoryResponse' do
|
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
-
describe 'test attribute "
|
53
|
+
describe 'test attribute "description"' 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 "
|
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 "
|
65
|
+
describe 'test attribute "pulp_created"' 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 "
|
71
|
+
describe 'test attribute "latest_version_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
|
75
75
|
end
|
76
76
|
|
77
|
-
describe 'test attribute "
|
77
|
+
describe 'test attribute "pulp_labels"' 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
|
@@ -32,7 +32,7 @@ describe 'ContainerContainerPushRepository' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerPushRepository)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
describe 'test attribute "
|
35
|
+
describe 'test attribute "name"' 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,7 +50,7 @@ describe 'ContainerContainerPushRepository' do
|
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
-
describe 'test attribute "
|
53
|
+
describe 'test attribute "pulp_labels"' 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
|