fusionauth_client 1.21.0 → 1.22.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/build.savant +1 -1
- data/fusionauth_client.gemspec +1 -1
- data/lib/fusionauth/fusionauth_client.rb +14 -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: 19c8c1a50df83ef803ec50ec990b0118e9f59477d4d55658276a83f0af609ac1
|
4
|
+
data.tar.gz: fef76faf3cec4d2c7a50e997ad08357af949bc974d9c35b96e88ecaf886acd30
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 312c6a9bd86ab513ca2be344bc9ad5fb616c58eb51382f22737c3b69c22a8678d1175c94fd0aef7df71b31754509b0e78fa7ccc9b3102dd3b5938d90aa95d11c
|
7
|
+
data.tar.gz: 42817bd2972014e153b7cfb38b725c5051f89a50493e8277ff2a19f59219747494222b833d9c2d7e69498f55d6e6c3c70170793541cf8fe97466616e6d701b7c
|
data/build.savant
CHANGED
@@ -16,7 +16,7 @@
|
|
16
16
|
savantVersion = "1.0.0"
|
17
17
|
|
18
18
|
pubVersion = ""
|
19
|
-
project(group: "io.fusionauth", name: "fusionauth-ruby-client", version: "1.
|
19
|
+
project(group: "io.fusionauth", name: "fusionauth-ruby-client", version: "1.22.0", licenses: ["ApacheV2_0"]) {
|
20
20
|
workflow {
|
21
21
|
standard()
|
22
22
|
}
|
data/fusionauth_client.gemspec
CHANGED
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |spec|
|
6
6
|
spec.name = 'fusionauth_client'
|
7
|
-
spec.version = '1.
|
7
|
+
spec.version = '1.22.0'
|
8
8
|
spec.authors = ['Brian Pontarelli', 'Daniel DeGroff']
|
9
9
|
spec.email = %w(brian@fusionauth.io daniel@fusionauth.io)
|
10
10
|
|
@@ -652,6 +652,20 @@ module FusionAuth
|
|
652
652
|
.go()
|
653
653
|
end
|
654
654
|
|
655
|
+
#
|
656
|
+
# Deletes the tenant for the given Id asynchronously.
|
657
|
+
# This method is helpful if you do not want to wait for the delete operation to complete.
|
658
|
+
#
|
659
|
+
# @param tenant_id [string] The Id of the tenant to delete.
|
660
|
+
# @return [FusionAuth::ClientResponse] The ClientResponse object.
|
661
|
+
def delete_tenant_async(tenant_id)
|
662
|
+
start.uri('/api/tenant')
|
663
|
+
.url_segment(tenant_id)
|
664
|
+
.url_parameter('async', true)
|
665
|
+
.delete()
|
666
|
+
.go()
|
667
|
+
end
|
668
|
+
|
655
669
|
#
|
656
670
|
# Deletes the theme for the given Id.
|
657
671
|
#
|
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.22.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: 2020-
|
12
|
+
date: 2020-12-02 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.
|