pulp_maven_client 0.1.0b31572381206 → 0.1.0b31574196301
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 +22 -8
- data/docs/ContentArtifactApi.md +6 -6
- data/docs/ContentSummary.md +21 -0
- data/docs/DistributionsMavenApi.md +8 -8
- data/docs/InlineResponse200.md +1 -1
- data/docs/InlineResponse2001.md +1 -1
- data/docs/InlineResponse2002.md +1 -1
- data/docs/InlineResponse2003.md +23 -0
- data/docs/InlineResponse2004.md +23 -0
- data/docs/{MavenArtifact.md → MavenMavenArtifact.md} +2 -4
- data/docs/{MavenDistribution.md → MavenMavenDistribution.md} +2 -2
- data/docs/MavenMavenRemote.md +39 -0
- data/docs/MavenMavenRepository.md +27 -0
- data/docs/RemotesMavenApi.md +10 -10
- data/docs/RepositoriesMavenApi.md +354 -0
- data/docs/RepositoriesMavenVersionsApi.md +214 -0
- data/docs/RepositoryVersion.md +25 -0
- data/lib/pulp_maven_client.rb +11 -4
- data/lib/pulp_maven_client/api/content_artifact_api.rb +9 -9
- data/lib/pulp_maven_client/api/distributions_maven_api.rb +10 -10
- data/lib/pulp_maven_client/api/remotes_maven_api.rb +13 -13
- data/lib/pulp_maven_client/api/repositories_maven_api.rb +430 -0
- data/lib/pulp_maven_client/api/repositories_maven_versions_api.rb +268 -0
- data/lib/pulp_maven_client/api_client.rb +1 -1
- data/lib/pulp_maven_client/api_error.rb +1 -1
- data/lib/pulp_maven_client/configuration.rb +1 -1
- data/lib/pulp_maven_client/models/async_operation_response.rb +12 -2
- data/lib/pulp_maven_client/models/content_summary.rb +246 -0
- data/lib/pulp_maven_client/models/inline_response200.rb +15 -3
- data/lib/pulp_maven_client/models/inline_response2001.rb +15 -3
- data/lib/pulp_maven_client/models/inline_response2002.rb +15 -3
- data/lib/pulp_maven_client/models/inline_response2003.rb +247 -0
- data/lib/pulp_maven_client/models/inline_response2004.rb +247 -0
- data/lib/pulp_maven_client/models/{maven_artifact.rb → maven_maven_artifact.rb} +16 -40
- data/lib/pulp_maven_client/models/{maven_distribution.rb → maven_maven_distribution.rb} +17 -23
- data/lib/pulp_maven_client/models/{maven_remote.rb → maven_maven_remote.rb} +69 -105
- data/lib/pulp_maven_client/models/maven_maven_repository.rb +294 -0
- data/lib/pulp_maven_client/models/repository_version.rb +244 -0
- data/lib/pulp_maven_client/version.rb +2 -2
- data/pulp_maven_client.gemspec +1 -1
- data/spec/api/content_artifact_api_spec.rb +3 -3
- data/spec/api/distributions_maven_api_spec.rb +2 -2
- data/spec/api/remotes_maven_api_spec.rb +3 -3
- data/spec/api/repositories_maven_api_spec.rb +116 -0
- data/spec/api/repositories_maven_versions_api_spec.rb +91 -0
- data/spec/api_client_spec.rb +1 -1
- data/spec/configuration_spec.rb +1 -1
- data/spec/models/async_operation_response_spec.rb +1 -1
- data/spec/models/content_summary_spec.rb +53 -0
- data/spec/models/inline_response2001_spec.rb +1 -1
- data/spec/models/inline_response2002_spec.rb +1 -1
- data/spec/models/inline_response2003_spec.rb +59 -0
- data/spec/models/inline_response2004_spec.rb +59 -0
- data/spec/models/inline_response200_spec.rb +1 -1
- data/spec/models/{maven_artifact_spec.rb → maven_maven_artifact_spec.rb} +7 -13
- data/spec/models/{maven_distribution_spec.rb → maven_maven_distribution_spec.rb} +7 -7
- data/spec/models/{maven_remote_spec.rb → maven_maven_remote_spec.rb} +11 -23
- data/spec/models/maven_maven_repository_spec.rb +71 -0
- data/spec/models/repository_version_spec.rb +65 -0
- data/spec/spec_helper.rb +1 -1
- metadata +42 -14
- data/docs/MavenRemote.md +0 -43
data/docs/MavenRemote.md
DELETED
@@ -1,43 +0,0 @@
|
|
1
|
-
# PulpMavenClient::MavenRemote
|
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** | A unique name for this remote. |
|
10
|
-
**url** | **String** | The URL of an external content source. |
|
11
|
-
**ssl_ca_certificate** | **String** | A string containing the PEM encoded CA certificate used to validate the server certificate presented by the remote server. All new line characters must be escaped. Returns SHA256 sum on GET. | [optional]
|
12
|
-
**ssl_client_certificate** | **String** | A string containing the PEM encoded client certificate used for authentication. All new line characters must be escaped. Returns SHA256 sum on GET. | [optional]
|
13
|
-
**ssl_client_key** | **String** | A PEM encoded private key used for authentication. Returns SHA256 sum on GET. | [optional]
|
14
|
-
**ssl_validation** | **Boolean** | If True, SSL peer validation must be performed. | [optional]
|
15
|
-
**proxy_url** | **String** | The proxy URL. Format: scheme://user:password@host:port | [optional]
|
16
|
-
**username** | **String** | The username to be used for authentication when syncing. | [optional]
|
17
|
-
**password** | **String** | The password to be used for authentication when syncing. | [optional]
|
18
|
-
**pulp_last_updated** | **DateTime** | Timestamp of the most recent update of the remote. | [optional] [readonly]
|
19
|
-
**download_concurrency** | **Integer** | Total number of simultaneous connections. | [optional]
|
20
|
-
**policy** | **String** | The policy to use when downloading content. | [optional] [default to 'immediate']
|
21
|
-
|
22
|
-
## Code Sample
|
23
|
-
|
24
|
-
```ruby
|
25
|
-
require 'PulpMavenClient'
|
26
|
-
|
27
|
-
instance = PulpMavenClient::MavenRemote.new(pulp_href: null,
|
28
|
-
pulp_created: null,
|
29
|
-
name: null,
|
30
|
-
url: null,
|
31
|
-
ssl_ca_certificate: null,
|
32
|
-
ssl_client_certificate: null,
|
33
|
-
ssl_client_key: null,
|
34
|
-
ssl_validation: null,
|
35
|
-
proxy_url: null,
|
36
|
-
username: null,
|
37
|
-
password: null,
|
38
|
-
pulp_last_updated: null,
|
39
|
-
download_concurrency: null,
|
40
|
-
policy: null)
|
41
|
-
```
|
42
|
-
|
43
|
-
|