Class: Google::Apis::ServicemanagementV1::GenerateConfigReportRequest
- Inherits:
-
Object
- Object
- Google::Apis::ServicemanagementV1::GenerateConfigReportRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/servicemanagement_v1/classes.rb,
generated/google/apis/servicemanagement_v1/representations.rb,
generated/google/apis/servicemanagement_v1/representations.rb
Overview
Request message for GenerateConfigReport method.
Instance Attribute Summary collapse
-
#new_config ⇒ Hash<String,Object>
Service configuration for which we want to generate the report.
-
#old_config ⇒ Hash<String,Object>
Service configuration against which the comparison will be done.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GenerateConfigReportRequest
constructor
A new instance of GenerateConfigReportRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GenerateConfigReportRequest
Returns a new instance of GenerateConfigReportRequest
4038 4039 4040 |
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 4038 def initialize(**args) update!(**args) end |
Instance Attribute Details
#new_config ⇒ Hash<String,Object>
Service configuration for which we want to generate the report.
For this version of API, the supported types are
google.api.servicemanagement.v1.ConfigRef,
google.api.servicemanagement.v1.ConfigSource,
and google.api.Service
Corresponds to the JSON property newConfig
4036 4037 4038 |
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 4036 def new_config @new_config end |
#old_config ⇒ Hash<String,Object>
Service configuration against which the comparison will be done.
For this version of API, the supported types are
google.api.servicemanagement.v1.ConfigRef,
google.api.servicemanagement.v1.ConfigSource,
and google.api.Service
Corresponds to the JSON property oldConfig
4027 4028 4029 |
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 4027 def old_config @old_config end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4043 4044 4045 4046 |
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 4043 def update!(**args) @old_config = args[:old_config] if args.key?(:old_config) @new_config = args[:new_config] if args.key?(:new_config) end |