pulp_maven_client 0.2.0b1.dev01595620836 → 0.2.0b1.dev01596139522

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of pulp_maven_client might be problematic. Click here for more details.

Files changed (92) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +24 -13
  3. data/docs/ContentArtifactApi.md +32 -32
  4. data/docs/ContentSummary.md +3 -3
  5. data/docs/ContentSummaryResponse.md +21 -0
  6. data/docs/DistributionsMavenApi.md +104 -56
  7. data/docs/InlineResponse200.md +3 -3
  8. data/docs/InlineResponse2001.md +3 -3
  9. data/docs/InlineResponse2002.md +3 -3
  10. data/docs/InlineResponse2003.md +3 -3
  11. data/docs/InlineResponse2004.md +3 -3
  12. data/docs/MavenMavenArtifact.md +3 -13
  13. data/docs/MavenMavenArtifactResponse.md +29 -0
  14. data/docs/MavenMavenDistribution.md +1 -7
  15. data/docs/MavenMavenDistributionResponse.md +29 -0
  16. data/docs/MavenMavenRemote.md +2 -8
  17. data/docs/MavenMavenRemoteResponse.md +43 -0
  18. data/docs/MavenMavenRepository.md +4 -10
  19. data/docs/MavenMavenRepositoryResponse.md +29 -0
  20. data/docs/PatchedmavenMavenDistribution.md +23 -0
  21. data/docs/PatchedmavenMavenRemote.md +37 -0
  22. data/docs/PatchedmavenMavenRepository.md +21 -0
  23. data/docs/PolicyEnum.md +16 -0
  24. data/docs/RemotesMavenApi.md +121 -61
  25. data/docs/RepositoriesMavenApi.md +73 -49
  26. data/docs/RepositoriesMavenVersionsApi.md +90 -58
  27. data/docs/RepositoryVersion.md +1 -9
  28. data/docs/RepositoryVersionResponse.md +25 -0
  29. data/lib/pulp_maven_client.rb +12 -2
  30. data/lib/pulp_maven_client/api/content_artifact_api.rb +44 -44
  31. data/lib/pulp_maven_client/api/distributions_maven_api.rb +131 -68
  32. data/lib/pulp_maven_client/api/remotes_maven_api.rb +159 -78
  33. data/lib/pulp_maven_client/api/repositories_maven_api.rb +89 -62
  34. data/lib/pulp_maven_client/api/repositories_maven_versions_api.rb +119 -74
  35. data/lib/pulp_maven_client/api_client.rb +2 -2
  36. data/lib/pulp_maven_client/api_error.rb +2 -2
  37. data/lib/pulp_maven_client/configuration.rb +3 -3
  38. data/lib/pulp_maven_client/models/async_operation_response.rb +3 -2
  39. data/lib/pulp_maven_client/models/content_summary.rb +9 -15
  40. data/lib/pulp_maven_client/models/content_summary_response.rb +240 -0
  41. data/lib/pulp_maven_client/models/inline_response200.rb +3 -13
  42. data/lib/pulp_maven_client/models/inline_response2001.rb +3 -13
  43. data/lib/pulp_maven_client/models/inline_response2002.rb +3 -13
  44. data/lib/pulp_maven_client/models/inline_response2003.rb +3 -13
  45. data/lib/pulp_maven_client/models/inline_response2004.rb +3 -13
  46. data/lib/pulp_maven_client/models/maven_maven_artifact.rb +14 -117
  47. data/lib/pulp_maven_client/models/maven_maven_artifact_response.rb +272 -0
  48. data/lib/pulp_maven_client/models/maven_maven_distribution.rb +4 -85
  49. data/lib/pulp_maven_client/models/maven_maven_distribution_response.rb +279 -0
  50. data/lib/pulp_maven_client/models/maven_maven_remote.rb +5 -197
  51. data/lib/pulp_maven_client/models/maven_maven_remote_response.rb +368 -0
  52. data/lib/pulp_maven_client/models/maven_maven_repository.rb +18 -78
  53. data/lib/pulp_maven_client/models/maven_maven_repository_response.rb +271 -0
  54. data/lib/pulp_maven_client/models/patchedmaven_maven_distribution.rb +240 -0
  55. data/lib/pulp_maven_client/models/patchedmaven_maven_remote.rb +329 -0
  56. data/lib/pulp_maven_client/models/patchedmaven_maven_repository.rb +229 -0
  57. data/lib/pulp_maven_client/models/policy_enum.rb +36 -0
  58. data/lib/pulp_maven_client/models/repository_version.rb +7 -43
  59. data/lib/pulp_maven_client/models/repository_version_response.rb +246 -0
  60. data/lib/pulp_maven_client/version.rb +3 -3
  61. data/pulp_maven_client.gemspec +4 -4
  62. data/spec/api/content_artifact_api_spec.rb +14 -14
  63. data/spec/api/distributions_maven_api_spec.rb +39 -18
  64. data/spec/api/remotes_maven_api_spec.rb +48 -21
  65. data/spec/api/repositories_maven_api_spec.rb +24 -15
  66. data/spec/api/repositories_maven_versions_api_spec.rb +38 -23
  67. data/spec/api_client_spec.rb +2 -2
  68. data/spec/configuration_spec.rb +2 -2
  69. data/spec/models/async_operation_response_spec.rb +2 -2
  70. data/spec/models/content_summary_response_spec.rb +53 -0
  71. data/spec/models/content_summary_spec.rb +2 -2
  72. data/spec/models/inline_response2001_spec.rb +2 -2
  73. data/spec/models/inline_response2002_spec.rb +2 -2
  74. data/spec/models/inline_response2003_spec.rb +2 -2
  75. data/spec/models/inline_response2004_spec.rb +2 -2
  76. data/spec/models/inline_response200_spec.rb +2 -2
  77. data/spec/models/maven_maven_artifact_response_spec.rb +77 -0
  78. data/spec/models/maven_maven_artifact_spec.rb +3 -33
  79. data/spec/models/maven_maven_distribution_response_spec.rb +77 -0
  80. data/spec/models/maven_maven_distribution_spec.rb +2 -20
  81. data/spec/models/maven_maven_remote_response_spec.rb +119 -0
  82. data/spec/models/maven_maven_remote_spec.rb +2 -24
  83. data/spec/models/maven_maven_repository_response_spec.rb +77 -0
  84. data/spec/models/maven_maven_repository_spec.rb +5 -23
  85. data/spec/models/patchedmaven_maven_distribution_spec.rb +59 -0
  86. data/spec/models/patchedmaven_maven_remote_spec.rb +101 -0
  87. data/spec/models/patchedmaven_maven_repository_spec.rb +53 -0
  88. data/spec/models/policy_enum_spec.rb +35 -0
  89. data/spec/models/repository_version_response_spec.rb +65 -0
  90. data/spec/models/repository_version_spec.rb +2 -26
  91. data/spec/spec_helper.rb +2 -2
  92. metadata +44 -4
