pulp_file_client 3.104.2 → 3.105.0

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.
Files changed (36) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +21 -5
  3. data/docs/FileFileGitRemote.md +58 -0
  4. data/docs/FileFileGitRemoteResponse.md +58 -0
  5. data/docs/{FileFileRemoteResponseHiddenFieldsInner.md → FileFileGitRemoteResponseHiddenFieldsInner.md} +2 -2
  6. data/docs/FileFileRemoteResponse.md +1 -1
  7. data/docs/PaginatedfileFileGitRemoteResponseList.md +24 -0
  8. data/docs/PatchedfileFileGitRemote.md +58 -0
  9. data/docs/RemotesGitApi.md +981 -0
  10. data/lib/pulp_file_client/api/remotes_git_api.rb +979 -0
  11. data/lib/pulp_file_client/models/file_file_git_remote.rb +702 -0
  12. data/lib/pulp_file_client/models/file_file_git_remote_response.rb +521 -0
  13. data/lib/pulp_file_client/models/{file_file_remote_response_hidden_fields_inner.rb → file_file_git_remote_response_hidden_fields_inner.rb} +3 -3
  14. data/lib/pulp_file_client/models/file_file_remote.rb +15 -0
  15. data/lib/pulp_file_client/models/file_file_remote_response.rb +16 -1
  16. data/lib/pulp_file_client/models/file_file_repository.rb +15 -0
  17. data/lib/pulp_file_client/models/file_file_repository_response.rb +15 -0
  18. data/lib/pulp_file_client/models/paginatedfile_file_git_remote_response_list.rb +257 -0
  19. data/lib/pulp_file_client/models/patchedfile_file_git_remote.rb +688 -0
  20. data/lib/pulp_file_client/models/patchedfile_file_remote.rb +15 -0
  21. data/lib/pulp_file_client/models/patchedfile_file_repository.rb +15 -0
  22. data/lib/pulp_file_client/models/remote_network_config.rb +15 -0
  23. data/lib/pulp_file_client/models/remote_network_config_response.rb +15 -0
  24. data/lib/pulp_file_client/models/set_label.rb +0 -11
  25. data/lib/pulp_file_client/models/set_label_response.rb +0 -21
  26. data/lib/pulp_file_client/models/unset_label.rb +0 -11
  27. data/lib/pulp_file_client/models/unset_label_response.rb +0 -21
  28. data/lib/pulp_file_client/version.rb +1 -1
  29. data/lib/pulp_file_client.rb +6 -1
  30. data/spec/api/remotes_git_api_spec.rb +228 -0
  31. data/spec/models/{file_file_remote_response_hidden_fields_inner_spec.rb → file_file_git_remote_response_hidden_fields_inner_spec.rb} +6 -6
  32. data/spec/models/file_file_git_remote_response_spec.rb +156 -0
  33. data/spec/models/file_file_git_remote_spec.rb +156 -0
  34. data/spec/models/paginatedfile_file_git_remote_response_list_spec.rb +54 -0
  35. data/spec/models/patchedfile_file_git_remote_spec.rb +156 -0
  36. metadata +26 -6
