Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.53 KB

File metadata and controls

31 lines (22 loc) · 1.53 KB

ResourceRemoteInfoDatabricksAccountServicePrincipal

Remote info for Databricks account service principal.

Properties

Name Type Description Notes
application_id str The application ID of the service principal.
resource_id str The resource ID of the service principal.

Example

from opal_security.models.resource_remote_info_databricks_account_service_principal import ResourceRemoteInfoDatabricksAccountServicePrincipal

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

# convert the object into a dict
resource_remote_info_databricks_account_service_principal_dict = resource_remote_info_databricks_account_service_principal_instance.to_dict()
# create an instance of ResourceRemoteInfoDatabricksAccountServicePrincipal from a dict
resource_remote_info_databricks_account_service_principal_from_dict = ResourceRemoteInfoDatabricksAccountServicePrincipal.from_dict(resource_remote_info_databricks_account_service_principal_dict)

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