pulp_maven_client 0.8.0 → 0.8.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (34) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/docs/ContentArtifactApi.md +2 -0
  4. data/docs/MavenMavenArtifactResponse.md +2 -0
  5. data/docs/MavenMavenDistributionResponse.md +2 -0
  6. data/docs/MavenMavenRemoteResponse.md +2 -2
  7. data/docs/MavenMavenRemoteResponseHiddenFields.md +2 -2
  8. data/docs/MavenMavenRepositoryResponse.md +2 -0
  9. data/docs/PaginatedRepositoryVersionResponseList.md +2 -2
  10. data/docs/PaginatedmavenMavenArtifactResponseList.md +2 -2
  11. data/docs/PaginatedmavenMavenDistributionResponseList.md +2 -2
  12. data/docs/PaginatedmavenMavenRemoteResponseList.md +2 -2
  13. data/docs/PaginatedmavenMavenRepositoryResponseList.md +2 -2
  14. data/docs/RepositoryVersionResponse.md +2 -0
  15. data/lib/pulp_maven_client/api/content_artifact_api.rb +3 -0
  16. data/lib/pulp_maven_client/models/maven_maven_artifact_response.rb +11 -1
  17. data/lib/pulp_maven_client/models/maven_maven_distribution_response.rb +11 -1
  18. data/lib/pulp_maven_client/models/maven_maven_remote_response.rb +11 -11
  19. data/lib/pulp_maven_client/models/maven_maven_remote_response_hidden_fields.rb +10 -0
  20. data/lib/pulp_maven_client/models/maven_maven_repository_response.rb +11 -1
  21. data/lib/pulp_maven_client/models/paginated_repository_version_response_list.rb +10 -0
  22. data/lib/pulp_maven_client/models/paginatedmaven_maven_artifact_response_list.rb +10 -0
  23. data/lib/pulp_maven_client/models/paginatedmaven_maven_distribution_response_list.rb +10 -0
  24. data/lib/pulp_maven_client/models/paginatedmaven_maven_remote_response_list.rb +10 -0
  25. data/lib/pulp_maven_client/models/paginatedmaven_maven_repository_response_list.rb +10 -0
  26. data/lib/pulp_maven_client/models/repository_version_response.rb +11 -1
  27. data/lib/pulp_maven_client/version.rb +1 -1
  28. data/spec/api/content_artifact_api_spec.rb +1 -0
  29. data/spec/models/maven_maven_artifact_response_spec.rb +6 -0
  30. data/spec/models/maven_maven_distribution_response_spec.rb +6 -0
  31. data/spec/models/maven_maven_remote_response_spec.rb +6 -6
  32. data/spec/models/maven_maven_repository_response_spec.rb +6 -0
  33. data/spec/models/repository_version_response_spec.rb +6 -0
  34. metadata +24 -24
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2010ea8227d6ab9599058857eb478fbdb91787aa7c647579963dfd879bec13c1
4
- data.tar.gz: 87f92797f4efd9ad94c75f7e8c34ef2be16047a6338cf168bc3dea706b9eff0d
3
+ metadata.gz: 37207515145fe9cae4d6b938af17d5318ee80f8fe02b0b6da85e3c8b65984b7a
4
+ data.tar.gz: 1c8fdc6ee34600a49b46c1fb375c849c1967097b3e0b7e3c9901c2ea62579341
5
5
  SHA512:
6
- metadata.gz: 19f1451a2fdbf5da67b4ccd0ec7d9d2b7cea858c1c16ea322c212624535afd85a6ce24c022c91238014e9228325d84734e7ae814562ce492a0c5e0174646fd3e
7
- data.tar.gz: '0802144cc9872c5af65ccbf7c6f26aab75bfe8e3acd3aba452d7958eaeef8921092429d8b38ce4a5bd110031e527ffa0b01754f173a4e58b9780111ee36feac9'
6
+ metadata.gz: e965909476296c32264b54ba47a79b43e5d83de17d0ac9b729f62f416424a8dc5454eff0a6350c6abd63e989e3badcc05979bd43e901f36ba24ab79d6fcc68eb
7
+ data.tar.gz: 7b7a809cf81711843f0889441f0916b2e9d583258c755f35f2527b66eb4326cbc9072cf404412bdefc63d7bd71af6881dfba07be225be5ba83c31877d6a19912
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.8.0
10
+ - Package version: 0.8.1
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_maven_client.gemspec
24
24
  Then either install the gem locally:
25
25
 
