pulp_file_client 1.6.0.post0 → 1.7.0.dev1615260987

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.

Potentially problematic release.


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

Files changed (34) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/docs/ContentFilesApi.md +10 -10
  4. data/docs/DistributionsFileApi.md +20 -20
  5. data/docs/ExportersFilesystemApi.md +10 -10
  6. data/docs/FileFileRemote.md +7 -1
  7. data/docs/FileFileRemoteResponse.md +3 -7
  8. data/docs/PatchedfileFileRemote.md +7 -1
  9. data/docs/PublicationsFileApi.md +14 -14
  10. data/docs/RemotesFileApi.md +24 -24
  11. data/docs/RepositoriesFileApi.md +12 -12
  12. data/docs/RepositoriesFileVersionsApi.md +28 -28
  13. data/lib/pulp_file_client/api/content_files_api.rb +10 -10
  14. data/lib/pulp_file_client/api/distributions_file_api.rb +22 -22
  15. data/lib/pulp_file_client/api/exporters_filesystem_api.rb +11 -11
  16. data/lib/pulp_file_client/api/publications_file_api.rb +15 -15
  17. data/lib/pulp_file_client/api/remotes_file_api.rb +26 -26
  18. data/lib/pulp_file_client/api/repositories_file_api.rb +13 -13
  19. data/lib/pulp_file_client/api/repositories_file_versions_api.rb +50 -30
  20. data/lib/pulp_file_client/models/file_file_remote.rb +36 -2
  21. data/lib/pulp_file_client/models/file_file_remote_response.rb +14 -35
  22. data/lib/pulp_file_client/models/patchedfile_file_remote.rb +36 -2
  23. data/lib/pulp_file_client/version.rb +1 -1
  24. data/spec/api/content_files_api_spec.rb +5 -5
  25. data/spec/api/distributions_file_api_spec.rb +10 -10
  26. data/spec/api/exporters_filesystem_api_spec.rb +5 -5
  27. data/spec/api/publications_file_api_spec.rb +7 -7
  28. data/spec/api/remotes_file_api_spec.rb +12 -12
  29. data/spec/api/repositories_file_api_spec.rb +6 -6
  30. data/spec/api/repositories_file_versions_api_spec.rb +14 -14
  31. data/spec/models/file_file_remote_response_spec.rb +6 -18
  32. data/spec/models/file_file_remote_spec.rb +18 -0
  33. data/spec/models/patchedfile_file_remote_spec.rb +18 -0
  34. metadata +2 -2
@@ -63,13 +63,13 @@ describe 'PublicationsFileApi' do
63
63
  # @option opts [Integer] :limit Number of results to return per page.
64
64
  # @option opts [Integer] :offset The initial index from which to return the results.
65
65
  # @option opts [String] :ordering Which field to use when ordering the results.
66
- # @option opts [String] :pulp_created pulp_created
67
- # @option opts [String] :pulp_created__gt pulp_created__gt
68
- # @option opts [String] :pulp_created__gte pulp_created__gte
69
- # @option opts [String] :pulp_created__lt pulp_created__lt
70
- # @option opts [String] :pulp_created__lte pulp_created__lte
71
- # @option opts [String] :pulp_created__range pulp_created__range
72
- # @option opts [String] :repository_version repository_version
66
+ # @option opts [DateTime] :pulp_created ISO 8601 formatted dates are supported
67
+ # @option opts [DateTime] :pulp_created__gt Filter results where pulp_created is greater than value
68
+ # @option opts [DateTime] :pulp_created__gte Filter results where pulp_created is greater than or equal to value
69
+ # @option opts [DateTime] :pulp_created__lt Filter results where pulp_created is less than value
70
+ # @option opts [DateTime] :pulp_created__lte Filter results where pulp_created is less than or equal to value
71
+ # @option opts [Array<DateTime>] :pulp_created__range Filter results where pulp_created is between two comma separated values
72
+ # @option opts [String] :repository_version Repository Version referenced by HREF
73
73
  # @option opts [String] :fields A list of fields to include in the response.
74
74
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
75
75
  # @return [PaginatedfileFilePublicationResponseList]
@@ -61,20 +61,20 @@ describe 'RemotesFileApi' do
61
61
  # FileRemote represents an external source of File Content. The target url of a FileRemote must contain a file manifest, which contains the metadata for all files at the source.
62
62
  # @param [Hash] opts the optional parameters
63
63
  # @option opts [Integer] :limit Number of results to return per page.