@@ -0,0 +1,156 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #Fetch, Upload, Organize, and Distribute Software Packages
5
+
6
+ The version of the OpenAPI document: v3
7
+ Contact: pulp-list@redhat.com
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.10.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for PulpFileClient::FileFileGitRemoteResponse
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe PulpFileClient::FileFileGitRemoteResponse do
21
+ let(:instance) { PulpFileClient::FileFileGitRemoteResponse.new }
22
+
23
+ describe 'test an instance of FileFileGitRemoteResponse' do
24
+ it 'should create an instance of FileFileGitRemoteResponse' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(PulpFileClient::FileFileGitRemoteResponse)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "pulp_href"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ describe 'test attribute "prn"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
42
+ describe 'test attribute "pulp_created"' do
43
+ it 'should work' do
44
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
+ end
46
+ end
47
+
48
+ describe 'test attribute "pulp_last_updated"' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
+ end
52
+ end
53
+
54
+ describe 'test attribute "name"' do
55
+ it 'should work' do
56
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
+ end
58
+ end
59
+
60
+ describe 'test attribute "url"' do
61
+ it 'should work' do
62
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
63
+ end
64
+ end
65
+
66
+ describe 'test attribute "pulp_labels"' do
67
+ it 'should work' do
68
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
69
+ end
70
+ end
71
+
72
+ describe 'test attribute "hidden_fields"' do
73
+ it 'should work' do
74
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
75
+ end
76
+ end
77
+
78
+ describe 'test attribute "ca_cert"' do
79
+ it 'should work' do
80
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
81
+ end
82
+ end
83
+
84
+ describe 'test attribute "client_cert"' do
85
+ it 'should work' do
86
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
87
+ end
88
+ end
89
+
90
+ describe 'test attribute "tls_validation"' do
91
+ it 'should work' do
92
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
93
+ end
94
+ end
95
+
96
+ describe 'test attribute "proxy_url"' do
97
+ it 'should work' do
98
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
99
+ end
100
+ end
101
+
102
+ describe 'test attribute "max_retries"' do
103
+ it 'should work' do
104
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
105
+ end
106
+ end
107
+
108
+ describe 'test attribute "total_timeout"' do
109
+ it 'should work' do
110
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
111
+ end
112
+ end
113
+
114
+ describe 'test attribute "connect_timeout"' do
115
+ it 'should work' do
116
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
117
+ end
118
+ end
119
+
120
+ describe 'test attribute "sock_connect_timeout"' do
121
+ it 'should work' do
122
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
123
+ end
124
+ end
125
+
126
+ describe 'test attribute "sock_read_timeout"' do
127
+ it 'should work' do
128
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
129
+ end
130
+ end
131
+
132
+ describe 'test attribute "headers"' do
133
+ it 'should work' do
134
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
135
+ end
136
+ end
137
+
138
+ describe 'test attribute "download_concurrency"' do
139
+ it 'should work' do
140
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
141
+ end
142
+ end
143
+
144
+ describe 'test attribute "rate_limit"' do
145
+ it 'should work' do
146
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
147
+ end
148
+ end
149
+
150
+ describe 'test attribute "git_ref"' do
151
+ it 'should work' do
152
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
153
+ end
154
+ end
155
+
156
+ end
@@ -0,0 +1,156 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #Fetch, Upload, Organize, and Distribute Software Packages
5
+
6
+ The version of the OpenAPI document: v3
7
+ Contact: pulp-list@redhat.com
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.10.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for PulpFileClient::FileFileGitRemote
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe PulpFileClient::FileFileGitRemote do
21
+ let(:instance) { PulpFileClient::FileFileGitRemote.new }
22
+
23
+ describe 'test an instance of FileFileGitRemote' do
24
+ it 'should create an instance of FileFileGitRemote' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(PulpFileClient::FileFileGitRemote)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "name"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ describe 'test attribute "url"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
42
+ describe 'test attribute "pulp_labels"' do
43
+ it 'should work' do
44
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
+ end
46
+ end
47
+
48
+ describe 'test attribute "ca_cert"' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
+ end
52
+ end
53
+
54
+ describe 'test attribute "client_cert"' do
55
+ it 'should work' do
56
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
+ end
58
+ end
59
+
60
+ describe 'test attribute "client_key"' do
61
+ it 'should work' do
62
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
63
+ end
64
+ end
65
+
66
+ describe 'test attribute "tls_validation"' do
67
+ it 'should work' do
68
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
69
+ end
70
+ end
71
+
72
+ describe 'test attribute "proxy_url"' do
73
+ it 'should work' do
74
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
75
+ end
76
+ end
77
+
78
+ describe 'test attribute "proxy_username"' do
79
+ it 'should work' do
80
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
81
+ end
82
+ end
83
+
84
+ describe 'test attribute "proxy_password"' do
85
+ it 'should work' do
86
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
87
+ end
88
+ end
89
+
90
+ describe 'test attribute "username"' do
91
+ it 'should work' do
92
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
93
+ end
94
+ end
95
+
96
+ describe 'test attribute "password"' do
97
+ it 'should work' do
98
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
99
+ end
100
+ end
101
+
102
+ describe 'test attribute "max_retries"' do
103
+ it 'should work' do
104
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
105
+ end
106
+ end
107
+
108
+ describe 'test attribute "total_timeout"' do
109
+ it 'should work' do
110
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
111
+ end
112
+ end
113
+
114
+ describe 'test attribute "connect_timeout"' do
115
+ it 'should work' do
116
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
117
+ end
118
+ end
119
+
120
+ describe 'test attribute "sock_connect_timeout"' do
121
+ it 'should work' do
122
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
123
+ end
124
+ end
125
+
126
+ describe 'test attribute "sock_read_timeout"' do
127
+ it 'should work' do
128
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
129
+ end
130
+ end
131
+
132
+ describe 'test attribute "headers"' do
133
+ it 'should work' do
134
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
135
+ end
136
+ end
137
+
138
+ describe 'test attribute "download_concurrency"' do
139
+ it 'should work' do
140
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
141
+ end
142
+ end
143
+
144
+ describe 'test attribute "rate_limit"' do
145
+ it 'should work' do
146
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
147
+ end
148
+ end
149
+
150
+ describe 'test attribute "git_ref"' do
151
+ it 'should work' do
152
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
153
+ end
154
+ end
155
+
156
+ end
@@ -0,0 +1,54 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #Fetch, Upload, Organize, and Distribute Software Packages
5
+
6
+ The version of the OpenAPI document: v3
7
+ Contact: pulp-list@redhat.com
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.10.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for PulpFileClient::PaginatedfileFileGitRemoteResponseList
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe PulpFileClient::PaginatedfileFileGitRemoteResponseList do
21
+ let(:instance) { PulpFileClient::PaginatedfileFileGitRemoteResponseList.new }
22
+
23
+ describe 'test an instance of PaginatedfileFileGitRemoteResponseList' do
24
+ it 'should create an instance of PaginatedfileFileGitRemoteResponseList' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(PulpFileClient::PaginatedfileFileGitRemoteResponseList)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "count"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ describe 'test attribute "_next"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
42
+ describe 'test attribute "previous"' do
43
+ it 'should work' do
44
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
+ end
46
+ end
47
+
48
+ describe 'test attribute "results"' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
+ end
52
+ end
53
+
54
+ end
@@ -0,0 +1,156 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #Fetch, Upload, Organize, and Distribute Software Packages
5
+
6
+ The version of the OpenAPI document: v3
7
+ Contact: pulp-list@redhat.com
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.10.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for PulpFileClient::PatchedfileFileGitRemote
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe PulpFileClient::PatchedfileFileGitRemote do
21
+ let(:instance) { PulpFileClient::PatchedfileFileGitRemote.new }
22
+
23
+ describe 'test an instance of PatchedfileFileGitRemote' do
24
+ it 'should create an instance of PatchedfileFileGitRemote' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(PulpFileClient::PatchedfileFileGitRemote)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "name"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ describe 'test attribute "url"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
42
+ describe 'test attribute "pulp_labels"' do
43
+ it 'should work' do
44
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
+ end
46
+ end
47
+
48
+ describe 'test attribute "ca_cert"' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
+ end
52
+ end
53
+
54
+ describe 'test attribute "client_cert"' do
55
+ it 'should work' do
56
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
+ end
58
+ end
59
+
60
+ describe 'test attribute "client_key"' do
61
+ it 'should work' do
62
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
63
+ end
64
+ end
65
+
66
+ describe 'test attribute "tls_validation"' do
67
+ it 'should work' do
68
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
69
+ end
70
+ end
71
+
72
+ describe 'test attribute "proxy_url"' do
73
+ it 'should work' do
74
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
75
+ end
76
+ end
77
+
78
+ describe 'test attribute "proxy_username"' do
79
+ it 'should work' do
80
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
81
+ end
82
+ end
83
+
84
+ describe 'test attribute "proxy_password"' do
85
+ it 'should work' do
86
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
87
+ end
88
+ end
89
+
90
+ describe 'test attribute "username"' do
91
+ it 'should work' do
92
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
93
+ end
94
+ end
95
+
96
+ describe 'test attribute "password"' do
97
+ it 'should work' do
98
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
99
+ end
100
+ end
101
+
102
+ describe 'test attribute "max_retries"' do
103
+ it 'should work' do
104
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
105
+ end
106
+ end
107
+
108
+ describe 'test attribute "total_timeout"' do
109
+ it 'should work' do
110
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
111
+ end
112
+ end
113
+
114
+ describe 'test attribute "connect_timeout"' do
115
+ it 'should work' do
116
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
117
+ end
118
+ end
119
+
120
+ describe 'test attribute "sock_connect_timeout"' do
121
+ it 'should work' do
122
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
123
+ end
124
+ end
125
+
126
+ describe 'test attribute "sock_read_timeout"' do
127
+ it 'should work' do
128
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
129
+ end
130
+ end
131
+
132
+ describe 'test attribute "headers"' do
133
+ it 'should work' do
134
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
135
+ end
136
+ end
137
+
138
+ describe 'test attribute "download_concurrency"' do
139
+ it 'should work' do
140
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
141
+ end
142
+ end
143
+
144
+ describe 'test attribute "rate_limit"' do
145
+ it 'should work' do
146
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
147
+ end
148
+ end
149
+
150
+ describe 'test attribute "git_ref"' do
151
+ it 'should work' do
152
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
153
+ end
154
+ end
155
+
156
+ end
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: 3.104.2
4
+ version: 3.105.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-03-05 00:00:00.000000000 Z
11
+ date: 2026-03-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -99,11 +99,13 @@ files:
99
99
  - docs/FileFileContentResponse.md