26
26
  ```shell
27
- gem install ./pulp_maven_client-0.8.0.gem
27
+ gem install ./pulp_maven_client-0.8.1.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./pulp_maven_client-0.8.0.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./pulp_maven_client-0.8.1.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_maven_client', '~> 0.8.0'
36
+ gem 'pulp_maven_client', '~> 0.8.1'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -91,6 +91,7 @@ opts = {
91
91
  limit: 56, # Integer | Number of results to return per page.
92
92
  offset: 56, # Integer | The initial index from which to return the results.
93
93
  ordering: ['ordering_example'], # Array<String> | Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `group_id` - Group id * `-group_id` - Group id (descending) * `artifact_id` - Artifact id * `-artifact_id` - Artifact id (descending) * `version` - Version * `-version` - Version (descending) * `filename` - Filename * `-filename` - Filename (descending) * `pk` - Pk * `-pk` - Pk (descending)
94
+ orphaned_for: 3.4, # Float | Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
94
95
  pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
95
96
  pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
96
97
  q: 'q_example', # String |
@@ -122,6 +123,7 @@ Name | Type | Description | Notes
122
123
  **limit** | **Integer**| Number of results to return per page. | [optional]
123
124
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
124
125
  **ordering** | [**Array&lt;String&gt;**](String.md)| Ordering * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;group_id&#x60; - Group id * &#x60;-group_id&#x60; - Group id (descending) * &#x60;artifact_id&#x60; - Artifact id * &#x60;-artifact_id&#x60; - Artifact id (descending) * &#x60;version&#x60; - Version * &#x60;-version&#x60; - Version (descending) * &#x60;filename&#x60; - Filename * &#x60;-filename&#x60; - Filename (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending) | [optional]
126
+ **orphaned_for** | **Float**| Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME. | [optional]
125
127
  **pulp_href__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
126
128
  **pulp_id__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
127
129
  **q** | **String**| | [optional]
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
7
  **pulp_href** | **String** | | [optional] [readonly]
8
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]
9
10
  **artifact** | **String** | Artifact file representing the physical content |
10
11
  **group_id** | **String** | Group Id of the artifact&#39;s package. | [optional] [readonly]
11
12
  **artifact_id** | **String** | Artifact Id of the artifact&#39;s package. | [optional] [readonly]
@@ -19,6 +20,7 @@ require 'PulpMavenClient'
19
20
 
20
21
  instance = PulpMavenClient::MavenMavenArtifactResponse.new(pulp_href: null,
21
22
  pulp_created: null,
23
+ pulp_last_updated: null,
22
24
  artifact: null,
23
25
  group_id: null,
24
26
  artifact_id: null,
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
7
  **pulp_href** | **String** | | [optional] [readonly]
8
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]
9
10
  **base_path** | **String** | The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \&quot;foo\&quot; and \&quot;foo/bar\&quot;) |
10
11
  **base_url** | **String** | The URL for accessing the publication as defined by this distribution. | [optional] [readonly]
11
12
  **content_guard** | **String** | An optional content-guard. | [optional]
@@ -22,6 +23,7 @@ require 'PulpMavenClient'
22
23
 
23
24
  instance = PulpMavenClient::MavenMavenDistributionResponse.new(pulp_href: null,
24
25
  pulp_created: null,
26
+ pulp_last_updated: null,
25
27
  base_path: null,
26
28
  base_url: null,
27
29
  content_guard: null,
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
7
  **pulp_href** | **String** | | [optional] [readonly]
8
8
  **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
9
+ **pulp_last_updated** | **DateTime** | Timestamp of the most recent update of the remote. | [optional] [readonly]
9
10
  **name** | **String** | A unique name for this remote. |
10
11
  **url** | **String** | The URL of an external content source. |
11
12
  **ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
@@ -13,7 +14,6 @@ Name | Type | Description | Notes
13
14
  **tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
14
15
  **proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional]
15
16
  **pulp_labels** | **Hash&lt;String, String&gt;** | | [optional]
16
- **pulp_last_updated** | **DateTime** | Timestamp of the most recent update of the remote. | [optional] [readonly]
17
17
  **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
18
18
  **max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional]
19
19
  **policy** | [**PolicyEnum**](PolicyEnum.md) | The policy to use when downloading content. * &#x60;immediate&#x60; - immediate * &#x60;When syncing, download all metadata and content now.&#x60; - When syncing, download all metadata and content now. | [optional]
@@ -32,6 +32,7 @@ require 'PulpMavenClient'
32
32
 
33
33
  instance = PulpMavenClient::MavenMavenRemoteResponse.new(pulp_href: null,
34
34
  pulp_created: null,
35
+ pulp_last_updated: null,
35
36
  name: null,
36
37
  url: null,
37
38
  ca_cert: null,
@@ -39,7 +40,6 @@ instance = PulpMavenClient::MavenMavenRemoteResponse.new(pulp_href: null,
39
40
  tls_validation: null,
40
41
  proxy_url: null,
41
42
  pulp_labels: null,
42
- pulp_last_updated: null,
43
43
  download_concurrency: null,
44
44
  max_retries: null,
45
45
  policy: null,
@@ -4,8 +4,8 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **name** | **String** | | [optional]
8
- **is_set** | **Boolean** | | [optional]
7
+ **name** | **String** | |
8
+ **is_set** | **Boolean** | |
9
9
 
10
10
  ## Code Sample
11
11
 
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
7
  **pulp_href** | **String** | | [optional] [readonly]
8
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]
9
10
  **versions_href** | **String** | | [optional] [readonly]
10
11
  **pulp_labels** | **Hash&lt;String, String&gt;** | | [optional]
11
12
  **latest_version_href** | **String** | | [optional] [readonly]
@@ -21,6 +22,7 @@ require 'PulpMavenClient'
21
22
 
22
23
  instance = PulpMavenClient::MavenMavenRepositoryResponse.new(pulp_href: null,
23
24
  pulp_created: null,
25
+ pulp_last_updated: null,
24
26
  versions_href: null,
25
27
  pulp_labels: null,
26
28
  latest_version_href: null,
@@ -4,10 +4,10 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **count** | **Integer** | | [optional]
7
+ **count** | **Integer** | |
8
8
  **_next** | **String** | | [optional]
9
9
  **previous** | **String** | | [optional]
10
- **results** | [**Array&lt;RepositoryVersionResponse&gt;**](RepositoryVersionResponse.md) | | [optional]
10
+ **results** | [**Array&lt;RepositoryVersionResponse&gt;**](RepositoryVersionResponse.md) | |
11
11
 
12
12
  ## Code Sample
13
13
 
@@ -4,10 +4,10 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **count** | **Integer** | | [optional]
7
+ **count** | **Integer** | |
8
8
  **_next** | **String** | | [optional]
9
9
  **previous** | **String** | | [optional]
10
- **results** | [**Array&lt;MavenMavenArtifactResponse&gt;**](MavenMavenArtifactResponse.md) | | [optional]
10
+ **results** | [**Array&lt;MavenMavenArtifactResponse&gt;**](MavenMavenArtifactResponse.md) | |
11
11
 
12
12
  ## Code Sample
13
13
 
@@ -4,10 +4,10 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **count** | **Integer** | | [optional]
7
+ **count** | **Integer** | |
8
8
  **_next** | **String** | | [optional]
9
9
  **previous** | **String** | | [optional]
10
- **results** | [**Array&lt;MavenMavenDistributionResponse&gt;**](MavenMavenDistributionResponse.md) | | [optional]
10
+ **results** | [**Array&lt;MavenMavenDistributionResponse&gt;**](MavenMavenDistributionResponse.md) | |
11
11
 
12
12
  ## Code Sample
13
13
 
@@ -4,10 +4,10 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **count** | **Integer** | | [optional]
7
+ **count** | **Integer** | |
8
8
  **_next** | **String** | | [optional]
9
9
  **previous** | **String** | | [optional]
10
- **results** | [**Array&lt;MavenMavenRemoteResponse&gt;**](MavenMavenRemoteResponse.md) | | [optional]
10
+ **results** | [**Array&lt;MavenMavenRemoteResponse&gt;**](MavenMavenRemoteResponse.md) | |
11
11
 
12
12
  ## Code Sample
13
13
 
@@ -4,10 +4,10 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **count** | **Integer** | | [optional]
7
+ **count** | **Integer** | |
8
8
  **_next** | **String** | | [optional]
9
9
  **previous** | **String** | | [optional]
10
- **results** | [**Array&lt;MavenMavenRepositoryResponse&gt;**](MavenMavenRepositoryResponse.md) | | [optional]
10
+ **results** | [**Array&lt;MavenMavenRepositoryResponse&gt;**](MavenMavenRepositoryResponse.md) | |
11
11
 
12
12
  ## Code Sample
13
13
 
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
7
  **pulp_href** | **String** | | [optional] [readonly]
8
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]
9
10
  **number** | **Integer** | | [optional] [readonly]
10
11
  **repository** | **String** | | [optional] [readonly]
11
12
  **base_version** | **String** | A repository version whose content was used as the initial set of content for this repository version | [optional]
@@ -18,6 +19,7 @@ require 'PulpMavenClient'
18
19
 
19
20
  instance = PulpMavenClient::RepositoryVersionResponse.new(pulp_href: null,
20
21
  pulp_created: null,
22
+ pulp_last_updated: null,
21
23
  number: null,
22
24
  repository: null,
23
25
  base_version: null,
@@ -92,6 +92,7 @@ module PulpMavenClient
92
92
  # @option opts [Integer] :limit Number of results to return per page.
93
93
  # @option opts [Integer] :offset The initial index from which to return the results.
94
94
  # @option opts [Array<String>] :ordering Ordering * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;group_id&#x60; - Group id * &#x60;-group_id&#x60; - Group id (descending) * &#x60;artifact_id&#x60; - Artifact id * &#x60;-artifact_id&#x60; - Artifact id (descending) * &#x60;version&#x60; - Version * &#x60;-version&#x60; - Version (descending) * &#x60;filename&#x60; - Filename * &#x60;-filename&#x60; - Filename (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
95
+ # @option opts [Float] :orphaned_for Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
95
96
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
96
97
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
97
98
  # @option opts [String] :q
@@ -116,6 +117,7 @@ module PulpMavenClient
116
117
  # @option opts [Integer] :limit Number of results to return per page.
117
118
  # @option opts [Integer] :offset The initial index from which to return the results.
118
119
  # @option opts [Array<String>] :ordering Ordering * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;group_id&#x60; - Group id * &#x60;-group_id&#x60; - Group id (descending) * &#x60;artifact_id&#x60; - Artifact id * &#x60;-artifact_id&#x60; - Artifact id (descending) * &#x60;version&#x60; - Version * &#x60;-version&#x60; - Version (descending) * &#x60;filename&#x60; - Filename * &#x60;-filename&#x60; - Filename (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
120
+ # @option opts [Float] :orphaned_for Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
119
121
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
120
122
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
121
123
  # @option opts [String] :q
@@ -145,6 +147,7 @@ module PulpMavenClient
145
147
  query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil?
146
148
  query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
147
149
  query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
150
+ query_params[:'orphaned_for'] = opts[:'orphaned_for'] if !opts[:'orphaned_for'].nil?
148
151
  query_params[:'pulp_href__in'] = @api_client.build_collection_param(opts[:'pulp_href__in'], :csv) if !opts[:'pulp_href__in'].nil?
149
152
  query_params[:'pulp_id__in'] = @api_client.build_collection_param(opts[:'pulp_id__in'], :csv) if !opts[:'pulp_id__in'].nil?
150
153
  query_params[:'q'] = opts[:'q'] if !opts[:'q'].nil?
@@ -20,6 +20,9 @@ module PulpMavenClient
20
20
  # Timestamp of creation.
21
21
  attr_accessor :pulp_created
22
22
 
23
+ # 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.
24
+ attr_accessor :pulp_last_updated
25
+
23
26
  # Artifact file representing the physical content
24
27
  attr_accessor :artifact
25
28
 
@@ -40,6 +43,7 @@ module PulpMavenClient
40
43
  {
41
44
  :'pulp_href' => :'pulp_href',
42
45
  :'pulp_created' => :'pulp_created',
46
+ :'pulp_last_updated' => :'pulp_last_updated',
43
47
  :'artifact' => :'artifact',
44
48
  :'group_id' => :'group_id',
45
49
  :'artifact_id' => :'artifact_id',
@@ -53,6 +57,7 @@ module PulpMavenClient
53
57
  {
54
58
  :'pulp_href' => :'String',
55
59
  :'pulp_created' => :'DateTime',
60
+ :'pulp_last_updated' => :'DateTime',
56
61
  :'artifact' => :'String',
57
62
  :'group_id' => :'String',
58
63
  :'artifact_id' => :'String',
@@ -90,6 +95,10 @@ module PulpMavenClient
90
95
  self.pulp_created = attributes[:'pulp_created']
91
96
  end
92
97
 
98
+ if attributes.key?(:'pulp_last_updated')
99
+ self.pulp_last_updated = attributes[:'pulp_last_updated']
100
+ end
101
+
93
102
  if attributes.key?(:'artifact')
94
103
  self.artifact = attributes[:'artifact']
95
104
  end
@@ -136,6 +145,7 @@ module PulpMavenClient
136
145
  self.class == o.class &&
137
146
  pulp_href == o.pulp_href &&
138
147
  pulp_created == o.pulp_created &&
148
+ pulp_last_updated == o.pulp_last_updated &&
139
149
  artifact == o.artifact &&
140
150
  group_id == o.group_id &&
141
151
  artifact_id == o.artifact_id &&
@@ -152,7 +162,7 @@ module PulpMavenClient
152
162
  # Calculates hash code according to all attributes.
153
163
  # @return [Integer] Hash code
154
164
  def hash
155
- [pulp_href, pulp_created, artifact, group_id, artifact_id, version, filename].hash
165
+ [pulp_href, pulp_created, pulp_last_updated, artifact, group_id, artifact_id, version, filename].hash
156
166
  end
157
167
 
158
168
  # Builds the object from hash
@@ -20,6 +20,9 @@ module PulpMavenClient
20
20
  # Timestamp of creation.
21
21
  attr_accessor :pulp_created
22
22
 
23
+ # 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.
24
+ attr_accessor :pulp_last_updated
25
+
23
26
  # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
24
27
  attr_accessor :base_path
25
28
 
@@ -48,6 +51,7 @@ module PulpMavenClient
48
51
  {
49
52
  :'pulp_href' => :'pulp_href',
50
53
  :'pulp_created' => :'pulp_created',
54
+ :'pulp_last_updated' => :'pulp_last_updated',
51
55
  :'base_path' => :'base_path',
52
56
  :'base_url' => :'base_url',
53
57
  :'content_guard' => :'content_guard',
@@ -64,6 +68,7 @@ module PulpMavenClient
64
68
  {
65
69
  :'pulp_href' => :'String',
66
70
  :'pulp_created' => :'DateTime',
71
+ :'pulp_last_updated' => :'DateTime',
67
72
  :'base_path' => :'String',
68
73
  :'base_url' => :'String',
69
74
  :'content_guard' => :'String',
@@ -107,6 +112,10 @@ module PulpMavenClient
107
112
  self.pulp_created = attributes[:'pulp_created']
108
113
  end
109
114
 
115
+ if attributes.key?(:'pulp_last_updated')
116
+ self.pulp_last_updated = attributes[:'pulp_last_updated']
117
+ end
118
+
110
119
  if attributes.key?(:'base_path')
111
120
  self.base_path = attributes[:'base_path']
112
121
  end
@@ -174,6 +183,7 @@ module PulpMavenClient
174
183
  self.class == o.class &&
175
184
  pulp_href == o.pulp_href &&
176
185
  pulp_created == o.pulp_created &&
186
+ pulp_last_updated == o.pulp_last_updated &&
177
187
  base_path == o.base_path &&
178
188
  base_url == o.base_url &&
179
189
  content_guard == o.content_guard &&
@@ -193,7 +203,7 @@ module PulpMavenClient
193
203
  # Calculates hash code according to all attributes.
194
204
  # @return [Integer] Hash code
195
205
  def hash
196
- [pulp_href, pulp_created, base_path, base_url, content_guard, hidden, pulp_labels, name, repository, remote].hash
206
+ [pulp_href, pulp_created, pulp_last_updated, base_path, base_url, content_guard, hidden, pulp_labels, name, repository, remote].hash
197
207
  end
198
208
 
199
209
  # Builds the object from hash
@@ -20,6 +20,9 @@ module PulpMavenClient
20
20
  # Timestamp of creation.
21
21
  attr_accessor :pulp_created
22
22
 
23
+ # Timestamp of the most recent update of the remote.
24
+ attr_accessor :pulp_last_updated
25
+
23
26
  # A unique name for this remote.
24
27
  attr_accessor :name
25
28
 
@@ -40,9 +43,6 @@ module PulpMavenClient
40
43
 
41
44
  attr_accessor :pulp_labels
42
45
 
43
- # Timestamp of the most recent update of the remote.
44
- attr_accessor :pulp_last_updated
45
-
46
46
  # Total number of simultaneous connections. If not set then the default value will be used.
47
47
  attr_accessor :download_concurrency
48
48
 
@@ -78,6 +78,7 @@ module PulpMavenClient
78
78
  {
79
79
  :'pulp_href' => :'pulp_href',
80
80
  :'pulp_created' => :'pulp_created',
81
+ :'pulp_last_updated' => :'pulp_last_updated',
81
82
  :'name' => :'name',
82
83
  :'url' => :'url',
83
84
  :'ca_cert' => :'ca_cert',
@@ -85,7 +86,6 @@ module PulpMavenClient
85
86
  :'tls_validation' => :'tls_validation',
86
87
  :'proxy_url' => :'proxy_url',
87
88
  :'pulp_labels' => :'pulp_labels',
88
- :'pulp_last_updated' => :'pulp_last_updated',
89
89
  :'download_concurrency' => :'download_concurrency',
90
90
  :'max_retries' => :'max_retries',
91
91
  :'policy' => :'policy',
@@ -104,6 +104,7 @@ module PulpMavenClient
104
104
  {
105
105
  :'pulp_href' => :'String',
106
106
  :'pulp_created' => :'DateTime',
107
+ :'pulp_last_updated' => :'DateTime',
107
108
  :'name' => :'String',
108
109
  :'url' => :'String',
109
110
  :'ca_cert' => :'String',
@@ -111,7 +112,6 @@ module PulpMavenClient
111
112
  :'tls_validation' => :'Boolean',
112
113
  :'proxy_url' => :'String',
113
114
  :'pulp_labels' => :'Hash<String, String>',
114
- :'pulp_last_updated' => :'DateTime',
115
115
  :'download_concurrency' => :'Integer',
116
116
  :'max_retries' => :'Integer',
117
117
  :'policy' => :'PolicyEnum',
@@ -164,6 +164,10 @@ module PulpMavenClient
164
164
  self.pulp_created = attributes[:'pulp_created']
165
165
  end
166
166
 
167
+ if attributes.key?(:'pulp_last_updated')
168
+ self.pulp_last_updated = attributes[:'pulp_last_updated']
169
+ end
170
+
167
171
  if attributes.key?(:'name')
168
172
  self.name = attributes[:'name']
169
173
  end
@@ -194,10 +198,6 @@ module PulpMavenClient
194
198
  end
195
199
  end
196
200
 
197
- if attributes.key?(:'pulp_last_updated')
198
- self.pulp_last_updated = attributes[:'pulp_last_updated']
199
- end
200
-
201
201
  if attributes.key?(:'download_concurrency')
202
202
  self.download_concurrency = attributes[:'download_concurrency']
203
203
  end
@@ -348,6 +348,7 @@ module PulpMavenClient
348
348
  self.class == o.class &&
349
349
  pulp_href == o.pulp_href &&
350
350
  pulp_created == o.pulp_created &&
351
+ pulp_last_updated == o.pulp_last_updated &&
351
352
  name == o.name &&
352
353
  url == o.url &&
353
354
  ca_cert == o.ca_cert &&
@@ -355,7 +356,6 @@ module PulpMavenClient
355
356
  tls_validation == o.tls_validation &&
356
357
  proxy_url == o.proxy_url &&
357
358
  pulp_labels == o.pulp_labels &&
358
- pulp_last_updated == o.pulp_last_updated &&
359
359
  download_concurrency == o.download_concurrency &&
360
360
  max_retries == o.max_retries &&
361
361
  policy == o.policy &&
@@ -377,7 +377,7 @@ module PulpMavenClient
377
377
  # Calculates hash code according to all attributes.
378
378
  # @return [Integer] Hash code
379
379
  def hash
380
- [pulp_href, pulp_created, name, url, ca_cert, client_cert, tls_validation, proxy_url, pulp_labels, pulp_last_updated, download_concurrency, max_retries, policy, total_timeout, connect_timeout, sock_connect_timeout, sock_read_timeout, headers, rate_limit, hidden_fields].hash
380
+ [pulp_href, pulp_created, pulp_last_updated, name, url, ca_cert, client_cert, tls_validation, proxy_url, pulp_labels, download_concurrency, max_retries, policy, total_timeout, connect_timeout, sock_connect_timeout, sock_read_timeout, headers, rate_limit, hidden_fields].hash
381
381
  end
382
382
 
383
383
  # Builds the object from hash
@@ -68,12 +68,22 @@ module PulpMavenClient
68
68
  # @return Array for valid properties with the reasons
69
69
  def list_invalid_properties
70
70
  invalid_properties = Array.new
71
+ if @name.nil?
72
+ invalid_properties.push('invalid value for "name", name cannot be nil.')
73
+ end
74
+
75
+ if @is_set.nil?
76
+ invalid_properties.push('invalid value for "is_set", is_set cannot be nil.')
77
+ end
78
+
71
79
  invalid_properties
72
80
  end
73
81
 
74
82
  # Check to see if the all the properties in the model are valid
75
83
  # @return true if the model is valid
76
84
  def valid?
85
+ return false if @name.nil?
86
+ return false if @is_set.nil?
77
87
  true
78
88
  end
79
89
 
@@ -20,6 +20,9 @@ module PulpMavenClient
20
20
  # Timestamp of creation.
21
21
  attr_accessor :pulp_created
22
22
 
23
+ # 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.
24
+ attr_accessor :pulp_last_updated
25
+
23
26
  attr_accessor :versions_href
24
27
 
25
28
  attr_accessor :pulp_labels
@@ -43,6 +46,7 @@ module PulpMavenClient
43
46
  {
44
47
  :'pulp_href' => :'pulp_href',
45
48
  :'pulp_created' => :'pulp_created',
49
+ :'pulp_last_updated' => :'pulp_last_updated',
46
50
  :'versions_href' => :'versions_href',
47
51
  :'pulp_labels' => :'pulp_labels',
48
52
  :'latest_version_href' => :'latest_version_href',
@@ -58,6 +62,7 @@ module PulpMavenClient
58
62
  {
59
63
  :'pulp_href' => :'String',
60
64
  :'pulp_created' => :'DateTime',
65
+ :'pulp_last_updated' => :'DateTime',
61
66
  :'versions_href' => :'String',
62
67
  :'pulp_labels' => :'Hash<String, String>',
63
68
  :'latest_version_href' => :'String',
@@ -100,6 +105,10 @@ module PulpMavenClient
100
105
  self.pulp_created = attributes[:'pulp_created']
101
106
  end
102
107
 
108
+ if attributes.key?(:'pulp_last_updated')
109
+ self.pulp_last_updated = attributes[:'pulp_last_updated']
110
+ end
111
+
103
112
  if attributes.key?(:'versions_href')
104
113
  self.versions_href = attributes[:'versions_href']
105
114
  end
@@ -171,6 +180,7 @@ module PulpMavenClient
171
180
  self.class == o.class &&
172
181
  pulp_href == o.pulp_href &&
173
182
  pulp_created == o.pulp_created &&
183
+ pulp_last_updated == o.pulp_last_updated &&
174
184
  versions_href == o.versions_href &&
175
185
  pulp_labels == o.pulp_labels &&
176
186
  latest_version_href == o.latest_version_href &&
@@ -189,7 +199,7 @@ module PulpMavenClient
189
199
  # Calculates hash code according to all attributes.
190
200
  # @return [Integer] Hash code
191
201
  def hash
192
- [pulp_href, pulp_created, versions_href, pulp_labels, latest_version_href, name, description, retain_repo_versions, remote].hash
202
+ [pulp_href, pulp_created, pulp_last_updated, versions_href, pulp_labels, latest_version_href, name, description, retain_repo_versions, remote].hash
193
203
  end
194
204
 
195
205
  # Builds the object from hash
@@ -88,12 +88,22 @@ module PulpMavenClient
88
88
  # @return Array for valid properties with the reasons
89
89
  def list_invalid_properties
90
90
  invalid_properties = Array.new
91
+ if @count.nil?
92
+ invalid_properties.push('invalid value for "count", count cannot be nil.')
93
+ end
94
+
95
+ if @results.nil?
96
+ invalid_properties.push('invalid value for "results", results cannot be nil.')
97
+ end
98
+
91
99
  invalid_properties
92
100
  end
93
101
 
94
102
  # Check to see if the all the properties in the model are valid
95
103
  # @return true if the model is valid
96
104
  def valid?
105
+ return false if @count.nil?
106
+ return false if @results.nil?
97
107
  true
98
108
  end
99
109
 
@@ -88,12 +88,22 @@ module PulpMavenClient
88
88
  # @return Array for valid properties with the reasons
89
89
  def list_invalid_properties
90
90
  invalid_properties = Array.new
91
+ if @count.nil?
92
+ invalid_properties.push('invalid value for "count", count cannot be nil.')
93
+ end
94
+
95
+ if @results.nil?
96
+ invalid_properties.push('invalid value for "results", results cannot be nil.')
97
+ end
98
+
91
99
  invalid_properties
92
100
  end
93
101
 
94
102
  # Check to see if the all the properties in the model are valid
95
103
  # @return true if the model is valid
96
104
  def valid?
105
+ return false if @count.nil?
106
+ return false if @results.nil?
97
107
  true
98
108
  end
99
109
 
@@ -88,12 +88,22 @@ module PulpMavenClient
88
88
  # @return Array for valid properties with the reasons
89
89
  def list_invalid_properties
90
90
  invalid_properties = Array.new
91
+ if @count.nil?
92
+ invalid_properties.push('invalid value for "count", count cannot be nil.')
93
+ end
94
+
95
+ if @results.nil?
96
+ invalid_properties.push('invalid value for "results", results cannot be nil.')
97
+ end
98
+
91
99
  invalid_properties
92
100
  end
93
101
 
94
102
  # Check to see if the all the properties in the model are valid
95
103
  # @return true if the model is valid
96
104
  def valid?
105
+ return false if @count.nil?
106
+ return false if @results.nil?
97
107
  true
98
108
  end
99
109
 
@@ -88,12 +88,22 @@ module PulpMavenClient
88
88
  # @return Array for valid properties with the reasons
89
89
  def list_invalid_properties
90
90
  invalid_properties = Array.new
91
+ if @count.nil?
92
+ invalid_properties.push('invalid value for "count", count cannot be nil.')
93
+ end
94
+
95
+ if @results.nil?
96
+ invalid_properties.push('invalid value for "results", results cannot be nil.')
97
+ end
98
+
91
99
  invalid_properties
92
100
  end
93
101
 
94
102
  # Check to see if the all the properties in the model are valid
95
103
  # @return true if the model is valid
96
104
  def valid?
105
+ return false if @count.nil?
106
+ return false if @results.nil?
97
107
  true
98
108
  end
99
109
 
@@ -88,12 +88,22 @@ module PulpMavenClient
88
88
  # @return Array for valid properties with the reasons
89
89
  def list_invalid_properties
90
90
  invalid_properties = Array.new
91
+ if @count.nil?
92
+ invalid_properties.push('invalid value for "count", count cannot be nil.')
93
+ end
94
+
95
+ if @results.nil?
96
+ invalid_properties.push('invalid value for "results", results cannot be nil.')
97
+ end
98
+
91
99
  invalid_properties
92
100
  end
93
101
 
94
102
  # Check to see if the all the properties in the model are valid
95
103
  # @return true if the model is valid
96
104
  def valid?
105
+ return false if @count.nil?
106
+ return false if @results.nil?
97
107
  true
98
108
  end
99
109
 
@@ -20,6 +20,9 @@ module PulpMavenClient
20
20
  # Timestamp of creation.
21
21
  attr_accessor :pulp_created
22
22
 
23
+ # 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.
24
+ attr_accessor :pulp_last_updated
25
+
23
26
  attr_accessor :number
24
27
 
25
28
  attr_accessor :repository
@@ -35,6 +38,7 @@ module PulpMavenClient
35
38
  {
36
39
  :'pulp_href' => :'pulp_href',
37
40
  :'pulp_created' => :'pulp_created',
41
+ :'pulp_last_updated' => :'pulp_last_updated',
38
42
  :'number' => :'number',
39
43
  :'repository' => :'repository',
40
44
  :'base_version' => :'base_version',
@@ -47,6 +51,7 @@ module PulpMavenClient
47
51
  {
48
52
  :'pulp_href' => :'String',
49
53
  :'pulp_created' => :'DateTime',
54
+ :'pulp_last_updated' => :'DateTime',
50
55
  :'number' => :'Integer',
51
56
  :'repository' => :'String',
52
57
  :'base_version' => :'String',
@@ -83,6 +88,10 @@ module PulpMavenClient
83
88
  self.pulp_created = attributes[:'pulp_created']
84
89
  end
85
90
 
91
+ if attributes.key?(:'pulp_last_updated')
92
+ self.pulp_last_updated = attributes[:'pulp_last_updated']
93
+ end
94
+
86
95
  if attributes.key?(:'number')
87
96
  self.number = attributes[:'number']
88
97
  end
@@ -120,6 +129,7 @@ module PulpMavenClient
120
129
  self.class == o.class &&
121
130
  pulp_href == o.pulp_href &&
122
131
  pulp_created == o.pulp_created &&
132
+ pulp_last_updated == o.pulp_last_updated &&
123
133
  number == o.number &&
124
134
  repository == o.repository &&
125
135
  base_version == o.base_version &&
@@ -135,7 +145,7 @@ module PulpMavenClient
135
145
  # Calculates hash code according to all attributes.
136
146
  # @return [Integer] Hash code
137
147
  def hash
138
- [pulp_href, pulp_created, number, repository, base_version, content_summary].hash
148
+ [pulp_href, pulp_created, pulp_last_updated, number, repository, base_version, content_summary].hash
139
149
  end
140
150
 
141
151
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.3.1
11
11
  =end
12
12
 
13
13
  module PulpMavenClient
14
- VERSION = '0.8.0'
14
+ VERSION = '0.8.1'
15
15
  end
@@ -54,6 +54,7 @@ describe 'ContentArtifactApi' do
54
54
  # @option opts [Integer] :limit Number of results to return per page.
55
55
  # @option opts [Integer] :offset The initial index from which to return the results.
56
56
  # @option opts [Array<String>] :ordering Ordering * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;group_id&#x60; - Group id * &#x60;-group_id&#x60; - Group id (descending) * &#x60;artifact_id&#x60; - Artifact id * &#x60;-artifact_id&#x60; - Artifact id (descending) * &#x60;version&#x60; - Version * &#x60;-version&#x60; - Version (descending) * &#x60;filename&#x60; - Filename * &#x60;-filename&#x60; - Filename (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
57
+ # @option opts [Float] :orphaned_for Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
57
58
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
58
59
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
59
60
  # @option opts [String] :q
@@ -44,6 +44,12 @@ describe 'MavenMavenArtifactResponse' do
44
44
  end
45
45
  end
46
46
 
47
+ describe 'test attribute "pulp_last_updated"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
47
53
  describe 'test attribute "artifact"' do
48
54
  it 'should work' do
49
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -44,6 +44,12 @@ describe 'MavenMavenDistributionResponse' do
44
44
  end
45
45
  end
46
46
 
47
+ describe 'test attribute "pulp_last_updated"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
47
53
  describe 'test attribute "base_path"' do
48
54
  it 'should work' do
49
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -44,6 +44,12 @@ describe 'MavenMavenRemoteResponse' do
44
44
  end
45
45
  end
46
46
 
47
+ describe 'test attribute "pulp_last_updated"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
47
53
  describe 'test attribute "name"' do
48
54
  it 'should work' do
49
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -86,12 +92,6 @@ describe 'MavenMavenRemoteResponse' do
86
92
  end
87
93
  end
88
94
 
89
- describe 'test attribute "pulp_last_updated"' do
90
- it 'should work' do
91
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
92
- end
93
- end
94
-
95
95
  describe 'test attribute "download_concurrency"' do
96
96
  it 'should work' do
97
97
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -44,6 +44,12 @@ describe 'MavenMavenRepositoryResponse' do
44
44
  end
45
45
  end
46
46
 
47
+ describe 'test attribute "pulp_last_updated"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
47
53
  describe 'test attribute "versions_href"' do
48
54
  it 'should work' do
49
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -44,6 +44,12 @@ describe 'RepositoryVersionResponse' do
44
44
  end
45
45
  end
46
46
 
47
+ describe 'test attribute "pulp_last_updated"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
47
53
  describe 'test attribute "number"' do
48
54
  it 'should work' do
49
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pulp_maven_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-12-20 00:00:00.000000000 Z
11
+ date: 2024-06-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -212,39 +212,39 @@ signing_key:
212
212
  specification_version: 4
213
213
  summary: Pulp 3 API Ruby Gem
214
214
  test_files:
215
+ - spec/api/content_artifact_api_spec.rb
216
+ - spec/api/repositories_maven_api_spec.rb
215
217
  - spec/api/repositories_maven_versions_api_spec.rb
218
+ - spec/api/pulp_maven_api_spec.rb
216
219
  - spec/api/remotes_maven_api_spec.rb
217
220
  - spec/api/distributions_maven_api_spec.rb
218
- - spec/api/pulp_maven_api_spec.rb
219
- - spec/api/repositories_maven_api_spec.rb
220
- - spec/api/content_artifact_api_spec.rb
221
221
  - spec/api_client_spec.rb
222
222
  - spec/configuration_spec.rb
223
+ - spec/models/paginatedmaven_maven_remote_response_list_spec.rb
224
+ - spec/models/maven_maven_distribution_response_spec.rb
225
+ - spec/models/unset_label_response_spec.rb
226
+ - spec/models/maven_maven_remote_response_hidden_fields_spec.rb
227
+ - spec/models/set_label_response_spec.rb
228
+ - spec/models/patchedmaven_maven_remote_spec.rb
229
+ - spec/models/paginatedmaven_maven_artifact_response_list_spec.rb
230
+ - spec/models/content_summary_response_spec.rb
231
+ - spec/models/repair_spec.rb
232
+ - spec/models/maven_maven_repository_spec.rb
233
+ - spec/models/policy_enum_spec.rb
223
234
  - spec/models/maven_maven_remote_response_spec.rb
224
235
  - spec/models/repository_version_response_spec.rb
225
- - spec/models/maven_maven_remote_response_hidden_fields_spec.rb
236
+ - spec/models/paginatedmaven_maven_distribution_response_list_spec.rb
237
+ - spec/models/async_operation_response_spec.rb
238
+ - spec/models/paginatedmaven_maven_repository_response_list_spec.rb
226
239
  - spec/models/paginated_repository_version_response_list_spec.rb
227
- - spec/models/policy_enum_spec.rb
228
- - spec/models/patchedmaven_maven_repository_spec.rb
229
- - spec/models/maven_maven_distribution_spec.rb
230
240
  - spec/models/maven_maven_remote_spec.rb
231
241
  - spec/models/maven_maven_repository_response_spec.rb
232
242
  - spec/models/patchedmaven_maven_distribution_spec.rb
233
- - spec/models/set_label_response_spec.rb
234
- - spec/models/maven_maven_artifact_response_spec.rb
235
- - spec/models/maven_maven_artifact_spec.rb
243
+ - spec/models/repository_add_cached_content_spec.rb
236
244
  - spec/models/set_label_spec.rb
237
- - spec/models/maven_maven_distribution_response_spec.rb
238
- - spec/models/paginatedmaven_maven_distribution_response_list_spec.rb
245
+ - spec/models/maven_maven_artifact_spec.rb
246
+ - spec/models/maven_maven_distribution_spec.rb
247
+ - spec/models/patchedmaven_maven_repository_spec.rb
239
248
  - spec/models/unset_label_spec.rb
240
- - spec/models/patchedmaven_maven_remote_spec.rb
241
- - spec/models/unset_label_response_spec.rb
242
- - spec/models/async_operation_response_spec.rb
243
- - spec/models/maven_maven_repository_spec.rb
244
- - spec/models/paginatedmaven_maven_artifact_response_list_spec.rb
245
- - spec/models/repair_spec.rb
246
- - spec/models/content_summary_response_spec.rb
247
- - spec/models/paginatedmaven_maven_remote_response_list_spec.rb
248
- - spec/models/paginatedmaven_maven_repository_response_list_spec.rb
249
- - spec/models/repository_add_cached_content_spec.rb
249
+ - spec/models/maven_maven_artifact_response_spec.rb
250
250
  - spec/spec_helper.rb