pulp_ansible_client 0.21.14 → 0.21.15
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 +7 -5
- data/docs/{AnsibleCollection.md → AnsibleAnsibleCollectionDeprecated.md} +4 -2
- data/docs/AnsibleAnsibleCollectionDeprecatedResponse.md +25 -0
- data/docs/AnsibleCollectionVersion.md +4 -4
- data/docs/AnsibleCollectionVersionResponse.md +3 -3
- data/docs/AnsibleGitRemote.md +27 -27
- data/docs/AnsibleGitRemoteResponse.md +25 -25
- data/docs/AnsibleRole.md +3 -3
- data/docs/AnsibleRoleResponse.md +3 -3
- data/docs/ContentCollectionDeprecationsApi.md +10 -10
- data/docs/ContentCollectionVersionsApi.md +4 -4
- data/docs/PaginatedansibleAnsibleCollectionDeprecatedResponseList.md +23 -0
- data/docs/PatchedansibleGitRemote.md +27 -27
- data/lib/pulp_ansible_client/api/content_collection_deprecations_api.rb +20 -20
- data/lib/pulp_ansible_client/api/content_collection_versions_api.rb +6 -6
- data/lib/pulp_ansible_client/models/{ansible_collection.rb → ansible_ansible_collection_deprecated.rb} +15 -5
- data/lib/pulp_ansible_client/models/ansible_ansible_collection_deprecated_response.rb +257 -0
- data/lib/pulp_ansible_client/models/ansible_collection_version.rb +18 -18
- data/lib/pulp_ansible_client/models/ansible_collection_version_response.rb +11 -11
- data/lib/pulp_ansible_client/models/ansible_git_remote.rb +221 -221
- data/lib/pulp_ansible_client/models/ansible_git_remote_response.rb +143 -143
- data/lib/pulp_ansible_client/models/ansible_role.rb +11 -11
- data/lib/pulp_ansible_client/models/ansible_role_response.rb +11 -11
- data/lib/pulp_ansible_client/models/paginatedansible_ansible_collection_deprecated_response_list.rb +247 -0
- data/lib/pulp_ansible_client/models/patchedansible_git_remote.rb +220 -220
- data/lib/pulp_ansible_client/version.rb +1 -1
- data/lib/pulp_ansible_client.rb +3 -1
- data/spec/api/content_collection_deprecations_api_spec.rb +5 -5
- data/spec/api/content_collection_versions_api_spec.rb +2 -2
- data/spec/models/ansible_ansible_collection_deprecated_response_spec.rb +65 -0
- data/spec/models/{ansible_collection_spec.rb → ansible_ansible_collection_deprecated_spec.rb} +12 -6
- data/spec/models/ansible_collection_version_response_spec.rb +4 -4
- data/spec/models/ansible_collection_version_spec.rb +3 -3
- data/spec/models/ansible_git_remote_response_spec.rb +18 -18
- data/spec/models/ansible_git_remote_spec.rb +19 -19
- data/spec/models/ansible_role_response_spec.rb +4 -4
- data/spec/models/ansible_role_spec.rb +2 -2
- data/spec/models/paginatedansible_ansible_collection_deprecated_response_list_spec.rb +59 -0
- data/spec/models/patchedansible_git_remote_spec.rb +19 -19
- metadata +14 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7024451f9af9f1d4cb04001629f4a48b1fd8bd2d14570b957ae731d3b658047c
|
|
4
|
+
data.tar.gz: 594a5d73398670735818ca49f8f5271b99f82bb2dbe1c0a28992b90ca8b34377
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2bc82538dcf415941475d8370f3a3058b860a827c2549c2c896e4841a82844483bcdc95b872b966a08d0abd02460fd0177217a042034eb5ad33589b9b9c6a43c
|
|
7
|
+
data.tar.gz: 9d3cddea83b0872def59d6bdcaf2941bf3b8438b32e85edcc84faf1c6b3a9e5f5e6641a9e9e0a2e0cedaaf9f0f807e46fd4a5121c0c48384bdd81a86c4677277
|
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.21.
|
|
10
|
+
- Package version: 0.21.15
|
|
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.21.
|
|
27
|
+
gem install ./pulp_ansible_client-0.21.15.gem
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
-
(for development, run `gem install --dev ./pulp_ansible_client-0.21.
|
|
30
|
+
(for development, run `gem install --dev ./pulp_ansible_client-0.21.15.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.21.
|
|
36
|
+
gem 'pulp_ansible_client', '~> 0.21.15'
|
|
37
37
|
|
|
38
38
|
### Install from Git
|
|
39
39
|
|
|
@@ -269,13 +269,14 @@ Class | Method | HTTP request | Description
|
|
|
269
269
|
|
|
270
270
|
## Documentation for Models
|
|
271
271
|
|
|
272
|
+
- [PulpAnsibleClient::AnsibleAnsibleCollectionDeprecated](docs/AnsibleAnsibleCollectionDeprecated.md)
|
|
273
|
+
- [PulpAnsibleClient::AnsibleAnsibleCollectionDeprecatedResponse](docs/AnsibleAnsibleCollectionDeprecatedResponse.md)
|
|
272
274
|
- [PulpAnsibleClient::AnsibleAnsibleDistribution](docs/AnsibleAnsibleDistribution.md)
|
|
273
275
|
- [PulpAnsibleClient::AnsibleAnsibleDistributionResponse](docs/AnsibleAnsibleDistributionResponse.md)
|
|
274
276
|
- [PulpAnsibleClient::AnsibleAnsibleNamespaceMetadata](docs/AnsibleAnsibleNamespaceMetadata.md)
|
|
275
277
|
- [PulpAnsibleClient::AnsibleAnsibleNamespaceMetadataResponse](docs/AnsibleAnsibleNamespaceMetadataResponse.md)
|
|
276
278
|
- [PulpAnsibleClient::AnsibleAnsibleRepository](docs/AnsibleAnsibleRepository.md)
|
|
277
279
|
- [PulpAnsibleClient::AnsibleAnsibleRepositoryResponse](docs/AnsibleAnsibleRepositoryResponse.md)
|
|
278
|
-
- [PulpAnsibleClient::AnsibleCollection](docs/AnsibleCollection.md)
|
|
279
280
|
- [PulpAnsibleClient::AnsibleCollectionRemote](docs/AnsibleCollectionRemote.md)
|
|
280
281
|
- [PulpAnsibleClient::AnsibleCollectionRemoteResponse](docs/AnsibleCollectionRemoteResponse.md)
|
|
281
282
|
- [PulpAnsibleClient::AnsibleCollectionRemoteResponseHiddenFields](docs/AnsibleCollectionRemoteResponseHiddenFields.md)
|
|
@@ -338,6 +339,7 @@ Class | Method | HTTP request | Description
|
|
|
338
339
|
- [PulpAnsibleClient::PaginatedGalaxyRoleVersionResponseList](docs/PaginatedGalaxyRoleVersionResponseList.md)
|
|
339
340
|
- [PulpAnsibleClient::PaginatedRepositoryVersionResponseList](docs/PaginatedRepositoryVersionResponseList.md)
|
|
340
341
|
- [PulpAnsibleClient::PaginatedTagResponseList](docs/PaginatedTagResponseList.md)
|
|
342
|
+
- [PulpAnsibleClient::PaginatedansibleAnsibleCollectionDeprecatedResponseList](docs/PaginatedansibleAnsibleCollectionDeprecatedResponseList.md)
|
|
341
343
|
- [PulpAnsibleClient::PaginatedansibleAnsibleDistributionResponseList](docs/PaginatedansibleAnsibleDistributionResponseList.md)
|
|
342
344
|
- [PulpAnsibleClient::PaginatedansibleAnsibleNamespaceMetadataResponseList](docs/PaginatedansibleAnsibleNamespaceMetadataResponseList.md)
|
|
343
345
|
- [PulpAnsibleClient::PaginatedansibleAnsibleRepositoryResponseList](docs/PaginatedansibleAnsibleRepositoryResponseList.md)
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
# PulpAnsibleClient::
|
|
1
|
+
# PulpAnsibleClient::AnsibleAnsibleCollectionDeprecated
|
|
2
2
|
|
|
3
3
|
## Properties
|
|
4
4
|
|
|
5
5
|
Name | Type | Description | Notes
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
|
7
|
+
**repository** | **String** | A URI of a repository the new content unit should be associated with. | [optional]
|
|
7
8
|
**name** | **String** | The name of the Collection. |
|
|
8
9
|
**namespace** | **String** | The namespace of the Collection. |
|
|
9
10
|
|
|
@@ -12,7 +13,8 @@ Name | Type | Description | Notes
|
|
|
12
13
|
```ruby
|
|
13
14
|
require 'PulpAnsibleClient'
|
|
14
15
|
|
|
15
|
-
instance = PulpAnsibleClient::
|
|
16
|
+
instance = PulpAnsibleClient::AnsibleAnsibleCollectionDeprecated.new(repository: null,
|
|
17
|
+
name: null,
|
|
16
18
|
namespace: null)
|
|
17
19
|
```
|
|
18
20
|
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# PulpAnsibleClient::AnsibleAnsibleCollectionDeprecatedResponse
|
|
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
|
+
**pulp_last_updated** | **DateTime** | Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same. | [optional] [readonly]
|
|
10
|
+
**name** | **String** | The name of the Collection. |
|
|
11
|
+
**namespace** | **String** | The namespace of the Collection. |
|
|
12
|
+
|
|
13
|
+
## Code Sample
|
|
14
|
+
|
|
15
|
+
```ruby
|
|
16
|
+
require 'PulpAnsibleClient'
|
|
17
|
+
|
|
18
|
+
instance = PulpAnsibleClient::AnsibleAnsibleCollectionDeprecatedResponse.new(pulp_href: null,
|
|
19
|
+
pulp_created: null,
|
|
20
|
+
pulp_last_updated: null,
|
|
21
|
+
name: null,
|
|
22
|
+
namespace: null)
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
|
|
@@ -4,10 +4,10 @@
|
|
|
4
4
|
|
|
5
5
|
Name | Type | Description | Notes
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
|
7
|
-
**
|
|
7
|
+
**artifact** | **String** | Artifact file representing the physical content | [optional]
|
|
8
8
|
**upload** | **String** | An uncommitted upload that may be turned into the content unit. | [optional]
|
|
9
|
+
**file** | **File** | An uploaded file that may be turned into the content unit. | [optional]
|
|
9
10
|
**repository** | **String** | A URI of a repository the new content unit should be associated with. | [optional]
|
|
10
|
-
**artifact** | **String** | Artifact file representing the physical content | [optional]
|
|
11
11
|
**expected_name** | **String** | The name of the collection. | [optional]
|
|
12
12
|
**expected_namespace** | **String** | The namespace of the collection. | [optional]
|
|
13
13
|
**expected_version** | **String** | The version of the collection. | [optional]
|
|
@@ -17,10 +17,10 @@ Name | Type | Description | Notes
|
|
|
17
17
|
```ruby
|
|
18
18
|
require 'PulpAnsibleClient'
|
|
19
19
|
|
|
20
|
-
instance = PulpAnsibleClient::AnsibleCollectionVersion.new(
|
|
20
|
+
instance = PulpAnsibleClient::AnsibleCollectionVersion.new(artifact: null,
|
|
21
21
|
upload: null,
|
|
22
|
+
file: null,
|
|
22
23
|
repository: null,
|
|
23
|
-
artifact: null,
|
|
24
24
|
expected_name: null,
|
|
25
25
|
expected_namespace: null,
|
|
26
26
|
expected_version: null)
|
|
@@ -4,10 +4,10 @@
|
|
|
4
4
|
|
|
5
5
|
Name | Type | Description | Notes
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
|
7
|
+
**artifact** | **String** | Artifact file representing the physical content | [optional]
|
|
7
8
|
**pulp_href** | **String** | | [optional] [readonly]
|
|
8
9
|
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
|
9
10
|
**pulp_last_updated** | **DateTime** | Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same. | [optional] [readonly]
|
|
10
|
-
**artifact** | **String** | Artifact file representing the physical content | [optional]
|
|
11
11
|
**sha256** | **String** | The SHA-256 checksum if available. | [optional] [readonly]
|
|
12
12
|
**md5** | **String** | The MD5 checksum if available. | [optional] [readonly]
|
|
13
13
|
**sha1** | **String** | The SHA-1 checksum if available. | [optional] [readonly]
|
|
@@ -38,10 +38,10 @@ Name | Type | Description | Notes
|
|
|
38
38
|
```ruby
|
|
39
39
|
require 'PulpAnsibleClient'
|
|
40
40
|
|
|
41
|
-
instance = PulpAnsibleClient::AnsibleCollectionVersionResponse.new(
|
|
41
|
+
instance = PulpAnsibleClient::AnsibleCollectionVersionResponse.new(artifact: null,
|
|
42
|
+
pulp_href: null,
|
|
42
43
|
pulp_created: null,
|
|
43
44
|
pulp_last_updated: null,
|
|
44
|
-
artifact: null,
|
|
45
45
|
sha256: null,
|
|
46
46
|
md5: null,
|
|
47
47
|
sha1: null,
|
data/docs/AnsibleGitRemote.md
CHANGED
|
@@ -4,26 +4,26 @@
|
|
|
4
4
|
|
|
5
5
|
Name | Type | Description | Notes
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
|
7
|
+
**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]
|
|
8
|
+
**headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional]
|
|
7
9
|
**client_key** | **String** | A PEM encoded private key used for authentication. | [optional]
|
|
10
|
+
**tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
|
|
11
|
+
**rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional]
|
|
8
12
|
**name** | **String** | A unique name for this remote. |
|
|
9
|
-
**
|
|
10
|
-
**proxy_username** | **String** | The username to authenticte to the proxy. | [optional]
|
|
11
|
-
**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]
|
|
12
|
-
**url** | **String** | The URL of an external content source. |
|
|
13
|
+
**client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional]
|
|
13
14
|
**proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional]
|
|
14
|
-
**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]
|
|
15
|
-
**proxy_password** | **String** | The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed. | [optional]
|
|
16
|
-
**rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [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
|
-
**tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
|
|
19
15
|
**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
|
-
**
|
|
16
|
+
**proxy_password** | **String** | The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed. | [optional]
|
|
17
|
+
**url** | **String** | The URL of an external content source. |
|
|
18
|
+
**username** | **String** | The username to be used for authentication when syncing. | [optional]
|
|
19
|
+
**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]
|
|
20
|
+
**proxy_username** | **String** | The username to authenticte to the proxy. | [optional]
|
|
21
21
|
**ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
|
|
22
|
+
**password** | **String** | The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed. | [optional]
|
|
22
23
|
**pulp_labels** | **Hash<String, String>** | | [optional]
|
|
24
|
+
**max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional]
|
|
23
25
|
**download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
|
|
24
|
-
**
|
|
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
|
-
**username** | **String** | The username to be used for authentication when syncing. | [optional]
|
|
26
|
+
**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]
|
|
27
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
28
|
**git_ref** | **String** | A git ref. e.g.: branch, tag, or commit sha. | [optional]
|
|
29
29
|
|
|
@@ -32,26 +32,26 @@ Name | Type | Description | Notes
|
|
|
32
32
|
```ruby
|
|
33
33
|
require 'PulpAnsibleClient'
|
|
34
34
|
|
|
35
|
-
instance = PulpAnsibleClient::AnsibleGitRemote.new(
|
|
35
|
+
instance = PulpAnsibleClient::AnsibleGitRemote.new(sock_connect_timeout: null,
|
|
36
|
+
headers: null,
|
|
37
|
+
client_key: null,
|
|
38
|
+
tls_validation: null,
|
|
39
|
+
rate_limit: null,
|
|
36
40
|
name: null,
|
|
37
|
-
|
|
38
|
-
proxy_username: null,
|
|
39
|
-
total_timeout: null,
|
|
40
|
-
url: null,
|
|
41
|
+
client_cert: null,
|
|
41
42
|
proxy_url: null,
|
|
42
|
-
sock_connect_timeout: null,
|
|
43
|
-
proxy_password: null,
|
|
44
|
-
rate_limit: null,
|
|
45
|
-
max_retries: null,
|
|
46
|
-
tls_validation: null,
|
|
47
43
|
connect_timeout: null,
|
|
48
|
-
|
|
44
|
+
proxy_password: null,
|
|
45
|
+
url: null,
|
|
46
|
+
username: null,
|
|
47
|
+
sock_read_timeout: null,
|
|
48
|
+
proxy_username: null,
|
|
49
49
|
ca_cert: null,
|
|
50
|
+
password: null,
|
|
50
51
|
pulp_labels: null,
|
|
52
|
+
max_retries: null,
|
|
51
53
|
download_concurrency: null,
|
|
52
|
-
|
|
53
|
-
sock_read_timeout: null,
|
|
54
|
-
username: null,
|
|
54
|
+
total_timeout: null,
|
|
55
55
|
metadata_only: null,
|
|
56
56
|
git_ref: null)
|
|
57
57
|
```
|
|
@@ -4,25 +4,25 @@
|
|
|
4
4
|
|
|
5
5
|
Name | Type | Description | Notes
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
|
7
|
+
**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]
|
|
8
|
+
**headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional]
|
|
9
|
+
**tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
|
|
10
|
+
**rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional]
|
|
7
11
|
**pulp_href** | **String** | | [optional] [readonly]
|
|
8
12
|
**name** | **String** | A unique name for this remote. |
|
|
9
|
-
**
|
|
10
|
-
**pulp_last_updated** | **DateTime** | Timestamp of the most recent update of the remote. | [optional] [readonly]
|
|
11
|
-
**url** | **String** | The URL of an external content source. |
|
|
13
|
+
**client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional]
|
|
12
14
|
**proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional]
|
|
13
|
-
**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]
|
|
14
|
-
**rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional]
|
|
15
|
-
**max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional]
|
|
16
|
-
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
|
17
|
-
**tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
|
|
18
15
|
**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]
|
|
19
|
-
**client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional]
|
|
20
|
-
**ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
|
|
21
16
|
**hidden_fields** | [**Array<AnsibleCollectionRemoteResponseHiddenFields>**](AnsibleCollectionRemoteResponseHiddenFields.md) | List of hidden (write only) fields | [optional] [readonly]
|
|
17
|
+
**pulp_last_updated** | **DateTime** | Timestamp of the most recent update of the remote. | [optional] [readonly]
|
|
18
|
+
**url** | **String** | The URL of an external content source. |
|
|
19
|
+
**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]
|
|
20
|
+
**ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
|
|
22
21
|
**pulp_labels** | **Hash<String, String>** | | [optional]
|
|
22
|
+
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
|
23
|
+
**max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional]
|
|
23
24
|
**download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
|
|
24
|
-
**
|
|
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]
|
|
25
|
+
**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]
|
|
26
26
|
**metadata_only** | **Boolean** | If True, only metadata about the content will be stored in Pulp. Clients will retrieve content from the remote URL. | [optional]
|
|
27
27
|
**git_ref** | **String** | A git ref. e.g.: branch, tag, or commit sha. | [optional]
|
|
28
28
|
|
|
@@ -31,25 +31,25 @@ Name | Type | Description | Notes
|
|
|
31
31
|
```ruby
|
|
32
32
|
require 'PulpAnsibleClient'
|
|
33
33
|
|
|
34
|
-
instance = PulpAnsibleClient::AnsibleGitRemoteResponse.new(
|
|
34
|
+
instance = PulpAnsibleClient::AnsibleGitRemoteResponse.new(sock_connect_timeout: null,
|
|
35
|
+
headers: null,
|
|
36
|
+
tls_validation: null,
|
|
37
|
+
rate_limit: null,
|
|
38
|
+
pulp_href: null,
|
|
35
39
|
name: null,
|
|
36
|
-
|
|
37
|
-
pulp_last_updated: null,
|
|
38
|
-
url: null,
|
|
40
|
+
client_cert: null,
|
|
39
41
|
proxy_url: null,
|
|
40
|
-
sock_connect_timeout: null,
|
|
41
|
-
rate_limit: null,
|
|
42
|
-
max_retries: null,
|
|
43
|
-
pulp_created: null,
|
|
44
|
-
tls_validation: null,
|
|
45
42
|
connect_timeout: null,
|
|
46
|
-
client_cert: null,
|
|
47
|
-
ca_cert: null,
|
|
48
43
|
hidden_fields: null,
|
|
44
|
+
pulp_last_updated: null,
|
|
45
|
+
url: null,
|
|
46
|
+
sock_read_timeout: null,
|
|
47
|
+
ca_cert: null,
|
|
49
48
|
pulp_labels: null,
|
|
49
|
+
pulp_created: null,
|
|
50
|
+
max_retries: null,
|
|
50
51
|
download_concurrency: null,
|
|
51
|
-
|
|
52
|
-
sock_read_timeout: null,
|
|
52
|
+
total_timeout: null,
|
|
53
53
|
metadata_only: null,
|
|
54
54
|
git_ref: null)
|
|
55
55
|
```
|
data/docs/AnsibleRole.md
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
|
|
5
5
|
Name | Type | Description | Notes
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
|
7
|
-
**repository** | **String** | A URI of a repository the new content unit should be associated with. | [optional]
|
|
8
7
|
**artifact** | **String** | Artifact file representing the physical content |
|
|
8
|
+
**repository** | **String** | A URI of a repository the new content unit should be associated with. | [optional]
|
|
9
9
|
**version** | **String** | |
|
|
10
10
|
**name** | **String** | |
|
|
11
11
|
**namespace** | **String** | |
|
|
@@ -15,8 +15,8 @@ Name | Type | Description | Notes
|
|
|
15
15
|
```ruby
|
|
16
16
|
require 'PulpAnsibleClient'
|
|
17
17
|
|
|
18
|
-
instance = PulpAnsibleClient::AnsibleRole.new(
|
|
19
|
-
|
|
18
|
+
instance = PulpAnsibleClient::AnsibleRole.new(artifact: null,
|
|
19
|
+
repository: null,
|
|
20
20
|
version: null,
|
|
21
21
|
name: null,
|
|
22
22
|
namespace: null)
|
data/docs/AnsibleRoleResponse.md
CHANGED
|
@@ -4,10 +4,10 @@
|
|
|
4
4
|
|
|
5
5
|
Name | Type | Description | Notes
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
|
7
|
+
**artifact** | **String** | Artifact file representing the physical content |
|
|
7
8
|
**pulp_href** | **String** | | [optional] [readonly]
|
|
8
9
|
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
|
9
10
|
**pulp_last_updated** | **DateTime** | Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same. | [optional] [readonly]
|
|
10
|
-
**artifact** | **String** | Artifact file representing the physical content |
|
|
11
11
|
**version** | **String** | |
|
|
12
12
|
**name** | **String** | |
|
|
13
13
|
**namespace** | **String** | |
|
|
@@ -17,10 +17,10 @@ Name | Type | Description | Notes
|
|
|
17
17
|
```ruby
|
|
18
18
|
require 'PulpAnsibleClient'
|
|
19
19
|
|
|
20
|
-
instance = PulpAnsibleClient::AnsibleRoleResponse.new(
|
|
20
|
+
instance = PulpAnsibleClient::AnsibleRoleResponse.new(artifact: null,
|
|
21
|
+
pulp_href: null,
|
|
21
22
|
pulp_created: null,
|
|
22
23
|
pulp_last_updated: null,
|
|
23
|
-
artifact: null,
|
|
24
24
|
version: null,
|
|
25
25
|
name: null,
|
|
26
26
|
namespace: null)
|
|
@@ -12,11 +12,11 @@ Method | HTTP request | Description
|
|
|
12
12
|
|
|
13
13
|
## create
|
|
14
14
|
|
|
15
|
-
>
|
|
15
|
+
> AsyncOperationResponse create(ansible_ansible_collection_deprecated)
|
|
16
16
|
|
|
17
17
|
Create an ansible collection deprecated
|
|
18
18
|
|
|
19
|
-
|
|
19
|
+
Trigger an asynchronous task to create content,optionally create new repository version.
|
|
20
20
|
|
|
21
21
|
### Example
|
|
22
22
|
|
|
@@ -31,11 +31,11 @@ PulpAnsibleClient.configure do |config|
|
|
|
31
31
|
end
|
|
32
32
|
|
|
33
33
|
api_instance = PulpAnsibleClient::ContentCollectionDeprecationsApi.new
|
|
34
|
-
|
|
34
|
+
ansible_ansible_collection_deprecated = PulpAnsibleClient::AnsibleAnsibleCollectionDeprecated.new # AnsibleAnsibleCollectionDeprecated |
|
|
35
35
|
|
|
36
36
|
begin
|
|
37
37
|
#Create an ansible collection deprecated
|
|
38
|
-
result = api_instance.create(
|
|
38
|
+
result = api_instance.create(ansible_ansible_collection_deprecated)
|
|
39
39
|
p result
|
|
40
40
|
rescue PulpAnsibleClient::ApiError => e
|
|
41
41
|
puts "Exception when calling ContentCollectionDeprecationsApi->create: #{e}"
|
|
@@ -47,11 +47,11 @@ end
|
|
|
47
47
|
|
|
48
48
|
Name | Type | Description | Notes
|
|
49
49
|
------------- | ------------- | ------------- | -------------
|
|
50
|
-
**
|
|
50
|
+
**ansible_ansible_collection_deprecated** | [**AnsibleAnsibleCollectionDeprecated**](AnsibleAnsibleCollectionDeprecated.md)| |
|
|
51
51
|
|
|
52
52
|
### Return type
|
|
53
53
|
|
|
54
|
-
[**
|
|
54
|
+
[**AsyncOperationResponse**](AsyncOperationResponse.md)
|
|
55
55
|
|
|
56
56
|
### Authorization
|
|
57
57
|
|
|
@@ -65,7 +65,7 @@ Name | Type | Description | Notes
|
|
|
65
65
|
|
|
66
66
|
## list
|
|
67
67
|
|
|
68
|
-
>
|
|
68
|
+
> PaginatedansibleAnsibleCollectionDeprecatedResponseList list(opts)
|
|
69
69
|
|
|
70
70
|
List ansible collection deprecateds
|
|
71
71
|
|
|
@@ -128,7 +128,7 @@ Name | Type | Description | Notes
|
|
|
128
128
|
|
|
129
129
|
### Return type
|
|
130
130
|
|
|
131
|
-
[**
|
|
131
|
+
[**PaginatedansibleAnsibleCollectionDeprecatedResponseList**](PaginatedansibleAnsibleCollectionDeprecatedResponseList.md)
|
|
132
132
|
|
|
133
133
|
### Authorization
|
|
134
134
|
|
|
@@ -142,7 +142,7 @@ Name | Type | Description | Notes
|
|
|
142
142
|
|
|
143
143
|
## read
|
|
144
144
|
|
|
145
|
-
>
|
|
145
|
+
> AnsibleAnsibleCollectionDeprecatedResponse read(ansible_ansible_collection_deprecated_href, opts)
|
|
146
146
|
|
|
147
147
|
Inspect an ansible collection deprecated
|
|
148
148
|
|
|
@@ -187,7 +187,7 @@ Name | Type | Description | Notes
|
|
|
187
187
|
|
|
188
188
|
### Return type
|
|
189
189
|
|
|
190
|
-
[**
|
|
190
|
+
[**AnsibleAnsibleCollectionDeprecatedResponse**](AnsibleAnsibleCollectionDeprecatedResponse.md)
|
|
191
191
|
|
|
192
192
|
### Authorization
|
|
193
193
|
|
|
@@ -32,10 +32,10 @@ end
|
|
|
32
32
|
|
|
33
33
|
api_instance = PulpAnsibleClient::ContentCollectionVersionsApi.new
|
|
34
34
|
opts = {
|
|
35
|
-
|
|
35
|
+
artifact: 'artifact_example', # String | Artifact file representing the physical content
|
|
36
36
|
upload: 'upload_example', # String | An uncommitted upload that may be turned into the content unit.
|
|
37
|
+
file: File.new('/path/to/file'), # File | An uploaded file that may be turned into the content unit.
|
|
37
38
|
repository: 'repository_example', # String | A URI of a repository the new content unit should be associated with.
|
|
38
|
-
artifact: 'artifact_example', # String | Artifact file representing the physical content
|
|
39
39
|
expected_name: 'expected_name_example', # String | The name of the collection.
|
|
40
40
|
expected_namespace: 'expected_namespace_example', # String | The namespace of the collection.
|
|
41
41
|
expected_version: 'expected_version_example' # String | The version of the collection.
|
|
@@ -55,10 +55,10 @@ end
|
|
|
55
55
|
|
|
56
56
|
Name | Type | Description | Notes
|
|
57
57
|
------------- | ------------- | ------------- | -------------
|
|
58
|
-
**
|
|
58
|
+
**artifact** | **String**| Artifact file representing the physical content | [optional]
|
|
59
59
|
**upload** | **String**| An uncommitted upload that may be turned into the content unit. | [optional]
|
|
60
|
+
**file** | **File**| An uploaded file that may be turned into the content unit. | [optional]
|
|
60
61
|
**repository** | **String**| A URI of a repository the new content unit should be associated with. | [optional]
|
|
61
|
-
**artifact** | **String**| Artifact file representing the physical content | [optional]
|
|
62
62
|
**expected_name** | **String**| The name of the collection. | [optional]
|
|
63
63
|
**expected_namespace** | **String**| The namespace of the collection. | [optional]
|
|
64
64
|
**expected_version** | **String**| The version of the collection. | [optional]
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# PulpAnsibleClient::PaginatedansibleAnsibleCollectionDeprecatedResponseList
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
Name | Type | Description | Notes
|
|
6
|
+
------------ | ------------- | ------------- | -------------
|
|
7
|
+
**count** | **Integer** | |
|
|
8
|
+
**_next** | **String** | | [optional]
|
|
9
|
+
**previous** | **String** | | [optional]
|
|
10
|
+
**results** | [**Array<AnsibleAnsibleCollectionDeprecatedResponse>**](AnsibleAnsibleCollectionDeprecatedResponse.md) | |
|
|
11
|
+
|
|
12
|
+
## Code Sample
|
|
13
|
+
|
|
14
|
+
```ruby
|
|
15
|
+
require 'PulpAnsibleClient'
|
|
16
|
+
|
|
17
|
+
instance = PulpAnsibleClient::PaginatedansibleAnsibleCollectionDeprecatedResponseList.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
|
+
|
|
@@ -4,26 +4,26 @@
|
|
|
4
4
|
|
|
5
5
|
Name | Type | Description | Notes
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
|
7
|
+
**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]
|
|
8
|
+
**headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional]
|
|
7
9
|
**client_key** | **String** | A PEM encoded private key used for authentication. | [optional]
|
|
10
|
+
**tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
|
|
11
|
+
**rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional]
|
|
8
12
|
**name** | **String** | A unique name for this remote. | [optional]
|
|
9
|
-
**
|
|
10
|
-
**proxy_username** | **String** | The username to authenticte to the proxy. | [optional]
|
|
11
|
-
**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]
|
|
12
|
-
**url** | **String** | The URL of an external content source. | [optional]
|
|
13
|
+
**client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional]
|
|
13
14
|
**proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional]
|
|
14
|
-
**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]
|
|
15
|
-
**proxy_password** | **String** | The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed. | [optional]
|
|
16
|
-
**rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [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
|
-
**tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
|
|
19
15
|
**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
|
-
**
|
|
16
|
+
**proxy_password** | **String** | The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed. | [optional]
|
|
17
|
+
**url** | **String** | The URL of an external content source. | [optional]
|
|
18
|
+
**username** | **String** | The username to be used for authentication when syncing. | [optional]
|
|
19
|
+
**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]
|
|
20
|
+
**proxy_username** | **String** | The username to authenticte to the proxy. | [optional]
|
|
21
21
|
**ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
|
|
22
|
+
**password** | **String** | The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed. | [optional]
|
|
22
23
|
**pulp_labels** | **Hash<String, String>** | | [optional]
|
|
24
|
+
**max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional]
|
|
23
25
|
**download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
|
|
24
|
-
**
|
|
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
|
-
**username** | **String** | The username to be used for authentication when syncing. | [optional]
|
|
26
|
+
**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]
|
|
27
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
28
|
**git_ref** | **String** | A git ref. e.g.: branch, tag, or commit sha. | [optional]
|
|
29
29
|
|
|
@@ -32,26 +32,26 @@ Name | Type | Description | Notes
|
|
|
32
32
|
```ruby
|
|
33
33
|
require 'PulpAnsibleClient'
|
|
34
34
|
|
|
35
|
-
instance = PulpAnsibleClient::PatchedansibleGitRemote.new(
|
|
35
|
+
instance = PulpAnsibleClient::PatchedansibleGitRemote.new(sock_connect_timeout: null,
|
|
36
|
+
headers: null,
|
|
37
|
+
client_key: null,
|
|
38
|
+
tls_validation: null,
|
|
39
|
+
rate_limit: null,
|
|
36
40
|
name: null,
|
|
37
|
-
|
|
38
|
-
proxy_username: null,
|
|
39
|
-
total_timeout: null,
|
|
40
|
-
url: null,
|
|
41
|
+
client_cert: null,
|
|
41
42
|
proxy_url: null,
|
|
42
|
-
sock_connect_timeout: null,
|
|
43
|
-
proxy_password: null,
|
|
44
|
-
rate_limit: null,
|
|
45
|
-
max_retries: null,
|
|
46
|
-
tls_validation: null,
|
|
47
43
|
connect_timeout: null,
|
|
48
|
-
|
|
44
|
+
proxy_password: null,
|
|
45
|
+
url: null,
|
|
46
|
+
username: null,
|
|
47
|
+
sock_read_timeout: null,
|
|
48
|
+
proxy_username: null,
|
|
49
49
|
ca_cert: null,
|
|
50
|
+
password: null,
|
|
50
51
|
pulp_labels: null,
|
|
52
|
+
max_retries: null,
|
|
51
53
|
download_concurrency: null,
|
|
52
|
-
|
|
53
|
-
sock_read_timeout: null,
|
|
54
|
-
username: null,
|
|
54
|
+
total_timeout: null,
|
|
55
55
|
metadata_only: null,
|
|
56
56
|
git_ref: null)
|
|
57
57
|
```
|