Remote info for GCP project.
| Name | Type | Description | Notes |
|---|---|---|---|
| project_id | str | The id of the project. |
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)