100
100
  - docs/FileFileDistribution.md
101
101
  - docs/FileFileDistributionResponse.md
102
+ - docs/FileFileGitRemote.md
103
+ - docs/FileFileGitRemoteResponse.md
104
+ - docs/FileFileGitRemoteResponseHiddenFieldsInner.md
102
105
  - docs/FileFilePublication.md
103
106
  - docs/FileFilePublicationResponse.md
104
107
  - docs/FileFileRemote.md
105
108
  - docs/FileFileRemoteResponse.md
106
- - docs/FileFileRemoteResponseHiddenFieldsInner.md
107
109
  - docs/FileFileRepository.md
108
110
  - docs/FileFileRepositoryResponse.md
109
111
  - docs/MyPermissionsResponse.md
@@ -114,11 +116,13 @@ files:
114
116
  - docs/PaginatedfileFileAlternateContentSourceResponseList.md
115
117
  - docs/PaginatedfileFileContentResponseList.md
116
118
  - docs/PaginatedfileFileDistributionResponseList.md
119
+ - docs/PaginatedfileFileGitRemoteResponseList.md
117
120
  - docs/PaginatedfileFilePublicationResponseList.md
118
121
  - docs/PaginatedfileFileRemoteResponseList.md
119
122
  - docs/PaginatedfileFileRepositoryResponseList.md
