smplkit 2.0.4 → 2.0.5
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/lib/smplkit/_generated/audit/lib/smplkit_audit_client/api/actions_api.rb +159 -0
- data/lib/smplkit/_generated/audit/lib/smplkit_audit_client/api/functions_api.rb +90 -0
- data/lib/smplkit/_generated/audit/lib/smplkit_audit_client/api/resource_types_api.rb +159 -0
- data/lib/smplkit/_generated/audit/lib/smplkit_audit_client/models/action_attributes.rb +192 -0
- data/lib/smplkit/_generated/audit/lib/smplkit_audit_client/models/action_list_links.rb +148 -0
- data/lib/smplkit/_generated/audit/lib/smplkit_audit_client/models/action_list_meta.rb +164 -0
- data/lib/smplkit/_generated/audit/lib/smplkit_audit_client/models/action_list_response.rb +202 -0
- data/lib/smplkit/_generated/audit/lib/smplkit_audit_client/models/action_resource.rb +202 -0
- data/lib/smplkit/_generated/audit/lib/smplkit_audit_client/models/resource_type_attributes.rb +192 -0
- data/lib/smplkit/_generated/audit/lib/smplkit_audit_client/models/resource_type_list_links.rb +148 -0
- data/lib/smplkit/_generated/audit/lib/smplkit_audit_client/models/resource_type_list_meta.rb +164 -0
- data/lib/smplkit/_generated/audit/lib/smplkit_audit_client/models/resource_type_list_response.rb +202 -0
- data/lib/smplkit/_generated/audit/lib/smplkit_audit_client/models/resource_type_resource.rb +202 -0
- data/lib/smplkit/_generated/audit/lib/smplkit_audit_client/models/wipe_response.rb +201 -0
- data/lib/smplkit/_generated/audit/lib/smplkit_audit_client/models/wipe_tables_summary.rb +348 -0
- data/lib/smplkit/_generated/audit/lib/smplkit_audit_client.rb +15 -0
- data/lib/smplkit/_generated/audit/spec/api/actions_api_spec.rb +62 -0
- data/lib/smplkit/_generated/audit/spec/api/functions_api_spec.rb +47 -0
- data/lib/smplkit/_generated/audit/spec/api/resource_types_api_spec.rb +62 -0
- data/lib/smplkit/_generated/audit/spec/models/action_attributes_spec.rb +42 -0
- data/lib/smplkit/_generated/audit/spec/models/action_list_links_spec.rb +36 -0
- data/lib/smplkit/_generated/audit/spec/models/action_list_meta_spec.rb +36 -0
- data/lib/smplkit/_generated/audit/spec/models/action_list_response_spec.rb +48 -0
- data/lib/smplkit/_generated/audit/spec/models/action_resource_spec.rb +48 -0
- data/lib/smplkit/_generated/audit/spec/models/resource_type_attributes_spec.rb +42 -0
- data/lib/smplkit/_generated/audit/spec/models/resource_type_list_links_spec.rb +36 -0
- data/lib/smplkit/_generated/audit/spec/models/resource_type_list_meta_spec.rb +36 -0
- data/lib/smplkit/_generated/audit/spec/models/resource_type_list_response_spec.rb +48 -0
- data/lib/smplkit/_generated/audit/spec/models/resource_type_resource_spec.rb +48 -0
- data/lib/smplkit/_generated/audit/spec/models/wipe_response_spec.rb +48 -0
- data/lib/smplkit/_generated/audit/spec/models/wipe_tables_summary_spec.rb +66 -0
- metadata +31 -1
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#smplkit Audit API
|
|
3
|
+
|
|
4
|
+
#Append-only change-history substrate for smpl.* resources and customer-application events. ADR-047.
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 0.1.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
Generator version: 7.22.0
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for SmplkitGeneratedClient::Audit::ActionListResponse
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe SmplkitGeneratedClient::Audit::ActionListResponse do
|
|
21
|
+
#let(:instance) { SmplkitGeneratedClient::Audit::ActionListResponse.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of ActionListResponse' do
|
|
24
|
+
it 'should create an instance of ActionListResponse' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(SmplkitGeneratedClient::Audit::ActionListResponse)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "data"' 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 "meta"' 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 "links"' 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
|
+
end
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#smplkit Audit API
|
|
3
|
+
|
|
4
|
+
#Append-only change-history substrate for smpl.* resources and customer-application events. ADR-047.
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 0.1.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
Generator version: 7.22.0
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for SmplkitGeneratedClient::Audit::ActionResource
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe SmplkitGeneratedClient::Audit::ActionResource do
|
|
21
|
+
#let(:instance) { SmplkitGeneratedClient::Audit::ActionResource.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of ActionResource' do
|
|
24
|
+
it 'should create an instance of ActionResource' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(SmplkitGeneratedClient::Audit::ActionResource)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "id"' 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 "type"' 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 "attributes"' 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
|
+
end
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#smplkit Audit API
|
|
3
|
+
|
|
4
|
+
#Append-only change-history substrate for smpl.* resources and customer-application events. ADR-047.
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 0.1.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
Generator version: 7.22.0
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for SmplkitGeneratedClient::Audit::ResourceTypeAttributes
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe SmplkitGeneratedClient::Audit::ResourceTypeAttributes do
|
|
21
|
+
#let(:instance) { SmplkitGeneratedClient::Audit::ResourceTypeAttributes.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of ResourceTypeAttributes' do
|
|
24
|
+
it 'should create an instance of ResourceTypeAttributes' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(SmplkitGeneratedClient::Audit::ResourceTypeAttributes)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "resource_type"' 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 "created_at"' 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
|
+
end
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#smplkit Audit API
|
|
3
|
+
|
|
4
|
+
#Append-only change-history substrate for smpl.* resources and customer-application events. ADR-047.
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 0.1.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
Generator version: 7.22.0
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for SmplkitGeneratedClient::Audit::ResourceTypeListLinks
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe SmplkitGeneratedClient::Audit::ResourceTypeListLinks do
|
|
21
|
+
#let(:instance) { SmplkitGeneratedClient::Audit::ResourceTypeListLinks.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of ResourceTypeListLinks' do
|
|
24
|
+
it 'should create an instance of ResourceTypeListLinks' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(SmplkitGeneratedClient::Audit::ResourceTypeListLinks)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "_next"' 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
|
+
end
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#smplkit Audit API
|
|
3
|
+
|
|
4
|
+
#Append-only change-history substrate for smpl.* resources and customer-application events. ADR-047.
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 0.1.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
Generator version: 7.22.0
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for SmplkitGeneratedClient::Audit::ResourceTypeListMeta
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe SmplkitGeneratedClient::Audit::ResourceTypeListMeta do
|
|
21
|
+
#let(:instance) { SmplkitGeneratedClient::Audit::ResourceTypeListMeta.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of ResourceTypeListMeta' do
|
|
24
|
+
it 'should create an instance of ResourceTypeListMeta' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(SmplkitGeneratedClient::Audit::ResourceTypeListMeta)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "page_size"' 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
|
+
end
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#smplkit Audit API
|
|
3
|
+
|
|
4
|
+
#Append-only change-history substrate for smpl.* resources and customer-application events. ADR-047.
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 0.1.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
Generator version: 7.22.0
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for SmplkitGeneratedClient::Audit::ResourceTypeListResponse
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe SmplkitGeneratedClient::Audit::ResourceTypeListResponse do
|
|
21
|
+
#let(:instance) { SmplkitGeneratedClient::Audit::ResourceTypeListResponse.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of ResourceTypeListResponse' do
|
|
24
|
+
it 'should create an instance of ResourceTypeListResponse' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(SmplkitGeneratedClient::Audit::ResourceTypeListResponse)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "data"' 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 "meta"' 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 "links"' 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
|
+
end
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#smplkit Audit API
|
|
3
|
+
|
|
4
|
+
#Append-only change-history substrate for smpl.* resources and customer-application events. ADR-047.
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 0.1.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
Generator version: 7.22.0
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for SmplkitGeneratedClient::Audit::ResourceTypeResource
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe SmplkitGeneratedClient::Audit::ResourceTypeResource do
|
|
21
|
+
#let(:instance) { SmplkitGeneratedClient::Audit::ResourceTypeResource.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of ResourceTypeResource' do
|
|
24
|
+
it 'should create an instance of ResourceTypeResource' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(SmplkitGeneratedClient::Audit::ResourceTypeResource)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "id"' 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 "type"' 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 "attributes"' 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
|
+
end
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#smplkit Audit API
|
|
3
|
+
|
|
4
|
+
#Append-only change-history substrate for smpl.* resources and customer-application events. ADR-047.
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 0.1.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
Generator version: 7.22.0
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for SmplkitGeneratedClient::Audit::WipeResponse
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe SmplkitGeneratedClient::Audit::WipeResponse do
|
|
21
|
+
#let(:instance) { SmplkitGeneratedClient::Audit::WipeResponse.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of WipeResponse' do
|
|
24
|
+
it 'should create an instance of WipeResponse' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(SmplkitGeneratedClient::Audit::WipeResponse)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "wiped"' 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 "tables"' 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 "completed_at"' 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
|
+
end
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#smplkit Audit API
|
|
3
|
+
|
|
4
|
+
#Append-only change-history substrate for smpl.* resources and customer-application events. ADR-047.
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 0.1.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
Generator version: 7.22.0
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for SmplkitGeneratedClient::Audit::WipeTablesSummary
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe SmplkitGeneratedClient::Audit::WipeTablesSummary do
|
|
21
|
+
#let(:instance) { SmplkitGeneratedClient::Audit::WipeTablesSummary.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of WipeTablesSummary' do
|
|
24
|
+
it 'should create an instance of WipeTablesSummary' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(SmplkitGeneratedClient::Audit::WipeTablesSummary)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "audit_event"' 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 "audit_event_quota"' 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 "forwarder"' 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 "forwarder_delivery"' 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 "resource_type"' 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 "action"' 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
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: smplkit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Smpl Solutions LLC
|
|
@@ -375,13 +375,21 @@ files:
|
|
|
375
375
|
- lib/smplkit/_generated/app/spec/models/verify_email_request_spec.rb
|
|
376
376
|
- lib/smplkit/_generated/app/spec/spec_helper.rb
|
|
377
377
|
- lib/smplkit/_generated/audit/lib/smplkit_audit_client.rb
|
|
378
|
+
- lib/smplkit/_generated/audit/lib/smplkit_audit_client/api/actions_api.rb
|
|
378
379
|
- lib/smplkit/_generated/audit/lib/smplkit_audit_client/api/events_api.rb
|
|
379
380
|
- lib/smplkit/_generated/audit/lib/smplkit_audit_client/api/forwarders_api.rb
|
|
381
|
+
- lib/smplkit/_generated/audit/lib/smplkit_audit_client/api/functions_api.rb
|
|
382
|
+
- lib/smplkit/_generated/audit/lib/smplkit_audit_client/api/resource_types_api.rb
|
|
380
383
|
- lib/smplkit/_generated/audit/lib/smplkit_audit_client/api/usage_api.rb
|
|
381
384
|
- lib/smplkit/_generated/audit/lib/smplkit_audit_client/api_client.rb
|
|
382
385
|
- lib/smplkit/_generated/audit/lib/smplkit_audit_client/api_error.rb
|
|
383
386
|
- lib/smplkit/_generated/audit/lib/smplkit_audit_client/api_model_base.rb
|
|
384
387
|
- lib/smplkit/_generated/audit/lib/smplkit_audit_client/configuration.rb
|
|
388
|
+
- lib/smplkit/_generated/audit/lib/smplkit_audit_client/models/action_attributes.rb
|
|
389
|
+
- lib/smplkit/_generated/audit/lib/smplkit_audit_client/models/action_list_links.rb
|
|
390
|
+
- lib/smplkit/_generated/audit/lib/smplkit_audit_client/models/action_list_meta.rb
|
|
391
|
+
- lib/smplkit/_generated/audit/lib/smplkit_audit_client/models/action_list_response.rb
|
|
392
|
+
- lib/smplkit/_generated/audit/lib/smplkit_audit_client/models/action_resource.rb
|
|
385
393
|
- lib/smplkit/_generated/audit/lib/smplkit_audit_client/models/event.rb
|
|
386
394
|
- lib/smplkit/_generated/audit/lib/smplkit_audit_client/models/event_list_links.rb
|
|
387
395
|
- lib/smplkit/_generated/audit/lib/smplkit_audit_client/models/event_list_meta.rb
|
|
@@ -400,16 +408,31 @@ files:
|
|
|
400
408
|
- lib/smplkit/_generated/audit/lib/smplkit_audit_client/models/forwarder_resource.rb
|
|
401
409
|
- lib/smplkit/_generated/audit/lib/smplkit_audit_client/models/forwarder_response.rb
|
|
402
410
|
- lib/smplkit/_generated/audit/lib/smplkit_audit_client/models/http_header.rb
|
|
411
|
+
- lib/smplkit/_generated/audit/lib/smplkit_audit_client/models/resource_type_attributes.rb
|
|
412
|
+
- lib/smplkit/_generated/audit/lib/smplkit_audit_client/models/resource_type_list_links.rb
|
|
413
|
+
- lib/smplkit/_generated/audit/lib/smplkit_audit_client/models/resource_type_list_meta.rb
|
|
414
|
+
- lib/smplkit/_generated/audit/lib/smplkit_audit_client/models/resource_type_list_response.rb
|
|
415
|
+
- lib/smplkit/_generated/audit/lib/smplkit_audit_client/models/resource_type_resource.rb
|
|
403
416
|
- lib/smplkit/_generated/audit/lib/smplkit_audit_client/models/retry_failed_deliveries_summary.rb
|
|
404
417
|
- lib/smplkit/_generated/audit/lib/smplkit_audit_client/models/test_forwarder_request.rb
|
|
405
418
|
- lib/smplkit/_generated/audit/lib/smplkit_audit_client/models/test_forwarder_response.rb
|
|
406
419
|
- lib/smplkit/_generated/audit/lib/smplkit_audit_client/models/usage_attributes.rb
|
|
407
420
|
- lib/smplkit/_generated/audit/lib/smplkit_audit_client/models/usage_resource.rb
|
|
408
421
|
- lib/smplkit/_generated/audit/lib/smplkit_audit_client/models/usage_response.rb
|
|
422
|
+
- lib/smplkit/_generated/audit/lib/smplkit_audit_client/models/wipe_response.rb
|
|
423
|
+
- lib/smplkit/_generated/audit/lib/smplkit_audit_client/models/wipe_tables_summary.rb
|
|
409
424
|
- lib/smplkit/_generated/audit/lib/smplkit_audit_client/version.rb
|
|
425
|
+
- lib/smplkit/_generated/audit/spec/api/actions_api_spec.rb
|
|
410
426
|
- lib/smplkit/_generated/audit/spec/api/events_api_spec.rb
|
|
411
427
|
- lib/smplkit/_generated/audit/spec/api/forwarders_api_spec.rb
|
|
428
|
+
- lib/smplkit/_generated/audit/spec/api/functions_api_spec.rb
|
|
429
|
+
- lib/smplkit/_generated/audit/spec/api/resource_types_api_spec.rb
|
|
412
430
|
- lib/smplkit/_generated/audit/spec/api/usage_api_spec.rb
|
|
431
|
+
- lib/smplkit/_generated/audit/spec/models/action_attributes_spec.rb
|
|
432
|
+
- lib/smplkit/_generated/audit/spec/models/action_list_links_spec.rb
|
|
433
|
+
- lib/smplkit/_generated/audit/spec/models/action_list_meta_spec.rb
|
|
434
|
+
- lib/smplkit/_generated/audit/spec/models/action_list_response_spec.rb
|
|
435
|
+
- lib/smplkit/_generated/audit/spec/models/action_resource_spec.rb
|
|
413
436
|
- lib/smplkit/_generated/audit/spec/models/event_list_links_spec.rb
|
|
414
437
|
- lib/smplkit/_generated/audit/spec/models/event_list_meta_spec.rb
|
|
415
438
|
- lib/smplkit/_generated/audit/spec/models/event_list_response_spec.rb
|
|
@@ -428,12 +451,19 @@ files:
|
|
|
428
451
|
- lib/smplkit/_generated/audit/spec/models/forwarder_response_spec.rb
|
|
429
452
|
- lib/smplkit/_generated/audit/spec/models/forwarder_spec.rb
|
|
430
453
|
- lib/smplkit/_generated/audit/spec/models/http_header_spec.rb
|
|
454
|
+
- lib/smplkit/_generated/audit/spec/models/resource_type_attributes_spec.rb
|
|
455
|
+
- lib/smplkit/_generated/audit/spec/models/resource_type_list_links_spec.rb
|
|
456
|
+
- lib/smplkit/_generated/audit/spec/models/resource_type_list_meta_spec.rb
|
|
457
|
+
- lib/smplkit/_generated/audit/spec/models/resource_type_list_response_spec.rb
|
|
458
|
+
- lib/smplkit/_generated/audit/spec/models/resource_type_resource_spec.rb
|
|
431
459
|
- lib/smplkit/_generated/audit/spec/models/retry_failed_deliveries_summary_spec.rb
|
|
432
460
|
- lib/smplkit/_generated/audit/spec/models/test_forwarder_request_spec.rb
|
|
433
461
|
- lib/smplkit/_generated/audit/spec/models/test_forwarder_response_spec.rb
|
|
434
462
|
- lib/smplkit/_generated/audit/spec/models/usage_attributes_spec.rb
|
|
435
463
|
- lib/smplkit/_generated/audit/spec/models/usage_resource_spec.rb
|
|
436
464
|
- lib/smplkit/_generated/audit/spec/models/usage_response_spec.rb
|
|
465
|
+
- lib/smplkit/_generated/audit/spec/models/wipe_response_spec.rb
|
|
466
|
+
- lib/smplkit/_generated/audit/spec/models/wipe_tables_summary_spec.rb
|
|
437
467
|
- lib/smplkit/_generated/audit/spec/spec_helper.rb
|
|
438
468
|
- lib/smplkit/_generated/config/lib/smplkit_config_client.rb
|
|
439
469
|
- lib/smplkit/_generated/config/lib/smplkit_config_client/api/configs_api.rb
|