pulp_container_client 2.10.13 → 2.11.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 +41 -17
- data/docs/ContainerBlobResponse.md +1 -3
- data/docs/ContainerContainerDistribution.md +5 -5
- data/docs/ContainerContainerDistributionResponse.md +9 -9
- data/docs/ContainerContainerPushRepository.md +7 -5
- data/docs/ContainerContainerPushRepositoryResponse.md +14 -12
- data/docs/ContainerContainerRemote.md +3 -1
- data/docs/ContainerContainerRemoteResponse.md +3 -1
- data/docs/ContainerContainerRepository.md +3 -1
- data/docs/ContainerContainerRepositoryResponse.md +3 -1
- data/docs/ContainerManifestSignatureResponse.md +33 -0
- data/docs/{RepositorySyncURL.md → ContainerRepositorySyncURL.md} +5 -3
- data/docs/ContentBlobsApi.md +0 -2
- data/docs/ContentSignaturesApi.md +158 -0
- data/docs/ContentSummary.md +21 -0
- data/docs/DistributionsContainerApi.md +228 -0
- data/docs/MyPermissionsResponse.md +17 -0
- data/docs/NestedRole.md +21 -0
- data/docs/NestedRoleResponse.md +21 -0
- data/docs/ObjectRolesResponse.md +17 -0
- data/docs/{PaginatedcontainerContentRedirectContentGuardResponseList.md → PaginatedcontainerManifestSignatureResponseList.md} +3 -3
- data/docs/PatchedcontainerContainerDistribution.md +5 -5
- data/docs/PatchedcontainerContainerPushRepository.md +7 -5
- data/docs/PatchedcontainerContainerRemote.md +3 -1
- data/docs/PatchedcontainerContainerRepository.md +3 -1
- data/docs/PulpContainerNamespacesApi.md +228 -0
- data/docs/RemotesContainerApi.md +228 -0
- data/docs/RemoveSignatures.md +17 -0
- data/docs/RemoveSignaturesResponse.md +17 -0
- data/docs/RepositoriesContainerApi.md +288 -4
- data/docs/RepositoriesContainerPushApi.md +339 -0
- data/docs/RepositoriesContainerPushVersionsApi.md +4 -4
- data/docs/RepositoriesContainerVersionsApi.md +4 -4
- data/docs/RepositorySign.md +21 -0
- data/docs/RepositoryVersion.md +17 -0
- data/git_push.sh +58 -0
- data/lib/pulp_container_client/api/content_blobs_api.rb +0 -7
- data/lib/pulp_container_client/api/content_signatures_api.rb +200 -0
- data/lib/pulp_container_client/api/distributions_container_api.rb +268 -0
- data/lib/pulp_container_client/api/pulp_container_namespaces_api.rb +268 -0
- data/lib/pulp_container_client/api/remotes_container_api.rb +268 -0
- data/lib/pulp_container_client/api/repositories_container_api.rb +347 -9
- data/lib/pulp_container_client/api/repositories_container_push_api.rb +406 -0
- data/lib/pulp_container_client/api/repositories_container_push_versions_api.rb +9 -9
- data/lib/pulp_container_client/api/repositories_container_versions_api.rb +9 -9
- data/lib/pulp_container_client/api_client.rb +5 -2
- data/lib/pulp_container_client/configuration.rb +0 -1
- data/lib/pulp_container_client/models/container_blob_response.rb +4 -19
- data/lib/pulp_container_client/models/container_container_distribution.rb +21 -21
- data/lib/pulp_container_client/models/container_container_distribution_response.rb +34 -34
- data/lib/pulp_container_client/models/container_container_push_repository.rb +44 -33
- data/lib/pulp_container_client/models/container_container_push_repository_response.rb +55 -44
- data/lib/pulp_container_client/models/container_container_remote.rb +30 -5
- data/lib/pulp_container_client/models/container_container_remote_response.rb +15 -5
- data/lib/pulp_container_client/models/container_container_repository.rb +16 -5
- data/lib/pulp_container_client/models/container_container_repository_response.rb +16 -5
- data/lib/pulp_container_client/models/{container_content_redirect_content_guard.rb → container_manifest_signature_response.rb} +108 -44
- data/lib/pulp_container_client/models/{repository_sync_url.rb → container_repository_sync_url.rb} +20 -8
- data/lib/pulp_container_client/models/content_summary.rb +246 -0
- data/lib/pulp_container_client/models/my_permissions_response.rb +213 -0
- data/lib/pulp_container_client/models/{container_content_redirect_content_guard_response.rb → nested_role.rb} +30 -39
- data/lib/pulp_container_client/models/nested_role_response.rb +234 -0
- data/lib/pulp_container_client/models/{repair.rb → object_roles_response.rb} +17 -13
- data/lib/pulp_container_client/models/{paginatedcontainer_content_redirect_content_guard_response_list.rb → paginatedcontainer_manifest_signature_response_list.rb} +4 -4
- data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +21 -21
- data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +44 -33
- data/lib/pulp_container_client/models/patchedcontainer_container_remote.rb +30 -5
- data/lib/pulp_container_client/models/patchedcontainer_container_repository.rb +16 -5
- data/lib/pulp_container_client/models/remove_signatures.rb +232 -0
- data/lib/pulp_container_client/models/remove_signatures_response.rb +213 -0
- data/lib/pulp_container_client/models/{patchedcontainer_content_redirect_content_guard.rb → repository_sign.rb} +40 -43
- data/lib/pulp_container_client/models/repository_version.rb +208 -0
- data/lib/pulp_container_client/version.rb +1 -1
- data/lib/pulp_container_client.rb +13 -7
- data/pulp_container_client.gemspec +3 -3
- data/spec/api/content_blobs_api_spec.rb +0 -1
- data/spec/api/content_signatures_api_spec.rb +78 -0
- data/spec/api/distributions_container_api_spec.rb +50 -0
- data/spec/api/pulp_container_namespaces_api_spec.rb +50 -0
- data/spec/api/remotes_container_api_spec.rb +50 -0
- data/spec/api/repositories_container_api_spec.rb +64 -1
- data/spec/api/repositories_container_push_api_spec.rb +75 -0
- data/spec/api/repositories_container_push_versions_api_spec.rb +1 -1
- data/spec/api/repositories_container_versions_api_spec.rb +1 -1
- data/spec/models/container_blob_response_spec.rb +0 -6
- 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 +13 -7
- data/spec/models/container_container_push_repository_spec.rb +9 -3
- data/spec/models/container_container_remote_response_spec.rb +6 -0
- data/spec/models/container_container_remote_spec.rb +6 -0
- data/spec/models/container_container_repository_response_spec.rb +6 -0
- data/spec/models/container_container_repository_spec.rb +6 -0
- data/spec/models/container_manifest_signature_response_spec.rb +89 -0
- data/spec/models/{container_content_redirect_content_guard_response_spec.rb → container_repository_sync_url_spec.rb} +9 -15
- data/spec/models/{container_content_redirect_content_guard_spec.rb → content_summary_spec.rb} +14 -8
- data/spec/models/my_permissions_response_spec.rb +41 -0
- data/spec/models/nested_role_response_spec.rb +53 -0
- data/spec/models/{patchedcontainer_content_redirect_content_guard_spec.rb → nested_role_spec.rb} +14 -8
- data/spec/models/object_roles_response_spec.rb +41 -0
- data/spec/models/{paginatedcontainer_content_redirect_content_guard_response_list_spec.rb → paginatedcontainer_manifest_signature_response_list_spec.rb} +6 -6
- data/spec/models/patchedcontainer_container_distribution_spec.rb +5 -5
- data/spec/models/patchedcontainer_container_push_repository_spec.rb +9 -3
- data/spec/models/patchedcontainer_container_remote_spec.rb +6 -0
- data/spec/models/patchedcontainer_container_repository_spec.rb +6 -0
- data/spec/models/remove_signatures_response_spec.rb +41 -0
- data/spec/models/{repair_spec.rb → remove_signatures_spec.rb} +7 -7
- data/spec/models/{repository_sync_url_spec.rb → repository_sign_spec.rb} +14 -8
- data/spec/models/repository_version_spec.rb +41 -0
- metadata +99 -74
- data/docs/ContainerContentRedirectContentGuard.md +0 -19
- data/docs/ContainerContentRedirectContentGuardResponse.md +0 -23
- data/docs/ContentguardsContentRedirectApi.md +0 -361
- data/docs/PatchedcontainerContentRedirectContentGuard.md +0 -19
- data/docs/Repair.md +0 -17
- data/lib/pulp_container_client/api/contentguards_content_redirect_api.rb +0 -440
- data/spec/api/contentguards_content_redirect_api_spec.rb +0 -120
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 624a8173bd9ed830f2685b8fbde217ea91c2386b20e0c7e205c97e8dc77325fc
|
|
4
|
+
data.tar.gz: '08242a23a520f69b38bf4d5899f9c09a338cf2f7194b3bd85c3c0fbb84c0e116'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bcc6ac0120eb428ed35d634391c272a2daa3f5240800149ec0939894ea2af395d0df53f1b8568ac579be5299c87c1c7de1b1a3e96fe33026b0db4c1702c245dc
|
|
7
|
+
data.tar.gz: b3f469d9dbb94b099fe8f80e8a8037023ed093ba333c61a8b3180b07077074c284116879365da74da7d0769600e1b861f495c68120df05d149366036c29ff434
|
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.11.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.11.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.11.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.11.0'
|
|
37
37
|
|
|
38
38
|
### Install from Git
|
|
39
39
|
|
|
@@ -69,7 +69,6 @@ opts = {
|
|
|
69
69
|
digest: 'digest_example', # String | Filter results where digest matches value
|
|
70
70
|
digest__in: ['digest__in_example'], # Array<String> | Filter results where digest is in a comma-separated list of values
|
|
71
71
|
limit: 56, # Integer | Number of results to return per page.
|
|
72
|
-
media_type: ['media_type_example'], # Array<String> |
|
|
73
72
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
74
73
|
ordering: 'ordering_example', # String | Which field to use when ordering the results.
|
|
75
74
|
repository_version: 'repository_version_example', # String | Repository Version referenced by HREF
|
|
@@ -99,48 +98,67 @@ Class | Method | HTTP request | Description
|
|
|
99
98
|
*PulpContainerClient::ContentBlobsApi* | [**read**](docs/ContentBlobsApi.md#read) | **GET** {container_blob_href} | Inspect a blob
|
|
100
99
|
*PulpContainerClient::ContentManifestsApi* | [**list**](docs/ContentManifestsApi.md#list) | **GET** /pulp/api/v3/content/container/manifests/ | List manifests
|
|
101
100
|
*PulpContainerClient::ContentManifestsApi* | [**read**](docs/ContentManifestsApi.md#read) | **GET** {container_manifest_href} | Inspect a manifest
|
|
101
|
+
*PulpContainerClient::ContentSignaturesApi* | [**list**](docs/ContentSignaturesApi.md#list) | **GET** /pulp/api/v3/content/container/signatures/ | List manifest signatures
|
|
102
|
+
*PulpContainerClient::ContentSignaturesApi* | [**read**](docs/ContentSignaturesApi.md#read) | **GET** {container_manifest_signature_href} | Inspect a manifest signature
|
|
102
103
|
*PulpContainerClient::ContentTagsApi* | [**list**](docs/ContentTagsApi.md#list) | **GET** /pulp/api/v3/content/container/tags/ | List tags
|
|
103
104
|
*PulpContainerClient::ContentTagsApi* | [**read**](docs/ContentTagsApi.md#read) | **GET** {container_tag_href} | Inspect a tag
|
|
104
|
-
*PulpContainerClient::
|
|
105
|
-
*PulpContainerClient::ContentguardsContentRedirectApi* | [**delete**](docs/ContentguardsContentRedirectApi.md#delete) | **DELETE** {container_content_redirect_content_guard_href} | Delete a content redirect content guard
|
|
106
|
-
*PulpContainerClient::ContentguardsContentRedirectApi* | [**list**](docs/ContentguardsContentRedirectApi.md#list) | **GET** /pulp/api/v3/contentguards/container/content_redirect/ | List content redirect content guards
|
|
107
|
-
*PulpContainerClient::ContentguardsContentRedirectApi* | [**partial_update**](docs/ContentguardsContentRedirectApi.md#partial_update) | **PATCH** {container_content_redirect_content_guard_href} | Update a content redirect content guard
|
|
108
|
-
*PulpContainerClient::ContentguardsContentRedirectApi* | [**read**](docs/ContentguardsContentRedirectApi.md#read) | **GET** {container_content_redirect_content_guard_href} | Inspect a content redirect content guard
|
|
109
|
-
*PulpContainerClient::ContentguardsContentRedirectApi* | [**update**](docs/ContentguardsContentRedirectApi.md#update) | **PUT** {container_content_redirect_content_guard_href} | Update a content redirect content guard
|
|
105
|
+
*PulpContainerClient::DistributionsContainerApi* | [**add_role**](docs/DistributionsContainerApi.md#add_role) | **POST** {container_container_distribution_href}add_role/ |
|
|
110
106
|
*PulpContainerClient::DistributionsContainerApi* | [**create**](docs/DistributionsContainerApi.md#create) | **POST** /pulp/api/v3/distributions/container/container/ | Create a container distribution
|
|
111
107
|
*PulpContainerClient::DistributionsContainerApi* | [**delete**](docs/DistributionsContainerApi.md#delete) | **DELETE** {container_container_distribution_href} | Delete a container distribution
|
|
112
108
|
*PulpContainerClient::DistributionsContainerApi* | [**list**](docs/DistributionsContainerApi.md#list) | **GET** /pulp/api/v3/distributions/container/container/ | List container distributions
|
|
109
|
+
*PulpContainerClient::DistributionsContainerApi* | [**list_roles**](docs/DistributionsContainerApi.md#list_roles) | **GET** {container_container_distribution_href}list_roles/ |
|
|
110
|
+
*PulpContainerClient::DistributionsContainerApi* | [**my_permissions**](docs/DistributionsContainerApi.md#my_permissions) | **GET** {container_container_distribution_href}my_permissions/ |
|
|
113
111
|
*PulpContainerClient::DistributionsContainerApi* | [**partial_update**](docs/DistributionsContainerApi.md#partial_update) | **PATCH** {container_container_distribution_href} | Update a container distribution
|
|
114
112
|
*PulpContainerClient::DistributionsContainerApi* | [**read**](docs/DistributionsContainerApi.md#read) | **GET** {container_container_distribution_href} | Inspect a container distribution
|
|
113
|
+
*PulpContainerClient::DistributionsContainerApi* | [**remove_role**](docs/DistributionsContainerApi.md#remove_role) | **POST** {container_container_distribution_href}remove_role/ |
|
|
115
114
|
*PulpContainerClient::DistributionsContainerApi* | [**update**](docs/DistributionsContainerApi.md#update) | **PUT** {container_container_distribution_href} | Update a container distribution
|
|
115
|
+
*PulpContainerClient::PulpContainerNamespacesApi* | [**add_role**](docs/PulpContainerNamespacesApi.md#add_role) | **POST** {container_container_namespace_href}add_role/ |
|
|
116
116
|
*PulpContainerClient::PulpContainerNamespacesApi* | [**create**](docs/PulpContainerNamespacesApi.md#create) | **POST** /pulp/api/v3/pulp_container/namespaces/ | Create a container namespace
|
|
117
117
|
*PulpContainerClient::PulpContainerNamespacesApi* | [**delete**](docs/PulpContainerNamespacesApi.md#delete) | **DELETE** {container_container_namespace_href} | Delete a container namespace
|
|
118
118
|
*PulpContainerClient::PulpContainerNamespacesApi* | [**list**](docs/PulpContainerNamespacesApi.md#list) | **GET** /pulp/api/v3/pulp_container/namespaces/ | List container namespaces
|
|
119
|
+
*PulpContainerClient::PulpContainerNamespacesApi* | [**list_roles**](docs/PulpContainerNamespacesApi.md#list_roles) | **GET** {container_container_namespace_href}list_roles/ |
|
|
120
|
+
*PulpContainerClient::PulpContainerNamespacesApi* | [**my_permissions**](docs/PulpContainerNamespacesApi.md#my_permissions) | **GET** {container_container_namespace_href}my_permissions/ |
|
|
119
121
|
*PulpContainerClient::PulpContainerNamespacesApi* | [**read**](docs/PulpContainerNamespacesApi.md#read) | **GET** {container_container_namespace_href} | Inspect a container namespace
|
|
122
|
+
*PulpContainerClient::PulpContainerNamespacesApi* | [**remove_role**](docs/PulpContainerNamespacesApi.md#remove_role) | **POST** {container_container_namespace_href}remove_role/ |
|
|
123
|
+
*PulpContainerClient::RemotesContainerApi* | [**add_role**](docs/RemotesContainerApi.md#add_role) | **POST** {container_container_remote_href}add_role/ |
|
|
120
124
|
*PulpContainerClient::RemotesContainerApi* | [**create**](docs/RemotesContainerApi.md#create) | **POST** /pulp/api/v3/remotes/container/container/ | Create a container remote
|
|
121
125
|
*PulpContainerClient::RemotesContainerApi* | [**delete**](docs/RemotesContainerApi.md#delete) | **DELETE** {container_container_remote_href} | Delete a container remote
|
|
122
126
|
*PulpContainerClient::RemotesContainerApi* | [**list**](docs/RemotesContainerApi.md#list) | **GET** /pulp/api/v3/remotes/container/container/ | List container remotes
|
|
127
|
+
*PulpContainerClient::RemotesContainerApi* | [**list_roles**](docs/RemotesContainerApi.md#list_roles) | **GET** {container_container_remote_href}list_roles/ |
|
|
128
|
+
*PulpContainerClient::RemotesContainerApi* | [**my_permissions**](docs/RemotesContainerApi.md#my_permissions) | **GET** {container_container_remote_href}my_permissions/ |
|
|
123
129
|
*PulpContainerClient::RemotesContainerApi* | [**partial_update**](docs/RemotesContainerApi.md#partial_update) | **PATCH** {container_container_remote_href} | Update a container remote
|
|
124
130
|
*PulpContainerClient::RemotesContainerApi* | [**read**](docs/RemotesContainerApi.md#read) | **GET** {container_container_remote_href} | Inspect a container remote
|
|
131
|
+
*PulpContainerClient::RemotesContainerApi* | [**remove_role**](docs/RemotesContainerApi.md#remove_role) | **POST** {container_container_remote_href}remove_role/ |
|
|
125
132
|
*PulpContainerClient::RemotesContainerApi* | [**update**](docs/RemotesContainerApi.md#update) | **PUT** {container_container_remote_href} | Update a container remote
|
|
126
133
|
*PulpContainerClient::RepositoriesContainerApi* | [**add**](docs/RepositoriesContainerApi.md#add) | **POST** {container_container_repository_href}add/ | Add content
|
|
134
|
+
*PulpContainerClient::RepositoriesContainerApi* | [**add_role**](docs/RepositoriesContainerApi.md#add_role) | **POST** {container_container_repository_href}add_role/ |
|
|
127
135
|
*PulpContainerClient::RepositoriesContainerApi* | [**build_image**](docs/RepositoriesContainerApi.md#build_image) | **POST** {container_container_repository_href}build_image/ | Build an Image
|
|
128
136
|
*PulpContainerClient::RepositoriesContainerApi* | [**copy_manifests**](docs/RepositoriesContainerApi.md#copy_manifests) | **POST** {container_container_repository_href}copy_manifests/ | Copy manifests
|
|
129
137
|
*PulpContainerClient::RepositoriesContainerApi* | [**copy_tags**](docs/RepositoriesContainerApi.md#copy_tags) | **POST** {container_container_repository_href}copy_tags/ | Copy tags
|
|
130
138
|
*PulpContainerClient::RepositoriesContainerApi* | [**create**](docs/RepositoriesContainerApi.md#create) | **POST** /pulp/api/v3/repositories/container/container/ | Create a container repository
|
|
131
139
|
*PulpContainerClient::RepositoriesContainerApi* | [**delete**](docs/RepositoriesContainerApi.md#delete) | **DELETE** {container_container_repository_href} | Delete a container repository
|
|
132
140
|
*PulpContainerClient::RepositoriesContainerApi* | [**list**](docs/RepositoriesContainerApi.md#list) | **GET** /pulp/api/v3/repositories/container/container/ | List container repositorys
|
|
141
|
+
*PulpContainerClient::RepositoriesContainerApi* | [**list_roles**](docs/RepositoriesContainerApi.md#list_roles) | **GET** {container_container_repository_href}list_roles/ |
|
|
142
|
+
*PulpContainerClient::RepositoriesContainerApi* | [**my_permissions**](docs/RepositoriesContainerApi.md#my_permissions) | **GET** {container_container_repository_href}my_permissions/ |
|
|
133
143
|
*PulpContainerClient::RepositoriesContainerApi* | [**partial_update**](docs/RepositoriesContainerApi.md#partial_update) | **PATCH** {container_container_repository_href} | Update a container repository
|
|
134
144
|
*PulpContainerClient::RepositoriesContainerApi* | [**read**](docs/RepositoriesContainerApi.md#read) | **GET** {container_container_repository_href} | Inspect a container repository
|
|
135
145
|
*PulpContainerClient::RepositoriesContainerApi* | [**remove**](docs/RepositoriesContainerApi.md#remove) | **POST** {container_container_repository_href}remove/ | Remove content
|
|
146
|
+
*PulpContainerClient::RepositoriesContainerApi* | [**remove_role**](docs/RepositoriesContainerApi.md#remove_role) | **POST** {container_container_repository_href}remove_role/ |
|
|
147
|
+
*PulpContainerClient::RepositoriesContainerApi* | [**sign**](docs/RepositoriesContainerApi.md#sign) | **POST** {container_container_repository_href}sign/ | Sign images in the repo
|
|
136
148
|
*PulpContainerClient::RepositoriesContainerApi* | [**sync**](docs/RepositoriesContainerApi.md#sync) | **POST** {container_container_repository_href}sync/ | Sync from a remote
|
|
137
149
|
*PulpContainerClient::RepositoriesContainerApi* | [**tag**](docs/RepositoriesContainerApi.md#tag) | **POST** {container_container_repository_href}tag/ | Create a Tag
|
|
138
150
|
*PulpContainerClient::RepositoriesContainerApi* | [**untag**](docs/RepositoriesContainerApi.md#untag) | **POST** {container_container_repository_href}untag/ | Delete a tag
|
|
139
151
|
*PulpContainerClient::RepositoriesContainerApi* | [**update**](docs/RepositoriesContainerApi.md#update) | **PUT** {container_container_repository_href} | Update a container repository
|
|
152
|
+
*PulpContainerClient::RepositoriesContainerPushApi* | [**add_role**](docs/RepositoriesContainerPushApi.md#add_role) | **POST** {container_container_push_repository_href}add_role/ |
|
|
140
153
|
*PulpContainerClient::RepositoriesContainerPushApi* | [**list**](docs/RepositoriesContainerPushApi.md#list) | **GET** /pulp/api/v3/repositories/container/container-push/ | List container push repositorys
|
|
154
|
+
*PulpContainerClient::RepositoriesContainerPushApi* | [**list_roles**](docs/RepositoriesContainerPushApi.md#list_roles) | **GET** {container_container_push_repository_href}list_roles/ |
|
|
155
|
+
*PulpContainerClient::RepositoriesContainerPushApi* | [**my_permissions**](docs/RepositoriesContainerPushApi.md#my_permissions) | **GET** {container_container_push_repository_href}my_permissions/ |
|
|
141
156
|
*PulpContainerClient::RepositoriesContainerPushApi* | [**partial_update**](docs/RepositoriesContainerPushApi.md#partial_update) | **PATCH** {container_container_push_repository_href} | Update a container push repository
|
|
142
157
|
*PulpContainerClient::RepositoriesContainerPushApi* | [**read**](docs/RepositoriesContainerPushApi.md#read) | **GET** {container_container_push_repository_href} | Inspect a container push repository
|
|
143
158
|
*PulpContainerClient::RepositoriesContainerPushApi* | [**remove_image**](docs/RepositoriesContainerPushApi.md#remove_image) | **POST** {container_container_push_repository_href}remove_image/ | Delete an image from a repository
|
|
159
|
+
*PulpContainerClient::RepositoriesContainerPushApi* | [**remove_role**](docs/RepositoriesContainerPushApi.md#remove_role) | **POST** {container_container_push_repository_href}remove_role/ |
|
|
160
|
+
*PulpContainerClient::RepositoriesContainerPushApi* | [**remove_signatures**](docs/RepositoriesContainerPushApi.md#remove_signatures) | **POST** {container_container_push_repository_href}remove_signatures/ |
|
|
161
|
+
*PulpContainerClient::RepositoriesContainerPushApi* | [**sign**](docs/RepositoriesContainerPushApi.md#sign) | **POST** {container_container_push_repository_href}sign/ | Sign images in the repo
|
|
144
162
|
*PulpContainerClient::RepositoriesContainerPushApi* | [**tag**](docs/RepositoriesContainerPushApi.md#tag) | **POST** {container_container_push_repository_href}tag/ | Create a Tag
|
|
145
163
|
*PulpContainerClient::RepositoriesContainerPushApi* | [**untag**](docs/RepositoriesContainerPushApi.md#untag) | **POST** {container_container_push_repository_href}untag/ | Delete a tag
|
|
146
164
|
*PulpContainerClient::RepositoriesContainerPushApi* | [**update**](docs/RepositoriesContainerPushApi.md#update) | **PUT** {container_container_push_repository_href} | Update a container push repository
|
|
@@ -169,14 +187,19 @@ Class | Method | HTTP request | Description
|
|
|
169
187
|
- [PulpContainerClient::ContainerContainerRemoteResponse](docs/ContainerContainerRemoteResponse.md)
|
|
170
188
|
- [PulpContainerClient::ContainerContainerRepository](docs/ContainerContainerRepository.md)
|
|
171
189
|
- [PulpContainerClient::ContainerContainerRepositoryResponse](docs/ContainerContainerRepositoryResponse.md)
|
|
172
|
-
- [PulpContainerClient::ContainerContentRedirectContentGuard](docs/ContainerContentRedirectContentGuard.md)
|
|
173
|
-
- [PulpContainerClient::ContainerContentRedirectContentGuardResponse](docs/ContainerContentRedirectContentGuardResponse.md)
|
|
174
190
|
- [PulpContainerClient::ContainerManifestResponse](docs/ContainerManifestResponse.md)
|
|
191
|
+
- [PulpContainerClient::ContainerManifestSignatureResponse](docs/ContainerManifestSignatureResponse.md)
|
|
192
|
+
- [PulpContainerClient::ContainerRepositorySyncURL](docs/ContainerRepositorySyncURL.md)
|
|
175
193
|
- [PulpContainerClient::ContainerTagResponse](docs/ContainerTagResponse.md)
|
|
194
|
+
- [PulpContainerClient::ContentSummary](docs/ContentSummary.md)
|
|
176
195
|
- [PulpContainerClient::ContentSummaryResponse](docs/ContentSummaryResponse.md)
|
|
177
196
|
- [PulpContainerClient::ManifestCopy](docs/ManifestCopy.md)
|
|
178
197
|
- [PulpContainerClient::MediaTypesEnum](docs/MediaTypesEnum.md)
|
|
198
|
+
- [PulpContainerClient::MyPermissionsResponse](docs/MyPermissionsResponse.md)
|
|
199
|
+
- [PulpContainerClient::NestedRole](docs/NestedRole.md)
|
|
200
|
+
- [PulpContainerClient::NestedRoleResponse](docs/NestedRoleResponse.md)
|
|
179
201
|
- [PulpContainerClient::OCIBuildImage](docs/OCIBuildImage.md)
|
|
202
|
+
- [PulpContainerClient::ObjectRolesResponse](docs/ObjectRolesResponse.md)
|
|
180
203
|
- [PulpContainerClient::PaginatedRepositoryVersionResponseList](docs/PaginatedRepositoryVersionResponseList.md)
|
|
181
204
|
- [PulpContainerClient::PaginatedcontainerBlobResponseList](docs/PaginatedcontainerBlobResponseList.md)
|
|
182
205
|
- [PulpContainerClient::PaginatedcontainerContainerDistributionResponseList](docs/PaginatedcontainerContainerDistributionResponseList.md)
|
|
@@ -184,19 +207,20 @@ Class | Method | HTTP request | Description
|
|
|
184
207
|
- [PulpContainerClient::PaginatedcontainerContainerPushRepositoryResponseList](docs/PaginatedcontainerContainerPushRepositoryResponseList.md)
|
|
185
208
|
- [PulpContainerClient::PaginatedcontainerContainerRemoteResponseList](docs/PaginatedcontainerContainerRemoteResponseList.md)
|
|
186
209
|
- [PulpContainerClient::PaginatedcontainerContainerRepositoryResponseList](docs/PaginatedcontainerContainerRepositoryResponseList.md)
|
|
187
|
-
- [PulpContainerClient::PaginatedcontainerContentRedirectContentGuardResponseList](docs/PaginatedcontainerContentRedirectContentGuardResponseList.md)
|
|
188
210
|
- [PulpContainerClient::PaginatedcontainerManifestResponseList](docs/PaginatedcontainerManifestResponseList.md)
|
|
211
|
+
- [PulpContainerClient::PaginatedcontainerManifestSignatureResponseList](docs/PaginatedcontainerManifestSignatureResponseList.md)
|
|
189
212
|
- [PulpContainerClient::PaginatedcontainerTagResponseList](docs/PaginatedcontainerTagResponseList.md)
|
|
190
213
|
- [PulpContainerClient::PatchedcontainerContainerDistribution](docs/PatchedcontainerContainerDistribution.md)
|
|
191
214
|
- [PulpContainerClient::PatchedcontainerContainerPushRepository](docs/PatchedcontainerContainerPushRepository.md)
|
|
192
215
|
- [PulpContainerClient::PatchedcontainerContainerRemote](docs/PatchedcontainerContainerRemote.md)
|
|
193
216
|
- [PulpContainerClient::PatchedcontainerContainerRepository](docs/PatchedcontainerContainerRepository.md)
|
|
194
|
-
- [PulpContainerClient::PatchedcontainerContentRedirectContentGuard](docs/PatchedcontainerContentRedirectContentGuard.md)
|
|
195
217
|
- [PulpContainerClient::PolicyEnum](docs/PolicyEnum.md)
|
|
196
218
|
- [PulpContainerClient::RecursiveManage](docs/RecursiveManage.md)
|
|
197
219
|
- [PulpContainerClient::RemoveImage](docs/RemoveImage.md)
|
|
198
|
-
- [PulpContainerClient::
|
|
199
|
-
- [PulpContainerClient::
|
|
220
|
+
- [PulpContainerClient::RemoveSignatures](docs/RemoveSignatures.md)
|
|
221
|
+
- [PulpContainerClient::RemoveSignaturesResponse](docs/RemoveSignaturesResponse.md)
|
|
222
|
+
- [PulpContainerClient::RepositorySign](docs/RepositorySign.md)
|
|
223
|
+
- [PulpContainerClient::RepositoryVersion](docs/RepositoryVersion.md)
|
|
200
224
|
- [PulpContainerClient::RepositoryVersionResponse](docs/RepositoryVersionResponse.md)
|
|
201
225
|
- [PulpContainerClient::TagCopy](docs/TagCopy.md)
|
|
202
226
|
- [PulpContainerClient::TagImage](docs/TagImage.md)
|
|
@@ -8,7 +8,6 @@ Name | Type | Description | Notes
|
|
|
8
8
|
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
|
9
9
|
**artifact** | **String** | Artifact file representing the physical content |
|
|
10
10
|
**digest** | **String** | sha256 of the Blob file |
|
|
11
|
-
**media_type** | **String** | Blob media type of the file |
|
|
12
11
|
|
|
13
12
|
## Code Sample
|
|
14
13
|
|
|
@@ -18,8 +17,7 @@ require 'PulpContainerClient'
|
|
|
18
17
|
instance = PulpContainerClient::ContainerBlobResponse.new(pulp_href: null,
|
|
19
18
|
pulp_created: null,
|
|
20
19
|
artifact: null,
|
|
21
|
-
digest: null
|
|
22
|
-
media_type: null)
|
|
20
|
+
digest: null)
|
|
23
21
|
```
|
|
24
22
|
|
|
25
23
|
|
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
|
|
5
5
|
Name | Type | Description | Notes
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
|
7
|
-
**name** | **String** | A unique name. Ex, `rawhide` and `stable`. |
|
|
8
|
-
**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\") |
|
|
9
7
|
**content_guard** | **String** | An optional content-guard. If none is specified, a default one will be used. | [optional]
|
|
10
8
|
**pulp_labels** | [**Object**](.md) | | [optional]
|
|
9
|
+
**name** | **String** | A unique name. Ex, `rawhide` and `stable`. |
|
|
11
10
|
**repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional]
|
|
11
|
+
**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\") |
|
|
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]
|
|
@@ -18,11 +18,11 @@ Name | Type | Description | Notes
|
|
|
18
18
|
```ruby
|
|
19
19
|
require 'PulpContainerClient'
|
|
20
20
|
|
|
21
|
-
instance = PulpContainerClient::ContainerContainerDistribution.new(
|
|
22
|
-
base_path: null,
|
|
23
|
-
content_guard: null,
|
|
21
|
+
instance = PulpContainerClient::ContainerContainerDistribution.new(content_guard: null,
|
|
24
22
|
pulp_labels: null,
|
|
23
|
+
name: null,
|
|
25
24
|
repository: null,
|
|
25
|
+
base_path: null,
|
|
26
26
|
repository_version: null,
|
|
27
27
|
private: null,
|
|
28
28
|
description: null)
|
|
@@ -4,15 +4,15 @@
|
|
|
4
4
|
|
|
5
5
|
Name | Type | Description | Notes
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
|
7
|
-
**pulp_href** | **String** | | [optional] [readonly]
|
|
8
|
-
**name** | **String** | A unique name. Ex, `rawhide` and `stable`. |
|
|
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
7
|
**content_guard** | **String** | An optional content-guard. If none is specified, a default one will be used. | [optional]
|
|
11
|
-
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
|
12
8
|
**pulp_labels** | [**Object**](.md) | | [optional]
|
|
9
|
+
**name** | **String** | A unique name. Ex, `rawhide` and `stable`. |
|
|
13
10
|
**repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional]
|
|
11
|
+
**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\") |
|
|
12
|
+
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
|
13
|
+
**pulp_href** | **String** | | [optional] [readonly]
|
|
14
14
|
**repository_version** | **String** | RepositoryVersion to be served | [optional]
|
|
15
|
-
**registry_path** | **String** | The Registry
|
|
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]
|
|
17
17
|
**private** | **Boolean** | Restrict pull access to explicitly authorized users. Defaults to unrestricted pull access. | [optional]
|
|
18
18
|
**description** | **String** | An optional description. | [optional]
|
|
@@ -22,13 +22,13 @@ Name | Type | Description | Notes
|
|
|
22
22
|
```ruby
|
|
23
23
|
require 'PulpContainerClient'
|
|
24
24
|
|
|
25
|
-
instance = PulpContainerClient::ContainerContainerDistributionResponse.new(
|
|
25
|
+
instance = PulpContainerClient::ContainerContainerDistributionResponse.new(content_guard: null,
|
|
26
|
+
pulp_labels: null,
|
|
26
27
|
name: null,
|
|
28
|
+
repository: null,
|
|
27
29
|
base_path: null,
|
|
28
|
-
content_guard: null,
|
|
29
30
|
pulp_created: null,
|
|
30
|
-
|
|
31
|
-
repository: null,
|
|
31
|
+
pulp_href: null,
|
|
32
32
|
repository_version: null,
|
|
33
33
|
registry_path: null,
|
|
34
34
|
namespace: null,
|
|
@@ -4,20 +4,22 @@
|
|
|
4
4
|
|
|
5
5
|
Name | Type | Description | Notes
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
|
7
|
+
**manifest_signing_service** | **String** | A reference to an associated signing service. | [optional]
|
|
8
|
+
**pulp_labels** | [**Object**](.md) | | [optional]
|
|
7
9
|
**name** | **String** | A unique name for this repository. |
|
|
8
|
-
**description** | **String** | An optional description. | [optional]
|
|
9
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]
|
|
10
|
-
**
|
|
11
|
+
**description** | **String** | An optional description. | [optional]
|
|
11
12
|
|
|
12
13
|
## Code Sample
|
|
13
14
|
|
|
14
15
|
```ruby
|
|
15
16
|
require 'PulpContainerClient'
|
|
16
17
|
|
|
17
|
-
instance = PulpContainerClient::ContainerContainerPushRepository.new(
|
|
18
|
-
|
|
18
|
+
instance = PulpContainerClient::ContainerContainerPushRepository.new(manifest_signing_service: null,
|
|
19
|
+
pulp_labels: null,
|
|
20
|
+
name: null,
|
|
19
21
|
retain_repo_versions: null,
|
|
20
|
-
|
|
22
|
+
description: null)
|
|
21
23
|
```
|
|
22
24
|
|
|
23
25
|
|
|
@@ -4,28 +4,30 @@
|
|
|
4
4
|
|
|
5
5
|
Name | Type | Description | Notes
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
|
7
|
+
**latest_version_href** | **String** | | [optional] [readonly]
|
|
8
|
+
**manifest_signing_service** | **String** | A reference to an associated signing service. | [optional]
|
|
9
|
+
**pulp_labels** | [**Object**](.md) | | [optional]
|
|
7
10
|
**name** | **String** | A unique name for this repository. |
|
|
11
|
+
**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]
|
|
12
|
+
**description** | **String** | An optional description. | [optional]
|
|
13
|
+
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
|
8
14
|
**pulp_href** | **String** | | [optional] [readonly]
|
|
9
15
|
**versions_href** | **String** | | [optional] [readonly]
|
|
10
|
-
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
|
11
|
-
**description** | **String** | An optional description. | [optional]
|
|
12
|
-
**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
|
-
**pulp_labels** | [**Object**](.md) | | [optional]
|
|
14
|
-
**latest_version_href** | **String** | | [optional] [readonly]
|
|
15
16
|
|
|
16
17
|
## Code Sample
|
|
17
18
|
|
|
18
19
|
```ruby
|
|
19
20
|
require 'PulpContainerClient'
|
|
20
21
|
|
|
21
|
-
instance = PulpContainerClient::ContainerContainerPushRepositoryResponse.new(
|
|
22
|
-
|
|
23
|
-
versions_href: null,
|
|
24
|
-
pulp_created: null,
|
|
25
|
-
description: null,
|
|
26
|
-
retain_repo_versions: null,
|
|
22
|
+
instance = PulpContainerClient::ContainerContainerPushRepositoryResponse.new(latest_version_href: null,
|
|
23
|
+
manifest_signing_service: null,
|
|
27
24
|
pulp_labels: null,
|
|
28
|
-
|
|
25
|
+
name: null,
|
|
26
|
+
retain_repo_versions: null,
|
|
27
|
+
description: null,
|
|
28
|
+
pulp_created: null,
|
|
29
|
+
pulp_href: null,
|
|
30
|
+
versions_href: null)
|
|
29
31
|
```
|
|
30
32
|
|
|
31
33
|
|
|
@@ -28,6 +28,7 @@ Name | Type | Description | Notes
|
|
|
28
28
|
**upstream_name** | **String** | Name of the upstream repository |
|
|
29
29
|
**include_tags** | **Array<String>** | A list of tags to include during sync. Wildcards *, ? are recognized. 'include_tags' is evaluated before 'exclude_tags'. | [optional]
|
|
30
30
|
**exclude_tags** | **Array<String>** | A list of tags to exclude during sync. Wildcards *, ? are recognized. 'exclude_tags' is evaluated after 'include_tags'. | [optional]
|
|
31
|
+
**sigstore** | **String** | A URL to a sigstore to download image signatures from | [optional]
|
|
31
32
|
|
|
32
33
|
## Code Sample
|
|
33
34
|
|
|
@@ -57,7 +58,8 @@ instance = PulpContainerClient::ContainerContainerRemote.new(name: null,
|
|
|
57
58
|
rate_limit: null,
|
|
58
59
|
upstream_name: null,
|
|
59
60
|
include_tags: null,
|
|
60
|
-
exclude_tags: null
|
|
61
|
+
exclude_tags: null,
|
|
62
|
+
sigstore: null)
|
|
61
63
|
```
|
|
62
64
|
|
|
63
65
|
|
|
@@ -26,6 +26,7 @@ Name | Type | Description | Notes
|
|
|
26
26
|
**upstream_name** | **String** | Name of the upstream repository |
|
|
27
27
|
**include_tags** | **Array<String>** | A list of tags to include during sync. Wildcards *, ? are recognized. 'include_tags' is evaluated before 'exclude_tags'. | [optional]
|
|
28
28
|
**exclude_tags** | **Array<String>** | A list of tags to exclude during sync. Wildcards *, ? are recognized. 'exclude_tags' is evaluated after 'include_tags'. | [optional]
|
|
29
|
+
**sigstore** | **String** | A URL to a sigstore to download image signatures from | [optional]
|
|
29
30
|
|
|
30
31
|
## Code Sample
|
|
31
32
|
|
|
@@ -53,7 +54,8 @@ instance = PulpContainerClient::ContainerContainerRemoteResponse.new(pulp_href:
|
|
|
53
54
|
rate_limit: null,
|
|
54
55
|
upstream_name: null,
|
|
55
56
|
include_tags: null,
|
|
56
|
-
exclude_tags: null
|
|
57
|
+
exclude_tags: null,
|
|
58
|
+
sigstore: null)
|
|
57
59
|
```
|
|
58
60
|
|
|
59
61
|
|
|
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
|
|
|
9
9
|
**description** | **String** | An optional description. | [optional]
|
|
10
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
11
|
**remote** | **String** | An optional remote to use by default when syncing. | [optional]
|
|
12
|
+
**manifest_signing_service** | **String** | A reference to an associated signing service. | [optional]
|
|
12
13
|
|
|
13
14
|
## Code Sample
|
|
14
15
|
|
|
@@ -19,7 +20,8 @@ instance = PulpContainerClient::ContainerContainerRepository.new(pulp_labels: nu
|
|
|
19
20
|
name: null,
|
|
20
21
|
description: null,
|
|
21
22
|
retain_repo_versions: null,
|
|
22
|
-
remote: null
|
|
23
|
+
remote: null,
|
|
24
|
+
manifest_signing_service: null)
|
|
23
25
|
```
|
|
24
26
|
|
|
25
27
|
|
|
@@ -13,6 +13,7 @@ Name | Type | Description | Notes
|
|
|
13
13
|
**description** | **String** | An optional description. | [optional]
|
|
14
14
|
**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]
|
|
15
15
|
**remote** | **String** | An optional remote to use by default when syncing. | [optional]
|
|
16
|
+
**manifest_signing_service** | **String** | A reference to an associated signing service. | [optional]
|
|
16
17
|
|
|
17
18
|
## Code Sample
|
|
18
19
|
|
|
@@ -27,7 +28,8 @@ instance = PulpContainerClient::ContainerContainerRepositoryResponse.new(pulp_hr
|
|
|
27
28
|
name: null,
|
|
28
29
|
description: null,
|
|
29
30
|
retain_repo_versions: null,
|
|
30
|
-
remote: null
|
|
31
|
+
remote: null,
|
|
32
|
+
manifest_signing_service: null)
|
|
31
33
|
```
|
|
32
34
|
|
|
33
35
|
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# PulpContainerClient::ContainerManifestSignatureResponse
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
Name | Type | Description | Notes
|
|
6
|
+
------------ | ------------- | ------------- | -------------
|
|
7
|
+
**pulp_href** | **String** | | [optional] [readonly]
|
|
8
|
+
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
|
9
|
+
**name** | **String** | Signature name in the format of `digest_algo:manifest_digest@random_32_chars` |
|
|
10
|
+
**digest** | **String** | sha256 digest of the signature blob |
|
|
11
|
+
**type** | **String** | Container signature type, e.g. 'atomic' |
|
|
12
|
+
**key_id** | **String** | Signing key ID |
|
|
13
|
+
**timestamp** | **Integer** | Timestamp of a signature |
|
|
14
|
+
**creator** | **String** | Signature creator |
|
|
15
|
+
**signed_manifest** | **String** | Manifest that is signed |
|
|
16
|
+
|
|
17
|
+
## Code Sample
|
|
18
|
+
|
|
19
|
+
```ruby
|
|
20
|
+
require 'PulpContainerClient'
|
|
21
|
+
|
|
22
|
+
instance = PulpContainerClient::ContainerManifestSignatureResponse.new(pulp_href: null,
|
|
23
|
+
pulp_created: null,
|
|
24
|
+
name: null,
|
|
25
|
+
digest: null,
|
|
26
|
+
type: null,
|
|
27
|
+
key_id: null,
|
|
28
|
+
timestamp: null,
|
|
29
|
+
creator: null,
|
|
30
|
+
signed_manifest: null)
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# PulpContainerClient::
|
|
1
|
+
# PulpContainerClient::ContainerRepositorySyncURL
|
|
2
2
|
|
|
3
3
|
## Properties
|
|
4
4
|
|
|
@@ -6,14 +6,16 @@ Name | Type | Description | Notes
|
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
|
7
7
|
**remote** | **String** | A remote to sync from. This will override a remote set on repository. | [optional]
|
|
8
8
|
**mirror** | **Boolean** | If ``True``, synchronization will remove all content that is not present in the remote repository. If ``False``, sync will be additive only. | [optional] [default to false]
|
|
9
|
+
**signed_only** | **Boolean** | If ``True``, only signed content will be synced. Signatures are not verified. | [optional] [default to false]
|
|
9
10
|
|
|
10
11
|
## Code Sample
|
|
11
12
|
|
|
12
13
|
```ruby
|
|
13
14
|
require 'PulpContainerClient'
|
|
14
15
|
|
|
15
|
-
instance = PulpContainerClient::
|
|
16
|
-
mirror: null
|
|
16
|
+
instance = PulpContainerClient::ContainerRepositorySyncURL.new(remote: null,
|
|
17
|
+
mirror: null,
|
|
18
|
+
signed_only: null)
|
|
17
19
|
```
|
|
18
20
|
|
|
19
21
|
|
data/docs/ContentBlobsApi.md
CHANGED
|
@@ -34,7 +34,6 @@ opts = {
|
|
|
34
34
|
digest: 'digest_example', # String | Filter results where digest matches value
|
|
35
35
|
digest__in: ['digest__in_example'], # Array<String> | Filter results where digest is in a comma-separated list of values
|
|
36
36
|
limit: 56, # Integer | Number of results to return per page.
|
|
37
|
-
media_type: ['media_type_example'], # Array<String> |
|
|
38
37
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
39
38
|
ordering: 'ordering_example', # String | Which field to use when ordering the results.
|
|
40
39
|
repository_version: 'repository_version_example', # String | Repository Version referenced by HREF
|
|
@@ -61,7 +60,6 @@ Name | Type | Description | Notes
|
|
|
61
60
|
**digest** | **String**| Filter results where digest matches value | [optional]
|
|
62
61
|
**digest__in** | [**Array<String>**](String.md)| Filter results where digest is in a comma-separated list of values | [optional]
|
|
63
62
|
**limit** | **Integer**| Number of results to return per page. | [optional]
|
|
64
|
-
**media_type** | [**Array<String>**](String.md)| | [optional]
|
|
65
63
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
66
64
|
**ordering** | **String**| Which field to use when ordering the results. | [optional]
|
|
67
65
|
**repository_version** | **String**| Repository Version referenced by HREF | [optional]
|