pulpcore_client 3.42.0 → 3.43.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +18 -4
- data/docs/ArtifactDistributionResponse.md +9 -9
- data/docs/CompositeContentGuard.md +21 -0
- data/docs/CompositeContentGuardResponse.md +25 -0
- data/docs/ContentguardsApi.md +4 -4
- data/docs/ContentguardsCompositeApi.md +607 -0
- data/docs/PaginatedCompositeContentGuardResponseList.md +23 -0
- data/docs/PatchedCompositeContentGuard.md +21 -0
- data/lib/pulpcore_client/api/contentguards_api.rb +6 -6
- data/lib/pulpcore_client/api/contentguards_composite_api.rb +741 -0
- data/lib/pulpcore_client/models/artifact_distribution_response.rb +45 -45
- data/lib/pulpcore_client/models/composite_content_guard.rb +270 -0
- data/lib/pulpcore_client/models/composite_content_guard_response.rb +255 -0
- data/lib/pulpcore_client/models/paginated_composite_content_guard_response_list.rb +237 -0
- data/lib/pulpcore_client/models/patched_composite_content_guard.rb +261 -0
- data/lib/pulpcore_client/version.rb +1 -1
- data/lib/pulpcore_client.rb +5 -0
- data/spec/api/contentguards_api_spec.rb +2 -2
- data/spec/api/contentguards_composite_api_spec.rb +181 -0
- data/spec/models/artifact_distribution_response_spec.rb +7 -7
- data/spec/models/composite_content_guard_response_spec.rb +65 -0
- data/spec/models/composite_content_guard_spec.rb +53 -0
- data/spec/models/paginated_composite_content_guard_response_list_spec.rb +59 -0
- data/spec/models/patched_composite_content_guard_spec.rb +53 -0
- metadata +22 -2
@@ -0,0 +1,181 @@
|
|
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.3.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
|
16
|
+
# Unit tests for PulpcoreClient::ContentguardsCompositeApi
|
17
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
18
|
+
# Please update as you see appropriate
|
19
|
+
describe 'ContentguardsCompositeApi' do
|
20
|
+
before do
|
21
|
+
# run before each test
|
22
|
+
@api_instance = PulpcoreClient::ContentguardsCompositeApi.new
|
23
|
+
end
|
24
|
+
|
25
|
+
after do
|
26
|
+
# run after each test
|
27
|
+
end
|
28
|
+
|
29
|
+
describe 'test an instance of ContentguardsCompositeApi' do
|
30
|
+
it 'should create an instance of ContentguardsCompositeApi' do
|
31
|
+
expect(@api_instance).to be_instance_of(PulpcoreClient::ContentguardsCompositeApi)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
# unit tests for add_role
|
36
|
+
# Add a role
|
37
|
+
# Add a role for this object to users/groups.
|
38
|
+
# @param composite_content_guard_href
|
39
|
+
# @param nested_role
|
40
|
+
# @param [Hash] opts the optional parameters
|
41
|
+
# @return [NestedRoleResponse]
|
42
|
+
describe 'add_role test' do
|
43
|
+
it 'should work' do
|
44
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
# unit tests for create
|
49
|
+
# Create a composite content guard
|
50
|
+
# Content guard that queries a list-of content-guards for access permissions.
|
51
|
+
# @param composite_content_guard
|
52
|
+
# @param [Hash] opts the optional parameters
|
53
|
+
# @return [CompositeContentGuardResponse]
|
54
|
+
describe 'create test' do
|
55
|
+
it 'should work' do
|
56
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
# unit tests for delete
|
61
|
+
# Delete a composite content guard
|
62
|
+
# Content guard that queries a list-of content-guards for access permissions.
|
63
|
+
# @param composite_content_guard_href
|
64
|
+
# @param [Hash] opts the optional parameters
|
65
|
+
# @return [nil]
|
66
|
+
describe 'delete test' do
|
67
|
+
it 'should work' do
|
68
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
# unit tests for list
|
73
|
+
# List composite content guards
|
74
|
+
# Content guard that queries a list-of content-guards for access permissions.
|
75
|
+
# @param [Hash] opts the optional parameters
|
76
|
+
# @option opts [Integer] :limit Number of results to return per page.
|
77
|
+
# @option opts [String] :name Filter results where name matches value
|
78
|
+
# @option opts [String] :name__contains Filter results where name contains value
|
79
|
+
# @option opts [String] :name__icontains Filter results where name contains value
|
80
|
+
# @option opts [String] :name__iexact Filter results where name matches value
|
81
|
+
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
82
|
+
# @option opts [String] :name__iregex Filter results where name matches regex value
|
83
|
+
# @option opts [String] :name__istartswith Filter results where name starts with value
|
84
|
+
# @option opts [String] :name__regex Filter results where name matches regex value
|
85
|
+
# @option opts [String] :name__startswith Filter results where name starts with value
|
86
|
+
# @option opts [Integer] :offset The initial index from which to return the results.
|
87
|
+
# @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) * `description` - Description * `-description` - Description (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
88
|
+
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
89
|
+
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
90
|
+
# @option opts [String] :q
|
91
|
+
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
92
|
+
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
93
|
+
# @return [PaginatedCompositeContentGuardResponseList]
|
94
|
+
describe 'list test' do
|
95
|
+
it 'should work' do
|
96
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
100
|
+
# unit tests for list_roles
|
101
|
+
# List roles
|
102
|
+
# List roles assigned to this object.
|
103
|
+
# @param composite_content_guard_href
|
104
|
+
# @param [Hash] opts the optional parameters
|
105
|
+
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
106
|
+
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
107
|
+
# @return [ObjectRolesResponse]
|
108
|
+
describe 'list_roles test' do
|
109
|
+
it 'should work' do
|
110
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
111
|
+
end
|
112
|
+
end
|
113
|
+
|
114
|
+
# unit tests for my_permissions
|
115
|
+
# List user permissions
|
116
|
+
# List permissions available to the current user on this object.
|
117
|
+
# @param composite_content_guard_href
|
118
|
+
# @param [Hash] opts the optional parameters
|
119
|
+
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
120
|
+
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
121
|
+
# @return [MyPermissionsResponse]
|
122
|
+
describe 'my_permissions test' do
|
123
|
+
it 'should work' do
|
124
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
125
|
+
end
|
126
|
+
end
|
127
|
+
|
128
|
+
# unit tests for partial_update
|
129
|
+
# Update a composite content guard
|
130
|
+
# Content guard that queries a list-of content-guards for access permissions.
|
131
|
+
# @param composite_content_guard_href
|
132
|
+
# @param patched_composite_content_guard
|
133
|
+
# @param [Hash] opts the optional parameters
|
134
|
+
# @return [CompositeContentGuardResponse]
|
135
|
+
describe 'partial_update test' do
|
136
|
+
it 'should work' do
|
137
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
138
|
+
end
|
139
|
+
end
|
140
|
+
|
141
|
+
# unit tests for read
|
142
|
+
# Inspect a composite content guard
|
143
|
+
# Content guard that queries a list-of content-guards for access permissions.
|
144
|
+
# @param composite_content_guard_href
|
145
|
+
# @param [Hash] opts the optional parameters
|
146
|
+
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
147
|
+
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
148
|
+
# @return [CompositeContentGuardResponse]
|
149
|
+
describe 'read test' do
|
150
|
+
it 'should work' do
|
151
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
152
|
+
end
|
153
|
+
end
|
154
|
+
|
155
|
+
# unit tests for remove_role
|
156
|
+
# Remove a role
|
157
|
+
# Remove a role for this object from users/groups.
|
158
|
+
# @param composite_content_guard_href
|
159
|
+
# @param nested_role
|
160
|
+
# @param [Hash] opts the optional parameters
|
161
|
+
# @return [NestedRoleResponse]
|
162
|
+
describe 'remove_role test' do
|
163
|
+
it 'should work' do
|
164
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
165
|
+
end
|
166
|
+
end
|
167
|
+
|
168
|
+
# unit tests for update
|
169
|
+
# Update a composite content guard
|
170
|
+
# Content guard that queries a list-of content-guards for access permissions.
|
171
|
+
# @param composite_content_guard_href
|
172
|
+
# @param composite_content_guard
|
173
|
+
# @param [Hash] opts the optional parameters
|
174
|
+
# @return [CompositeContentGuardResponse]
|
175
|
+
describe 'update test' do
|
176
|
+
it 'should work' do
|
177
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
178
|
+
end
|
179
|
+
end
|
180
|
+
|
181
|
+
end
|
@@ -32,7 +32,7 @@ describe 'ArtifactDistributionResponse' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpcoreClient::ArtifactDistributionResponse)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
describe 'test attribute "
|
35
|
+
describe 'test attribute "hidden"' do
|
36
36
|
it 'should work' do
|
37
37
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
38
|
end
|
@@ -44,37 +44,37 @@ describe 'ArtifactDistributionResponse' do
|
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
-
describe 'test attribute "
|
47
|
+
describe 'test attribute "base_url"' do
|
48
48
|
it 'should work' do
|
49
49
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
-
describe 'test attribute "
|
53
|
+
describe 'test attribute "base_path"' do
|
54
54
|
it 'should work' do
|
55
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
56
|
end
|
57
57
|
end
|
58
58
|
|
59
|
-
describe 'test attribute "
|
59
|
+
describe 'test attribute "name"' do
|
60
60
|
it 'should work' do
|
61
61
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
62
|
end
|
63
63
|
end
|
64
64
|
|
65
|
-
describe 'test attribute "
|
65
|
+
describe 'test attribute "pulp_created"' do
|
66
66
|
it 'should work' do
|
67
67
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
68
68
|
end
|
69
69
|
end
|
70
70
|
|
71
|
-
describe 'test attribute "
|
71
|
+
describe 'test attribute "content_guard"' do
|
72
72
|
it 'should work' do
|
73
73
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
74
74
|
end
|
75
75
|
end
|
76
76
|
|
77
|
-
describe 'test attribute "
|
77
|
+
describe 'test attribute "pulp_href"' do
|
78
78
|
it 'should work' do
|
79
79
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
80
80
|
end
|
@@ -0,0 +1,65 @@
|
|
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.3.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for PulpcoreClient::CompositeContentGuardResponse
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'CompositeContentGuardResponse' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = PulpcoreClient::CompositeContentGuardResponse.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of CompositeContentGuardResponse' do
|
31
|
+
it 'should create an instance of CompositeContentGuardResponse' do
|
32
|
+
expect(@instance).to be_instance_of(PulpcoreClient::CompositeContentGuardResponse)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "pulp_href"' 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 "pulp_created"' 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 "name"' 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
|
+
describe 'test attribute "description"' do
|
54
|
+
it 'should work' do
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
describe 'test attribute "guards"' do
|
60
|
+
it 'should work' do
|
61
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
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.3.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for PulpcoreClient::CompositeContentGuard
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'CompositeContentGuard' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = PulpcoreClient::CompositeContentGuard.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of CompositeContentGuard' do
|
31
|
+
it 'should create an instance of CompositeContentGuard' do
|
32
|
+
expect(@instance).to be_instance_of(PulpcoreClient::CompositeContentGuard)
|
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 "guards"' 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,59 @@
|
|
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.3.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for PulpcoreClient::PaginatedCompositeContentGuardResponseList
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'PaginatedCompositeContentGuardResponseList' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = PulpcoreClient::PaginatedCompositeContentGuardResponseList.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of PaginatedCompositeContentGuardResponseList' do
|
31
|
+
it 'should create an instance of PaginatedCompositeContentGuardResponseList' do
|
32
|
+
expect(@instance).to be_instance_of(PulpcoreClient::PaginatedCompositeContentGuardResponseList)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "count"' 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 "_next"' 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 "previous"' 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
|
+
describe 'test attribute "results"' do
|
54
|
+
it 'should work' do
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
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.3.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for PulpcoreClient::PatchedCompositeContentGuard
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'PatchedCompositeContentGuard' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = PulpcoreClient::PatchedCompositeContentGuard.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of PatchedCompositeContentGuard' do
|
31
|
+
it 'should create an instance of PatchedCompositeContentGuard' do
|
32
|
+
expect(@instance).to be_instance_of(PulpcoreClient::PatchedCompositeContentGuard)
|
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 "guards"' 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
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pulpcore_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.43.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: 2023-
|
11
|
+
date: 2023-12-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -89,6 +89,8 @@ files:
|
|
89
89
|
- docs/ArtifactResponse.md
|
90
90
|
- docs/ArtifactsApi.md
|
91
91
|
- docs/AsyncOperationResponse.md
|
92
|
+
- docs/CompositeContentGuard.md
|
93
|
+
- docs/CompositeContentGuardResponse.md
|
92
94
|
- docs/ContentApi.md
|
93
95
|
- docs/ContentAppStatusResponse.md
|
94
96
|
- docs/ContentGuardResponse.md
|
@@ -97,6 +99,7 @@ files:
|
|
97
99
|
- docs/ContentSettingsResponse.md
|
98
100
|
- docs/ContentSummaryResponse.md
|
99
101
|
- docs/ContentguardsApi.md
|
102
|
+
- docs/ContentguardsCompositeApi.md
|
100
103
|
- docs/ContentguardsContentRedirectApi.md
|
101
104
|
- docs/ContentguardsHeaderApi.md
|
102
105
|
- docs/ContentguardsRbacApi.md
|
@@ -145,6 +148,7 @@ files:
|
|
145
148
|
- docs/PaginatedAccessPolicyResponseList.md
|
146
149
|
- docs/PaginatedArtifactDistributionResponseList.md
|
147
150
|
- docs/PaginatedArtifactResponseList.md
|
151
|
+
- docs/PaginatedCompositeContentGuardResponseList.md
|
148
152
|
- docs/PaginatedContentGuardResponseList.md
|
149
153
|
- docs/PaginatedContentRedirectContentGuardResponseList.md
|
150
154
|
- docs/PaginatedDistributionResponseList.md
|
@@ -176,6 +180,7 @@ files:
|
|
176
180
|
- docs/PaginatedUserRoleResponseList.md
|
177
181
|
- docs/PaginatedWorkerResponseList.md
|
178
182
|
- docs/PatchedAccessPolicy.md
|
183
|
+
- docs/PatchedCompositeContentGuard.md
|
179
184
|
- docs/PatchedContentRedirectContentGuard.md
|
180
185
|
- docs/PatchedDomain.md
|
181
186
|
- docs/PatchedFilesystemExporter.md
|
@@ -259,6 +264,7 @@ files:
|
|
259
264
|
- lib/pulpcore_client/api/artifacts_api.rb
|
260
265
|
- lib/pulpcore_client/api/content_api.rb
|
261
266
|
- lib/pulpcore_client/api/contentguards_api.rb
|
267
|
+
- lib/pulpcore_client/api/contentguards_composite_api.rb
|
262
268
|
- lib/pulpcore_client/api/contentguards_content_redirect_api.rb
|
263
269
|
- lib/pulpcore_client/api/contentguards_header_api.rb
|
264
270
|
- lib/pulpcore_client/api/contentguards_rbac_api.rb
|
@@ -304,6 +310,8 @@ files:
|
|
304
310
|
- lib/pulpcore_client/models/artifact_distribution_response.rb
|
305
311
|
- lib/pulpcore_client/models/artifact_response.rb
|
306
312
|
- lib/pulpcore_client/models/async_operation_response.rb
|
313
|
+
- lib/pulpcore_client/models/composite_content_guard.rb
|
314
|
+
- lib/pulpcore_client/models/composite_content_guard_response.rb
|
307
315
|
- lib/pulpcore_client/models/content_app_status_response.rb
|
308
316
|
- lib/pulpcore_client/models/content_guard_response.rb
|
309
317
|
- lib/pulpcore_client/models/content_redirect_content_guard.rb
|
@@ -340,6 +348,7 @@ files:
|
|
340
348
|
- lib/pulpcore_client/models/paginated_access_policy_response_list.rb
|
341
349
|
- lib/pulpcore_client/models/paginated_artifact_distribution_response_list.rb
|
342
350
|
- lib/pulpcore_client/models/paginated_artifact_response_list.rb
|
351
|
+
- lib/pulpcore_client/models/paginated_composite_content_guard_response_list.rb
|
343
352
|
- lib/pulpcore_client/models/paginated_content_guard_response_list.rb
|
344
353
|
- lib/pulpcore_client/models/paginated_content_redirect_content_guard_response_list.rb
|
345
354
|
- lib/pulpcore_client/models/paginated_distribution_response_list.rb
|
@@ -371,6 +380,7 @@ files:
|
|
371
380
|
- lib/pulpcore_client/models/paginated_user_role_response_list.rb
|
372
381
|
- lib/pulpcore_client/models/paginated_worker_response_list.rb
|
373
382
|
- lib/pulpcore_client/models/patched_access_policy.rb
|
383
|
+
- lib/pulpcore_client/models/patched_composite_content_guard.rb
|
374
384
|
- lib/pulpcore_client/models/patched_content_redirect_content_guard.rb
|
375
385
|
- lib/pulpcore_client/models/patched_domain.rb
|
376
386
|
- lib/pulpcore_client/models/patched_filesystem_exporter.rb
|
@@ -438,6 +448,7 @@ files:
|
|
438
448
|
- spec/api/artifacts_api_spec.rb
|
439
449
|
- spec/api/content_api_spec.rb
|
440
450
|
- spec/api/contentguards_api_spec.rb
|
451
|
+
- spec/api/contentguards_composite_api_spec.rb
|
441
452
|
- spec/api/contentguards_content_redirect_api_spec.rb
|
442
453
|
- spec/api/contentguards_header_api_spec.rb
|
443
454
|
- spec/api/contentguards_rbac_api_spec.rb
|
@@ -482,6 +493,8 @@ files:
|
|
482
493
|
- spec/models/artifact_response_spec.rb
|
483
494
|
- spec/models/artifact_spec.rb
|
484
495
|
- spec/models/async_operation_response_spec.rb
|
496
|
+
- spec/models/composite_content_guard_response_spec.rb
|
497
|
+
- spec/models/composite_content_guard_spec.rb
|
485
498
|
- spec/models/content_app_status_response_spec.rb
|
486
499
|
- spec/models/content_guard_response_spec.rb
|
487
500
|
- spec/models/content_redirect_content_guard_response_spec.rb
|
@@ -518,6 +531,7 @@ files:
|
|
518
531
|
- spec/models/paginated_access_policy_response_list_spec.rb
|
519
532
|
- spec/models/paginated_artifact_distribution_response_list_spec.rb
|
520
533
|
- spec/models/paginated_artifact_response_list_spec.rb
|
534
|
+
- spec/models/paginated_composite_content_guard_response_list_spec.rb
|
521
535
|
- spec/models/paginated_content_guard_response_list_spec.rb
|
522
536
|
- spec/models/paginated_content_redirect_content_guard_response_list_spec.rb
|
523
537
|
- spec/models/paginated_distribution_response_list_spec.rb
|
@@ -549,6 +563,7 @@ files:
|
|
549
563
|
- spec/models/paginated_user_role_response_list_spec.rb
|
550
564
|
- spec/models/paginated_worker_response_list_spec.rb
|
551
565
|
- spec/models/patched_access_policy_spec.rb
|
566
|
+
- spec/models/patched_composite_content_guard_spec.rb
|
552
567
|
- spec/models/patched_content_redirect_content_guard_spec.rb
|
553
568
|
- spec/models/patched_domain_spec.rb
|
554
569
|
- spec/models/patched_filesystem_exporter_spec.rb
|
@@ -672,6 +687,7 @@ test_files:
|
|
672
687
|
- spec/api/users_api_spec.rb
|
673
688
|
- spec/api/contentguards_api_spec.rb
|
674
689
|
- spec/api/importers_pulp_api_spec.rb
|
690
|
+
- spec/api/contentguards_composite_api_spec.rb
|
675
691
|
- spec/api/remotes_api_spec.rb
|
676
692
|
- spec/api/roles_api_spec.rb
|
677
693
|
- spec/api_client_spec.rb
|
@@ -679,6 +695,7 @@ test_files:
|
|
679
695
|
- spec/models/filesystem_export_response_spec.rb
|
680
696
|
- spec/models/user_response_spec.rb
|
681
697
|
- spec/models/paginated_pulp_exporter_response_list_spec.rb
|
698
|
+
- spec/models/composite_content_guard_response_spec.rb
|
682
699
|
- spec/models/pulp_export_response_spec.rb
|
683
700
|
- spec/models/patched_user_spec.rb
|
684
701
|
- spec/models/content_redirect_content_guard_response_spec.rb
|
@@ -715,6 +732,7 @@ test_files:
|
|
715
732
|
- spec/models/artifact_spec.rb
|
716
733
|
- spec/models/paginated_remote_response_list_spec.rb
|
717
734
|
- spec/models/paginated_upload_response_list_spec.rb
|
735
|
+
- spec/models/patched_composite_content_guard_spec.rb
|
718
736
|
- spec/models/async_operation_response_spec.rb
|
719
737
|
- spec/models/paginated_pulp_importer_response_list_spec.rb
|
720
738
|
- spec/models/task_group_response_spec.rb
|
@@ -755,6 +773,7 @@ test_files:
|
|
755
773
|
- spec/models/user_group_spec.rb
|
756
774
|
- spec/models/access_policy_spec.rb
|
757
775
|
- spec/models/task_response_spec.rb
|
776
|
+
- spec/models/composite_content_guard_spec.rb
|
758
777
|
- spec/models/paginated_domain_response_list_spec.rb
|
759
778
|
- spec/models/upload_chunk_response_spec.rb
|
760
779
|
- spec/models/nested_role_spec.rb
|
@@ -791,6 +810,7 @@ test_files:
|
|
791
810
|
- spec/models/import_response_spec.rb
|
792
811
|
- spec/models/paginated_task_schedule_response_list_spec.rb
|
793
812
|
- spec/models/filesystem_exporter_response_spec.rb
|
813
|
+
- spec/models/paginated_composite_content_guard_response_list_spec.rb
|
794
814
|
- spec/models/rbac_content_guard_spec.rb
|
795
815
|
- spec/models/paginated_group_response_list_spec.rb
|
796
816
|
- spec/models/group_progress_report_response_spec.rb
|