pulp_ostree_client 2.1.3 → 2.2.1
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 +4 -4
- data/docs/ContentRefsApi.md +4 -0
- data/docs/DistributionsOstreeApi.md +4 -0
- data/docs/RemotesOstreeApi.md +4 -0
- data/docs/RepositoriesOstreeApi.md +4 -0
- data/lib/pulp_ostree_client/api/content_refs_api.rb +6 -0
- data/lib/pulp_ostree_client/api/distributions_ostree_api.rb +6 -0
- data/lib/pulp_ostree_client/api/remotes_ostree_api.rb +6 -0
- data/lib/pulp_ostree_client/api/repositories_ostree_api.rb +6 -0
- data/lib/pulp_ostree_client/version.rb +1 -1
- data/spec/api/content_refs_api_spec.rb +2 -0
- data/spec/api/distributions_ostree_api_spec.rb +2 -0
- data/spec/api/remotes_ostree_api_spec.rb +2 -0
- data/spec/api/repositories_ostree_api_spec.rb +2 -0
- metadata +37 -37
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 89386c0c6a6d89edd5c4ea0c869f7cb8f0793f69b515fb727565d2e80cd1360e
|
4
|
+
data.tar.gz: 4bfffd4089bfefd3becf45e061b06eba2cda12a567c6f8e971e32b360790f639
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ad9ca973d356556a5303ba47324eca8630449525cba111a3899dbb8b69363323af2ebe8073147c9e67818b9d5f60b8461b0313befc9b1a304416029295c8d98e
|
7
|
+
data.tar.gz: 8b8d20207c01ab55e04775f93c15e5caab0a8d7fec307dcaf77e2606a0b67bc5ecb75981a46a96d4d68b382db7a2502dbc51e9a3d6896338984aba8b0fa513da
|
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: 2.1
|
10
|
+
- Package version: 2.2.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_ostree_client.gemspec
|
|
24
24
|
Then either install the gem locally:
|
25
25
|
|
26
26
|
```shell
|
27
|
-
gem install ./pulp_ostree_client-2.1.
|
27
|
+
gem install ./pulp_ostree_client-2.2.1.gem
|
28
28
|
```
|
29
29
|
|
30
|
-
(for development, run `gem install --dev ./pulp_ostree_client-2.1.
|
30
|
+
(for development, run `gem install --dev ./pulp_ostree_client-2.2.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_ostree_client', '~> 2.1
|
36
|
+
gem 'pulp_ostree_client', '~> 2.2.1'
|
37
37
|
|
38
38
|
### Install from Git
|
39
39
|
|
data/docs/ContentRefsApi.md
CHANGED
@@ -38,7 +38,9 @@ opts = {
|
|
38
38
|
name__icontains: 'name__icontains_example', # String | Filter results where name contains value
|
39
39
|
name__iexact: 'name__iexact_example', # String | Filter results where name matches value
|
40
40
|
name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
|
41
|
+
name__iregex: 'name__iregex_example', # String | Filter results where name matches regex value
|
41
42
|
name__istartswith: 'name__istartswith_example', # String | Filter results where name starts with value
|
43
|
+
name__regex: 'name__regex_example', # String | Filter results where name matches regex value
|
42
44
|
name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
|
43
45
|
offset: 56, # Integer | The initial index from which to return the results.
|
44
46
|
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) * `name` - Name * `-name` - Name (descending) * `relative_path` - Relative path * `-relative_path` - Relative path (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
@@ -73,7 +75,9 @@ Name | Type | Description | Notes
|
|
73
75
|
**name__icontains** | **String**| Filter results where name contains value | [optional]
|
74
76
|
**name__iexact** | **String**| Filter results where name matches value | [optional]
|
75
77
|
**name__in** | [**Array<String>**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
|
78
|
+
**name__iregex** | **String**| Filter results where name matches regex value | [optional]
|
76
79
|
**name__istartswith** | **String**| Filter results where name starts with value | [optional]
|
80
|
+
**name__regex** | **String**| Filter results where name matches regex value | [optional]
|
77
81
|
**name__startswith** | **String**| Filter results where name starts with value | [optional]
|
78
82
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
79
83
|
**ordering** | [**Array<String>**](String.md)| 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) * `name` - Name * `-name` - Name (descending) * `relative_path` - Relative path * `-relative_path` - Relative path (descending) * `pk` - Pk * `-pk` - Pk (descending) | [optional]
|
@@ -153,7 +153,9 @@ opts = {
|
|
153
153
|
name__icontains: 'name__icontains_example', # String | Filter results where name contains value
|
154
154
|
name__iexact: 'name__iexact_example', # String | Filter results where name matches value
|
155
155
|
name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
|
156
|
+
name__iregex: 'name__iregex_example', # String | Filter results where name matches regex value
|
156
157
|
name__istartswith: 'name__istartswith_example', # String | Filter results where name starts with value
|
158
|
+
name__regex: 'name__regex_example', # String | Filter results where name matches regex value
|
157
159
|
name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
|
158
160
|
offset: 56, # Integer | The initial index from which to return the results.
|
159
161
|
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) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `base_path` - Base path * `-base_path` - Base path (descending) * `hidden` - Hidden * `-hidden` - Hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
@@ -192,7 +194,9 @@ Name | Type | Description | Notes
|
|
192
194
|
**name__icontains** | **String**| Filter results where name contains value | [optional]
|
193
195
|
**name__iexact** | **String**| Filter results where name matches value | [optional]
|
194
196
|
**name__in** | [**Array<String>**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
|
197
|
+
**name__iregex** | **String**| Filter results where name matches regex value | [optional]
|
195
198
|
**name__istartswith** | **String**| Filter results where name starts with value | [optional]
|
199
|
+
**name__regex** | **String**| Filter results where name matches regex value | [optional]
|
196
200
|
**name__startswith** | **String**| Filter results where name starts with value | [optional]
|
197
201
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
198
202
|
**ordering** | [**Array<String>**](String.md)| 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) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `base_path` - Base path * `-base_path` - Base path (descending) * `hidden` - Hidden * `-hidden` - Hidden (descending) * `pk` - Pk * `-pk` - Pk (descending) | [optional]
|
data/docs/RemotesOstreeApi.md
CHANGED
@@ -149,7 +149,9 @@ opts = {
|
|
149
149
|
name__icontains: 'name__icontains_example', # String | Filter results where name contains value
|
150
150
|
name__iexact: 'name__iexact_example', # String | Filter results where name matches value
|
151
151
|
name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
|
152
|
+
name__iregex: 'name__iregex_example', # String | Filter results where name matches regex value
|
152
153
|
name__istartswith: 'name__istartswith_example', # String | Filter results where name starts with value
|
154
|
+
name__regex: 'name__regex_example', # String | Filter results where name matches regex value
|
153
155
|
name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
|
154
156
|
offset: 56, # Integer | The initial index from which to return the results.
|
155
157
|
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) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `url` - Url * `-url` - Url (descending) * `ca_cert` - Ca cert * `-ca_cert` - Ca cert (descending) * `client_cert` - Client cert * `-client_cert` - Client cert (descending) * `client_key` - Client key * `-client_key` - Client key (descending) * `tls_validation` - Tls validation * `-tls_validation` - Tls validation (descending) * `username` - Username * `-username` - Username (descending) * `password` - Password * `-password` - Password (descending) * `proxy_url` - Proxy url * `-proxy_url` - Proxy url (descending) * `proxy_username` - Proxy username * `-proxy_username` - Proxy username (descending) * `proxy_password` - Proxy password * `-proxy_password` - Proxy password (descending) * `download_concurrency` - Download concurrency * `-download_concurrency` - Download concurrency (descending) * `max_retries` - Max retries * `-max_retries` - Max retries (descending) * `policy` - Policy * `-policy` - Policy (descending) * `total_timeout` - Total timeout * `-total_timeout` - Total timeout (descending) * `connect_timeout` - Connect timeout * `-connect_timeout` - Connect timeout (descending) * `sock_connect_timeout` - Sock connect timeout * `-sock_connect_timeout` - Sock connect timeout (descending) * `sock_read_timeout` - Sock read timeout * `-sock_read_timeout` - Sock read timeout (descending) * `headers` - Headers * `-headers` - Headers (descending) * `rate_limit` - Rate limit * `-rate_limit` - Rate limit (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
@@ -187,7 +189,9 @@ Name | Type | Description | Notes
|
|
187
189
|
**name__icontains** | **String**| Filter results where name contains value | [optional]
|
188
190
|
**name__iexact** | **String**| Filter results where name matches value | [optional]
|
189
191
|
**name__in** | [**Array<String>**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
|
192
|
+
**name__iregex** | **String**| Filter results where name matches regex value | [optional]
|
190
193
|
**name__istartswith** | **String**| Filter results where name starts with value | [optional]
|
194
|
+
**name__regex** | **String**| Filter results where name matches regex value | [optional]
|
191
195
|
**name__startswith** | **String**| Filter results where name starts with value | [optional]
|
192
196
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
193
197
|
**ordering** | [**Array<String>**](String.md)| 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) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `url` - Url * `-url` - Url (descending) * `ca_cert` - Ca cert * `-ca_cert` - Ca cert (descending) * `client_cert` - Client cert * `-client_cert` - Client cert (descending) * `client_key` - Client key * `-client_key` - Client key (descending) * `tls_validation` - Tls validation * `-tls_validation` - Tls validation (descending) * `username` - Username * `-username` - Username (descending) * `password` - Password * `-password` - Password (descending) * `proxy_url` - Proxy url * `-proxy_url` - Proxy url (descending) * `proxy_username` - Proxy username * `-proxy_username` - Proxy username (descending) * `proxy_password` - Proxy password * `-proxy_password` - Proxy password (descending) * `download_concurrency` - Download concurrency * `-download_concurrency` - Download concurrency (descending) * `max_retries` - Max retries * `-max_retries` - Max retries (descending) * `policy` - Policy * `-policy` - Policy (descending) * `total_timeout` - Total timeout * `-total_timeout` - Total timeout (descending) * `connect_timeout` - Connect timeout * `-connect_timeout` - Connect timeout (descending) * `sock_connect_timeout` - Sock connect timeout * `-sock_connect_timeout` - Sock connect timeout (descending) * `sock_read_timeout` - Sock read timeout * `-sock_read_timeout` - Sock read timeout (descending) * `headers` - Headers * `-headers` - Headers (descending) * `rate_limit` - Rate limit * `-rate_limit` - Rate limit (descending) * `pk` - Pk * `-pk` - Pk (descending) | [optional]
|
@@ -264,7 +264,9 @@ opts = {
|
|
264
264
|
name__icontains: 'name__icontains_example', # String | Filter results where name contains value
|
265
265
|
name__iexact: 'name__iexact_example', # String | Filter results where name matches value
|
266
266
|
name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
|
267
|
+
name__iregex: 'name__iregex_example', # String | Filter results where name matches regex value
|
267
268
|
name__istartswith: 'name__istartswith_example', # String | Filter results where name starts with value
|
269
|
+
name__regex: 'name__regex_example', # String | Filter results where name matches regex value
|
268
270
|
name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
|
269
271
|
offset: 56, # Integer | The initial index from which to return the results.
|
270
272
|
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) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `description` - Description * `-description` - Description (descending) * `next_version` - Next version * `-next_version` - Next version (descending) * `retain_repo_versions` - Retain repo versions * `-retain_repo_versions` - Retain repo versions (descending) * `user_hidden` - User hidden * `-user_hidden` - User hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
@@ -307,7 +309,9 @@ Name | Type | Description | Notes
|
|
307
309
|
**name__icontains** | **String**| Filter results where name contains value | [optional]
|
308
310
|
**name__iexact** | **String**| Filter results where name matches value | [optional]
|
309
311
|
**name__in** | [**Array<String>**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
|
312
|
+
**name__iregex** | **String**| Filter results where name matches regex value | [optional]
|
310
313
|
**name__istartswith** | **String**| Filter results where name starts with value | [optional]
|
314
|
+
**name__regex** | **String**| Filter results where name matches regex value | [optional]
|
311
315
|
**name__startswith** | **String**| Filter results where name starts with value | [optional]
|
312
316
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
313
317
|
**ordering** | [**Array<String>**](String.md)| 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) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `description` - Description * `-description` - Description (descending) * `next_version` - Next version * `-next_version` - Next version (descending) * `retain_repo_versions` - Retain repo versions * `-retain_repo_versions` - Retain repo versions (descending) * `user_hidden` - User hidden * `-user_hidden` - User hidden (descending) * `pk` - Pk * `-pk` - Pk (descending) | [optional]
|
@@ -29,7 +29,9 @@ module PulpOstreeClient
|
|
29
29
|
# @option opts [String] :name__icontains Filter results where name contains value
|
30
30
|
# @option opts [String] :name__iexact Filter results where name matches value
|
31
31
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
32
|
+
# @option opts [String] :name__iregex Filter results where name matches regex value
|
32
33
|
# @option opts [String] :name__istartswith Filter results where name starts with value
|
34
|
+
# @option opts [String] :name__regex Filter results where name matches regex value
|
33
35
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
34
36
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
35
37
|
# @option opts [Array<String>] :ordering 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) * `name` - Name * `-name` - Name (descending) * `relative_path` - Relative path * `-relative_path` - Relative path (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
@@ -57,7 +59,9 @@ module PulpOstreeClient
|
|
57
59
|
# @option opts [String] :name__icontains Filter results where name contains value
|
58
60
|
# @option opts [String] :name__iexact Filter results where name matches value
|
59
61
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
62
|
+
# @option opts [String] :name__iregex Filter results where name matches regex value
|
60
63
|
# @option opts [String] :name__istartswith Filter results where name starts with value
|
64
|
+
# @option opts [String] :name__regex Filter results where name matches regex value
|
61
65
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
62
66
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
63
67
|
# @option opts [Array<String>] :ordering 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) * `name` - Name * `-name` - Name (descending) * `relative_path` - Relative path * `-relative_path` - Relative path (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
@@ -90,7 +94,9 @@ module PulpOstreeClient
|
|
90
94
|
query_params[:'name__icontains'] = opts[:'name__icontains'] if !opts[:'name__icontains'].nil?
|
91
95
|
query_params[:'name__iexact'] = opts[:'name__iexact'] if !opts[:'name__iexact'].nil?
|
92
96
|
query_params[:'name__in'] = @api_client.build_collection_param(opts[:'name__in'], :csv) if !opts[:'name__in'].nil?
|
97
|
+
query_params[:'name__iregex'] = opts[:'name__iregex'] if !opts[:'name__iregex'].nil?
|
93
98
|
query_params[:'name__istartswith'] = opts[:'name__istartswith'] if !opts[:'name__istartswith'].nil?
|
99
|
+
query_params[:'name__regex'] = opts[:'name__regex'] if !opts[:'name__regex'].nil?
|
94
100
|
query_params[:'name__startswith'] = opts[:'name__startswith'] if !opts[:'name__startswith'].nil?
|
95
101
|
query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
|
96
102
|
query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
|
@@ -158,7 +158,9 @@ module PulpOstreeClient
|
|
158
158
|
# @option opts [String] :name__icontains Filter results where name contains value
|
159
159
|
# @option opts [String] :name__iexact Filter results where name matches value
|
160
160
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
161
|
+
# @option opts [String] :name__iregex Filter results where name matches regex value
|
161
162
|
# @option opts [String] :name__istartswith Filter results where name starts with value
|
163
|
+
# @option opts [String] :name__regex Filter results where name matches regex value
|
162
164
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
163
165
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
164
166
|
# @option opts [Array<String>] :ordering 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) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `base_path` - Base path * `-base_path` - Base path (descending) * `hidden` - Hidden * `-hidden` - Hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
@@ -190,7 +192,9 @@ module PulpOstreeClient
|
|
190
192
|
# @option opts [String] :name__icontains Filter results where name contains value
|
191
193
|
# @option opts [String] :name__iexact Filter results where name matches value
|
192
194
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
195
|
+
# @option opts [String] :name__iregex Filter results where name matches regex value
|
193
196
|
# @option opts [String] :name__istartswith Filter results where name starts with value
|
197
|
+
# @option opts [String] :name__regex Filter results where name matches regex value
|
194
198
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
195
199
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
196
200
|
# @option opts [Array<String>] :ordering 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) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `base_path` - Base path * `-base_path` - Base path (descending) * `hidden` - Hidden * `-hidden` - Hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
@@ -227,7 +231,9 @@ module PulpOstreeClient
|
|
227
231
|
query_params[:'name__icontains'] = opts[:'name__icontains'] if !opts[:'name__icontains'].nil?
|
228
232
|
query_params[:'name__iexact'] = opts[:'name__iexact'] if !opts[:'name__iexact'].nil?
|
229
233
|
query_params[:'name__in'] = @api_client.build_collection_param(opts[:'name__in'], :csv) if !opts[:'name__in'].nil?
|
234
|
+
query_params[:'name__iregex'] = opts[:'name__iregex'] if !opts[:'name__iregex'].nil?
|
230
235
|
query_params[:'name__istartswith'] = opts[:'name__istartswith'] if !opts[:'name__istartswith'].nil?
|
236
|
+
query_params[:'name__regex'] = opts[:'name__regex'] if !opts[:'name__regex'].nil?
|
231
237
|
query_params[:'name__startswith'] = opts[:'name__startswith'] if !opts[:'name__startswith'].nil?
|
232
238
|
query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
|
233
239
|
query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
|
@@ -154,7 +154,9 @@ module PulpOstreeClient
|
|
154
154
|
# @option opts [String] :name__icontains Filter results where name contains value
|
155
155
|
# @option opts [String] :name__iexact Filter results where name matches value
|
156
156
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
157
|
+
# @option opts [String] :name__iregex Filter results where name matches regex value
|
157
158
|
# @option opts [String] :name__istartswith Filter results where name starts with value
|
159
|
+
# @option opts [String] :name__regex Filter results where name matches regex value
|
158
160
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
159
161
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
160
162
|
# @option opts [Array<String>] :ordering 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) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `url` - Url * `-url` - Url (descending) * `ca_cert` - Ca cert * `-ca_cert` - Ca cert (descending) * `client_cert` - Client cert * `-client_cert` - Client cert (descending) * `client_key` - Client key * `-client_key` - Client key (descending) * `tls_validation` - Tls validation * `-tls_validation` - Tls validation (descending) * `username` - Username * `-username` - Username (descending) * `password` - Password * `-password` - Password (descending) * `proxy_url` - Proxy url * `-proxy_url` - Proxy url (descending) * `proxy_username` - Proxy username * `-proxy_username` - Proxy username (descending) * `proxy_password` - Proxy password * `-proxy_password` - Proxy password (descending) * `download_concurrency` - Download concurrency * `-download_concurrency` - Download concurrency (descending) * `max_retries` - Max retries * `-max_retries` - Max retries (descending) * `policy` - Policy * `-policy` - Policy (descending) * `total_timeout` - Total timeout * `-total_timeout` - Total timeout (descending) * `connect_timeout` - Connect timeout * `-connect_timeout` - Connect timeout (descending) * `sock_connect_timeout` - Sock connect timeout * `-sock_connect_timeout` - Sock connect timeout (descending) * `sock_read_timeout` - Sock read timeout * `-sock_read_timeout` - Sock read timeout (descending) * `headers` - Headers * `-headers` - Headers (descending) * `rate_limit` - Rate limit * `-rate_limit` - Rate limit (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
@@ -185,7 +187,9 @@ module PulpOstreeClient
|
|
185
187
|
# @option opts [String] :name__icontains Filter results where name contains value
|
186
188
|
# @option opts [String] :name__iexact Filter results where name matches value
|
187
189
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
190
|
+
# @option opts [String] :name__iregex Filter results where name matches regex value
|
188
191
|
# @option opts [String] :name__istartswith Filter results where name starts with value
|
192
|
+
# @option opts [String] :name__regex Filter results where name matches regex value
|
189
193
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
190
194
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
191
195
|
# @option opts [Array<String>] :ordering 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) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `url` - Url * `-url` - Url (descending) * `ca_cert` - Ca cert * `-ca_cert` - Ca cert (descending) * `client_cert` - Client cert * `-client_cert` - Client cert (descending) * `client_key` - Client key * `-client_key` - Client key (descending) * `tls_validation` - Tls validation * `-tls_validation` - Tls validation (descending) * `username` - Username * `-username` - Username (descending) * `password` - Password * `-password` - Password (descending) * `proxy_url` - Proxy url * `-proxy_url` - Proxy url (descending) * `proxy_username` - Proxy username * `-proxy_username` - Proxy username (descending) * `proxy_password` - Proxy password * `-proxy_password` - Proxy password (descending) * `download_concurrency` - Download concurrency * `-download_concurrency` - Download concurrency (descending) * `max_retries` - Max retries * `-max_retries` - Max retries (descending) * `policy` - Policy * `-policy` - Policy (descending) * `total_timeout` - Total timeout * `-total_timeout` - Total timeout (descending) * `connect_timeout` - Connect timeout * `-connect_timeout` - Connect timeout (descending) * `sock_connect_timeout` - Sock connect timeout * `-sock_connect_timeout` - Sock connect timeout (descending) * `sock_read_timeout` - Sock read timeout * `-sock_read_timeout` - Sock read timeout (descending) * `headers` - Headers * `-headers` - Headers (descending) * `rate_limit` - Rate limit * `-rate_limit` - Rate limit (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
@@ -221,7 +225,9 @@ module PulpOstreeClient
|
|
221
225
|
query_params[:'name__icontains'] = opts[:'name__icontains'] if !opts[:'name__icontains'].nil?
|
222
226
|
query_params[:'name__iexact'] = opts[:'name__iexact'] if !opts[:'name__iexact'].nil?
|
223
227
|
query_params[:'name__in'] = @api_client.build_collection_param(opts[:'name__in'], :csv) if !opts[:'name__in'].nil?
|
228
|
+
query_params[:'name__iregex'] = opts[:'name__iregex'] if !opts[:'name__iregex'].nil?
|
224
229
|
query_params[:'name__istartswith'] = opts[:'name__istartswith'] if !opts[:'name__istartswith'].nil?
|
230
|
+
query_params[:'name__regex'] = opts[:'name__regex'] if !opts[:'name__regex'].nil?
|
225
231
|
query_params[:'name__startswith'] = opts[:'name__startswith'] if !opts[:'name__startswith'].nil?
|
226
232
|
query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
|
227
233
|
query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
|
@@ -295,7 +295,9 @@ module PulpOstreeClient
|
|
295
295
|
# @option opts [String] :name__icontains Filter results where name contains value
|
296
296
|
# @option opts [String] :name__iexact Filter results where name matches value
|
297
297
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
298
|
+
# @option opts [String] :name__iregex Filter results where name matches regex value
|
298
299
|
# @option opts [String] :name__istartswith Filter results where name starts with value
|
300
|
+
# @option opts [String] :name__regex Filter results where name matches regex value
|
299
301
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
300
302
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
301
303
|
# @option opts [Array<String>] :ordering 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) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `description` - Description * `-description` - Description (descending) * `next_version` - Next version * `-next_version` - Next version (descending) * `retain_repo_versions` - Retain repo versions * `-retain_repo_versions` - Retain repo versions (descending) * `user_hidden` - User hidden * `-user_hidden` - User hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
@@ -331,7 +333,9 @@ module PulpOstreeClient
|
|
331
333
|
# @option opts [String] :name__icontains Filter results where name contains value
|
332
334
|
# @option opts [String] :name__iexact Filter results where name matches value
|
333
335
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
336
|
+
# @option opts [String] :name__iregex Filter results where name matches regex value
|
334
337
|
# @option opts [String] :name__istartswith Filter results where name starts with value
|
338
|
+
# @option opts [String] :name__regex Filter results where name matches regex value
|
335
339
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
336
340
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
337
341
|
# @option opts [Array<String>] :ordering 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) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `description` - Description * `-description` - Description (descending) * `next_version` - Next version * `-next_version` - Next version (descending) * `retain_repo_versions` - Retain repo versions * `-retain_repo_versions` - Retain repo versions (descending) * `user_hidden` - User hidden * `-user_hidden` - User hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
@@ -372,7 +376,9 @@ module PulpOstreeClient
|
|
372
376
|
query_params[:'name__icontains'] = opts[:'name__icontains'] if !opts[:'name__icontains'].nil?
|
373
377
|
query_params[:'name__iexact'] = opts[:'name__iexact'] if !opts[:'name__iexact'].nil?
|
374
378
|
query_params[:'name__in'] = @api_client.build_collection_param(opts[:'name__in'], :csv) if !opts[:'name__in'].nil?
|
379
|
+
query_params[:'name__iregex'] = opts[:'name__iregex'] if !opts[:'name__iregex'].nil?
|
375
380
|
query_params[:'name__istartswith'] = opts[:'name__istartswith'] if !opts[:'name__istartswith'].nil?
|
381
|
+
query_params[:'name__regex'] = opts[:'name__regex'] if !opts[:'name__regex'].nil?
|
376
382
|
query_params[:'name__startswith'] = opts[:'name__startswith'] if !opts[:'name__startswith'].nil?
|
377
383
|
query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
|
378
384
|
query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
|
@@ -43,7 +43,9 @@ describe 'ContentRefsApi' do
|
|
43
43
|
# @option opts [String] :name__icontains Filter results where name contains value
|
44
44
|
# @option opts [String] :name__iexact Filter results where name matches value
|
45
45
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
46
|
+
# @option opts [String] :name__iregex Filter results where name matches regex value
|
46
47
|
# @option opts [String] :name__istartswith Filter results where name starts with value
|
48
|
+
# @option opts [String] :name__regex Filter results where name matches regex value
|
47
49
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
48
50
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
49
51
|
# @option opts [Array<String>] :ordering 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) * `name` - Name * `-name` - Name (descending) * `relative_path` - Relative path * `-relative_path` - Relative path (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
@@ -70,7 +70,9 @@ describe 'DistributionsOstreeApi' do
|
|
70
70
|
# @option opts [String] :name__icontains Filter results where name contains value
|
71
71
|
# @option opts [String] :name__iexact Filter results where name matches value
|
72
72
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
73
|
+
# @option opts [String] :name__iregex Filter results where name matches regex value
|
73
74
|
# @option opts [String] :name__istartswith Filter results where name starts with value
|
75
|
+
# @option opts [String] :name__regex Filter results where name matches regex value
|
74
76
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
75
77
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
76
78
|
# @option opts [Array<String>] :ordering 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) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `base_path` - Base path * `-base_path` - Base path (descending) * `hidden` - Hidden * `-hidden` - Hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
@@ -66,7 +66,9 @@ describe 'RemotesOstreeApi' do
|
|
66
66
|
# @option opts [String] :name__icontains Filter results where name contains value
|
67
67
|
# @option opts [String] :name__iexact Filter results where name matches value
|
68
68
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
69
|
+
# @option opts [String] :name__iregex Filter results where name matches regex value
|
69
70
|
# @option opts [String] :name__istartswith Filter results where name starts with value
|
71
|
+
# @option opts [String] :name__regex Filter results where name matches regex value
|
70
72
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
71
73
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
72
74
|
# @option opts [Array<String>] :ordering 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) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `url` - Url * `-url` - Url (descending) * `ca_cert` - Ca cert * `-ca_cert` - Ca cert (descending) * `client_cert` - Client cert * `-client_cert` - Client cert (descending) * `client_key` - Client key * `-client_key` - Client key (descending) * `tls_validation` - Tls validation * `-tls_validation` - Tls validation (descending) * `username` - Username * `-username` - Username (descending) * `password` - Password * `-password` - Password (descending) * `proxy_url` - Proxy url * `-proxy_url` - Proxy url (descending) * `proxy_username` - Proxy username * `-proxy_username` - Proxy username (descending) * `proxy_password` - Proxy password * `-proxy_password` - Proxy password (descending) * `download_concurrency` - Download concurrency * `-download_concurrency` - Download concurrency (descending) * `max_retries` - Max retries * `-max_retries` - Max retries (descending) * `policy` - Policy * `-policy` - Policy (descending) * `total_timeout` - Total timeout * `-total_timeout` - Total timeout (descending) * `connect_timeout` - Connect timeout * `-connect_timeout` - Connect timeout (descending) * `sock_connect_timeout` - Sock connect timeout * `-sock_connect_timeout` - Sock connect timeout (descending) * `sock_read_timeout` - Sock read timeout * `-sock_read_timeout` - Sock read timeout (descending) * `headers` - Headers * `-headers` - Headers (descending) * `rate_limit` - Rate limit * `-rate_limit` - Rate limit (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
@@ -93,7 +93,9 @@ describe 'RepositoriesOstreeApi' do
|
|
93
93
|
# @option opts [String] :name__icontains Filter results where name contains value
|
94
94
|
# @option opts [String] :name__iexact Filter results where name matches value
|
95
95
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
96
|
+
# @option opts [String] :name__iregex Filter results where name matches regex value
|
96
97
|
# @option opts [String] :name__istartswith Filter results where name starts with value
|
98
|
+
# @option opts [String] :name__regex Filter results where name matches regex value
|
97
99
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
98
100
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
99
101
|
# @option opts [Array<String>] :ordering 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) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `description` - Description * `-description` - Description (descending) * `next_version` - Next version * `-next_version` - Next version (descending) * `retain_repo_versions` - Retain repo versions * `-retain_repo_versions` - Retain repo versions (descending) * `user_hidden` - User hidden * `-user_hidden` - User hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pulp_ostree_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.1
|
4
|
+
version: 2.2.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-
|
11
|
+
date: 2023-11-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -260,55 +260,55 @@ signing_key:
|
|
260
260
|
specification_version: 4
|
261
261
|
summary: Pulp 3 API Ruby Gem
|
262
262
|
test_files:
|
263
|
-
- spec/api/remotes_ostree_api_spec.rb
|
264
|
-
- spec/api/repositories_ostree_versions_api_spec.rb
|
265
263
|
- spec/api/content_summaries_api_spec.rb
|
266
264
|
- spec/api/content_objects_api_spec.rb
|
265
|
+
- spec/api/content_commits_api_spec.rb
|
267
266
|
- spec/api/repositories_ostree_api_spec.rb
|
268
|
-
- spec/api/distributions_ostree_api_spec.rb
|
269
|
-
- spec/api/content_configs_api_spec.rb
|
270
|
-
- spec/api/content_refs_api_spec.rb
|
271
267
|
- spec/api/content_content_api_spec.rb
|
272
|
-
- spec/api/
|
268
|
+
- spec/api/content_refs_api_spec.rb
|
269
|
+
- spec/api/content_configs_api_spec.rb
|
270
|
+
- spec/api/distributions_ostree_api_spec.rb
|
271
|
+
- spec/api/remotes_ostree_api_spec.rb
|
272
|
+
- spec/api/repositories_ostree_versions_api_spec.rb
|
273
273
|
- spec/api_client_spec.rb
|
274
274
|
- spec/configuration_spec.rb
|
275
|
-
- spec/models/
|
275
|
+
- spec/models/paginatedostree_ostree_summary_response_list_spec.rb
|
276
|
+
- spec/models/patchedostree_ostree_remote_spec.rb
|
277
|
+
- spec/models/repository_sync_url_spec.rb
|
276
278
|
- spec/models/ostree_ostree_remote_spec.rb
|
279
|
+
- spec/models/ostree_import_commits_to_ref_spec.rb
|
280
|
+
- spec/models/paginatedostree_ostree_object_response_list_spec.rb
|
277
281
|
- spec/models/ostree_ostree_remote_response_spec.rb
|
278
|
-
- spec/models/repository_sync_url_spec.rb
|
279
|
-
- spec/models/patchedostree_ostree_repository_spec.rb
|
280
|
-
- spec/models/ostree_ostree_content_response_spec.rb
|
281
|
-
- spec/models/ostree_ostree_object_response_spec.rb
|
282
|
-
- spec/models/ostree_ostree_repository_spec.rb
|
283
|
-
- spec/models/async_operation_response_spec.rb
|
284
|
-
- spec/models/repair_spec.rb
|
285
|
-
- spec/models/unset_label_response_spec.rb
|
286
282
|
- spec/models/ostree_ostree_distribution_response_spec.rb
|
287
|
-
- spec/models/
|
288
|
-
- spec/models/
|
289
|
-
- spec/models/
|
290
|
-
- spec/models/
|
291
|
-
- spec/models/
|
283
|
+
- spec/models/unset_label_spec.rb
|
284
|
+
- spec/models/ostree_ostree_object_response_spec.rb
|
285
|
+
- spec/models/ostree_ostree_content_response_spec.rb
|
286
|
+
- spec/models/repository_version_response_spec.rb
|
287
|
+
- spec/models/ostree_ostree_repository_response_spec.rb
|
292
288
|
- spec/models/paginated_repository_version_response_list_spec.rb
|
293
|
-
- spec/models/
|
294
|
-
- spec/models/patchedostree_ostree_distribution_spec.rb
|
295
|
-
- spec/models/ostree_ostree_commit_response_spec.rb
|
296
|
-
- spec/models/patchedostree_ostree_remote_spec.rb
|
297
|
-
- spec/models/ostree_ostree_config_response_spec.rb
|
298
|
-
- spec/models/paginatedostree_ostree_content_response_list_spec.rb
|
299
|
-
- spec/models/paginatedostree_ostree_config_response_list_spec.rb
|
289
|
+
- spec/models/set_label_spec.rb
|
300
290
|
- spec/models/ostree_import_all_spec.rb
|
301
|
-
- spec/models/
|
302
|
-
- spec/models/ostree_ostree_repository_response_spec.rb
|
291
|
+
- spec/models/content_summary_response_spec.rb
|
303
292
|
- spec/models/paginatedostree_ostree_commit_response_list_spec.rb
|
304
|
-
- spec/models/
|
305
|
-
- spec/models/
|
306
|
-
- spec/models/
|
293
|
+
- spec/models/async_operation_response_spec.rb
|
294
|
+
- spec/models/ostree_ostree_commit_response_spec.rb
|
295
|
+
- spec/models/ostree_ostree_distribution_spec.rb
|
307
296
|
- spec/models/ostree_ostree_ref_response_spec.rb
|
308
|
-
- spec/models/unset_label_spec.rb
|
309
|
-
- spec/models/content_summary_response_spec.rb
|
310
297
|
- spec/models/paginatedostree_ostree_repository_response_list_spec.rb
|
298
|
+
- spec/models/ostree_ostree_repository_spec.rb
|
311
299
|
- spec/models/policy_enum_spec.rb
|
312
|
-
- spec/models/
|
300
|
+
- spec/models/paginatedostree_ostree_ref_response_list_spec.rb
|
301
|
+
- spec/models/paginatedostree_ostree_config_response_list_spec.rb
|
302
|
+
- spec/models/ostree_ostree_summary_response_spec.rb
|
303
|
+
- spec/models/unset_label_response_spec.rb
|
304
|
+
- spec/models/repair_spec.rb
|
305
|
+
- spec/models/repository_add_remove_content_spec.rb
|
306
|
+
- spec/models/paginatedostree_ostree_content_response_list_spec.rb
|
307
|
+
- spec/models/ostree_ostree_config_response_spec.rb
|
308
|
+
- spec/models/paginatedostree_ostree_remote_response_list_spec.rb
|
309
|
+
- spec/models/paginatedostree_ostree_distribution_response_list_spec.rb
|
310
|
+
- spec/models/set_label_response_spec.rb
|
313
311
|
- spec/models/ostree_ostree_remote_response_hidden_fields_spec.rb
|
312
|
+
- spec/models/patchedostree_ostree_repository_spec.rb
|
313
|
+
- spec/models/patchedostree_ostree_distribution_spec.rb
|
314
314
|
- spec/spec_helper.rb
|