Class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1ResourceValueConfig
- Inherits:
-
Object
- Object
- Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1ResourceValueConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/securitycenter_v1beta1/classes.rb,
lib/google/apis/securitycenter_v1beta1/representations.rb,
lib/google/apis/securitycenter_v1beta1/representations.rb
Overview
A resource value config is a mapping configuration of user's tag values to resource values. Used by the attack path simulation.
Instance Attribute Summary collapse
-
#name ⇒ String
Name for the resource value config Corresponds to the JSON property
name. -
#resource_type ⇒ String
Apply resource_value only to resources that match resource_type.
-
#resource_value ⇒ String
Required.
-
#scope ⇒ String
Project or folder to scope this config to.
-
#tag_values ⇒ Array<String>
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudSecuritycenterV1ResourceValueConfig
constructor
A new instance of GoogleCloudSecuritycenterV1ResourceValueConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudSecuritycenterV1ResourceValueConfig
Returns a new instance of GoogleCloudSecuritycenterV1ResourceValueConfig.
1893 1894 1895 |
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 1893 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
Name for the resource value config
Corresponds to the JSON property name
1864 1865 1866 |
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 1864 def name @name end |
#resource_type ⇒ String
Apply resource_value only to resources that match resource_type. resource_type
will be checked with "AND" of other resources. E.g. "storage.googleapis.com/
Bucket" with resource_value "HIGH" will apply "HIGH" value only to "storage.
googleapis.com/Bucket" resources.
Corresponds to the JSON property resourceType
1872 1873 1874 |
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 1872 def resource_type @resource_type end |
#resource_value ⇒ String
Required. Resource value level this expression represents
Corresponds to the JSON property resourceValue
1877 1878 1879 |
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 1877 def resource_value @resource_value end |
#scope ⇒ String
Project or folder to scope this config to. For example, "project/456" would
apply this config only to resources in "project/456" scope will be checked
with "AND" of other resources.
Corresponds to the JSON property scope
1884 1885 1886 |
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 1884 def scope @scope end |
#tag_values ⇒ Array<String>
Required. Tag values combined with AND to check against. Values in the form "
tagValues/123" E.g. [ "tagValues/123", "tagValues/456", "tagValues/789" ]
https://cloud.google.com/resource-manager/docs/tags/tags-creating-and-managing
Corresponds to the JSON property tagValues
1891 1892 1893 |
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 1891 def tag_values @tag_values end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1898 1899 1900 1901 1902 1903 1904 |
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 1898 def update!(**args) @name = args[:name] if args.key?(:name) @resource_type = args[:resource_type] if args.key?(:resource_type) @resource_value = args[:resource_value] if args.key?(:resource_value) @scope = args[:scope] if args.key?(:scope) @tag_values = args[:tag_values] if args.key?(:tag_values) end |