pulp_ansible_client 0.10.5 → 0.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 +14 -4
- data/docs/AnsibleCollectionRemote.md +1 -1
- data/docs/AnsibleCollectionRemoteResponse.md +3 -1
- data/docs/AnsibleCollectionVersionResponse.md +4 -4
- data/docs/AnsibleGitRemote.md +59 -0
- data/docs/AnsibleGitRemoteResponse.md +55 -0
- data/docs/AnsibleRoleRemote.md +1 -1
- data/docs/AnsibleRoleRemoteResponse.md +1 -1
- data/docs/AnsibleRoleResponse.md +4 -4
- data/docs/CollectionVersionResponse.md +4 -0
- data/docs/PaginatedansibleGitRemoteResponseList.md +23 -0
- data/docs/PatchedansibleCollectionRemote.md +1 -1
- data/docs/PatchedansibleGitRemote.md +59 -0
- data/docs/PatchedansibleRoleRemote.md +1 -1
- data/docs/RemotesGitApi.md +376 -0
- data/docs/UnpaginatedCollectionVersionResponse.md +5 -1
- data/git_push.sh +58 -0
- data/lib/pulp_ansible_client/api/ansible_collections_api.rb +16 -0
- data/lib/pulp_ansible_client/api/content_collection_versions_api.rb +12 -0
- data/lib/pulp_ansible_client/api/pulp_ansible_artifacts_collections_v3_api.rb +16 -0
- data/lib/pulp_ansible_client/api/remotes_git_api.rb +463 -0
- data/lib/pulp_ansible_client/api_client.rb +5 -2
- data/lib/pulp_ansible_client/configuration.rb +0 -1
- data/lib/pulp_ansible_client/models/ansible_ansible_distribution.rb +38 -0
- data/lib/pulp_ansible_client/models/ansible_ansible_repository.rb +34 -0
- data/lib/pulp_ansible_client/models/ansible_collection.rb +38 -0
- data/lib/pulp_ansible_client/models/ansible_collection_remote.rb +192 -1
- data/lib/pulp_ansible_client/models/ansible_collection_remote_response.rb +28 -2
- data/lib/pulp_ansible_client/models/ansible_collection_version.rb +27 -0
- data/lib/pulp_ansible_client/models/ansible_collection_version_response.rb +14 -19
- data/lib/pulp_ansible_client/models/ansible_git_remote.rb +692 -0
- data/lib/pulp_ansible_client/models/ansible_git_remote_response.rb +493 -0
- data/lib/pulp_ansible_client/models/ansible_role.rb +57 -0
- data/lib/pulp_ansible_client/models/ansible_role_remote.rb +159 -1
- data/lib/pulp_ansible_client/models/ansible_role_remote_response.rb +1 -1
- data/lib/pulp_ansible_client/models/ansible_role_response.rb +14 -14
- data/lib/pulp_ansible_client/models/collection_one_shot.rb +60 -0
- data/lib/pulp_ansible_client/models/collection_version_response.rb +19 -1
- data/lib/pulp_ansible_client/models/galaxy_collection.rb +38 -0
- data/lib/pulp_ansible_client/models/paginatedansible_git_remote_response_list.rb +237 -0
- data/lib/pulp_ansible_client/models/patchedansible_ansible_distribution.rb +30 -0
- data/lib/pulp_ansible_client/models/patchedansible_ansible_repository.rb +30 -0
- data/lib/pulp_ansible_client/models/patchedansible_collection_remote.rb +184 -1
- data/lib/pulp_ansible_client/models/patchedansible_git_remote.rb +674 -0
- data/lib/pulp_ansible_client/models/patchedansible_role_remote.rb +151 -1
- data/lib/pulp_ansible_client/models/unpaginated_collection_version_response.rb +22 -4
- data/lib/pulp_ansible_client/version.rb +1 -1
- data/lib/pulp_ansible_client.rb +5 -0
- data/pulp_ansible_client.gemspec +3 -3
- data/spec/api/remotes_git_api_spec.rb +127 -0
- data/spec/models/ansible_collection_remote_response_spec.rb +6 -0
- data/spec/models/ansible_collection_version_response_spec.rb +2 -2
- data/spec/models/ansible_git_remote_response_spec.rb +155 -0
- data/spec/models/ansible_git_remote_spec.rb +167 -0
- data/spec/models/ansible_role_response_spec.rb +2 -2
- data/spec/models/collection_version_response_spec.rb +12 -0
- data/spec/models/paginatedansible_git_remote_response_list_spec.rb +59 -0
- data/spec/models/patchedansible_git_remote_spec.rb +167 -0
- data/spec/models/unpaginated_collection_version_response_spec.rb +12 -0
- metadata +94 -79
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f576913de4c784a77cff08e006cf6ce22ff4b20363b40d552aa8a8fb4bfe97fd
|
4
|
+
data.tar.gz: 3b66433e4c61c1e3d4a0f18672384db7f17db83bb643f449ae5ee177d6834147
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 00a56fc1f13f53a23701e55913ba71d020b1685a6b4ca5d53ee064aa414e0722572eb3677688d8bca7ef750e7f63f30041dae56095cecbfb9f0bff75326125a6
|
7
|
+
data.tar.gz: f2c772ea4a3f62448b624efe76a5b3dd2554e5b5e4cda780f2dc2b17b2712c8b55e14027e4075eee7b15e49feb05cd497aa18a4db988275da4b508b4b1cccac6
|
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: 0.
|
10
|
+
- Package version: 0.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_ansible_client.gemspec
|
|
24
24
|
Then either install the gem locally:
|
25
25
|
|
26
26
|
```shell
|
27
|
-
gem install ./pulp_ansible_client-0.
|
27
|
+
gem install ./pulp_ansible_client-0.11.0.gem
|
28
28
|
```
|
29
29
|
|
30
|
-
(for development, run `gem install --dev ./pulp_ansible_client-0.
|
30
|
+
(for development, run `gem install --dev ./pulp_ansible_client-0.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_ansible_client', '~> 0.
|
36
|
+
gem 'pulp_ansible_client', '~> 0.11.0'
|
37
37
|
|
38
38
|
### Install from Git
|
39
39
|
|
@@ -133,6 +133,12 @@ Class | Method | HTTP request | Description
|
|
133
133
|
*PulpAnsibleClient::RemotesCollectionApi* | [**partial_update**](docs/RemotesCollectionApi.md#partial_update) | **PATCH** {ansible_collection_remote_href} | Update a collection remote
|
134
134
|
*PulpAnsibleClient::RemotesCollectionApi* | [**read**](docs/RemotesCollectionApi.md#read) | **GET** {ansible_collection_remote_href} | Inspect a collection remote
|
135
135
|
*PulpAnsibleClient::RemotesCollectionApi* | [**update**](docs/RemotesCollectionApi.md#update) | **PUT** {ansible_collection_remote_href} | Update a collection remote
|
136
|
+
*PulpAnsibleClient::RemotesGitApi* | [**create**](docs/RemotesGitApi.md#create) | **POST** /pulp/api/v3/remotes/ansible/git/ | Create a git remote
|
137
|
+
*PulpAnsibleClient::RemotesGitApi* | [**delete**](docs/RemotesGitApi.md#delete) | **DELETE** {ansible_git_remote_href} | Delete a git remote
|
138
|
+
*PulpAnsibleClient::RemotesGitApi* | [**list**](docs/RemotesGitApi.md#list) | **GET** /pulp/api/v3/remotes/ansible/git/ | List git remotes
|
139
|
+
*PulpAnsibleClient::RemotesGitApi* | [**partial_update**](docs/RemotesGitApi.md#partial_update) | **PATCH** {ansible_git_remote_href} | Update a git remote
|
140
|
+
*PulpAnsibleClient::RemotesGitApi* | [**read**](docs/RemotesGitApi.md#read) | **GET** {ansible_git_remote_href} | Inspect a git remote
|
141
|
+
*PulpAnsibleClient::RemotesGitApi* | [**update**](docs/RemotesGitApi.md#update) | **PUT** {ansible_git_remote_href} | Update a git remote
|
136
142
|
*PulpAnsibleClient::RemotesRoleApi* | [**create**](docs/RemotesRoleApi.md#create) | **POST** /pulp/api/v3/remotes/ansible/role/ | Create a role remote
|
137
143
|
*PulpAnsibleClient::RemotesRoleApi* | [**delete**](docs/RemotesRoleApi.md#delete) | **DELETE** {ansible_role_remote_href} | Delete a role remote
|
138
144
|
*PulpAnsibleClient::RemotesRoleApi* | [**list**](docs/RemotesRoleApi.md#list) | **GET** /pulp/api/v3/remotes/ansible/role/ | List role remotes
|
@@ -167,6 +173,8 @@ Class | Method | HTTP request | Description
|
|
167
173
|
- [PulpAnsibleClient::AnsibleCollectionResponse](docs/AnsibleCollectionResponse.md)
|
168
174
|
- [PulpAnsibleClient::AnsibleCollectionVersion](docs/AnsibleCollectionVersion.md)
|
169
175
|
- [PulpAnsibleClient::AnsibleCollectionVersionResponse](docs/AnsibleCollectionVersionResponse.md)
|
176
|
+
- [PulpAnsibleClient::AnsibleGitRemote](docs/AnsibleGitRemote.md)
|
177
|
+
- [PulpAnsibleClient::AnsibleGitRemoteResponse](docs/AnsibleGitRemoteResponse.md)
|
170
178
|
- [PulpAnsibleClient::AnsibleRepositorySyncURL](docs/AnsibleRepositorySyncURL.md)
|
171
179
|
- [PulpAnsibleClient::AnsibleRole](docs/AnsibleRole.md)
|
172
180
|
- [PulpAnsibleClient::AnsibleRoleRemote](docs/AnsibleRoleRemote.md)
|
@@ -206,11 +214,13 @@ Class | Method | HTTP request | Description
|
|
206
214
|
- [PulpAnsibleClient::PaginatedansibleCollectionRemoteResponseList](docs/PaginatedansibleCollectionRemoteResponseList.md)
|
207
215
|
- [PulpAnsibleClient::PaginatedansibleCollectionResponseList](docs/PaginatedansibleCollectionResponseList.md)
|
208
216
|
- [PulpAnsibleClient::PaginatedansibleCollectionVersionResponseList](docs/PaginatedansibleCollectionVersionResponseList.md)
|
217
|
+
- [PulpAnsibleClient::PaginatedansibleGitRemoteResponseList](docs/PaginatedansibleGitRemoteResponseList.md)
|
209
218
|
- [PulpAnsibleClient::PaginatedansibleRoleRemoteResponseList](docs/PaginatedansibleRoleRemoteResponseList.md)
|
210
219
|
- [PulpAnsibleClient::PaginatedansibleRoleResponseList](docs/PaginatedansibleRoleResponseList.md)
|
211
220
|
- [PulpAnsibleClient::PatchedansibleAnsibleDistribution](docs/PatchedansibleAnsibleDistribution.md)
|
212
221
|
- [PulpAnsibleClient::PatchedansibleAnsibleRepository](docs/PatchedansibleAnsibleRepository.md)
|
213
222
|
- [PulpAnsibleClient::PatchedansibleCollectionRemote](docs/PatchedansibleCollectionRemote.md)
|
223
|
+
- [PulpAnsibleClient::PatchedansibleGitRemote](docs/PatchedansibleGitRemote.md)
|
214
224
|
- [PulpAnsibleClient::PatchedansibleRoleRemote](docs/PatchedansibleRoleRemote.md)
|
215
225
|
- [PulpAnsibleClient::PolicyEnum](docs/PolicyEnum.md)
|
216
226
|
- [PulpAnsibleClient::RepoMetadataResponse](docs/RepoMetadataResponse.md)
|
@@ -24,7 +24,7 @@ Name | Type | Description | Notes
|
|
24
24
|
**sock_connect_timeout** | **Float** | aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
|
25
25
|
**sock_read_timeout** | **Float** | aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
|
26
26
|
**headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional]
|
27
|
-
**rate_limit** | **Integer** | Limits
|
27
|
+
**rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional]
|
28
28
|
**requirements_file** | **String** | The string version of Collection requirements yaml. | [optional]
|
29
29
|
**auth_url** | **String** | The URL to receive a session token from, e.g. used with Automation Hub. | [optional]
|
30
30
|
**token** | **String** | The token key to use for authentication. See https://docs.ansible.com/ansible/latest/user_guide/collections_using.html#configuring-the-ansible-galaxy-clientfor more details | [optional]
|
@@ -22,9 +22,10 @@ Name | Type | Description | Notes
|
|
22
22
|
**sock_connect_timeout** | **Float** | aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
|
23
23
|
**sock_read_timeout** | **Float** | aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
|
24
24
|
**headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional]
|
25
|
-
**rate_limit** | **Integer** | Limits
|
25
|
+
**rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional]
|
26
26
|
**requirements_file** | **String** | The string version of Collection requirements yaml. | [optional]
|
27
27
|
**auth_url** | **String** | The URL to receive a session token from, e.g. used with Automation Hub. | [optional]
|
28
|
+
**token** | **String** | The token key to use for authentication. See https://docs.ansible.com/ansible/latest/user_guide/collections_using.html#configuring-the-ansible-galaxy-clientfor more details | [optional]
|
28
29
|
**sync_dependencies** | **Boolean** | Sync dependencies for collections specified via requirements file | [optional] [default to true]
|
29
30
|
|
30
31
|
## Code Sample
|
@@ -53,6 +54,7 @@ instance = PulpAnsibleClient::AnsibleCollectionRemoteResponse.new(pulp_href: nul
|
|
53
54
|
rate_limit: null,
|
54
55
|
requirements_file: null,
|
55
56
|
auth_url: null,
|
57
|
+
token: null,
|
56
58
|
sync_dependencies: null)
|
57
59
|
```
|
58
60
|
|
@@ -4,9 +4,9 @@
|
|
4
4
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
|
-
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
8
|
-
**artifact** | **String** | Artifact file representing the physical content |
|
9
7
|
**pulp_href** | **String** | | [optional] [readonly]
|
8
|
+
**artifact** | **String** | Artifact file representing the physical content | [optional]
|
9
|
+
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
10
10
|
**md5** | **String** | The MD5 checksum if available. | [optional] [readonly]
|
11
11
|
**sha1** | **String** | The SHA-1 checksum if available. | [optional] [readonly]
|
12
12
|
**sha224** | **String** | The SHA-224 checksum if available. | [optional] [readonly]
|
@@ -37,9 +37,9 @@ Name | Type | Description | Notes
|
|
37
37
|
```ruby
|
38
38
|
require 'PulpAnsibleClient'
|
39
39
|
|
40
|
-
instance = PulpAnsibleClient::AnsibleCollectionVersionResponse.new(
|
40
|
+
instance = PulpAnsibleClient::AnsibleCollectionVersionResponse.new(pulp_href: null,
|
41
41
|
artifact: null,
|
42
|
-
|
42
|
+
pulp_created: null,
|
43
43
|
md5: null,
|
44
44
|
sha1: null,
|
45
45
|
sha224: null,
|
@@ -0,0 +1,59 @@
|
|
1
|
+
# PulpAnsibleClient::AnsibleGitRemote
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
Name | Type | Description | Notes
|
6
|
+
------------ | ------------- | ------------- | -------------
|
7
|
+
**sock_read_timeout** | **Float** | aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
|
8
|
+
**pulp_labels** | [**Object**](.md) | | [optional]
|
9
|
+
**client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional]
|
10
|
+
**rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional]
|
11
|
+
**username** | **String** | The username to be used for authentication when syncing. | [optional]
|
12
|
+
**total_timeout** | **Float** | aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
|
13
|
+
**password** | **String** | The password to be used for authentication when syncing. | [optional]
|
14
|
+
**client_key** | **String** | A PEM encoded private key used for authentication. | [optional]
|
15
|
+
**proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional]
|
16
|
+
**tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
|
17
|
+
**max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional]
|
18
|
+
**name** | **String** | A unique name for this remote. |
|
19
|
+
**ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
|
20
|
+
**proxy_password** | **String** | The password to authenticte to the proxy. | [optional]
|
21
|
+
**connect_timeout** | **Float** | aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
|
22
|
+
**headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional]
|
23
|
+
**sock_connect_timeout** | **Float** | aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
|
24
|
+
**url** | **String** | The URL of an external content source. |
|
25
|
+
**proxy_username** | **String** | The username to authenticte to the proxy. | [optional]
|
26
|
+
**download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
|
27
|
+
**metadata_only** | **Boolean** | If True, only metadata about the content will be stored in Pulp. Clients will retrieve content from the remote URL. | [optional]
|
28
|
+
**git_ref** | **String** | A git ref. e.g.: branch, tag, or commit sha. | [optional]
|
29
|
+
|
30
|
+
## Code Sample
|
31
|
+
|
32
|
+
```ruby
|
33
|
+
require 'PulpAnsibleClient'
|
34
|
+
|
35
|
+
instance = PulpAnsibleClient::AnsibleGitRemote.new(sock_read_timeout: null,
|
36
|
+
pulp_labels: null,
|
37
|
+
client_cert: null,
|
38
|
+
rate_limit: null,
|
39
|
+
username: null,
|
40
|
+
total_timeout: null,
|
41
|
+
password: null,
|
42
|
+
client_key: null,
|
43
|
+
proxy_url: null,
|
44
|
+
tls_validation: null,
|
45
|
+
max_retries: null,
|
46
|
+
name: null,
|
47
|
+
ca_cert: null,
|
48
|
+
proxy_password: null,
|
49
|
+
connect_timeout: null,
|
50
|
+
headers: null,
|
51
|
+
sock_connect_timeout: null,
|
52
|
+
url: null,
|
53
|
+
proxy_username: null,
|
54
|
+
download_concurrency: null,
|
55
|
+
metadata_only: null,
|
56
|
+
git_ref: null)
|
57
|
+
```
|
58
|
+
|
59
|
+
|
@@ -0,0 +1,55 @@
|
|
1
|
+
# PulpAnsibleClient::AnsibleGitRemoteResponse
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
Name | Type | Description | Notes
|
6
|
+
------------ | ------------- | ------------- | -------------
|
7
|
+
**sock_read_timeout** | **Float** | aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
|
8
|
+
**pulp_labels** | [**Object**](.md) | | [optional]
|
9
|
+
**client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional]
|
10
|
+
**pulp_href** | **String** | | [optional] [readonly]
|
11
|
+
**rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional]
|
12
|
+
**total_timeout** | **Float** | aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
|
13
|
+
**pulp_last_updated** | **DateTime** | Timestamp of the most recent update of the remote. | [optional] [readonly]
|
14
|
+
**proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional]
|
15
|
+
**tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
|
16
|
+
**max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional]
|
17
|
+
**name** | **String** | A unique name for this remote. |
|
18
|
+
**ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
|
19
|
+
**connect_timeout** | **Float** | aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
|
20
|
+
**headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional]
|
21
|
+
**sock_connect_timeout** | **Float** | aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
|
22
|
+
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
23
|
+
**url** | **String** | The URL of an external content source. |
|
24
|
+
**download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
|
25
|
+
**metadata_only** | **Boolean** | If True, only metadata about the content will be stored in Pulp. Clients will retrieve content from the remote URL. | [optional]
|
26
|
+
**git_ref** | **String** | A git ref. e.g.: branch, tag, or commit sha. | [optional]
|
27
|
+
|
28
|
+
## Code Sample
|
29
|
+
|
30
|
+
```ruby
|
31
|
+
require 'PulpAnsibleClient'
|
32
|
+
|
33
|
+
instance = PulpAnsibleClient::AnsibleGitRemoteResponse.new(sock_read_timeout: null,
|
34
|
+
pulp_labels: null,
|
35
|
+
client_cert: null,
|
36
|
+
pulp_href: null,
|
37
|
+
rate_limit: null,
|
38
|
+
total_timeout: null,
|
39
|
+
pulp_last_updated: null,
|
40
|
+
proxy_url: null,
|
41
|
+
tls_validation: null,
|
42
|
+
max_retries: null,
|
43
|
+
name: null,
|
44
|
+
ca_cert: null,
|
45
|
+
connect_timeout: null,
|
46
|
+
headers: null,
|
47
|
+
sock_connect_timeout: null,
|
48
|
+
pulp_created: null,
|
49
|
+
url: null,
|
50
|
+
download_concurrency: null,
|
51
|
+
metadata_only: null,
|
52
|
+
git_ref: null)
|
53
|
+
```
|
54
|
+
|
55
|
+
|
data/docs/AnsibleRoleRemote.md
CHANGED
@@ -24,7 +24,7 @@ Name | Type | Description | Notes
|
|
24
24
|
**sock_connect_timeout** | **Float** | aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
|
25
25
|
**sock_read_timeout** | **Float** | aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
|
26
26
|
**headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional]
|
27
|
-
**rate_limit** | **Integer** | Limits
|
27
|
+
**rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional]
|
28
28
|
|
29
29
|
## Code Sample
|
30
30
|
|
@@ -22,7 +22,7 @@ Name | Type | Description | Notes
|
|
22
22
|
**sock_connect_timeout** | **Float** | aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
|
23
23
|
**sock_read_timeout** | **Float** | aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
|
24
24
|
**headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional]
|
25
|
-
**rate_limit** | **Integer** | Limits
|
25
|
+
**rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional]
|
26
26
|
|
27
27
|
## Code Sample
|
28
28
|
|
data/docs/AnsibleRoleResponse.md
CHANGED
@@ -4,9 +4,9 @@
|
|
4
4
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
|
-
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
8
|
-
**artifact** | **String** | Artifact file representing the physical content |
|
9
7
|
**pulp_href** | **String** | | [optional] [readonly]
|
8
|
+
**artifact** | **String** | Artifact file representing the physical content |
|
9
|
+
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
10
10
|
**version** | **String** | |
|
11
11
|
**name** | **String** | |
|
12
12
|
**namespace** | **String** | |
|
@@ -16,9 +16,9 @@ Name | Type | Description | Notes
|
|
16
16
|
```ruby
|
17
17
|
require 'PulpAnsibleClient'
|
18
18
|
|
19
|
-
instance = PulpAnsibleClient::AnsibleRoleResponse.new(
|
19
|
+
instance = PulpAnsibleClient::AnsibleRoleResponse.new(pulp_href: null,
|
20
20
|
artifact: null,
|
21
|
-
|
21
|
+
pulp_created: null,
|
22
22
|
version: null,
|
23
23
|
name: null,
|
24
24
|
namespace: null)
|
@@ -15,6 +15,8 @@ Name | Type | Description | Notes
|
|
15
15
|
**name** | **String** | | [optional] [readonly]
|
16
16
|
**namespace** | [**CollectionNamespaceResponse**](CollectionNamespaceResponse.md) | | [optional] [readonly]
|
17
17
|
**metadata** | [**CollectionMetadataResponse**](CollectionMetadataResponse.md) | | [optional] [readonly]
|
18
|
+
**git_url** | **String** | | [optional] [readonly]
|
19
|
+
**git_commit_sha** | **String** | | [optional] [readonly]
|
18
20
|
**manifest** | [**Object**](.md) | A JSON field holding MANIFEST.json data. | [optional] [readonly]
|
19
21
|
**files** | [**Object**](.md) | A JSON field holding FILES.json data. | [optional] [readonly]
|
20
22
|
|
@@ -34,6 +36,8 @@ instance = PulpAnsibleClient::CollectionVersionResponse.new(version: null,
|
|
34
36
|
name: null,
|
35
37
|
namespace: null,
|
36
38
|
metadata: null,
|
39
|
+
git_url: null,
|
40
|
+
git_commit_sha: null,
|
37
41
|
manifest: null,
|
38
42
|
files: null)
|
39
43
|
```
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# PulpAnsibleClient::PaginatedansibleGitRemoteResponseList
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
Name | Type | Description | Notes
|
6
|
+
------------ | ------------- | ------------- | -------------
|
7
|
+
**count** | **Integer** | | [optional]
|
8
|
+
**_next** | **String** | | [optional]
|
9
|
+
**previous** | **String** | | [optional]
|
10
|
+
**results** | [**Array<AnsibleGitRemoteResponse>**](AnsibleGitRemoteResponse.md) | | [optional]
|
11
|
+
|
12
|
+
## Code Sample
|
13
|
+
|
14
|
+
```ruby
|
15
|
+
require 'PulpAnsibleClient'
|
16
|
+
|
17
|
+
instance = PulpAnsibleClient::PaginatedansibleGitRemoteResponseList.new(count: 123,
|
18
|
+
_next: http://api.example.org/accounts/?offset=400&limit=100,
|
19
|
+
previous: http://api.example.org/accounts/?offset=200&limit=100,
|
20
|
+
results: null)
|
21
|
+
```
|
22
|
+
|
23
|
+
|
@@ -24,7 +24,7 @@ Name | Type | Description | Notes
|
|
24
24
|
**sock_connect_timeout** | **Float** | aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
|
25
25
|
**sock_read_timeout** | **Float** | aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
|
26
26
|
**headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional]
|
27
|
-
**rate_limit** | **Integer** | Limits
|
27
|
+
**rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional]
|
28
28
|
**requirements_file** | **String** | The string version of Collection requirements yaml. | [optional]
|
29
29
|
**auth_url** | **String** | The URL to receive a session token from, e.g. used with Automation Hub. | [optional]
|
30
30
|
**token** | **String** | The token key to use for authentication. See https://docs.ansible.com/ansible/latest/user_guide/collections_using.html#configuring-the-ansible-galaxy-clientfor more details | [optional]
|
@@ -0,0 +1,59 @@
|
|
1
|
+
# PulpAnsibleClient::PatchedansibleGitRemote
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
Name | Type | Description | Notes
|
6
|
+
------------ | ------------- | ------------- | -------------
|
7
|
+
**sock_read_timeout** | **Float** | aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
|
8
|
+
**pulp_labels** | [**Object**](.md) | | [optional]
|
9
|
+
**client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional]
|
10
|
+
**rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional]
|
11
|
+
**username** | **String** | The username to be used for authentication when syncing. | [optional]
|
12
|
+
**total_timeout** | **Float** | aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
|
13
|
+
**password** | **String** | The password to be used for authentication when syncing. | [optional]
|
14
|
+
**client_key** | **String** | A PEM encoded private key used for authentication. | [optional]
|
15
|
+
**proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional]
|
16
|
+
**tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
|
17
|
+
**max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional]
|
18
|
+
**name** | **String** | A unique name for this remote. | [optional]
|
19
|
+
**ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
|
20
|
+
**proxy_password** | **String** | The password to authenticte to the proxy. | [optional]
|
21
|
+
**connect_timeout** | **Float** | aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
|
22
|
+
**headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional]
|
23
|
+
**sock_connect_timeout** | **Float** | aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
|
24
|
+
**url** | **String** | The URL of an external content source. | [optional]
|
25
|
+
**proxy_username** | **String** | The username to authenticte to the proxy. | [optional]
|
26
|
+
**download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
|
27
|
+
**metadata_only** | **Boolean** | If True, only metadata about the content will be stored in Pulp. Clients will retrieve content from the remote URL. | [optional]
|
28
|
+
**git_ref** | **String** | A git ref. e.g.: branch, tag, or commit sha. | [optional]
|
29
|
+
|
30
|
+
## Code Sample
|
31
|
+
|
32
|
+
```ruby
|
33
|
+
require 'PulpAnsibleClient'
|
34
|
+
|
35
|
+
instance = PulpAnsibleClient::PatchedansibleGitRemote.new(sock_read_timeout: null,
|
36
|
+
pulp_labels: null,
|
37
|
+
client_cert: null,
|
38
|
+
rate_limit: null,
|
39
|
+
username: null,
|
40
|
+
total_timeout: null,
|
41
|
+
password: null,
|
42
|
+
client_key: null,
|
43
|
+
proxy_url: null,
|
44
|
+
tls_validation: null,
|
45
|
+
max_retries: null,
|
46
|
+
name: null,
|
47
|
+
ca_cert: null,
|
48
|
+
proxy_password: null,
|
49
|
+
connect_timeout: null,
|
50
|
+
headers: null,
|
51
|
+
sock_connect_timeout: null,
|
52
|
+
url: null,
|
53
|
+
proxy_username: null,
|
54
|
+
download_concurrency: null,
|
55
|
+
metadata_only: null,
|
56
|
+
git_ref: null)
|
57
|
+
```
|
58
|
+
|
59
|
+
|
@@ -24,7 +24,7 @@ Name | Type | Description | Notes
|
|
24
24
|
**sock_connect_timeout** | **Float** | aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
|
25
25
|
**sock_read_timeout** | **Float** | aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
|
26
26
|
**headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional]
|
27
|
-
**rate_limit** | **Integer** | Limits
|
27
|
+
**rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional]
|
28
28
|
|
29
29
|
## Code Sample
|
30
30
|
|