Class: Google::Apis::SecuritycenterV1::Database
- Inherits:
-
Object
- Object
- Google::Apis::SecuritycenterV1::Database
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/securitycenter_v1/classes.rb,
lib/google/apis/securitycenter_v1/representations.rb,
lib/google/apis/securitycenter_v1/representations.rb
Overview
Represents database access information, such as queries. A database may be a sub-resource of an instance (as in the case of CloudSQL instances or Cloud Spanner instances), or the database instance itself. Some database resources may not have the full resource name populated because these resource types are not yet supported by Cloud Asset Inventory (e.g. CloudSQL databases). In these cases only the display name will be provided.
Instance Attribute Summary collapse
-
#display_name ⇒ String
The human readable name of the database the user connected to.
-
#grantees ⇒ Array<String>
The target usernames/roles/groups of a SQL privilege grant (not an IAM policy change).
-
#name ⇒ String
The full resource name of the database the user connected to, if it is supported by CAI.
-
#query ⇒ String
The SQL statement associated with the relevant access.
-
#user_name ⇒ String
The username used to connect to the DB.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Database
constructor
A new instance of Database.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Database
Returns a new instance of Database.
813 814 815 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 813 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
The human readable name of the database the user connected to.
Corresponds to the JSON property displayName
788 789 790 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 788 def display_name @display_name end |
#grantees ⇒ Array<String>
The target usernames/roles/groups of a SQL privilege grant (not an IAM policy
change).
Corresponds to the JSON property grantees
794 795 796 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 794 def grantees @grantees end |
#name ⇒ String
The full resource name of the database the user connected to, if it is
supported by CAI. (https://google.aip.dev/122#full-resource-names)
Corresponds to the JSON property name
800 801 802 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 800 def name @name end |
#query ⇒ String
The SQL statement associated with the relevant access.
Corresponds to the JSON property query
805 806 807 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 805 def query @query end |
#user_name ⇒ String
The username used to connect to the DB. This may not necessarily be an IAM
principal, and has no required format.
Corresponds to the JSON property userName
811 812 813 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 811 def user_name @user_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
818 819 820 821 822 823 824 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 818 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @grantees = args[:grantees] if args.key?(:grantees) @name = args[:name] if args.key?(:name) @query = args[:query] if args.key?(:query) @user_name = args[:user_name] if args.key?(:user_name) end |