Class: SSOReady::Management::AsyncClient
- Inherits:
-
Object
- Object
- SSOReady::Management::AsyncClient
- Defined in:
- lib/ssoready/management/client.rb
Instance Attribute Summary collapse
- #organizations ⇒ SSOReady::Management::AsyncOrganizationsClient readonly
- #saml_connections ⇒ SSOReady::Management::AsyncSAMLConnectionsClient readonly
- #scim_directories ⇒ SSOReady::Management::AsyncSCIMDirectoriesClient readonly
- #setup_urls ⇒ SSOReady::Management::AsyncSetupURLsClient readonly
Instance Method Summary collapse
Constructor Details
#initialize(request_client:) ⇒ SSOReady::Management::AsyncClient
43 44 45 46 47 48 |
# File 'lib/ssoready/management/client.rb', line 43 def initialize(request_client:) @organizations = SSOReady::Management::AsyncOrganizationsClient.new(request_client: request_client) @saml_connections = SSOReady::Management::AsyncSAMLConnectionsClient.new(request_client: request_client) @scim_directories = SSOReady::Management::AsyncSCIMDirectoriesClient.new(request_client: request_client) @setup_urls = SSOReady::Management::AsyncSetupURLsClient.new(request_client: request_client) end |
Instance Attribute Details
#organizations ⇒ SSOReady::Management::AsyncOrganizationsClient (readonly)
33 34 35 |
# File 'lib/ssoready/management/client.rb', line 33 def organizations @organizations end |
#saml_connections ⇒ SSOReady::Management::AsyncSAMLConnectionsClient (readonly)
35 36 37 |
# File 'lib/ssoready/management/client.rb', line 35 def saml_connections @saml_connections end |
#scim_directories ⇒ SSOReady::Management::AsyncSCIMDirectoriesClient (readonly)
37 38 39 |
# File 'lib/ssoready/management/client.rb', line 37 def scim_directories @scim_directories end |
#setup_urls ⇒ SSOReady::Management::AsyncSetupURLsClient (readonly)
39 40 41 |
# File 'lib/ssoready/management/client.rb', line 39 def setup_urls @setup_urls end |