Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.28 KB

File metadata and controls

30 lines (21 loc) · 1.28 KB

ResourceRemoteInfoAzureEnterpriseApp

Remote info for Azure Enterprise App.

Properties

Name Type Description Notes
resource_id str The remote application identifier (service principal or application object ID).

Example

from opal_security.models.resource_remote_info_azure_enterprise_app import ResourceRemoteInfoAzureEnterpriseApp

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

# convert the object into a dict
resource_remote_info_azure_enterprise_app_dict = resource_remote_info_azure_enterprise_app_instance.to_dict()
# create an instance of ResourceRemoteInfoAzureEnterpriseApp from a dict
resource_remote_info_azure_enterprise_app_from_dict = ResourceRemoteInfoAzureEnterpriseApp.from_dict(resource_remote_info_azure_enterprise_app_dict)

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