Class: Google::Apis::WorkloadmanagerV1::ViolationDetails
- Inherits:
-
Object
- Object
- Google::Apis::WorkloadmanagerV1::ViolationDetails
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/workloadmanager_v1/classes.rb,
lib/google/apis/workloadmanager_v1/representations.rb,
lib/google/apis/workloadmanager_v1/representations.rb
Overview
Message describing the violation in an evaluation result.
Instance Attribute Summary collapse
-
#asset ⇒ String
The name of the asset.
-
#observed ⇒ Hash<String,String>
Details of the violation.
-
#service_account ⇒ String
The service account associated with the resource.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ViolationDetails
constructor
A new instance of ViolationDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ViolationDetails
Returns a new instance of ViolationDetails.
1845 1846 1847 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1845 def initialize(**args) update!(**args) end |
Instance Attribute Details
#asset ⇒ String
The name of the asset.
Corresponds to the JSON property asset
1833 1834 1835 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1833 def asset @asset end |
#observed ⇒ Hash<String,String>
Details of the violation.
Corresponds to the JSON property observed
1838 1839 1840 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1838 def observed @observed end |
#service_account ⇒ String
The service account associated with the resource.
Corresponds to the JSON property serviceAccount
1843 1844 1845 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1843 def service_account @service_account end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1850 1851 1852 1853 1854 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1850 def update!(**args) @asset = args[:asset] if args.key?(:asset) @observed = args[:observed] if args.key?(:observed) @service_account = args[:service_account] if args.key?(:service_account) end |