120
123
  - docs/PatchedfileFileAlternateContentSource.md
121
124
  - docs/PatchedfileFileDistribution.md
125
+ - docs/PatchedfileFileGitRemote.md
122
126
  - docs/PatchedfileFileRemote.md
123
127
  - docs/PatchedfileFileRepository.md
124
128
  - docs/PolicyEnum.md
@@ -126,6 +130,7 @@ files:
126
130
  - docs/RemoteNetworkConfig.md
127
131
  - docs/RemoteNetworkConfigResponse.md
128
132
  - docs/RemotesFileApi.md
133
+ - docs/RemotesGitApi.md
129
134
  - docs/Repair.md
130
135
  - docs/RepositoriesFileApi.md
131
136
  - docs/RepositoriesFileVersionsApi.md
@@ -143,6 +148,7 @@ files:
143
148
  - lib/pulp_file_client/api/distributions_file_api.rb
144
149
  - lib/pulp_file_client/api/publications_file_api.rb
145
150
  - lib/pulp_file_client/api/remotes_file_api.rb
151
+ - lib/pulp_file_client/api/remotes_git_api.rb
146
152
  - lib/pulp_file_client/api/repositories_file_api.rb
147
153
  - lib/pulp_file_client/api/repositories_file_versions_api.rb
148
154
  - lib/pulp_file_client/api_client.rb