64
- # @option opts [String] :name name
65
- # @option opts [String] :name__contains name__contains
66
- # @option opts [String] :name__icontains name__icontains
67
- # @option opts [String] :name__in name__in
68
- # @option opts [String] :name__startswith name__startswith
64
+ # @option opts [String] :name
65
+ # @option opts [String] :name__contains Filter results where name contains value
66
+ # @option opts [String] :name__icontains Filter results where name contains value
67
+ # @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
68
+ # @option opts [String] :name__startswith Filter results where name starts with value
69
69
  # @option opts [Integer] :offset The initial index from which to return the results.
70
70
  # @option opts [String] :ordering Which field to use when ordering the results.
71
- # @option opts [String] :pulp_label_select pulp_label_select
72
- # @option opts [String] :pulp_last_updated pulp_last_updated
73
- # @option opts [String] :pulp_last_updated__gt pulp_last_updated__gt
74
- # @option opts [String] :pulp_last_updated__gte pulp_last_updated__gte
75
- # @option opts [String] :pulp_last_updated__lt pulp_last_updated__lt
76
- # @option opts [String] :pulp_last_updated__lte pulp_last_updated__lte
77
- # @option opts [String] :pulp_last_updated__range pulp_last_updated__range
71
+ # @option opts [String] :pulp_label_select Filter labels by search string
72
+ # @option opts [DateTime] :pulp_last_updated ISO 8601 formatted dates are supported
73
+ # @option opts [DateTime] :pulp_last_updated__gt Filter results where pulp_last_updated is greater than value
74
+ # @option opts [DateTime] :pulp_last_updated__gte Filter results where pulp_last_updated is greater than or equal to value
75
+ # @option opts [DateTime] :pulp_last_updated__lt Filter results where pulp_last_updated is less than value
76
+ # @option opts [DateTime] :pulp_last_updated__lte Filter results where pulp_last_updated is less than or equal to value
77
+ # @option opts [Array<DateTime>] :pulp_last_updated__range Filter results where pulp_last_updated is between two comma separated values
78
78
  # @option opts [String] :fields A list of fields to include in the response.
79
79
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
80
80
  # @return [PaginatedfileFileRemoteResponseList]
@@ -61,14 +61,14 @@ describe 'RepositoriesFileApi' do
61
61
  # FileRepository represents a single file repository, to which content can be synced, added, or removed.
62
62
  # @param [Hash] opts the optional parameters
63
63
  # @option opts [Integer] :limit Number of results to return per page.
64
- # @option opts [String] :name name
65
- # @option opts [String] :name__contains name__contains
66
- # @option opts [String] :name__icontains name__icontains
67
- # @option opts [String] :name__in name__in
68
- # @option opts [String] :name__startswith name__startswith
64
+ # @option opts [String] :name
65
+ # @option opts [String] :name__contains Filter results where name contains value
66
+ # @option opts [String] :name__icontains Filter results where name contains value
67
+ # @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
68
+ # @option opts [String] :name__startswith Filter results where name starts with value
69
69
  # @option opts [Integer] :offset The initial index from which to return the results.
70
70
  # @option opts [String] :ordering Which field to use when ordering the results.
71
- # @option opts [String] :pulp_label_select pulp_label_select
71
+ # @option opts [String] :pulp_label_select Filter labels by search string
72
72
  # @option opts [String] :fields A list of fields to include in the response.
73
73
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
74
74
  # @return [PaginatedfileFileRepositoryResponseList]
@@ -49,23 +49,23 @@ describe 'RepositoriesFileVersionsApi' do
49
49
  # FileRepositoryVersion represents a single file repository version.
50
50
  # @param file_file_repository_href
51
51
  # @param [Hash] opts the optional parameters
52
- # @option opts [String] :content content
53
- # @option opts [String] :content__in content__in
52
+ # @option opts [String] :content Content Unit referenced by HREF
53
+ # @option opts [String] :content__in Content Unit referenced by HREF
54
54
  # @option opts [Integer] :limit Number of results to return per page.
55
- # @option opts [String] :number number
56
- # @option opts [String] :number__gt number__gt
57
- # @option opts [String] :number__gte number__gte
58
- # @option opts [String] :number__lt number__lt
59
- # @option opts [String] :number__lte number__lte
60
- # @option opts [String] :number__range number__range
55
+ # @option opts [Integer] :number
56
+ # @option opts [Integer] :number__gt Filter results where number is greater than value
57
+ # @option opts [Integer] :number__gte Filter results where number is greater than or equal to value
58
+ # @option opts [Integer] :number__lt Filter results where number is less than value
59
+ # @option opts [Integer] :number__lte Filter results where number is less than or equal to value
60
+ # @option opts [Array<Integer>] :number__range Filter results where number is between two comma separated values
61
61
  # @option opts [Integer] :offset The initial index from which to return the results.
