Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.27 KB

File metadata and controls

30 lines (21 loc) · 1.27 KB

ResourceRemoteInfoAzureManagementGroup

Remote info for Azure management group.

Properties

Name Type Description Notes
resource_id str The ARM resource ID of the management group.

Example

from opal_security.models.resource_remote_info_azure_management_group import ResourceRemoteInfoAzureManagementGroup

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

# convert the object into a dict
resource_remote_info_azure_management_group_dict = resource_remote_info_azure_management_group_instance.to_dict()
# create an instance of ResourceRemoteInfoAzureManagementGroup from a dict
resource_remote_info_azure_management_group_from_dict = ResourceRemoteInfoAzureManagementGroup.from_dict(resource_remote_info_azure_management_group_dict)

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