@@ -156,11 +162,13 @@ files:
156
162
  - lib/pulp_file_client/models/file_file_content_response.rb
157
163
  - lib/pulp_file_client/models/file_file_distribution.rb
158
164
  - lib/pulp_file_client/models/file_file_distribution_response.rb
165
+ - lib/pulp_file_client/models/file_file_git_remote.rb
166
+ - lib/pulp_file_client/models/file_file_git_remote_response.rb
167
+ - lib/pulp_file_client/models/file_file_git_remote_response_hidden_fields_inner.rb
159
168
  - lib/pulp_file_client/models/file_file_publication.rb
160
169
  - lib/pulp_file_client/models/file_file_publication_response.rb
161
170
  - lib/pulp_file_client/models/file_file_remote.rb
162
171
  - lib/pulp_file_client/models/file_file_remote_response.rb
163
- - lib/pulp_file_client/models/file_file_remote_response_hidden_fields_inner.rb
164
172
  - lib/pulp_file_client/models/file_file_repository.rb
165
173
  - lib/pulp_file_client/models/file_file_repository_response.rb
166
174
  - lib/pulp_file_client/models/my_permissions_response.rb
@@ -171,11 +179,13 @@ files:
171
179
  - lib/pulp_file_client/models/paginatedfile_file_alternate_content_source_response_list.rb
172
180
  - lib/pulp_file_client/models/paginatedfile_file_content_response_list.rb
173
181
  - lib/pulp_file_client/models/paginatedfile_file_distribution_response_list.rb
182
+ - lib/pulp_file_client/models/paginatedfile_file_git_remote_response_list.rb
174
183
  - lib/pulp_file_client/models/paginatedfile_file_publication_response_list.rb
175
184
  - lib/pulp_file_client/models/paginatedfile_file_remote_response_list.rb
176
185
  - lib/pulp_file_client/models/paginatedfile_file_repository_response_list.rb
177
186
  - lib/pulp_file_client/models/patchedfile_file_alternate_content_source.rb
178
187
  - lib/pulp_file_client/models/patchedfile_file_distribution.rb
188
+ - lib/pulp_file_client/models/patchedfile_file_git_remote.rb
179
189
  - lib/pulp_file_client/models/patchedfile_file_remote.rb
180
190
  - lib/pulp_file_client/models/patchedfile_file_repository.rb
181
191
  - lib/pulp_file_client/models/policy_enum.rb
@@ -197,6 +207,7 @@ files:
197
207
  - spec/api/distributions_file_api_spec.rb
198
208
  - spec/api/publications_file_api_spec.rb
199
209
  - spec/api/remotes_file_api_spec.rb
210
+ - spec/api/remotes_git_api_spec.rb
200
211
  - spec/api/repositories_file_api_spec.rb
201
212
  - spec/api/repositories_file_versions_api_spec.rb
202
213
  - spec/models/async_operation_response_spec.rb
@@ -207,9 +218,11 @@ files:
207
218
  - spec/models/file_file_content_response_spec.rb
208
219
  - spec/models/file_file_distribution_response_spec.rb
209
220
  - spec/models/file_file_distribution_spec.rb
221
+ - spec/models/file_file_git_remote_response_hidden_fields_inner_spec.rb
222
+ - spec/models/file_file_git_remote_response_spec.rb
223
+ - spec/models/file_file_git_remote_spec.rb
210
224
  - spec/models/file_file_publication_response_spec.rb
211
225
  - spec/models/file_file_publication_spec.rb
212
- - spec/models/file_file_remote_response_hidden_fields_inner_spec.rb
213
226
  - spec/models/file_file_remote_response_spec.rb
