Skip to content

Latest commit

 

History

History
44 lines (36 loc) · 2.22 KB

GenericApp.md

File metadata and controls

44 lines (36 loc) · 2.22 KB

GenericApp

Properties

Name Type Description Notes
id int Apps unique ID in OneLogin. [optional] [readonly]
name str The name of the app. [optional]
visible bool Indicates if the app is visible in the OneLogin portal. [optional]
description str Freeform description of the app. [optional]
notes str Freeform notes about the app. [optional]
icon_url str A link to the apps icon url [optional]
auth_method AuthMethod [optional]
policy_id int The security policy assigned to the app. [optional]
allow_assumed_signin bool Indicates whether or not administrators can access the app as a user that they have assumed control over. [optional]
tab_id int ID of the OneLogin portal tab that the app is assigned to. [optional]
connector_id int ID of the connector to base the app from. [optional]
created_at str the date the app was created [optional]
updated_at str the date the app was last updated [optional]
role_ids List[int] List of Role IDs that are assigned to the app. On App Create or Update the entire array is replaced with the values provided. [optional]
provisioning GenericAppProvisioning [optional]
parameters AppParameters [optional]
enforcement_point EnforcementPoint [optional]

Example

from onelogin.models.generic_app import GenericApp

# TODO update the JSON string below
json = "{}"
# create an instance of GenericApp from a JSON string
generic_app_instance = GenericApp.from_json(json)
# print the JSON string representation of the object
print GenericApp.to_json()

# convert the object into a dict
generic_app_dict = generic_app_instance.to_dict()
# create an instance of GenericApp from a dict
generic_app_form_dict = generic_app.from_dict(generic_app_dict)

[Back to Model list] [Back to API list] [Back to README]