-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add table oci_identity_db_credential Closes #594 #596
Conversation
|
||
# Table: oci_identity_db_credential - Query OCI Identity Users using SQL | ||
|
||
Oracle Cloud Infrastructure's Identity and Access Management (IAM) service lets you control who has access to your cloud resources. Identity DB credentials refer to the authentication details used to access Oracle databases securely within the Oracle Cloud Infrastructure. These credentials are part of the Oracle Cloud Infrastructure Identity and Access Management (IAM) service, which manages users, groups, and policies that control access to OCI resources. In the context of databases, these credentials |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ParthaI Is this description completed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated.
select | ||
name, | ||
id, | ||
user_id, | ||
description, | ||
time_created, | ||
lifecycle_state, | ||
time_expires | ||
from | ||
oci_identity_db_credential; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
select | |
name, | |
id, | |
user_id, | |
description, | |
time_created, | |
lifecycle_state, | |
time_expires | |
from | |
oci_identity_db_credential; | |
select | |
id, | |
user_id, | |
description, | |
time_created, | |
lifecycle_state, | |
time_expires | |
from | |
oci_identity_db_credential; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated
select | ||
name, | ||
id, | ||
user_id, | ||
description, | ||
time_created, | ||
lifecycle_state, | ||
time_expires | ||
from | ||
oci_identity_db_credential; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
select | |
name, | |
id, | |
user_id, | |
description, | |
time_created, | |
lifecycle_state, | |
time_expires | |
from | |
oci_identity_db_credential; | |
select | |
id, | |
user_id, | |
description, | |
time_created, | |
lifecycle_state, | |
time_expires | |
from | |
oci_identity_db_credential; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated the query
select | ||
c.user_id, | ||
c.db_credential_id, | ||
u.user_type, | ||
u.is_mfa_activated, | ||
u.email | ||
from | ||
oci_identity_db_credential as c, | ||
oci_identity_user as u | ||
where | ||
c.user_id = u.user_id | ||
and user_type = 'IDCS'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
select | |
c.user_id, | |
c.db_credential_id, | |
u.user_type, | |
u.is_mfa_activated, | |
u.email | |
from | |
oci_identity_db_credential as c, | |
oci_identity_user as u | |
where | |
c.user_id = u.user_id | |
and user_type = 'IDCS'; | |
select | |
c.id, | |
u.user_type, | |
u.is_mfa_activated, | |
u.email | |
from | |
oci_identity_db_credential as c, | |
oci_identity_user as u | |
where | |
c.user_id = u.id | |
and user_type = 'IDCS; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated
select | ||
c.user_id, | ||
c.db_credential_id, | ||
u.user_type, | ||
u.is_mfa_activated, | ||
u.email | ||
from | ||
oci_identity_db_credential as c | ||
join oci_identity_user as u on c.user_id = u.user_id | ||
where | ||
u.user_type = 'IDCS'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
select | |
c.user_id, | |
c.db_credential_id, | |
u.user_type, | |
u.is_mfa_activated, | |
u.email | |
from | |
oci_identity_db_credential as c | |
join oci_identity_user as u on c.user_id = u.user_id | |
where | |
u.user_type = 'IDCS'; | |
select | |
c.id, | |
u.user_type, | |
u.is_mfa_activated, | |
u.email | |
from | |
oci_identity_db_credential as c | |
join oci_identity_user as u on c.user_id = u.id | |
where | |
u.user_type = 'IDCS'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated
Integration test logs
Logs
Example query results
Results