@@ -4,17 +4,17 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **count** | **Integer** | |
7
+ **count** | **Integer** | | [optional]
8
8
  **_next** | **String** | | [optional]
9
9
  **previous** | **String** | | [optional]
10
- **results** | [**Array<MavenMavenArtifact>**](MavenMavenArtifact.md) | |
10
+ **results** | [**Array<MavenMavenArtifactResponse>**](MavenMavenArtifactResponse.md) | | [optional]
11
11
 
12
12
  ## Code Sample
13
13
 
14
14
  ```ruby
15
15
  require 'PulpMavenClient'
16
16
 
17
- instance = PulpMavenClient::InlineResponse200.new(count: null,
17
+ instance = PulpMavenClient::InlineResponse200.new(count: 123,
18
18
  _next: null,
19
19
  previous: null,
20
20
  results: null)
@@ -4,17 +4,17 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **count** | **Integer** | |
7
+ **count** | **Integer** | | [optional]
8
8
  **_next** | **String** | | [optional]
9
9
  **previous** | **String** | | [optional]
10
- **results** | [**Array<MavenMavenDistribution>**](MavenMavenDistribution.md) | |
10
+ **results** | [**Array<MavenMavenDistributionResponse>**](MavenMavenDistributionResponse.md) | | [optional]
11
11
 
12
12
  ## Code Sample
13
13
 
14
14
  ```ruby
15
15
  require 'PulpMavenClient'
16
16
 
