pulp_container_client 2.11.2 → 2.12.0
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 +4 -4
- data/docs/ContainerContainerDistributionResponse.md +6 -6
- data/docs/ContainerContainerPushRepository.md +5 -5
- data/docs/ContainerContainerPushRepositoryResponse.md +10 -10
- data/docs/PatchedcontainerContainerDistribution.md +4 -4
- data/docs/PatchedcontainerContainerPushRepository.md +5 -5
- data/git_push.sh +58 -0
- data/lib/pulp_container_client/api_client.rb +1 -1
- data/lib/pulp_container_client/models/container_container_distribution.rb +42 -42
- data/lib/pulp_container_client/models/container_container_distribution_response.rb +32 -32
- data/lib/pulp_container_client/models/container_container_push_repository.rb +41 -41
- data/lib/pulp_container_client/models/container_container_push_repository_response.rb +50 -50
- data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +33 -33
- data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +41 -41
- data/lib/pulp_container_client/version.rb +1 -1
- data/pulp_container_client.gemspec +3 -3
- data/spec/models/container_container_distribution_response_spec.rb +6 -6
- data/spec/models/container_container_distribution_spec.rb +3 -3
- data/spec/models/container_container_push_repository_response_spec.rb +8 -8
- data/spec/models/container_container_push_repository_spec.rb +4 -4
- data/spec/models/patchedcontainer_container_distribution_spec.rb +3 -3
- data/spec/models/patchedcontainer_container_push_repository_spec.rb +4 -4
- metadata +54 -53
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f9259ab21167140ba46f4e277234f27e50e112da82a7c834dc3b0c480e3563f9
|
4
|
+
data.tar.gz: 12fe68935770369a290f06ee79823eda9025cede78e987d80fb915d05c3ee84c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 327b77c9996a11057877d724bafdb276962aec1d46787f100fa590298037d8f028169cc34b54a09638ce2069cdceed808472b915d5a7ee3dcb6200ede5159183
|
7
|
+
data.tar.gz: 9bbf21d00e2e9bdf37cee0f5a0fb68ecc7899e60379494b4150cde70d281e62507a800c4c525c7edc508b612fd0bdab0de6f63cbe3c5d88d7bfbb268b91f3a30
|
data/README.md
CHANGED
@@ -7,7 +7,7 @@ Fetch, Upload, Organize, and Distribute Software Packages
|
|
7
7
|
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
8
8
|
|
9
9
|
- API version: v3
|
10
|
-
- Package version: 2.
|
10
|
+
- Package version: 2.12.0
|
11
11
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
12
12
|
For more information, please visit [https://pulpproject.org](https://pulpproject.org)
|
13
13
|
|
@@ -24,16 +24,16 @@ gem build pulp_container_client.gemspec
|
|
24
24
|
Then either install the gem locally:
|
25
25
|
|
26
26
|
```shell
|
27
|
-
gem install ./pulp_container_client-2.
|
27
|
+
gem install ./pulp_container_client-2.12.0.gem
|
28
28
|
```
|
29
29
|
|
30
|
-
(for development, run `gem install --dev ./pulp_container_client-2.
|
30
|
+
(for development, run `gem install --dev ./pulp_container_client-2.12.0.gem` to install the development dependencies)
|
31
31
|
|
32
32
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
33
33
|
|
34
34
|
Finally add this to the Gemfile:
|
35
35
|
|
36
|
-
gem 'pulp_container_client', '~> 2.
|
36
|
+
gem 'pulp_container_client', '~> 2.12.0'
|
37
37
|
|
38
38
|
### Install from Git
|
39
39
|
|
@@ -5,10 +5,10 @@
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
7
|
**pulp_labels** | [**Object**](.md) | | [optional]
|
8
|
-
**
|
8
|
+
**repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional]
|
9
9
|
**base_path** | **String** | The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\") |
|
10
|
+
**name** | **String** | A unique name. Ex, `rawhide` and `stable`. |
|
10
11
|
**content_guard** | **String** | An optional content-guard. If none is specified, a default one will be used. | [optional]
|
11
|
-
**repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional]
|
12
12
|
**repository_version** | **String** | RepositoryVersion to be served | [optional]
|
13
13
|
**private** | **Boolean** | Restrict pull access to explicitly authorized users. Defaults to unrestricted pull access. | [optional]
|
14
14
|
**description** | **String** | An optional description. | [optional]
|
@@ -19,10 +19,10 @@ Name | Type | Description | Notes
|
|
19
19
|
require 'PulpContainerClient'
|
20
20
|
|
21
21
|
instance = PulpContainerClient::ContainerContainerDistribution.new(pulp_labels: null,
|
22
|
-
|
22
|
+
repository: null,
|
23
23
|
base_path: null,
|
24
|
+
name: null,
|
24
25
|
content_guard: null,
|
25
|
-
repository: null,
|
26
26
|
repository_version: null,
|
27
27
|
private: null,
|
28
28
|
description: null)
|
@@ -5,12 +5,12 @@
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
7
|
**pulp_labels** | [**Object**](.md) | | [optional]
|
8
|
-
**
|
9
|
-
**name** | **String** | A unique name. Ex, `rawhide` and `stable`. |
|
8
|
+
**repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional]
|
10
9
|
**base_path** | **String** | The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\") |
|
11
10
|
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
11
|
+
**name** | **String** | A unique name. Ex, `rawhide` and `stable`. |
|
12
|
+
**pulp_href** | **String** | | [optional] [readonly]
|
12
13
|
**content_guard** | **String** | An optional content-guard. If none is specified, a default one will be used. | [optional]
|
13
|
-
**repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional]
|
14
14
|
**repository_version** | **String** | RepositoryVersion to be served | [optional]
|
15
15
|
**registry_path** | **String** | The Registry hostname/name/ to use with docker pull command defined by this distribution. | [optional] [readonly]
|
16
16
|
**namespace** | **String** | Namespace this distribution belongs to. | [optional] [readonly]
|
@@ -23,12 +23,12 @@ Name | Type | Description | Notes
|
|
23
23
|
require 'PulpContainerClient'
|
24
24
|
|
25
25
|
instance = PulpContainerClient::ContainerContainerDistributionResponse.new(pulp_labels: null,
|
26
|
-
|
27
|
-
name: null,
|
26
|
+
repository: null,
|
28
27
|
base_path: null,
|
29
28
|
pulp_created: null,
|
29
|
+
name: null,
|
30
|
+
pulp_href: null,
|
30
31
|
content_guard: null,
|
31
|
-
repository: null,
|
32
32
|
repository_version: null,
|
33
33
|
registry_path: null,
|
34
34
|
namespace: null,
|
@@ -5,10 +5,10 @@
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
7
|
**pulp_labels** | [**Object**](.md) | | [optional]
|
8
|
+
**manifest_signing_service** | **String** | A reference to an associated signing service. | [optional]
|
9
|
+
**retain_repo_versions** | **Integer** | 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. | [optional]
|
8
10
|
**description** | **String** | An optional description. | [optional]
|
9
11
|
**name** | **String** | A unique name for this repository. |
|
10
|
-
**retain_repo_versions** | **Integer** | 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. | [optional]
|
11
|
-
**manifest_signing_service** | **String** | A reference to an associated signing service. | [optional]
|
12
12
|
|
13
13
|
## Code Sample
|
14
14
|
|
@@ -16,10 +16,10 @@ Name | Type | Description | Notes
|
|
16
16
|
require 'PulpContainerClient'
|
17
17
|
|
18
18
|
instance = PulpContainerClient::ContainerContainerPushRepository.new(pulp_labels: null,
|
19
|
-
|
20
|
-
name: null,
|
19
|
+
manifest_signing_service: null,
|
21
20
|
retain_repo_versions: null,
|
22
|
-
|
21
|
+
description: null,
|
22
|
+
name: null)
|
23
23
|
```
|
24
24
|
|
25
25
|
|
@@ -5,14 +5,14 @@
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
7
|
**pulp_labels** | [**Object**](.md) | | [optional]
|
8
|
-
**
|
9
|
-
**description** | **String** | An optional description. | [optional]
|
10
|
-
**versions_href** | **String** | | [optional] [readonly]
|
11
|
-
**name** | **String** | A unique name for this repository. |
|
8
|
+
**manifest_signing_service** | **String** | A reference to an associated signing service. | [optional]
|
12
9
|
**retain_repo_versions** | **Integer** | 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. | [optional]
|
13
10
|
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
11
|
+
**description** | **String** | An optional description. | [optional]
|
12
|
+
**versions_href** | **String** | | [optional] [readonly]
|
14
13
|
**latest_version_href** | **String** | | [optional] [readonly]
|
15
|
-
**
|
14
|
+
**name** | **String** | A unique name for this repository. |
|
15
|
+
**pulp_href** | **String** | | [optional] [readonly]
|
16
16
|
|
17
17
|
## Code Sample
|
18
18
|
|
@@ -20,14 +20,14 @@ Name | Type | Description | Notes
|
|
20
20
|
require 'PulpContainerClient'
|
21
21
|
|
22
22
|
instance = PulpContainerClient::ContainerContainerPushRepositoryResponse.new(pulp_labels: null,
|
23
|
-
|
24
|
-
description: null,
|
25
|
-
versions_href: null,
|
26
|
-
name: null,
|
23
|
+
manifest_signing_service: null,
|
27
24
|
retain_repo_versions: null,
|
28
25
|
pulp_created: null,
|
26
|
+
description: null,
|
27
|
+
versions_href: null,
|
29
28
|
latest_version_href: null,
|
30
|
-
|
29
|
+
name: null,
|
30
|
+
pulp_href: null)
|
31
31
|
```
|
32
32
|
|
33
33
|
|
@@ -5,10 +5,10 @@
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
7
|
**pulp_labels** | [**Object**](.md) | | [optional]
|
8
|
-
**
|
8
|
+
**repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional]
|
9
9
|
**base_path** | **String** | The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\") | [optional]
|
10
|
+
**name** | **String** | A unique name. Ex, `rawhide` and `stable`. | [optional]
|
10
11
|
**content_guard** | **String** | An optional content-guard. If none is specified, a default one will be used. | [optional]
|
11
|
-
**repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional]
|
12
12
|
**repository_version** | **String** | RepositoryVersion to be served | [optional]
|
13
13
|
**private** | **Boolean** | Restrict pull access to explicitly authorized users. Defaults to unrestricted pull access. | [optional]
|
14
14
|
**description** | **String** | An optional description. | [optional]
|
@@ -19,10 +19,10 @@ Name | Type | Description | Notes
|
|
19
19
|
require 'PulpContainerClient'
|
20
20
|
|
21
21
|
instance = PulpContainerClient::PatchedcontainerContainerDistribution.new(pulp_labels: null,
|
22
|
-
|
22
|
+
repository: null,
|
23
23
|
base_path: null,
|
24
|
+
name: null,
|
24
25
|
content_guard: null,
|
25
|
-
repository: null,
|
26
26
|
repository_version: null,
|
27
27
|
private: null,
|
28
28
|
description: null)
|
@@ -5,10 +5,10 @@
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
7
|
**pulp_labels** | [**Object**](.md) | | [optional]
|
8
|
+
**manifest_signing_service** | **String** | A reference to an associated signing service. | [optional]
|
9
|
+
**retain_repo_versions** | **Integer** | 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. | [optional]
|
8
10
|
**description** | **String** | An optional description. | [optional]
|
9
11
|
**name** | **String** | A unique name for this repository. | [optional]
|
10
|
-
**retain_repo_versions** | **Integer** | 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. | [optional]
|
11
|
-
**manifest_signing_service** | **String** | A reference to an associated signing service. | [optional]
|
12
12
|
|
13
13
|
## Code Sample
|
14
14
|
|
@@ -16,10 +16,10 @@ Name | Type | Description | Notes
|
|
16
16
|
require 'PulpContainerClient'
|
17
17
|
|
18
18
|
instance = PulpContainerClient::PatchedcontainerContainerPushRepository.new(pulp_labels: null,
|
19
|
-
|
20
|
-
name: null,
|
19
|
+
manifest_signing_service: null,
|
21
20
|
retain_repo_versions: null,
|
22
|
-
|
21
|
+
description: null,
|
22
|
+
name: null)
|
23
23
|
```
|
24
24
|
|
25
25
|
|
data/git_push.sh
ADDED
@@ -0,0 +1,58 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
# ref: https://help.github.com/articles/adding-an-existing-project-to-github-using-the-command-line/
|
3
|
+
#
|
4
|
+
# Usage example: /bin/sh ./git_push.sh wing328 openapi-pestore-perl "minor update" "gitlab.com"
|
5
|
+
|
6
|
+
git_user_id=$1
|
7
|
+
git_repo_id=$2
|
8
|
+
release_note=$3
|
9
|
+
git_host=$4
|
10
|
+
|
11
|
+
if [ "$git_host" = "" ]; then
|
12
|
+
git_host="github.com"
|
13
|
+
echo "[INFO] No command line input provided. Set \$git_host to $git_host"
|
14
|
+
fi
|
15
|
+
|
16
|
+
if [ "$git_user_id" = "" ]; then
|
17
|
+
git_user_id="GIT_USER_ID"
|
18
|
+
echo "[INFO] No command line input provided. Set \$git_user_id to $git_user_id"
|
19
|
+
fi
|
20
|
+
|
21
|
+
if [ "$git_repo_id" = "" ]; then
|
22
|
+
git_repo_id="GIT_REPO_ID"
|
23
|
+
echo "[INFO] No command line input provided. Set \$git_repo_id to $git_repo_id"
|
24
|
+
fi
|
25
|
+
|
26
|
+
if [ "$release_note" = "" ]; then
|
27
|
+
release_note="Minor update"
|
28
|
+
echo "[INFO] No command line input provided. Set \$release_note to $release_note"
|
29
|
+
fi
|
30
|
+
|
31
|
+
# Initialize the local directory as a Git repository
|
32
|
+
git init
|
33
|
+
|
34
|
+
# Adds the files in the local repository and stages them for commit.
|
35
|
+
git add .
|
36
|
+
|
37
|
+
# Commits the tracked changes and prepares them to be pushed to a remote repository.
|
38
|
+
git commit -m "$release_note"
|
39
|
+
|
40
|
+
# Sets the new remote
|
41
|
+
git_remote=`git remote`
|
42
|
+
if [ "$git_remote" = "" ]; then # git remote not defined
|
43
|
+
|
44
|
+
if [ "$GIT_TOKEN" = "" ]; then
|
45
|
+
echo "[INFO] \$GIT_TOKEN (environment variable) is not set. Using the git credential in your environment."
|
46
|
+
git remote add origin https://${git_host}/${git_user_id}/${git_repo_id}.git
|
47
|
+
else
|
48
|
+
git remote add origin https://${git_user_id}:${GIT_TOKEN}@${git_host}/${git_user_id}/${git_repo_id}.git
|
49
|
+
fi
|
50
|
+
|
51
|
+
fi
|
52
|
+
|
53
|
+
git pull origin master
|
54
|
+
|
55
|
+
# Pushes (Forces) the changes in the local repository up to the remote repository
|
56
|
+
echo "Git pushing to https://${git_host}/${git_user_id}/${git_repo_id}.git"
|
57
|
+
git push origin master 2>&1 | grep -v 'To https'
|
58
|
+
|
@@ -154,7 +154,7 @@ module PulpContainerClient
|
|
154
154
|
case value
|
155
155
|
when ::File, ::Tempfile
|
156
156
|
# TODO hardcode to application/octet-stream, need better way to detect content type
|
157
|
-
data[key] = Faraday::
|
157
|
+
data[key] = Faraday::UploadIO.new(value.path, 'application/octet-stream', value.path)
|
158
158
|
when ::Array, nil
|
159
159
|
# let Faraday handle Array and nil parameters
|
160
160
|
data[key] = value
|
@@ -17,18 +17,18 @@ module PulpContainerClient
|
|
17
17
|
class ContainerContainerDistribution
|
18
18
|
attr_accessor :pulp_labels
|
19
19
|
|
20
|
-
#
|
21
|
-
attr_accessor :
|
20
|
+
# The latest RepositoryVersion for this Repository will be served.
|
21
|
+
attr_accessor :repository
|
22
22
|
|
23
23
|
# 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
24
|
attr_accessor :base_path
|
25
25
|
|
26
|
+
# A unique name. Ex, `rawhide` and `stable`.
|
27
|
+
attr_accessor :name
|
28
|
+
|
26
29
|
# An optional content-guard. If none is specified, a default one will be used.
|
27
30
|
attr_accessor :content_guard
|
28
31
|
|
29
|
-
# The latest RepositoryVersion for this Repository will be served.
|
30
|
-
attr_accessor :repository
|
31
|
-
|
32
32
|
# RepositoryVersion to be served
|
33
33
|
attr_accessor :repository_version
|
34
34
|
|
@@ -42,10 +42,10 @@ module PulpContainerClient
|
|
42
42
|
def self.attribute_map
|
43
43
|
{
|
44
44
|
:'pulp_labels' => :'pulp_labels',
|
45
|
-
:'
|
45
|
+
:'repository' => :'repository',
|
46
46
|
:'base_path' => :'base_path',
|
47
|
+
:'name' => :'name',
|
47
48
|
:'content_guard' => :'content_guard',
|
48
|
-
:'repository' => :'repository',
|
49
49
|
:'repository_version' => :'repository_version',
|
50
50
|
:'private' => :'private',
|
51
51
|
:'description' => :'description'
|
@@ -56,10 +56,10 @@ module PulpContainerClient
|
|
56
56
|
def self.openapi_types
|
57
57
|
{
|
58
58
|
:'pulp_labels' => :'Object',
|
59
|
-
:'
|
59
|
+
:'repository' => :'String',
|
60
60
|
:'base_path' => :'String',
|
61
|
+
:'name' => :'String',
|
61
62
|
:'content_guard' => :'String',
|
62
|
-
:'repository' => :'String',
|
63
63
|
:'repository_version' => :'String',
|
64
64
|
:'private' => :'Boolean',
|
65
65
|
:'description' => :'String'
|
@@ -94,20 +94,20 @@ module PulpContainerClient
|
|
94
94
|
self.pulp_labels = attributes[:'pulp_labels']
|
95
95
|
end
|
96
96
|
|
97
|
-
if attributes.key?(:'
|
98
|
-
self.
|
97
|
+
if attributes.key?(:'repository')
|
98
|
+
self.repository = attributes[:'repository']
|
99
99
|
end
|
100
100
|
|
101
101
|
if attributes.key?(:'base_path')
|
102
102
|
self.base_path = attributes[:'base_path']
|
103
103
|
end
|
104
104
|
|
105
|
-
if attributes.key?(:'
|
106
|
-
self.
|
105
|
+
if attributes.key?(:'name')
|
106
|
+
self.name = attributes[:'name']
|
107
107
|
end
|
108
108
|
|
109
|
-
if attributes.key?(:'
|
110
|
-
self.
|
109
|
+
if attributes.key?(:'content_guard')
|
110
|
+
self.content_guard = attributes[:'content_guard']
|
111
111
|
end
|
112
112
|
|
113
113
|
if attributes.key?(:'repository_version')
|
@@ -127,14 +127,6 @@ 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?
|
131
|
-
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
132
|
-
end
|
133
|
-
|
134
|
-
if @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
130
|
if @base_path.nil?
|
139
131
|
invalid_properties.push('invalid value for "base_path", base_path cannot be nil.')
|
140
132
|
end
|
@@ -143,6 +135,14 @@ module PulpContainerClient
|
|
143
135
|
invalid_properties.push('invalid value for "base_path", the character length must be great than or equal to 1.')
|
144
136
|
end
|
145
137
|
|
138
|
+
if @name.nil?
|
139
|
+
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
140
|
+
end
|
141
|
+
|
142
|
+
if @name.to_s.length < 1
|
143
|
+
invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
|
144
|
+
end
|
145
|
+
|
146
146
|
if !@description.nil? && @description.to_s.length < 1
|
147
147
|
invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
|
148
148
|
end
|
@@ -153,28 +153,14 @@ module PulpContainerClient
|
|
153
153
|
# Check to see if the all the properties in the model are valid
|
154
154
|
# @return true if the model is valid
|
155
155
|
def valid?
|
156
|
-
return false if @name.nil?
|
157
|
-
return false if @name.to_s.length < 1
|
158
156
|
return false if @base_path.nil?
|
159
157
|
return false if @base_path.to_s.length < 1
|
158
|
+
return false if @name.nil?
|
159
|
+
return false if @name.to_s.length < 1
|
160
160
|
return false if !@description.nil? && @description.to_s.length < 1
|
161
161
|
true
|
162
162
|
end
|
163
163
|
|
164
|
-
# Custom attribute writer method with validation
|
165
|
-
# @param [Object] name Value to be assigned
|
166
|
-
def name=(name)
|
167
|
-
if name.nil?
|
168
|
-
fail ArgumentError, 'name cannot be nil'
|
169
|
-
end
|
170
|
-
|
171
|
-
if name.to_s.length < 1
|
172
|
-
fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
|
173
|
-
end
|
174
|
-
|
175
|
-
@name = name
|
176
|
-
end
|
177
|
-
|
178
164
|
# Custom attribute writer method with validation
|
179
165
|
# @param [Object] base_path Value to be assigned
|
180
166
|
def base_path=(base_path)
|
@@ -189,6 +175,20 @@ module PulpContainerClient
|
|
189
175
|
@base_path = base_path
|
190
176
|
end
|
191
177
|
|
178
|
+
# Custom attribute writer method with validation
|
179
|
+
# @param [Object] name Value to be assigned
|
180
|
+
def name=(name)
|
181
|
+
if name.nil?
|
182
|
+
fail ArgumentError, 'name cannot be nil'
|
183
|
+
end
|
184
|
+
|
185
|
+
if name.to_s.length < 1
|
186
|
+
fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
|
187
|
+
end
|
188
|
+
|
189
|
+
@name = name
|
190
|
+
end
|
191
|
+
|
192
192
|
# Custom attribute writer method with validation
|
193
193
|
# @param [Object] description Value to be assigned
|
194
194
|
def description=(description)
|
@@ -205,10 +205,10 @@ module PulpContainerClient
|
|
205
205
|
return true if self.equal?(o)
|
206
206
|
self.class == o.class &&
|
207
207
|
pulp_labels == o.pulp_labels &&
|
208
|
-
|
208
|
+
repository == o.repository &&
|
209
209
|
base_path == o.base_path &&
|
210
|
+
name == o.name &&
|
210
211
|
content_guard == o.content_guard &&
|
211
|
-
repository == o.repository &&
|
212
212
|
repository_version == o.repository_version &&
|
213
213
|
private == o.private &&
|
214
214
|
description == o.description
|
@@ -223,7 +223,7 @@ module PulpContainerClient
|
|
223
223
|
# Calculates hash code according to all attributes.
|
224
224
|
# @return [Integer] Hash code
|
225
225
|
def hash
|
226
|
-
[pulp_labels,
|
226
|
+
[pulp_labels, repository, base_path, name, content_guard, repository_version, private, description].hash
|
227
227
|
end
|
228
228
|
|
229
229
|
# Builds the object from hash
|
@@ -17,10 +17,8 @@ module PulpContainerClient
|
|
17
17
|
class ContainerContainerDistributionResponse
|
18
18
|
attr_accessor :pulp_labels
|
19
19
|
|
20
|
-
|
21
|
-
|
22
|
-
# A unique name. Ex, `rawhide` and `stable`.
|
23
|
-
attr_accessor :name
|
20
|
+
# The latest RepositoryVersion for this Repository will be served.
|
21
|
+
attr_accessor :repository
|
24
22
|
|
25
23
|
# The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
|
26
24
|
attr_accessor :base_path
|
@@ -28,12 +26,14 @@ module PulpContainerClient
|
|
28
26
|
# Timestamp of creation.
|
29
27
|
attr_accessor :pulp_created
|
30
28
|
|
29
|
+
# A unique name. Ex, `rawhide` and `stable`.
|
30
|
+
attr_accessor :name
|
31
|
+
|
32
|
+
attr_accessor :pulp_href
|
33
|
+
|
31
34
|
# An optional content-guard. If none is specified, a default one will be used.
|
32
35
|
attr_accessor :content_guard
|
33
36
|
|
34
|
-
# The latest RepositoryVersion for this Repository will be served.
|
35
|
-
attr_accessor :repository
|
36
|
-
|
37
37
|
# RepositoryVersion to be served
|
38
38
|
attr_accessor :repository_version
|
39
39
|
|
@@ -53,12 +53,12 @@ module PulpContainerClient
|
|
53
53
|
def self.attribute_map
|
54
54
|
{
|
55
55
|
:'pulp_labels' => :'pulp_labels',
|
56
|
-
:'
|
57
|
-
:'name' => :'name',
|
56
|
+
:'repository' => :'repository',
|
58
57
|
:'base_path' => :'base_path',
|
59
58
|
:'pulp_created' => :'pulp_created',
|
59
|
+
:'name' => :'name',
|
60
|
+
:'pulp_href' => :'pulp_href',
|
60
61
|
:'content_guard' => :'content_guard',
|
61
|
-
:'repository' => :'repository',
|
62
62
|
:'repository_version' => :'repository_version',
|
63
63
|
:'registry_path' => :'registry_path',
|
64
64
|
:'namespace' => :'namespace',
|
@@ -71,12 +71,12 @@ module PulpContainerClient
|
|
71
71
|
def self.openapi_types
|
72
72
|
{
|
73
73
|
:'pulp_labels' => :'Object',
|
74
|
-
:'
|
75
|
-
:'name' => :'String',
|
74
|
+
:'repository' => :'String',
|
76
75
|
:'base_path' => :'String',
|
77
76
|
:'pulp_created' => :'DateTime',
|
77
|
+
:'name' => :'String',
|
78
|
+
:'pulp_href' => :'String',
|
78
79
|
:'content_guard' => :'String',
|
79
|
-
:'repository' => :'String',
|
80
80
|
:'repository_version' => :'String',
|
81
81
|
:'registry_path' => :'String',
|
82
82
|
:'namespace' => :'String',
|
@@ -113,12 +113,8 @@ module PulpContainerClient
|
|
113
113
|
self.pulp_labels = attributes[:'pulp_labels']
|
114
114
|
end
|
115
115
|
|
116
|
-
if attributes.key?(:'
|
117
|
-
self.
|
118
|
-
end
|
119
|
-
|
120
|
-
if attributes.key?(:'name')
|
121
|
-
self.name = attributes[:'name']
|
116
|
+
if attributes.key?(:'repository')
|
117
|
+
self.repository = attributes[:'repository']
|
122
118
|
end
|
123
119
|
|
124
120
|
if attributes.key?(:'base_path')
|
@@ -129,12 +125,16 @@ module PulpContainerClient
|
|
129
125
|
self.pulp_created = attributes[:'pulp_created']
|
130
126
|
end
|
131
127
|
|
132
|
-
if attributes.key?(:'
|
133
|
-
self.
|
128
|
+
if attributes.key?(:'name')
|
129
|
+
self.name = attributes[:'name']
|
134
130
|
end
|
135
131
|
|
136
|
-
if attributes.key?(:'
|
137
|
-
self.
|
132
|
+
if attributes.key?(:'pulp_href')
|
133
|
+
self.pulp_href = attributes[:'pulp_href']
|
134
|
+
end
|
135
|
+
|
136
|
+
if attributes.key?(:'content_guard')
|
137
|
+
self.content_guard = attributes[:'content_guard']
|
138
138
|
end
|
139
139
|
|
140
140
|
if attributes.key?(:'repository_version')
|
@@ -162,22 +162,22 @@ module PulpContainerClient
|
|
162
162
|
# @return Array for valid properties with the reasons
|
163
163
|
def list_invalid_properties
|
164
164
|
invalid_properties = Array.new
|
165
|
-
if @name.nil?
|
166
|
-
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
167
|
-
end
|
168
|
-
|
169
165
|
if @base_path.nil?
|
170
166
|
invalid_properties.push('invalid value for "base_path", base_path cannot be nil.')
|
171
167
|
end
|
172
168
|
|
169
|
+
if @name.nil?
|
170
|
+
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
171
|
+
end
|
172
|
+
|
173
173
|
invalid_properties
|
174
174
|
end
|
175
175
|
|
176
176
|
# Check to see if the all the properties in the model are valid
|
177
177
|
# @return true if the model is valid
|
178
178
|
def valid?
|
179
|
-
return false if @name.nil?
|
180
179
|
return false if @base_path.nil?
|
180
|
+
return false if @name.nil?
|
181
181
|
true
|
182
182
|
end
|
183
183
|
|
@@ -187,12 +187,12 @@ module PulpContainerClient
|
|
187
187
|
return true if self.equal?(o)
|
188
188
|
self.class == o.class &&
|
189
189
|
pulp_labels == o.pulp_labels &&
|
190
|
-
|
191
|
-
name == o.name &&
|
190
|
+
repository == o.repository &&
|
192
191
|
base_path == o.base_path &&
|
193
192
|
pulp_created == o.pulp_created &&
|
193
|
+
name == o.name &&
|
194
|
+
pulp_href == o.pulp_href &&
|
194
195
|
content_guard == o.content_guard &&
|
195
|
-
repository == o.repository &&
|
196
196
|
repository_version == o.repository_version &&
|
197
197
|
registry_path == o.registry_path &&
|
198
198
|
namespace == o.namespace &&
|
@@ -209,7 +209,7 @@ module PulpContainerClient
|
|
209
209
|
# Calculates hash code according to all attributes.
|
210
210
|
# @return [Integer] Hash code
|
211
211
|
def hash
|
212
|
-
[pulp_labels,
|
212
|
+
[pulp_labels, repository, base_path, pulp_created, name, pulp_href, content_guard, repository_version, registry_path, namespace, private, description].hash
|
213
213
|
end
|
214
214
|
|
215
215
|
# Builds the object from hash
|