class Google::Apis::ServicemanagementV1::GenerateConfigReportRequest
Request message for GenerateConfigReport method.
Attributes
new_config[RW]
Required. 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` @return [Hash<String,Object>]
old_config[RW]
Optional. 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` @return [Hash<String,Object>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/servicemanagement_v1/classes.rb, line 1455 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/servicemanagement_v1/classes.rb, line 1460 def update!(**args) @new_config = args[:new_config] if args.key?(:new_config) @old_config = args[:old_config] if args.key?(:old_config) end