pulp_certguard_client 1.0.1 → 1.0.2
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 +22 -17
- data/docs/CertguardRHSMCertGuard.md +1 -5
- data/docs/CertguardRHSMCertGuardResponse.md +25 -0
- data/docs/CertguardX509CertGuard.md +1 -5
- data/docs/CertguardX509CertGuardResponse.md +25 -0
- data/docs/ContentguardsRhsmApi.md +55 -55
- data/docs/ContentguardsX509Api.md +55 -55
- data/docs/InlineResponse200.md +3 -3
- data/docs/InlineResponse2001.md +3 -3
- data/docs/PatchedcertguardRHSMCertGuard.md +21 -0
- data/docs/PatchedcertguardX509CertGuard.md +21 -0
- data/lib/pulp_certguard_client.rb +6 -2
- data/lib/pulp_certguard_client/api/contentguards_rhsm_api.rb +90 -90
- data/lib/pulp_certguard_client/api/contentguards_x509_api.rb +90 -90
- data/lib/pulp_certguard_client/api_client.rb +2 -2
- data/lib/pulp_certguard_client/api_error.rb +2 -2
- data/lib/pulp_certguard_client/configuration.rb +3 -3
- data/lib/pulp_certguard_client/models/certguard_rhsm_cert_guard.rb +4 -75
- data/lib/pulp_certguard_client/models/certguard_rhsm_cert_guard_response.rb +258 -0
- data/lib/pulp_certguard_client/models/certguard_x509_cert_guard.rb +4 -75
- data/lib/pulp_certguard_client/models/certguard_x509_cert_guard_response.rb +258 -0
- data/lib/pulp_certguard_client/models/inline_response200.rb +3 -13
- data/lib/pulp_certguard_client/models/inline_response2001.rb +3 -13
- data/lib/pulp_certguard_client/models/patchedcertguard_rhsm_cert_guard.rb +229 -0
- data/lib/pulp_certguard_client/models/patchedcertguard_x509_cert_guard.rb +229 -0
- data/lib/pulp_certguard_client/version.rb +3 -3
- data/pulp_certguard_client.gemspec +4 -4
- data/spec/api/contentguards_rhsm_api_spec.rb +17 -17
- data/spec/api/contentguards_x509_api_spec.rb +17 -17
- data/spec/api_client_spec.rb +2 -2
- data/spec/configuration_spec.rb +2 -2
- data/spec/models/certguard_rhsm_cert_guard_response_spec.rb +65 -0
- data/spec/models/certguard_rhsm_cert_guard_spec.rb +2 -14
- data/spec/models/certguard_x509_cert_guard_response_spec.rb +65 -0
- data/spec/models/certguard_x509_cert_guard_spec.rb +2 -14
- data/spec/models/inline_response2001_spec.rb +2 -2
- data/spec/models/inline_response200_spec.rb +2 -2
- data/spec/models/patchedcertguard_rhsm_cert_guard_spec.rb +53 -0
- data/spec/models/patchedcertguard_x509_cert_guard_spec.rb +53 -0
- data/spec/spec_helper.rb +2 -2
- metadata +23 -7
@@ -1,10 +1,10 @@
|
|
1
1
|
=begin
|
2
2
|
#Pulp 3 API
|
3
3
|
|
4
|
-
#
|
4
|
+
#Fetch, Upload, Organize, and Distribute Software Packages
|
5
5
|
|
6
6
|
The version of the OpenAPI document: v3
|
7
|
-
|
7
|
+
Contact: pulp-list@redhat.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
OpenAPI Generator version: 4.2.3
|
10
10
|
|
@@ -1,10 +1,10 @@
|
|
1
1
|
=begin
|
2
2
|
#Pulp 3 API
|
3
3
|
|
4
|
-
#
|
4
|
+
#Fetch, Upload, Organize, and Distribute Software Packages
|
5
5
|
|
6
6
|
The version of the OpenAPI document: v3
|
7
|
-
|
7
|
+
Contact: pulp-list@redhat.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
OpenAPI Generator version: 4.2.3
|
10
10
|
|
@@ -0,0 +1,53 @@
|
|
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
|
+
OpenAPI Generator version: 4.2.3
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for PulpCertguardClient::PatchedcertguardRHSMCertGuard
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'PatchedcertguardRHSMCertGuard' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = PulpCertguardClient::PatchedcertguardRHSMCertGuard.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of PatchedcertguardRHSMCertGuard' do
|
31
|
+
it 'should create an instance of PatchedcertguardRHSMCertGuard' do
|
32
|
+
expect(@instance).to be_instance_of(PulpCertguardClient::PatchedcertguardRHSMCertGuard)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "name"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "description"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'test attribute "ca_certificate"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
end
|
@@ -0,0 +1,53 @@
|
|
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
|
+
OpenAPI Generator version: 4.2.3
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for PulpCertguardClient::PatchedcertguardX509CertGuard
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'PatchedcertguardX509CertGuard' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = PulpCertguardClient::PatchedcertguardX509CertGuard.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of PatchedcertguardX509CertGuard' do
|
31
|
+
it 'should create an instance of PatchedcertguardX509CertGuard' do
|
32
|
+
expect(@instance).to be_instance_of(PulpCertguardClient::PatchedcertguardX509CertGuard)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "name"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "description"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'test attribute "ca_certificate"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
end
|
data/spec/spec_helper.rb
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
=begin
|
2
2
|
#Pulp 3 API
|
3
3
|
|
4
|
-
#
|
4
|
+
#Fetch, Upload, Organize, and Distribute Software Packages
|
5
5
|
|
6
6
|
The version of the OpenAPI document: v3
|
7
|
-
|
7
|
+
Contact: pulp-list@redhat.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
OpenAPI Generator version: 4.2.3
|
10
10
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pulp_certguard_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-08-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -64,9 +64,9 @@ dependencies:
|
|
64
64
|
- - "~>"
|
65
65
|
- !ruby/object:Gem::Version
|
66
66
|
version: '3.6'
|
67
|
-
description:
|
67
|
+
description: Fetch, Upload, Organize, and Distribute Software Packages
|
68
68
|
email:
|
69
|
-
-
|
69
|
+
- pulp-list@redhat.com
|
70
70
|
executables: []
|
71
71
|
extensions: []
|
72
72
|
extra_rdoc_files: []
|
@@ -75,11 +75,15 @@ files:
|
|
75
75
|
- README.md
|
76
76
|
- Rakefile
|
77
77
|
- docs/CertguardRHSMCertGuard.md
|
78
|
+
- docs/CertguardRHSMCertGuardResponse.md
|
78
79
|
- docs/CertguardX509CertGuard.md
|
80
|
+
- docs/CertguardX509CertGuardResponse.md
|
79
81
|
- docs/ContentguardsRhsmApi.md
|
80
82
|
- docs/ContentguardsX509Api.md
|
81
83
|
- docs/InlineResponse200.md
|
82
84
|
- docs/InlineResponse2001.md
|
85
|
+
- docs/PatchedcertguardRHSMCertGuard.md
|
86
|
+
- docs/PatchedcertguardX509CertGuard.md
|
83
87
|
- git_push.sh
|
84
88
|
- lib/pulp_certguard_client.rb
|
85
89
|
- lib/pulp_certguard_client/api/contentguards_rhsm_api.rb
|
@@ -88,19 +92,27 @@ files:
|
|
88
92
|
- lib/pulp_certguard_client/api_error.rb
|
89
93
|
- lib/pulp_certguard_client/configuration.rb
|
90
94
|
- lib/pulp_certguard_client/models/certguard_rhsm_cert_guard.rb
|
95
|
+
- lib/pulp_certguard_client/models/certguard_rhsm_cert_guard_response.rb
|
91
96
|
- lib/pulp_certguard_client/models/certguard_x509_cert_guard.rb
|
97
|
+
- lib/pulp_certguard_client/models/certguard_x509_cert_guard_response.rb
|
92
98
|
- lib/pulp_certguard_client/models/inline_response200.rb
|
93
99
|
- lib/pulp_certguard_client/models/inline_response2001.rb
|
100
|
+
- lib/pulp_certguard_client/models/patchedcertguard_rhsm_cert_guard.rb
|
101
|
+
- lib/pulp_certguard_client/models/patchedcertguard_x509_cert_guard.rb
|
94
102
|
- lib/pulp_certguard_client/version.rb
|
95
103
|
- pulp_certguard_client.gemspec
|
96
104
|
- spec/api/contentguards_rhsm_api_spec.rb
|
97
105
|
- spec/api/contentguards_x509_api_spec.rb
|
98
106
|
- spec/api_client_spec.rb
|
99
107
|
- spec/configuration_spec.rb
|
108
|
+
- spec/models/certguard_rhsm_cert_guard_response_spec.rb
|
100
109
|
- spec/models/certguard_rhsm_cert_guard_spec.rb
|
110
|
+
- spec/models/certguard_x509_cert_guard_response_spec.rb
|
101
111
|
- spec/models/certguard_x509_cert_guard_spec.rb
|
102
112
|
- spec/models/inline_response2001_spec.rb
|
103
113
|
- spec/models/inline_response200_spec.rb
|
114
|
+
- spec/models/patchedcertguard_rhsm_cert_guard_spec.rb
|
115
|
+
- spec/models/patchedcertguard_x509_cert_guard_spec.rb
|
104
116
|
- spec/spec_helper.rb
|
105
117
|
homepage: https://openapi-generator.tech
|
106
118
|
licenses:
|
@@ -126,12 +138,16 @@ signing_key:
|
|
126
138
|
specification_version: 4
|
127
139
|
summary: Pulp 3 API Ruby Gem
|
128
140
|
test_files:
|
129
|
-
- spec/api/contentguards_x509_api_spec.rb
|
130
141
|
- spec/api/contentguards_rhsm_api_spec.rb
|
142
|
+
- spec/api/contentguards_x509_api_spec.rb
|
131
143
|
- spec/api_client_spec.rb
|
132
144
|
- spec/configuration_spec.rb
|
145
|
+
- spec/models/certguard_x509_cert_guard_response_spec.rb
|
146
|
+
- spec/models/patchedcertguard_x509_cert_guard_spec.rb
|
147
|
+
- spec/models/certguard_x509_cert_guard_spec.rb
|
148
|
+
- spec/models/patchedcertguard_rhsm_cert_guard_spec.rb
|
149
|
+
- spec/models/certguard_rhsm_cert_guard_spec.rb
|
150
|
+
- spec/models/certguard_rhsm_cert_guard_response_spec.rb
|
133
151
|
- spec/models/inline_response2001_spec.rb
|
134
152
|
- spec/models/inline_response200_spec.rb
|
135
|
-
- spec/models/certguard_rhsm_cert_guard_spec.rb
|
136
|
-
- spec/models/certguard_x509_cert_guard_spec.rb
|
137
153
|
- spec/spec_helper.rb
|