214
227
  - spec/models/file_file_remote_spec.rb
215
228
  - spec/models/file_file_repository_response_spec.rb
@@ -222,11 +235,13 @@ files:
222
235
  - spec/models/paginatedfile_file_alternate_content_source_response_list_spec.rb
223
236
  - spec/models/paginatedfile_file_content_response_list_spec.rb
224
237
  - spec/models/paginatedfile_file_distribution_response_list_spec.rb
238
+ - spec/models/paginatedfile_file_git_remote_response_list_spec.rb
225
239
  - spec/models/paginatedfile_file_publication_response_list_spec.rb
226
240
  - spec/models/paginatedfile_file_remote_response_list_spec.rb
227
241
  - spec/models/paginatedfile_file_repository_response_list_spec.rb
228
242
  - spec/models/patchedfile_file_alternate_content_source_spec.rb
229
243
  - spec/models/patchedfile_file_distribution_spec.rb
244
+ - spec/models/patchedfile_file_git_remote_spec.rb
230
245
  - spec/models/patchedfile_file_remote_spec.rb
231
246
  - spec/models/patchedfile_file_repository_spec.rb
232
247
  - spec/models/policy_enum_spec.rb
@@ -270,6 +285,7 @@ test_files:
270
285
  - spec/api/distributions_file_api_spec.rb
271
286
  - spec/api/publications_file_api_spec.rb
272
287
  - spec/api/content_files_api_spec.rb
288
+ - spec/api/remotes_git_api_spec.rb
273
289
  - spec/api/repositories_file_versions_api_spec.rb
274
290
  - spec/api/remotes_file_api_spec.rb
275
291
  - spec/api/acs_file_api_spec.rb
@@ -285,7 +301,6 @@ test_files:
285
301
  - spec/models/paginatedfile_file_remote_response_list_spec.rb
286
302
  - spec/models/paginatedfile_file_alternate_content_source_response_list_spec.rb
287
303
  - spec/models/file_file_repository_response_spec.rb
288
- - spec/models/file_file_remote_response_hidden_fields_inner_spec.rb
289
304
  - spec/models/unset_label_response_spec.rb
290
305
  - spec/models/paginatedfile_file_publication_response_list_spec.rb
291
306
  - spec/models/file_file_distribution_response_spec.rb
@@ -295,14 +310,18 @@ test_files:
295
310
  - spec/models/file_file_repository_spec.rb
296
311
  - spec/models/file_file_publication_response_spec.rb
297
312
  - spec/models/file_file_remote_response_spec.rb
313
+ - spec/models/file_file_git_remote_spec.rb
298
314
  - spec/models/file_file_content_response_spec.rb
299
315
  - spec/models/file_file_publication_spec.rb
300
316
  - spec/models/patchedfile_file_remote_spec.rb
301
317
  - spec/models/repair_spec.rb
318
+ - spec/models/file_file_git_remote_response_spec.rb
302
319
  - spec/models/patchedfile_file_distribution_spec.rb
320
+ - spec/models/paginatedfile_file_git_remote_response_list_spec.rb
303
321
  - spec/models/remote_network_config_response_spec.rb
304
322
  - spec/models/unset_label_spec.rb
305
323
  - spec/models/set_label_response_spec.rb
324
+ - spec/models/patchedfile_file_git_remote_spec.rb
306
325
  - spec/models/paginated_repository_version_response_list_spec.rb
307
326
  - spec/models/file_content_upload_response_spec.rb
308
327
  - spec/models/paginatedfile_file_content_response_list_spec.rb
@@ -313,6 +332,7 @@ test_files:
313
332
  - spec/models/task_group_operation_response_spec.rb
314
333
  - spec/models/patchedfile_file_repository_spec.rb
315
334
  - spec/models/repository_sync_url_spec.rb
335
+ - spec/models/file_file_git_remote_response_hidden_fields_inner_spec.rb
316
336
  - spec/models/repository_add_remove_content_spec.rb
317
337
  - spec/models/async_operation_response_spec.rb
318
338
  - spec/spec_helper.rb