pulp_container_client 2.4.0.dev01613359303 → 2.4.0.dev01613964104
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.
Potentially problematic release.
This version of pulp_container_client might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/README.md +17 -16
- data/docs/ContainerContainerDistribution.md +5 -5
- data/docs/ContainerContainerDistributionResponse.md +7 -7
- data/docs/ContentBlobsApi.md +12 -12
- data/docs/ContentManifestsApi.md +12 -12
- data/docs/ContentTagsApi.md +14 -14
- data/docs/{ContentGuardsContentRedirectApi.md → ContentguardsContentRedirectApi.md} +29 -29
- data/docs/DistributionsContainerApi.md +22 -22
- data/docs/ManifestCopy.md +1 -1
- data/docs/MediaTypesEnum.md +16 -0
- data/docs/PatchedcontainerContainerDistribution.md +5 -5
- data/docs/PulpContainerNamespacesApi.md +10 -10
- data/docs/RemotesContainerApi.md +24 -24
- data/docs/RepositoriesContainerApi.md +12 -12
- data/docs/RepositoriesContainerPushApi.md +12 -12
- data/docs/RepositoriesContainerVersionsApi.md +56 -56
- data/lib/pulp_container_client.rb +2 -1
- data/lib/pulp_container_client/api/content_blobs_api.rb +14 -14
- data/lib/pulp_container_client/api/content_manifests_api.rb +14 -14
- data/lib/pulp_container_client/api/content_tags_api.rb +17 -17
- data/lib/pulp_container_client/api/{content_guards_content_redirect_api.rb → contentguards_content_redirect_api.rb} +33 -33
- data/lib/pulp_container_client/api/distributions_container_api.rb +24 -24
- data/lib/pulp_container_client/api/pulp_container_namespaces_api.rb +11 -11
- data/lib/pulp_container_client/api/remotes_container_api.rb +26 -26
- data/lib/pulp_container_client/api/repositories_container_api.rb +13 -13
- data/lib/pulp_container_client/api/repositories_container_push_api.rb +13 -13
- data/lib/pulp_container_client/api/repositories_container_versions_api.rb +100 -60
- data/lib/pulp_container_client/models/container_container_distribution.rb +23 -23
- data/lib/pulp_container_client/models/container_container_distribution_response.rb +33 -33
- data/lib/pulp_container_client/models/manifest_copy.rb +1 -23
- data/lib/pulp_container_client/models/media_types_enum.rb +39 -0
- data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +18 -18
- data/lib/pulp_container_client/version.rb +1 -1
- data/spec/api/content_blobs_api_spec.rb +6 -6
- data/spec/api/content_manifests_api_spec.rb +6 -6
- data/spec/api/content_tags_api_spec.rb +7 -7
- data/spec/api/{content_guards_content_redirect_api_spec.rb → contentguards_content_redirect_api_spec.rb} +11 -11
- data/spec/api/distributions_container_api_spec.rb +11 -11
- data/spec/api/pulp_container_namespaces_api_spec.rb +5 -5
- data/spec/api/remotes_container_api_spec.rb +12 -12
- data/spec/api/repositories_container_api_spec.rb +6 -6
- data/spec/api/repositories_container_push_api_spec.rb +6 -6
- data/spec/api/repositories_container_versions_api_spec.rb +28 -28
- data/spec/models/container_container_distribution_response_spec.rb +5 -5
- data/spec/models/container_container_distribution_spec.rb +3 -3
- data/spec/models/manifest_copy_spec.rb +0 -4
- data/spec/models/media_types_enum_spec.rb +35 -0
- data/spec/models/patchedcontainer_container_distribution_spec.rb +3 -3
- metadata +10 -6
@@ -61,11 +61,11 @@ describe 'PulpContainerNamespacesApi' do
|
|
61
61
|
# ViewSet for ContainerNamespaces.
|
62
62
|
# @param [Hash] opts the optional parameters
|
63
63
|
# @option opts [Integer] :limit Number of results to return per page.
|
64
|
-
# @option opts [String] :name name
|
65
|
-
# @option opts [String] :name__contains
|
66
|
-
# @option opts [String] :name__icontains
|
67
|
-
# @option opts [String] :name__in
|
68
|
-
# @option opts [String] :name__startswith
|
64
|
+
# @option opts [String] :name Filter results where name matches value
|
65
|
+
# @option opts [String] :name__contains Filter results where name contains value
|
66
|
+
# @option opts [String] :name__icontains Filter results where name contains value
|
67
|
+
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
68
|
+
# @option opts [String] :name__startswith Filter results where name starts with value
|
69
69
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
70
70
|
# @option opts [String] :ordering Which field to use when ordering the results.
|
71
71
|
# @option opts [String] :fields A list of fields to include in the response.
|
@@ -61,20 +61,20 @@ describe 'RemotesContainerApi' do
|
|
61
61
|
# Container remotes represent an external repository that implements the Container Registry API. Container remotes support deferred downloading by configuring the ``policy`` field. ``on_demand`` and ``streamed`` policies can provide significant disk space savings.
|
62
62
|
# @param [Hash] opts the optional parameters
|
63
63
|
# @option opts [Integer] :limit Number of results to return per page.
|
64
|
-
# @option opts [String] :name
|
65
|
-
# @option opts [String] :name__contains
|
66
|
-
# @option opts [String] :name__icontains
|
67
|
-
# @option opts [String] :name__in
|
68
|
-
# @option opts [String] :name__startswith
|
64
|
+
# @option opts [String] :name
|
65
|
+
# @option opts [String] :name__contains Filter results where name contains value
|
66
|
+
# @option opts [String] :name__icontains Filter results where name contains value
|
67
|
+
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
68
|
+
# @option opts [String] :name__startswith Filter results where name starts with value
|
69
69
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
70
70
|
# @option opts [String] :ordering Which field to use when ordering the results.
|
71
|
-
# @option opts [String] :pulp_label_select
|
72
|
-
# @option opts [
|
73
|
-
# @option opts [
|
74
|
-
# @option opts [
|
75
|
-
# @option opts [
|
76
|
-
# @option opts [
|
77
|
-
# @option opts [
|
71
|
+
# @option opts [String] :pulp_label_select Filter labels by search string
|
72
|
+
# @option opts [DateTime] :pulp_last_updated ISO 8601 formatted dates are supported
|
73
|
+
# @option opts [DateTime] :pulp_last_updated__gt Filter results where pulp_last_updated is greater than value
|
74
|
+
# @option opts [DateTime] :pulp_last_updated__gte Filter results where pulp_last_updated is greater than or equal to value
|
75
|
+
# @option opts [DateTime] :pulp_last_updated__lt Filter results where pulp_last_updated is less than value
|
76
|
+
# @option opts [DateTime] :pulp_last_updated__lte Filter results where pulp_last_updated is less than or equal to value
|
77
|
+
# @option opts [Array<DateTime>] :pulp_last_updated__range Filter results where pulp_last_updated is between two comma separated values
|
78
78
|
# @option opts [String] :fields A list of fields to include in the response.
|
79
79
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
80
80
|
# @return [PaginatedcontainerContainerRemoteResponseList]
|
@@ -116,14 +116,14 @@ describe 'RepositoriesContainerApi' do
|
|
116
116
|
# ViewSet for container repo.
|
117
117
|
# @param [Hash] opts the optional parameters
|
118
118
|
# @option opts [Integer] :limit Number of results to return per page.
|
119
|
-
# @option opts [String] :name
|
120
|
-
# @option opts [String] :name__contains
|
121
|
-
# @option opts [String] :name__icontains
|
122
|
-
# @option opts [String] :name__in
|
123
|
-
# @option opts [String] :name__startswith
|
119
|
+
# @option opts [String] :name
|
120
|
+
# @option opts [String] :name__contains Filter results where name contains value
|
121
|
+
# @option opts [String] :name__icontains Filter results where name contains value
|
122
|
+
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
123
|
+
# @option opts [String] :name__startswith Filter results where name starts with value
|
124
124
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
125
125
|
# @option opts [String] :ordering Which field to use when ordering the results.
|
126
|
-
# @option opts [String] :pulp_label_select
|
126
|
+
# @option opts [String] :pulp_label_select Filter labels by search string
|
127
127
|
# @option opts [String] :fields A list of fields to include in the response.
|
128
128
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
129
129
|
# @return [PaginatedcontainerContainerRepositoryResponseList]
|
@@ -37,14 +37,14 @@ describe 'RepositoriesContainerPushApi' do
|
|
37
37
|
# ViewSet for a container push repository. POST and DELETE are disallowed because a push repository is tightly coupled with a ContainerDistribution which handles it automatically. Created - during push operation, removed - with ContainerDistribution removal.
|
38
38
|
# @param [Hash] opts the optional parameters
|
39
39
|
# @option opts [Integer] :limit Number of results to return per page.
|
40
|
-
# @option opts [String] :name
|
41
|
-
# @option opts [String] :name__contains
|
42
|
-
# @option opts [String] :name__icontains
|
43
|
-
# @option opts [String] :name__in
|
44
|
-
# @option opts [String] :name__startswith
|
40
|
+
# @option opts [String] :name
|
41
|
+
# @option opts [String] :name__contains Filter results where name contains value
|
42
|
+
# @option opts [String] :name__icontains Filter results where name contains value
|
43
|
+
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
44
|
+
# @option opts [String] :name__startswith Filter results where name starts with value
|
45
45
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
46
46
|
# @option opts [String] :ordering Which field to use when ordering the results.
|
47
|
-
# @option opts [String] :pulp_label_select
|
47
|
+
# @option opts [String] :pulp_label_select Filter labels by search string
|
48
48
|
# @option opts [String] :fields A list of fields to include in the response.
|
49
49
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
50
50
|
# @return [PaginatedcontainerContainerPushRepositoryResponseList]
|
@@ -61,23 +61,23 @@ describe 'RepositoriesContainerVersionsApi' do
|
|
61
61
|
# ContainerPushRepositoryVersion represents a single container push repository version. Repository versions of a push repository are not allowed to be deleted. Versioning of such repositories, as well as creation/removal, happens automatically without explicit user actions. Users could make a repository not functional by accident if allowed to delete repository versions.
|
62
62
|
# @param container_container_push_repository_href
|
63
63
|
# @param [Hash] opts the optional parameters
|
64
|
-
# @option opts [String] :content
|
65
|
-
# @option opts [String] :content__in
|
64
|
+
# @option opts [String] :content Content Unit referenced by HREF
|
65
|
+
# @option opts [String] :content__in Content Unit referenced by HREF
|
66
66
|
# @option opts [Integer] :limit Number of results to return per page.
|
67
|
-
# @option opts [
|
68
|
-
# @option opts [
|
69
|
-
# @option opts [
|
70
|
-
# @option opts [
|
71
|
-
# @option opts [
|
72
|
-
# @option opts [
|
67
|
+
# @option opts [Integer] :number
|
68
|
+
# @option opts [Integer] :number__gt Filter results where number is greater than value
|
69
|
+
# @option opts [Integer] :number__gte Filter results where number is greater than or equal to value
|
70
|
+
# @option opts [Integer] :number__lt Filter results where number is less than value
|
71
|
+
# @option opts [Integer] :number__lte Filter results where number is less than or equal to value
|
72
|
+
# @option opts [Array<Integer>] :number__range Filter results where number is between two comma separated values
|
73
73
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
74
74
|
# @option opts [String] :ordering Which field to use when ordering the results.
|
75
|
-
# @option opts [
|
76
|
-
# @option opts [
|
77
|
-
# @option opts [
|
78
|
-
# @option opts [
|
79
|
-
# @option opts [
|
80
|
-
# @option opts [
|
75
|
+
# @option opts [DateTime] :pulp_created ISO 8601 formatted dates are supported
|
76
|
+
# @option opts [DateTime] :pulp_created__gt Filter results where pulp_created is greater than value
|
77
|
+
# @option opts [DateTime] :pulp_created__gte Filter results where pulp_created is greater than or equal to value
|
78
|
+
# @option opts [DateTime] :pulp_created__lt Filter results where pulp_created is less than value
|
79
|
+
# @option opts [DateTime] :pulp_created__lte Filter results where pulp_created is less than or equal to value
|
80
|
+
# @option opts [Array<DateTime>] :pulp_created__range Filter results where pulp_created is between two comma separated values
|
81
81
|
# @option opts [String] :fields A list of fields to include in the response.
|
82
82
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
83
83
|
# @return [PaginatedRepositoryVersionResponseList]
|
@@ -92,23 +92,23 @@ describe 'RepositoriesContainerVersionsApi' do
|
|
92
92
|
# ContainerRepositoryVersion represents a single container repository version.
|
93
93
|
# @param container_container_repository_href
|
94
94
|
# @param [Hash] opts the optional parameters
|
95
|
-
# @option opts [String] :content
|
96
|
-
# @option opts [String] :content__in
|
95
|
+
# @option opts [String] :content Content Unit referenced by HREF
|
96
|
+
# @option opts [String] :content__in Content Unit referenced by HREF
|
97
97
|
# @option opts [Integer] :limit Number of results to return per page.
|
98
|
-
# @option opts [
|
99
|
-
# @option opts [
|
100
|
-
# @option opts [
|
101
|
-
# @option opts [
|
102
|
-
# @option opts [
|
103
|
-
# @option opts [
|
98
|
+
# @option opts [Integer] :number
|
99
|
+
# @option opts [Integer] :number__gt Filter results where number is greater than value
|
100
|
+
# @option opts [Integer] :number__gte Filter results where number is greater than or equal to value
|
101
|
+
# @option opts [Integer] :number__lt Filter results where number is less than value
|
102
|
+
# @option opts [Integer] :number__lte Filter results where number is less than or equal to value
|
103
|
+
# @option opts [Array<Integer>] :number__range Filter results where number is between two comma separated values
|
104
104
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
105
105
|
# @option opts [String] :ordering Which field to use when ordering the results.
|
106
|
-
# @option opts [
|
107
|
-
# @option opts [
|
108
|
-
# @option opts [
|
109
|
-
# @option opts [
|
110
|
-
# @option opts [
|
111
|
-
# @option opts [
|
106
|
+
# @option opts [DateTime] :pulp_created ISO 8601 formatted dates are supported
|
107
|
+
# @option opts [DateTime] :pulp_created__gt Filter results where pulp_created is greater than value
|
108
|
+
# @option opts [DateTime] :pulp_created__gte Filter results where pulp_created is greater than or equal to value
|
109
|
+
# @option opts [DateTime] :pulp_created__lt Filter results where pulp_created is less than value
|
110
|
+
# @option opts [DateTime] :pulp_created__lte Filter results where pulp_created is less than or equal to value
|
111
|
+
# @option opts [Array<DateTime>] :pulp_created__range Filter results where pulp_created is between two comma separated values
|
112
112
|
# @option opts [String] :fields A list of fields to include in the response.
|
113
113
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
114
114
|
# @return [PaginatedRepositoryVersionResponseList]
|
@@ -32,31 +32,31 @@ 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 "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_created"' do
|
60
60
|
it 'should work' do
|
61
61
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
62
|
end
|
@@ -32,13 +32,13 @@ 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
|
@@ -50,7 +50,7 @@ describe 'ContainerContainerDistribution' do
|
|
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
|
@@ -53,10 +53,6 @@ describe 'ManifestCopy' do
|
|
53
53
|
describe 'test attribute "media_types"' do
|
54
54
|
it 'should work' do
|
55
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
|
-
# validator = Petstore::EnumTest::EnumAttributeValidator.new('Array<String>', ["application/vnd.docker.distribution.manifest.v1+json", "application/vnd.docker.distribution.manifest.v2+json", "application/vnd.docker.distribution.manifest.list.v2+json", "application/vnd.oci.image.manifest.v1+json", "application/vnd.oci.image.index.v1+json"])
|
57
|
-
# validator.allowable_values.each do |value|
|
58
|
-
# expect { @instance.media_types = value }.not_to raise_error
|
59
|
-
# end
|
60
56
|
end
|
61
57
|
end
|
62
58
|
|
@@ -0,0 +1,35 @@
|
|
1
|
+
=begin
|
2
|
+
#Pulp 3 API
|
3
|
+
|
4
|
+
#Fetch, Upload, Organize, and Distribute Software Packages
|
5
|
+
|
6
|
+
The version of the OpenAPI document: v3
|
7
|
+
Contact: pulp-list@redhat.com
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 4.2.3
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for PulpContainerClient::MediaTypesEnum
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'MediaTypesEnum' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = PulpContainerClient::MediaTypesEnum.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of MediaTypesEnum' do
|
31
|
+
it 'should create an instance of MediaTypesEnum' do
|
32
|
+
expect(@instance).to be_instance_of(PulpContainerClient::MediaTypesEnum)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -32,13 +32,13 @@ describe 'PatchedcontainerContainerDistribution' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpContainerClient::PatchedcontainerContainerDistribution)
|
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
|
@@ -50,7 +50,7 @@ describe 'PatchedcontainerContainerDistribution' do
|
|
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
|
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.4.0.
|
4
|
+
version: 2.4.0.dev01613964104
|
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-02-
|
11
|
+
date: 2021-02-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -90,13 +90,14 @@ files:
|
|
90
90
|
- docs/ContainerManifestResponse.md
|
91
91
|
- docs/ContainerTagResponse.md
|
92
92
|
- docs/ContentBlobsApi.md
|
93
|
-
- docs/ContentGuardsContentRedirectApi.md
|
94
93
|
- docs/ContentManifestsApi.md
|
95
94
|
- docs/ContentSummary.md
|
96
95
|
- docs/ContentSummaryResponse.md
|
97
96
|
- docs/ContentTagsApi.md
|
97
|
+
- docs/ContentguardsContentRedirectApi.md
|
98
98
|
- docs/DistributionsContainerApi.md
|
99
99
|
- docs/ManifestCopy.md
|
100
|
+
- docs/MediaTypesEnum.md
|
100
101
|
- docs/OCIBuildImage.md
|
101
102
|
- docs/PaginatedRepositoryVersionResponseList.md
|
102
103
|
- docs/PaginatedcontainerBlobResponseList.md
|
@@ -129,9 +130,9 @@ files:
|
|
129
130
|
- git_push.sh
|
130
131
|
- lib/pulp_container_client.rb
|
131
132
|
- lib/pulp_container_client/api/content_blobs_api.rb
|
132
|
-
- lib/pulp_container_client/api/content_guards_content_redirect_api.rb
|
133
133
|
- lib/pulp_container_client/api/content_manifests_api.rb
|
134
134
|
- lib/pulp_container_client/api/content_tags_api.rb
|
135
|
+
- lib/pulp_container_client/api/contentguards_content_redirect_api.rb
|
135
136
|
- lib/pulp_container_client/api/distributions_container_api.rb
|
136
137
|
- lib/pulp_container_client/api/pulp_container_namespaces_api.rb
|
137
138
|
- lib/pulp_container_client/api/remotes_container_api.rb
|
@@ -160,6 +161,7 @@ files:
|
|
160
161
|
- lib/pulp_container_client/models/content_summary.rb
|
161
162
|
- lib/pulp_container_client/models/content_summary_response.rb
|
162
163
|
- lib/pulp_container_client/models/manifest_copy.rb
|
164
|
+
- lib/pulp_container_client/models/media_types_enum.rb
|
163
165
|
- lib/pulp_container_client/models/oci_build_image.rb
|
164
166
|
- lib/pulp_container_client/models/paginated_repository_version_response_list.rb
|
165
167
|
- lib/pulp_container_client/models/paginatedcontainer_blob_response_list.rb
|
@@ -186,9 +188,9 @@ files:
|
|
186
188
|
- lib/pulp_container_client/version.rb
|
187
189
|
- pulp_container_client.gemspec
|
188
190
|
- spec/api/content_blobs_api_spec.rb
|
189
|
-
- spec/api/content_guards_content_redirect_api_spec.rb
|
190
191
|
- spec/api/content_manifests_api_spec.rb
|
191
192
|
- spec/api/content_tags_api_spec.rb
|
193
|
+
- spec/api/contentguards_content_redirect_api_spec.rb
|
192
194
|
- spec/api/distributions_container_api_spec.rb
|
193
195
|
- spec/api/pulp_container_namespaces_api_spec.rb
|
194
196
|
- spec/api/remotes_container_api_spec.rb
|
@@ -216,6 +218,7 @@ files:
|
|
216
218
|
- spec/models/content_summary_response_spec.rb
|
217
219
|
- spec/models/content_summary_spec.rb
|
218
220
|
- spec/models/manifest_copy_spec.rb
|
221
|
+
- spec/models/media_types_enum_spec.rb
|
219
222
|
- spec/models/oci_build_image_spec.rb
|
220
223
|
- spec/models/paginated_repository_version_response_list_spec.rb
|
221
224
|
- spec/models/paginatedcontainer_blob_response_list_spec.rb
|
@@ -266,10 +269,10 @@ summary: Pulp 3 API Ruby Gem
|
|
266
269
|
test_files:
|
267
270
|
- spec/api/pulp_container_namespaces_api_spec.rb
|
268
271
|
- spec/api/content_blobs_api_spec.rb
|
272
|
+
- spec/api/contentguards_content_redirect_api_spec.rb
|
269
273
|
- spec/api/repositories_container_versions_api_spec.rb
|
270
274
|
- spec/api/repositories_container_api_spec.rb
|
271
275
|
- spec/api/repositories_container_push_api_spec.rb
|
272
|
-
- spec/api/content_guards_content_redirect_api_spec.rb
|
273
276
|
- spec/api/content_manifests_api_spec.rb
|
274
277
|
- spec/api/content_tags_api_spec.rb
|
275
278
|
- spec/api/remotes_container_api_spec.rb
|
@@ -284,6 +287,7 @@ test_files:
|
|
284
287
|
- spec/models/repository_version_response_spec.rb
|
285
288
|
- spec/models/async_operation_response_spec.rb
|
286
289
|
- spec/models/paginatedcontainer_container_distribution_response_list_spec.rb
|
290
|
+
- spec/models/media_types_enum_spec.rb
|
287
291
|
- spec/models/content_summary_response_spec.rb
|
288
292
|
- spec/models/paginatedcontainer_container_namespace_response_list_spec.rb
|
289
293
|
- spec/models/paginated_repository_version_response_list_spec.rb
|