17
- instance = PulpMavenClient::InlineResponse2001.new(count: null,
17
+ instance = PulpMavenClient::InlineResponse2001.new(count: 123,
18
18
  _next: null,
19
19
  previous: null,
20
20
  results: null)
@@ -4,17 +4,17 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **count** | **Integer** | |
7
+ **count** | **Integer** | | [optional]
8
8
  **_next** | **String** | | [optional]
9
9
  **previous** | **String** | | [optional]
10
- **results** | [**Array<MavenMavenRemote>**](MavenMavenRemote.md) | |
10
+ **results** | [**Array<MavenMavenRemoteResponse>**](MavenMavenRemoteResponse.md) | | [optional]
11
11
 
12
12
  ## Code Sample
13
13
 
14
14
  ```ruby
15
15
  require 'PulpMavenClient'
16
16
 
17
- instance = PulpMavenClient::InlineResponse2002.new(count: null,
17
+ instance = PulpMavenClient::InlineResponse2002.new(count: 123,
18
18
  _next: null,
19
19
  previous: null,
20
20
  results: null)
@@ -4,17 +4,17 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **count** | **Integer** | |
7
+ **count** | **Integer** | | [optional]
8
8
  **_next** | **String** | | [optional]
9
9
  **previous** | **String** | | [optional]
10
- **results** | [**Array<MavenMavenRepository>**](MavenMavenRepository.md) | |
10
+ **results** | [**Array<MavenMavenRepositoryResponse>**](MavenMavenRepositoryResponse.md) | | [optional]
11
11
 
12
12
  ## Code Sample
13
13
 
14
14
  ```ruby
15
15
  require 'PulpMavenClient'
16
16
 
17
- instance = PulpMavenClient::InlineResponse2003.new(count: null,
17
+ instance = PulpMavenClient::InlineResponse2003.new(count: 123,
18
18
  _next: null,
19
19
  previous: null,
20
20
  results: null)
@@ -4,17 +4,17 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **count** | **Integer** | |
7
+ **count** | **Integer** | | [optional]
8
8
  **_next** | **String** | | [optional]
9
9
  **previous** | **String** | | [optional]
10
- **results** | [**Array<RepositoryVersion>**](RepositoryVersion.md) | |
10
+ **results** | [**Array<RepositoryVersionResponse>**](RepositoryVersionResponse.md) | | [optional]
11
11
 
12
12
  ## Code Sample
13
13
 
14
14
  ```ruby
15
15
  require 'PulpMavenClient'
16
16
 
17
- instance = PulpMavenClient::InlineResponse2004.new(count: null,
17
+ instance = PulpMavenClient::InlineResponse2004.new(count: 123,
18
18
  _next: null,
19
19
  previous: null,
20
20
  results: null)
@@ -4,26 +4,16 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **pulp_href** | **String** | | [optional] [readonly]
8
- **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
9
7
  **artifact** | **String** | Artifact file representing the physical content |
10
- **group_id** | **String** | Group Id of the artifact's package. | [optional] [readonly]
11
- **artifact_id** | **String** | Artifact Id of the artifact's package. | [optional] [readonly]
12
- **version** | **String** | Version of the artifact's package. | [optional] [readonly]
13
- **filename** | **String** | Filename of the artifact. | [optional] [readonly]
8
+ **relative_path** | **String** | Path where the artifact is located relative to distributions base_path |
14
9
 
15
10
  ## Code Sample
16
11
 
17
12
  ```ruby
18
13
  require 'PulpMavenClient'
19
14
 
20
- instance = PulpMavenClient::MavenMavenArtifact.new(pulp_href: null,
21
- pulp_created: null,
22
- artifact: null,
23
- group_id: null,
24
- artifact_id: null,
25
- version: null,
26
- filename: null)
15
+ instance = PulpMavenClient::MavenMavenArtifact.new(artifact: null,
16
+ relative_path: null)
27
17
  ```
28
18
 
29
19
 
@@ -0,0 +1,29 @@
1
+ # PulpMavenClient::MavenMavenArtifactResponse
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
+ **artifact** | **String** | Artifact file representing the physical content |
10
+ **group_id** | **String** | Group Id of the artifact's package. | [optional] [readonly]
11
+ **artifact_id** | **String** | Artifact Id of the artifact's package. | [optional] [readonly]
12
+ **version** | **String** | Version of the artifact's package. | [optional] [readonly]
13
+ **filename** | **String** | Filename of the artifact. | [optional] [readonly]
14
+
15
+ ## Code Sample
16
+
17
+ ```ruby
18
+ require 'PulpMavenClient'
19
+
20
+ instance = PulpMavenClient::MavenMavenArtifactResponse.new(pulp_href: null,
21
+ pulp_created: null,
22
+ artifact: null,
23
+ group_id: null,
24
+ artifact_id: null,
25
+ version: null,
26
+ filename: null)
27
+ ```
28
+
29
+
@@ -4,10 +4,7 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **pulp_href** | **String** | | [optional] [readonly]
8
- **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
9
7
  **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
- **base_url** | **String** | The URL for accessing the publication as defined by this distribution. | [optional] [readonly]
11
8
  **content_guard** | **String** | An optional content-guard. | [optional]
12
9
  **name** | **String** | A unique name. Ex, `rawhide` and `stable`. |
13
10
  **remote** | **String** | Remote that can be used to fetch content when using pull-through caching. | [optional]
@@ -17,10 +14,7 @@ Name | Type | Description | Notes
17
14
  ```ruby
18
15
  require 'PulpMavenClient'
19
16
 
20
- instance = PulpMavenClient::MavenMavenDistribution.new(pulp_href: null,
21
- pulp_created: null,
22
- base_path: null,
23
- base_url: null,
17
+ instance = PulpMavenClient::MavenMavenDistribution.new(base_path: null,
24
18
  content_guard: null,
25
19
  name: null,
26
20
  remote: null)
@@ -0,0 +1,29 @@
1
+ # PulpMavenClient::MavenMavenDistributionResponse
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
+ **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
+ **base_url** | **String** | The URL for accessing the publication as defined by this distribution. | [optional] [readonly]
11
+ **content_guard** | **String** | An optional content-guard. | [optional]
12
+ **name** | **String** | A unique name. Ex, `rawhide` and `stable`. |
13
+ **remote** | **String** | Remote that can be used to fetch content when using pull-through caching. | [optional]
14
+
15
+ ## Code Sample
16
+
17
+ ```ruby
18
+ require 'PulpMavenClient'
19
+
20
+ instance = PulpMavenClient::MavenMavenDistributionResponse.new(pulp_href: null,
21
+ pulp_created: null,
22
+ base_path: null,
23
+ base_url: null,
24
+ content_guard: null,
25
+ name: null,
26
+ remote: null)
27
+ ```
28
+
29
+
@@ -4,8 +4,6 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **pulp_href** | **String** | | [optional] [readonly]
8
- **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
9
7
  **name** | **String** | A unique name for this remote. |
10
8
  **url** | **String** | The URL of an external content source. |
11
9
  **ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
@@ -15,18 +13,15 @@ Name | Type | Description | Notes
15
13
  **proxy_url** | **String** | The proxy URL. Format: scheme://user:password@host:port | [optional]
16
14
  **username** | **String** | The username to be used for authentication when syncing. | [optional]
17
15
  **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
16
  **download_concurrency** | **Integer** | Total number of simultaneous connections. | [optional]
20
- **policy** | **String** | The policy to use when downloading content. | [optional] [default to 'immediate']
17
+ **policy** | [**PolicyEnum**](PolicyEnum.md) | The policy to use when downloading content. | [optional]
21
18
 
22
19
  ## Code Sample
23
20
 
24
21
  ```ruby
25
22
  require 'PulpMavenClient'
26
23
 
27
- instance = PulpMavenClient::MavenMavenRemote.new(pulp_href: null,
28
- pulp_created: null,
29
- name: null,
24
+ instance = PulpMavenClient::MavenMavenRemote.new(name: null,
30
25
  url: null,
31
26
  ca_cert: null,
32
27
  client_cert: null,
@@ -35,7 +30,6 @@ instance = PulpMavenClient::MavenMavenRemote.new(pulp_href: null,
35
30
  proxy_url: null,
36
31
  username: null,
37
32
  password: null,
38
- pulp_last_updated: null,
39
33
  download_concurrency: null,
40
34
  policy: null)
41
35
  ```
@@ -0,0 +1,43 @@
1
+ # PulpMavenClient::MavenMavenRemoteResponse
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
+ **ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
12
+ **client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional]
13
+ **client_key** | **String** | A PEM encoded private key used for authentication. | [optional]
14
+ **tls_validation** | **Boolean** | If True, TLS 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** | [**PolicyEnum**](PolicyEnum.md) | The policy to use when downloading content. | [optional]
21
+
22
+ ## Code Sample
23
+
24
+ ```ruby
25
+ require 'PulpMavenClient'
26
+
27
+ instance = PulpMavenClient::MavenMavenRemoteResponse.new(pulp_href: null,
28
+ pulp_created: null,
29
+ name: null,
30
+ url: null,
31
+ ca_cert: null,
32
+ client_cert: null,
33
+ client_key: null,
34
+ tls_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
+
@@ -4,24 +4,18 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **pulp_href** | **String** | | [optional] [readonly]
8
- **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
9
- **versions_href** | **String** | | [optional] [readonly]
10
- **latest_version_href** | **String** | | [optional] [readonly]
11
7
  **name** | **String** | A unique name for this repository. |
12
8
  **description** | **String** | An optional description. | [optional]
9
+ **remote** | **String** | | [optional]
13
10
 
14
11
  ## Code Sample
15
12
 
16
13
  ```ruby
17
14
  require 'PulpMavenClient'
18
15
 
19
- instance = PulpMavenClient::MavenMavenRepository.new(pulp_href: null,
20
- pulp_created: null,
21
- versions_href: null,
22
- latest_version_href: null,
23
- name: null,
24
- description: null)
16
+ instance = PulpMavenClient::MavenMavenRepository.new(name: null,
17
+ description: null,
18
+ remote: null)
25
19
  ```
26
20
 
27
21
 
@@ -0,0 +1,29 @@
1
+ # PulpMavenClient::MavenMavenRepositoryResponse
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
+ **versions_href** | **String** | | [optional] [readonly]
10
+ **latest_version_href** | **String** | | [optional] [readonly]
11
+ **name** | **String** | A unique name for this repository. |
12
+ **description** | **String** | An optional description. | [optional]
13
+ **remote** | **String** | | [optional]
14
+
15
+ ## Code Sample
16
+
17
+ ```ruby
18
+ require 'PulpMavenClient'
19
+
20
+ instance = PulpMavenClient::MavenMavenRepositoryResponse.new(pulp_href: null,
21
+ pulp_created: null,
22
+ versions_href: null,
23
+ latest_version_href: null,
24
+ name: null,
25
+ description: null,
26
+ remote: null)
27
+ ```
28
+
29
+
@@ -0,0 +1,23 @@
1
+ # PulpMavenClient::PatchedmavenMavenDistribution
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **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\") | [optional]
8
+ **content_guard** | **String** | An optional content-guard. | [optional]
9
+ **name** | **String** | A unique name. Ex, `rawhide` and `stable`. | [optional]
10
+ **remote** | **String** | Remote that can be used to fetch content when using pull-through caching. | [optional]
11
+
12
+ ## Code Sample
13
+
14
+ ```ruby
15
+ require 'PulpMavenClient'
16
+
17
+ instance = PulpMavenClient::PatchedmavenMavenDistribution.new(base_path: null,
18
+ content_guard: null,
19
+ name: null,
20
+ remote: null)
21
+ ```
22
+
23
+
@@ -0,0 +1,37 @@
1
+ # PulpMavenClient::PatchedmavenMavenRemote
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **name** | **String** | A unique name for this remote. | [optional]
8
+ **url** | **String** | The URL of an external content source. | [optional]
9
+ **ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
10
+ **client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional]
11
+ **client_key** | **String** | A PEM encoded private key used for authentication. | [optional]
12
+ **tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
13
+ **proxy_url** | **String** | The proxy URL. Format: scheme://user:password@host:port | [optional]
14
+ **username** | **String** | The username to be used for authentication when syncing. | [optional]
15
+ **password** | **String** | The password to be used for authentication when syncing. | [optional]
16
+ **download_concurrency** | **Integer** | Total number of simultaneous connections. | [optional]
17
+ **policy** | [**PolicyEnum**](PolicyEnum.md) | The policy to use when downloading content. | [optional]
18
+
19
+ ## Code Sample
20
+
21
+ ```ruby
22
+ require 'PulpMavenClient'
23
+
24
+ instance = PulpMavenClient::PatchedmavenMavenRemote.new(name: null,
25
+ url: null,
26
+ ca_cert: null,
27
+ client_cert: null,
28
+ client_key: null,
29
+ tls_validation: null,
30
+ proxy_url: null,
31
+ username: null,
32
+ password: null,
33
+ download_concurrency: null,
34
+ policy: null)
35
+ ```
36
+
37
+
@@ -0,0 +1,21 @@
1
+ # PulpMavenClient::PatchedmavenMavenRepository
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **name** | **String** | A unique name for this repository. | [optional]
8
+ **description** | **String** | An optional description. | [optional]
9
+ **remote** | **String** | | [optional]
10
+
11
+ ## Code Sample
12
+
13
+ ```ruby
14
+ require 'PulpMavenClient'
15
+
16
+ instance = PulpMavenClient::PatchedmavenMavenRepository.new(name: null,
17
+ description: null,
18
+ remote: null)
19
+ ```
20
+
21
+