Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.11 KB

File metadata and controls

30 lines (21 loc) · 1.11 KB

ResourceRemoteInfoGcpProject

Remote info for GCP project.

Properties

Name Type Description Notes
project_id str The id of the project.

Example

from opal_security.models.resource_remote_info_gcp_project import ResourceRemoteInfoGcpProject

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

# convert the object into a dict
resource_remote_info_gcp_project_dict = resource_remote_info_gcp_project_instance.to_dict()
# create an instance of ResourceRemoteInfoGcpProject from a dict
resource_remote_info_gcp_project_from_dict = ResourceRemoteInfoGcpProject.from_dict(resource_remote_info_gcp_project_dict)

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