Class: Google::Apis::WorkloadmanagerV1::SapValidationValidationDetail
- Inherits:
-
Object
- Object
- Google::Apis::WorkloadmanagerV1::SapValidationValidationDetail
- 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 SAP validation metrics.
Instance Attribute Summary collapse
-
#details ⇒ Hash<String,String>
The pairs of metrics data: field name & field value.
-
#sap_validation_type ⇒ String
The SAP system that the validation data is from.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SapValidationValidationDetail
constructor
A new instance of SapValidationValidationDetail.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SapValidationValidationDetail
Returns a new instance of SapValidationValidationDetail.
1078 1079 1080 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1078 def initialize(**args) update!(**args) end |
Instance Attribute Details
#details ⇒ Hash<String,String>
The pairs of metrics data: field name & field value.
Corresponds to the JSON property details
1071 1072 1073 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1071 def details @details end |
#sap_validation_type ⇒ String
The SAP system that the validation data is from.
Corresponds to the JSON property sapValidationType
1076 1077 1078 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1076 def sap_validation_type @sap_validation_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1083 1084 1085 1086 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1083 def update!(**args) @details = args[:details] if args.key?(:details) @sap_validation_type = args[:sap_validation_type] if args.key?(:sap_validation_type) end |