62
62
  # @option opts [String] :ordering Which field to use when ordering the results.
63
- # @option opts [String] :pulp_created pulp_created
64
- # @option opts [String] :pulp_created__gt pulp_created__gt
65
- # @option opts [String] :pulp_created__gte pulp_created__gte
66
- # @option opts [String] :pulp_created__lt pulp_created__lt
67
- # @option opts [String] :pulp_created__lte pulp_created__lte
68
- # @option opts [String] :pulp_created__range pulp_created__range
63
+ # @option opts [DateTime] :pulp_created ISO 8601 formatted dates are supported
64
+ # @option opts [DateTime] :pulp_created__gt Filter results where pulp_created is greater than value
65
+ # @option opts [DateTime] :pulp_created__gte Filter results where pulp_created is greater than or equal to value
66
+ # @option opts [DateTime] :pulp_created__lt Filter results where pulp_created is less than value
67
+ # @option opts [DateTime] :pulp_created__lte Filter results where pulp_created is less than or equal to value
68
+ # @option opts [Array<DateTime>] :pulp_created__range Filter results where pulp_created is between two comma separated values
69
69
  # @option opts [String] :fields A list of fields to include in the response.
70
70
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
71
71
  # @return [PaginatedRepositoryVersionResponseList]
@@ -68,12 +68,6 @@ describe 'FileFileRemoteResponse' do
68
68
  end
69
69
  end
70
70
 
71
- describe 'test attribute "client_key"' do
72
- it 'should work' do
73
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
- end
75
- end
76
-
77
71
  describe 'test attribute "tls_validation"' do
78
72
  it 'should work' do
79
73
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -86,18 +80,6 @@ describe 'FileFileRemoteResponse' do
86
80
  end
87
81
  end
88
82
 
89
- describe 'test attribute "username"' 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
- describe 'test attribute "password"' do
96
- it 'should work' do
97
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
98
- end
99
- end
100
-
101
83
  describe 'test attribute "pulp_labels"' do
102
84
  it 'should work' do
103
85
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -146,6 +128,12 @@ describe 'FileFileRemoteResponse' do
146
128
  end
147
129
  end
148
130
 
131
+ describe 'test attribute "headers"' do
132
+ it 'should work' do
133
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
134
+ end
135
+ end
136
+
149
137
  describe 'test attribute "rate_limit"' do
150
138
  it 'should work' do
151
139
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -74,6 +74,18 @@ describe 'FileFileRemote' do
74
74
  end
75
75
  end
76
76
 
77
+ describe 'test attribute "proxy_username"' do
78
+ it 'should work' do
79
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
+ end
81
+ end
82
+
83
+ describe 'test attribute "proxy_password"' do
84
+ it 'should work' do
85
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
86
+ end
87
+ end
88
+
77
89
  describe 'test attribute "username"' do
78
90
  it 'should work' do
79
91
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -128,6 +140,12 @@ describe 'FileFileRemote' do
128
140
  end
129
141
  end
130
142
 
143
+ describe 'test attribute "headers"' do
144
+ it 'should work' do
145
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
146
+ end
147
+ end
148
+
131
149
  describe 'test attribute "rate_limit"' do
132
150
  it 'should work' do
133
151
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -74,6 +74,18 @@ describe 'PatchedfileFileRemote' do
74
74
  end
75
75
  end
76
76
 
77
+ describe 'test attribute "proxy_username"' do
78
+ it 'should work' do
79
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
+ end
81
+ end
82
+
83
+ describe 'test attribute "proxy_password"' do
84
+ it 'should work' do
85
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
86
+ end
87
+ end
88
+
77
89
  describe 'test attribute "username"' do
78
90
  it 'should work' do
79
91
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -128,6 +140,12 @@ describe 'PatchedfileFileRemote' do
128
140
  end
129
141
  end
130
142
 
143
+ describe 'test attribute "headers"' do
144
+ it 'should work' do
145
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
146
+ end
147
+ end
148
+
131
149
  describe 'test attribute "rate_limit"' do
132
150
  it 'should work' do
133
151
  # 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_file_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.0.post0
4
+ version: 1.7.0.dev1615260987
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-03-05 00:00:00.000000000 Z
11
+ date: 2021-03-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday