Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.36 KB

File metadata and controls

32 lines (23 loc) · 1.36 KB

ResourceRemoteInfoGcpServiceAccount

Remote info for a GCP service account.

Properties

Name Type Description Notes
email str The email of the service account.
service_account_id str The id of the service account.
project_id str The id of the project the service account is in.

Example

from opal_security.models.resource_remote_info_gcp_service_account import ResourceRemoteInfoGcpServiceAccount

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

# convert the object into a dict
resource_remote_info_gcp_service_account_dict = resource_remote_info_gcp_service_account_instance.to_dict()
# create an instance of ResourceRemoteInfoGcpServiceAccount from a dict
resource_remote_info_gcp_service_account_from_dict = ResourceRemoteInfoGcpServiceAccount.from_dict(resource_remote_info_gcp_service_account_dict)

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