Skip to content

Latest commit

 

History

History
91 lines (82 loc) · 8.37 KB

File metadata and controls

91 lines (82 loc) · 8.37 KB

ResourceRemoteInfo

Information that defines the remote resource. This replaces the deprecated remote_id and metadata fields.

Properties

Name Type Description Notes
databricks_account_service_principal ResourceRemoteInfoDatabricksAccountServicePrincipal [optional]
azure_subscription ResourceRemoteInfoAzureSubscription [optional]
azure_resource_group ResourceRemoteInfoAzureResourceGroup [optional]
azure_management_group ResourceRemoteInfoAzureManagementGroup [optional]
azure_virtual_machine ResourceRemoteInfoAzureVirtualMachine [optional]
azure_storage_account ResourceRemoteInfoAzureStorageAccount [optional]
azure_storage_container ResourceRemoteInfoAzureStorageContainer [optional]
azure_sql_server ResourceRemoteInfoAzureSqlServer [optional]
azure_sql_database ResourceRemoteInfoAzureSqlDatabase [optional]
azure_sql_managed_instance ResourceRemoteInfoAzureSqlManagedInstance [optional]
azure_sql_managed_database ResourceRemoteInfoAzureSqlManagedDatabase [optional]
azure_user_assigned_managed_identity ResourceRemoteInfoAzureUserAssignedManagedIdentity [optional]
azure_enterprise_app ResourceRemoteInfoAzureEnterpriseApp [optional]
azure_entra_id_role ResourceRemoteInfoAzureEntraIdRole [optional]
aws_organizational_unit ResourceRemoteInfoAwsOrganizationalUnit [optional]
aws_account ResourceRemoteInfoAwsAccount [optional]
aws_permission_set ResourceRemoteInfoAwsPermissionSet [optional]
aws_iam_role ResourceRemoteInfoAwsIamRole [optional]
aws_ec2_instance ResourceRemoteInfoAwsEc2Instance [optional]
aws_rds_cluster ResourceRemoteInfoAwsRdsCluster [optional]
aws_rds_instance ResourceRemoteInfoAwsRdsInstance [optional]
aws_eks_cluster ResourceRemoteInfoAwsEksCluster [optional]
custom_connector ResourceRemoteInfoCustomConnector [optional]
gcp_organization ResourceRemoteInfoGcpOrganization [optional]
gcp_bucket ResourceRemoteInfoGcpBucket [optional]
gcp_compute_instance ResourceRemoteInfoGcpComputeInstance [optional]
gcp_big_query_dataset ResourceRemoteInfoGcpBigQueryDataset [optional]
gcp_big_query_table ResourceRemoteInfoGcpBigQueryTable [optional]
gcp_folder ResourceRemoteInfoGcpFolder [optional]
gcp_gke_cluster ResourceRemoteInfoGcpGkeCluster [optional]
gcp_project ResourceRemoteInfoGcpProject [optional]
gcp_sql_instance ResourceRemoteInfoGcpSqlInstance [optional]
gcp_service_account ResourceRemoteInfoGcpServiceAccount [optional]
google_workspace_role ResourceRemoteInfoGoogleWorkspaceRole [optional]
github_repo ResourceRemoteInfoGithubRepo [optional]
github_org_role ResourceRemoteInfoGithubOrgRole [optional]
github_org ResourceRemoteInfoGithubOrg [optional]
github_enterprise_role ResourceRemoteInfoGithubEnterpriseRole [optional]
gitlab_project ResourceRemoteInfoGitlabProject [optional]
okta_app ResourceRemoteInfoOktaApp [optional]
okta_standard_role ResourceRemoteInfoOktaStandardRole [optional]
okta_custom_role ResourceRemoteInfoOktaCustomRole [optional]
snowflake_database ResourceRemoteInfoSnowflakeDatabase [optional]
snowflake_schema ResourceRemoteInfoSnowflakeSchema [optional]
snowflake_table ResourceRemoteInfoSnowflakeTable [optional]
ilevel_advanced_role ResourceRemoteInfoIlevelAdvancedRole [optional]
tailscale_ssh ResourceRemoteInfoTailscaleSsh [optional]
pagerduty_role ResourceRemoteInfoPagerdutyRole [optional]
workday_role ResourceRemoteInfoWorkdayRole [optional]
salesforce_permission_set ResourceRemoteInfoSalesforcePermissionSet [optional]
salesforce_profile ResourceRemoteInfoSalesforceProfile [optional]
salesforce_role ResourceRemoteInfoSalesforceRole [optional]
teleport_role ResourceRemoteInfoTeleportRole [optional]
datastax_astra_role ResourceRemoteInfoDatastaxAstraRole [optional]
coupa_role ResourceRemoteInfoCoupaRole [optional]
cursor_organization ResourceRemoteInfoCursorOrganization [optional]
openai_platform_project ResourceRemoteInfoOpenaiPlatformProject [optional]
openai_platform_service_account ResourceRemoteInfoOpenaiPlatformServiceAccount [optional]
anthropic_workspace ResourceRemoteInfoAnthropicWorkspace [optional]
oracle_fusion_role ResourceRemoteInfoOracleFusionRole [optional]
devin_organization ResourceRemoteInfoDevinOrganization [optional]
devin_role ResourceRemoteInfoDevinRole [optional]

Example

from opal_security.models.resource_remote_info import ResourceRemoteInfo

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

# convert the object into a dict
resource_remote_info_dict = resource_remote_info_instance.to_dict()
# create an instance of ResourceRemoteInfo from a dict
resource_remote_info_from_dict = ResourceRemoteInfo.from_dict(resource_remote_info_dict)

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