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

GroupRemoteInfoSnowflakeRole

Remote info for Snowflake role.

Properties

Name Type Description Notes
role_id str The id of the Snowflake role.

Example

from opal_security.models.group_remote_info_snowflake_role import GroupRemoteInfoSnowflakeRole

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

# convert the object into a dict
group_remote_info_snowflake_role_dict = group_remote_info_snowflake_role_instance.to_dict()
# create an instance of GroupRemoteInfoSnowflakeRole from a dict
group_remote_info_snowflake_role_from_dict = GroupRemoteInfoSnowflakeRole.from_dict(group_remote_info_snowflake_role_dict)

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