Class: Google::Apis::SecuritycenterV1::Resource
- Inherits:
-
Object
- Object
- Google::Apis::SecuritycenterV1::Resource
- 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
Information related to the Google Cloud resource that is associated with this finding.
Instance Attribute Summary collapse
-
#display_name ⇒ String
The human readable name of the resource.
-
#folders ⇒ Array<Google::Apis::SecuritycenterV1::Folder>
Contains a Folder message for each folder in the assets ancestry.
-
#name ⇒ String
The full resource name of the resource.
-
#parent_display_name ⇒ String
The human readable name of resource's parent.
-
#parent_name ⇒ String
The full resource name of resource's parent.
-
#project_display_name ⇒ String
The project ID that the resource belongs to.
-
#project_name ⇒ String
The full resource name of project that the resource belongs to.
-
#type ⇒ String
The full resource type of the resource.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Resource
constructor
A new instance of Resource.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Resource
Returns a new instance of Resource.
2595 2596 2597 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 2595 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
The human readable name of the resource.
Corresponds to the JSON property displayName
2555 2556 2557 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 2555 def display_name @display_name end |
#folders ⇒ Array<Google::Apis::SecuritycenterV1::Folder>
Contains a Folder message for each folder in the assets ancestry. The first
folder is the deepest nested folder, and the last folder is the folder
directly under the Organization.
Corresponds to the JSON property folders
2562 2563 2564 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 2562 def folders @folders end |
#name ⇒ String
The full resource name of the resource. See: https://cloud.google.com/apis/
design/resource_names#full_resource_name
Corresponds to the JSON property name
2568 2569 2570 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 2568 def name @name end |
#parent_display_name ⇒ String
The human readable name of resource's parent.
Corresponds to the JSON property parentDisplayName
2573 2574 2575 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 2573 def parent_display_name @parent_display_name end |
#parent_name ⇒ String
The full resource name of resource's parent.
Corresponds to the JSON property parentName
2578 2579 2580 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 2578 def parent_name @parent_name end |
#project_display_name ⇒ String
The project ID that the resource belongs to.
Corresponds to the JSON property projectDisplayName
2583 2584 2585 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 2583 def project_display_name @project_display_name end |
#project_name ⇒ String
The full resource name of project that the resource belongs to.
Corresponds to the JSON property projectName
2588 2589 2590 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 2588 def project_name @project_name end |
#type ⇒ String
The full resource type of the resource.
Corresponds to the JSON property type
2593 2594 2595 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 2593 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 2600 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @folders = args[:folders] if args.key?(:folders) @name = args[:name] if args.key?(:name) @parent_display_name = args[:parent_display_name] if args.key?(:parent_display_name) @parent_name = args[:parent_name] if args.key?(:parent_name) @project_display_name = args[:project_display_name] if args.key?(:project_display_name) @project_name = args[:project_name] if args.key?(:project_name) @type = args[:type] if args.key?(:type) end |