fusionauth_client 1.43.0 → 1.45.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/build.savant +1 -1
- data/fusionauth_client.gemspec +1 -1
- data/lib/fusionauth/fusionauth_client.rb +120 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 925b64e30340b4f08b02e9f0a8bb8ec6f5f4bc4f998ad87907c33e2b798d3238
|
4
|
+
data.tar.gz: 55bfc20e69673e6ac6e0df9c7acceb463e7c7433465b2d3ac857f38ae757e3bf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 96e35eff1ca90a003a48e14c6a0c86c4b712a482273da679095126cfbe291477d0910d78b5f88033e69b57ca7af20af6975fc7c065a082f321f125366f9d68c7
|
7
|
+
data.tar.gz: 4addc2222ebbf3d51b4f6fcb0a70571c3a95132aeb0e5a24e14b5d629179b0b8e0c4fb2018e002dfa6da026525238bf07fe86c93fbe1306ba843d72d0bf79a13
|
data/Gemfile.lock
CHANGED
data/build.savant
CHANGED
@@ -15,7 +15,7 @@
|
|
15
15
|
*/
|
16
16
|
|
17
17
|
pubVersion = ""
|
18
|
-
project(group: "io.fusionauth", name: "fusionauth-ruby-client", version: "1.
|
18
|
+
project(group: "io.fusionauth", name: "fusionauth-ruby-client", version: "1.45.0", licenses: ["ApacheV2_0"]) {
|
19
19
|
workflow {
|
20
20
|
fetch {
|
21
21
|
cache()
|
data/fusionauth_client.gemspec
CHANGED
@@ -19,7 +19,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
19
19
|
|
20
20
|
Gem::Specification.new do |spec|
|
21
21
|
spec.name = 'fusionauth_client'
|
22
|
-
spec.version = '1.
|
22
|
+
spec.version = '1.45.0'
|
23
23
|
spec.authors = ['Brian Pontarelli', 'Daniel DeGroff']
|
24
24
|
spec.email = %w(brian@fusionauth.io daniel@fusionauth.io)
|
25
25
|
|
@@ -3482,6 +3482,18 @@ module FusionAuth
|
|
3482
3482
|
.go()
|
3483
3483
|
end
|
3484
3484
|
|
3485
|
+
#
|
3486
|
+
# Searches applications with the specified criteria and pagination.
|
3487
|
+
#
|
3488
|
+
# @param request [OpenStruct, Hash] The search criteria and pagination information.
|
3489
|
+
# @return [FusionAuth::ClientResponse] The ClientResponse object.
|
3490
|
+
def search_applications(request)
|
3491
|
+
start.uri('/api/application/search')
|
3492
|
+
.body_handler(FusionAuth::JSONBodyHandler.new(request))
|
3493
|
+
.post()
|
3494
|
+
.go()
|
3495
|
+
end
|
3496
|
+
|
3485
3497
|
#
|
3486
3498
|
# Searches the audit logs with the specified criteria and pagination.
|
3487
3499
|
#
|
@@ -3494,6 +3506,30 @@ module FusionAuth
|
|
3494
3506
|
.go()
|
3495
3507
|
end
|
3496
3508
|
|
3509
|
+
#
|
3510
|
+
# Searches consents with the specified criteria and pagination.
|
3511
|
+
#
|
3512
|
+
# @param request [OpenStruct, Hash] The search criteria and pagination information.
|
3513
|
+
# @return [FusionAuth::ClientResponse] The ClientResponse object.
|
3514
|
+
def search_consents(request)
|
3515
|
+
start.uri('/api/consent/search')
|
3516
|
+
.body_handler(FusionAuth::JSONBodyHandler.new(request))
|
3517
|
+
.post()
|
3518
|
+
.go()
|
3519
|
+
end
|
3520
|
+
|
3521
|
+
#
|
3522
|
+
# Searches email templates with the specified criteria and pagination.
|
3523
|
+
#
|
3524
|
+
# @param request [OpenStruct, Hash] The search criteria and pagination information.
|
3525
|
+
# @return [FusionAuth::ClientResponse] The ClientResponse object.
|
3526
|
+
def search_email_templates(request)
|
3527
|
+
start.uri('/api/email/template/search')
|
3528
|
+
.body_handler(FusionAuth::JSONBodyHandler.new(request))
|
3529
|
+
.post()
|
3530
|
+
.go()
|
3531
|
+
end
|
3532
|
+
|
3497
3533
|
#
|
3498
3534
|
# Searches entities with the specified criteria and pagination.
|
3499
3535
|
#
|
@@ -3590,6 +3626,42 @@ module FusionAuth
|
|
3590
3626
|
.go()
|
3591
3627
|
end
|
3592
3628
|
|
3629
|
+
#
|
3630
|
+
# Searches identity providers with the specified criteria and pagination.
|
3631
|
+
#
|
3632
|
+
# @param request [OpenStruct, Hash] The search criteria and pagination information.
|
3633
|
+
# @return [FusionAuth::ClientResponse] The ClientResponse object.
|
3634
|
+
def search_identity_providers(request)
|
3635
|
+
start.uri('/api/identity-provider/search')
|
3636
|
+
.body_handler(FusionAuth::JSONBodyHandler.new(request))
|
3637
|
+
.post()
|
3638
|
+
.go()
|
3639
|
+
end
|
3640
|
+
|
3641
|
+
#
|
3642
|
+
# Searches keys with the specified criteria and pagination.
|
3643
|
+
#
|
3644
|
+
# @param request [OpenStruct, Hash] The search criteria and pagination information.
|
3645
|
+
# @return [FusionAuth::ClientResponse] The ClientResponse object.
|
3646
|
+
def search_keys(request)
|
3647
|
+
start.uri('/api/key/search')
|
3648
|
+
.body_handler(FusionAuth::JSONBodyHandler.new(request))
|
3649
|
+
.post()
|
3650
|
+
.go()
|
3651
|
+
end
|
3652
|
+
|
3653
|
+
#
|
3654
|
+
# Searches lambdas with the specified criteria and pagination.
|
3655
|
+
#
|
3656
|
+
# @param request [OpenStruct, Hash] The search criteria and pagination information.
|
3657
|
+
# @return [FusionAuth::ClientResponse] The ClientResponse object.
|
3658
|
+
def search_lambdas(request)
|
3659
|
+
start.uri('/api/lambda/search')
|
3660
|
+
.body_handler(FusionAuth::JSONBodyHandler.new(request))
|
3661
|
+
.post()
|
3662
|
+
.go()
|
3663
|
+
end
|
3664
|
+
|
3593
3665
|
#
|
3594
3666
|
# Searches the login records with the specified criteria and pagination.
|
3595
3667
|
#
|
@@ -3602,6 +3674,42 @@ module FusionAuth
|
|
3602
3674
|
.go()
|
3603
3675
|
end
|
3604
3676
|
|
3677
|
+
#
|
3678
|
+
# Searches tenants with the specified criteria and pagination.
|
3679
|
+
#
|
3680
|
+
# @param request [OpenStruct, Hash] The search criteria and pagination information.
|
3681
|
+
# @return [FusionAuth::ClientResponse] The ClientResponse object.
|
3682
|
+
def search_tenants(request)
|
3683
|
+
start.uri('/api/tenant/search')
|
3684
|
+
.body_handler(FusionAuth::JSONBodyHandler.new(request))
|
3685
|
+
.post()
|
3686
|
+
.go()
|
3687
|
+
end
|
3688
|
+
|
3689
|
+
#
|
3690
|
+
# Searches themes with the specified criteria and pagination.
|
3691
|
+
#
|
3692
|
+
# @param request [OpenStruct, Hash] The search criteria and pagination information.
|
3693
|
+
# @return [FusionAuth::ClientResponse] The ClientResponse object.
|
3694
|
+
def search_themes(request)
|
3695
|
+
start.uri('/api/theme/search')
|
3696
|
+
.body_handler(FusionAuth::JSONBodyHandler.new(request))
|
3697
|
+
.post()
|
3698
|
+
.go()
|
3699
|
+
end
|
3700
|
+
|
3701
|
+
#
|
3702
|
+
# Searches user comments with the specified criteria and pagination.
|
3703
|
+
#
|
3704
|
+
# @param request [OpenStruct, Hash] The search criteria and pagination information.
|
3705
|
+
# @return [FusionAuth::ClientResponse] The ClientResponse object.
|
3706
|
+
def search_user_comments(request)
|
3707
|
+
start.uri('/api/user/comment/search')
|
3708
|
+
.body_handler(FusionAuth::JSONBodyHandler.new(request))
|
3709
|
+
.post()
|
3710
|
+
.go()
|
3711
|
+
end
|
3712
|
+
|
3605
3713
|
#
|
3606
3714
|
# Retrieves the users for the given ids. If any id is invalid, it is ignored.
|
3607
3715
|
#
|
@@ -3654,6 +3762,18 @@ module FusionAuth
|
|
3654
3762
|
.go()
|
3655
3763
|
end
|
3656
3764
|
|
3765
|
+
#
|
3766
|
+
# Searches webhooks with the specified criteria and pagination.
|
3767
|
+
#
|
3768
|
+
# @param request [OpenStruct, Hash] The search criteria and pagination information.
|
3769
|
+
# @return [FusionAuth::ClientResponse] The ClientResponse object.
|
3770
|
+
def search_webhooks(request)
|
3771
|
+
start.uri('/api/webhook/search')
|
3772
|
+
.body_handler(FusionAuth::JSONBodyHandler.new(request))
|
3773
|
+
.post()
|
3774
|
+
.go()
|
3775
|
+
end
|
3776
|
+
|
3657
3777
|
#
|
3658
3778
|
# Send an email using an email template id. You can optionally provide <code>requestData</code> to access key value
|
3659
3779
|
# pairs in the email template.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fusionauth_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.45.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brian Pontarelli
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date: 2023-
|
12
|
+
date: 2023-04-11 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: This library contains the Ruby client library that helps you connect
|
15
15
|
your application to FusionAuth.
|